Page MenuHomec4science

No OneTemporary

File Metadata

Created
Sat, Jul 6, 17:27
This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/doc/Developer.pdf b/doc/Developer.pdf
deleted file mode 100644
index 55b5015e4..000000000
Binary files a/doc/Developer.pdf and /dev/null differ
diff --git a/doc/Manual.pdf b/doc/Manual.pdf
deleted file mode 100644
index 15942af14..000000000
Binary files a/doc/Manual.pdf and /dev/null differ
diff --git a/doc/Scripts/correlate.py b/doc/Scripts/correlate.py
deleted file mode 100644
index 5a0aaaf2c..000000000
--- a/doc/Scripts/correlate.py
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/usr/bin/env python
-"""
- function:
- parse the block of thermo data in a lammps logfile and perform auto- and
- cross correlation of the specified column data. The total sum of the
- correlation is also computed which can be converted to an integral by
- multiplying by the timestep.
- output:
- standard output contains column data for the auto- & cross correlations
- plus the total sum of each. Note, only the upper triangle of the
- correlation matrix is computed.
- usage:
- correlate.py [-c col] <-c col2> <-s max_correlation_time> [logfile]
-"""
-import sys
-import re
-import array
-
-# parse command line
-
-maxCorrelationTime = 0
-cols = array.array("I")
-nCols = 0
-args = sys.argv[1:]
-index = 0
-while index < len(args):
- arg = args[index]
- index += 1
- if (arg == "-c"):
- cols.append(int(args[index])-1)
- nCols += 1
- index += 1
- elif (arg == "-s"):
- maxCorrelationTime = int(args[index])
- index += 1
- else :
- filename = arg
-if (nCols < 1): raise RuntimeError, 'no data columns requested'
-data = [array.array("d")]
-for s in range(1,nCols) : data.append( array.array("d") )
-
-# read data block from log file
-
-start = False
-input = open(filename)
-nSamples = 0
-pattern = re.compile('\d')
-line = input.readline()
-while line :
- columns = line.split()
- if (columns and pattern.match(columns[0])) :
- for i in range(nCols):
- data[i].append( float(columns[cols[i]]) )
- nSamples += 1
- start = True
- else :
- if (start) : break
- line = input.readline()
-print "# read :",nSamples," samples of ", nCols," data"
-if( maxCorrelationTime < 1): maxCorrelationTime = int(nSamples/2);
-
-# correlate and integrate
-
-correlationPairs = []
-for i in range(0,nCols):
- for j in range(i,nCols): # note only upper triangle of the correlation matrix
- correlationPairs.append([i,j])
-header = "# "
-for k in range(len(correlationPairs)):
- i = str(correlationPairs[k][0]+1)
- j = str(correlationPairs[k][1]+1)
- header += " C"+i+j+" sum_C"+i+j
-print header
-nCorrelationPairs = len(correlationPairs)
-sum = [0.0] * nCorrelationPairs
-for s in range(maxCorrelationTime) :
- correlation = [0.0] * nCorrelationPairs
- nt = nSamples-s
- for t in range(0,nt) :
- for p in range(nCorrelationPairs):
- i = correlationPairs[p][0]
- j = correlationPairs[p][1]
- correlation[p] += data[i][t]*data[j][s+t]
- output = ""
- for p in range(0,nCorrelationPairs):
- correlation[p] /= nt
- sum[p] += correlation[p]
- output += str(correlation[p]) + " " + str(sum[p]) + " "
- print output
diff --git a/doc/_images/angle_charmm.jpg b/doc/_images/angle_charmm.jpg
deleted file mode 100644
index c6e6c297d..000000000
Binary files a/doc/_images/angle_charmm.jpg and /dev/null differ
diff --git a/doc/_images/angle_class2.jpg b/doc/_images/angle_class2.jpg
deleted file mode 100644
index f0f2a5152..000000000
Binary files a/doc/_images/angle_class2.jpg and /dev/null differ
diff --git a/doc/_images/angle_cosine.jpg b/doc/_images/angle_cosine.jpg
deleted file mode 100644
index 23b9b6431..000000000
Binary files a/doc/_images/angle_cosine.jpg and /dev/null differ
diff --git a/doc/_images/angle_cosine_delta.jpg b/doc/_images/angle_cosine_delta.jpg
deleted file mode 100644
index c6e90bb2c..000000000
Binary files a/doc/_images/angle_cosine_delta.jpg and /dev/null differ
diff --git a/doc/_images/angle_cosine_periodic.jpg b/doc/_images/angle_cosine_periodic.jpg
deleted file mode 100644
index a9d7d50cb..000000000
Binary files a/doc/_images/angle_cosine_periodic.jpg and /dev/null differ
diff --git a/doc/_images/angle_cosine_shift.jpg b/doc/_images/angle_cosine_shift.jpg
deleted file mode 100644
index d9929939c..000000000
Binary files a/doc/_images/angle_cosine_shift.jpg and /dev/null differ
diff --git a/doc/_images/angle_cosine_shift_exp.jpg b/doc/_images/angle_cosine_shift_exp.jpg
deleted file mode 100644
index 294986de4..000000000
Binary files a/doc/_images/angle_cosine_shift_exp.jpg and /dev/null differ
diff --git a/doc/_images/angle_cosine_squared.jpg b/doc/_images/angle_cosine_squared.jpg
deleted file mode 100644
index b992398b7..000000000
Binary files a/doc/_images/angle_cosine_squared.jpg and /dev/null differ
diff --git a/doc/_images/angle_dipole_couple.jpg b/doc/_images/angle_dipole_couple.jpg
deleted file mode 100644
index f16849b2f..000000000
Binary files a/doc/_images/angle_dipole_couple.jpg and /dev/null differ
diff --git a/doc/_images/angle_dipole_gamma.jpg b/doc/_images/angle_dipole_gamma.jpg
deleted file mode 100644
index 4bf618e25..000000000
Binary files a/doc/_images/angle_dipole_gamma.jpg and /dev/null differ
diff --git a/doc/_images/angle_dipole_potential.jpg b/doc/_images/angle_dipole_potential.jpg
deleted file mode 100644
index b1285e895..000000000
Binary files a/doc/_images/angle_dipole_potential.jpg and /dev/null differ
diff --git a/doc/_images/angle_dipole_torque.jpg b/doc/_images/angle_dipole_torque.jpg
deleted file mode 100644
index 996a9df3c..000000000
Binary files a/doc/_images/angle_dipole_torque.jpg and /dev/null differ
diff --git a/doc/_images/angle_fourier.jpg b/doc/_images/angle_fourier.jpg
deleted file mode 100644
index e748e6743..000000000
Binary files a/doc/_images/angle_fourier.jpg and /dev/null differ
diff --git a/doc/_images/angle_fourier_simple.jpg b/doc/_images/angle_fourier_simple.jpg
deleted file mode 100644
index 6c9297b97..000000000
Binary files a/doc/_images/angle_fourier_simple.jpg and /dev/null differ
diff --git a/doc/_images/angle_harmonic.jpg b/doc/_images/angle_harmonic.jpg
deleted file mode 100644
index 352be0b54..000000000
Binary files a/doc/_images/angle_harmonic.jpg and /dev/null differ
diff --git a/doc/_images/angle_quartic.jpg b/doc/_images/angle_quartic.jpg
deleted file mode 100644
index 744ce7a35..000000000
Binary files a/doc/_images/angle_quartic.jpg and /dev/null differ
diff --git a/doc/_images/atc_nanotube.jpg b/doc/_images/atc_nanotube.jpg
deleted file mode 100644
index e52958a7e..000000000
Binary files a/doc/_images/atc_nanotube.jpg and /dev/null differ
diff --git a/doc/_images/balance_nonuniform.jpg b/doc/_images/balance_nonuniform.jpg
deleted file mode 100644
index 3962b8f67..000000000
Binary files a/doc/_images/balance_nonuniform.jpg and /dev/null differ
diff --git a/doc/_images/balance_rcb.jpg b/doc/_images/balance_rcb.jpg
deleted file mode 100644
index b68683539..000000000
Binary files a/doc/_images/balance_rcb.jpg and /dev/null differ
diff --git a/doc/_images/balance_uniform.jpg b/doc/_images/balance_uniform.jpg
deleted file mode 100644
index 404bf5e27..000000000
Binary files a/doc/_images/balance_uniform.jpg and /dev/null differ
diff --git a/doc/_images/bond_class2.jpg b/doc/_images/bond_class2.jpg
deleted file mode 100644
index 493048100..000000000
Binary files a/doc/_images/bond_class2.jpg and /dev/null differ
diff --git a/doc/_images/bond_fene.jpg b/doc/_images/bond_fene.jpg
deleted file mode 100644
index e8b909c08..000000000
Binary files a/doc/_images/bond_fene.jpg and /dev/null differ
diff --git a/doc/_images/bond_fene_expand.jpg b/doc/_images/bond_fene_expand.jpg
deleted file mode 100644
index 1d04acec3..000000000
Binary files a/doc/_images/bond_fene_expand.jpg and /dev/null differ
diff --git a/doc/_images/bond_harmonic.jpg b/doc/_images/bond_harmonic.jpg
deleted file mode 100644
index fe9ef5619..000000000
Binary files a/doc/_images/bond_harmonic.jpg and /dev/null differ
diff --git a/doc/_images/bond_harmonic_shift.jpg b/doc/_images/bond_harmonic_shift.jpg
deleted file mode 100644
index 3e66d853a..000000000
Binary files a/doc/_images/bond_harmonic_shift.jpg and /dev/null differ
diff --git a/doc/_images/bond_harmonic_shift_cut.jpg b/doc/_images/bond_harmonic_shift_cut.jpg
deleted file mode 100644
index 06640e4fe..000000000
Binary files a/doc/_images/bond_harmonic_shift_cut.jpg and /dev/null differ
diff --git a/doc/_images/bond_morse.jpg b/doc/_images/bond_morse.jpg
deleted file mode 100644
index 6795c9e52..000000000
Binary files a/doc/_images/bond_morse.jpg and /dev/null differ
diff --git a/doc/_images/bond_nonlinear.jpg b/doc/_images/bond_nonlinear.jpg
deleted file mode 100644
index 0f18d8e73..000000000
Binary files a/doc/_images/bond_nonlinear.jpg and /dev/null differ
diff --git a/doc/_images/bond_quartic.jpg b/doc/_images/bond_quartic.jpg
deleted file mode 100644
index 9d092883b..000000000
Binary files a/doc/_images/bond_quartic.jpg and /dev/null differ
diff --git a/doc/_images/bondswap.jpg b/doc/_images/bondswap.jpg
deleted file mode 100644
index 24b6028ca..000000000
Binary files a/doc/_images/bondswap.jpg and /dev/null differ
diff --git a/doc/_images/box.jpg b/doc/_images/box.jpg
deleted file mode 100644
index 4cb43df95..000000000
Binary files a/doc/_images/box.jpg and /dev/null differ
diff --git a/doc/_images/box_inverse.jpg b/doc/_images/box_inverse.jpg
deleted file mode 100644
index 5d0895b87..000000000
Binary files a/doc/_images/box_inverse.jpg and /dev/null differ
diff --git a/doc/_images/centro_symmetry.jpg b/doc/_images/centro_symmetry.jpg
deleted file mode 100644
index 1e89d11a1..000000000
Binary files a/doc/_images/centro_symmetry.jpg and /dev/null differ
diff --git a/doc/_images/cna_cutoff1.jpg b/doc/_images/cna_cutoff1.jpg
deleted file mode 100644
index fae5c6b63..000000000
Binary files a/doc/_images/cna_cutoff1.jpg and /dev/null differ
diff --git a/doc/_images/cna_cutoff2.jpg b/doc/_images/cna_cutoff2.jpg
deleted file mode 100644
index 744b61e9b..000000000
Binary files a/doc/_images/cna_cutoff2.jpg and /dev/null differ
diff --git a/doc/_images/compute_dpd.jpg b/doc/_images/compute_dpd.jpg
deleted file mode 100644
index 42ed03db1..000000000
Binary files a/doc/_images/compute_dpd.jpg and /dev/null differ
diff --git a/doc/_images/compute_fep_bar.jpg b/doc/_images/compute_fep_bar.jpg
deleted file mode 100644
index 772ec9c04..000000000
Binary files a/doc/_images/compute_fep_bar.jpg and /dev/null differ
diff --git a/doc/_images/compute_fep_fdti.jpg b/doc/_images/compute_fep_fdti.jpg
deleted file mode 100644
index ae8de241c..000000000
Binary files a/doc/_images/compute_fep_fdti.jpg and /dev/null differ
diff --git a/doc/_images/compute_fep_fep.jpg b/doc/_images/compute_fep_fep.jpg
deleted file mode 100644
index d84a76b0d..000000000
Binary files a/doc/_images/compute_fep_fep.jpg and /dev/null differ
diff --git a/doc/_images/compute_fep_lambda.jpg b/doc/_images/compute_fep_lambda.jpg
deleted file mode 100644
index 5ef9e8b9f..000000000
Binary files a/doc/_images/compute_fep_lambda.jpg and /dev/null differ
diff --git a/doc/_images/compute_fep_ti.jpg b/doc/_images/compute_fep_ti.jpg
deleted file mode 100644
index 6b0c8fdc1..000000000
Binary files a/doc/_images/compute_fep_ti.jpg and /dev/null differ
diff --git a/doc/_images/compute_fep_u.jpg b/doc/_images/compute_fep_u.jpg
deleted file mode 100644
index 62df5dd0c..000000000
Binary files a/doc/_images/compute_fep_u.jpg and /dev/null differ
diff --git a/doc/_images/compute_fep_vol.jpg b/doc/_images/compute_fep_vol.jpg
deleted file mode 100644
index a66facad3..000000000
Binary files a/doc/_images/compute_fep_vol.jpg and /dev/null differ
diff --git a/doc/_images/compute_gyration.jpg b/doc/_images/compute_gyration.jpg
deleted file mode 100644
index 228544443..000000000
Binary files a/doc/_images/compute_gyration.jpg and /dev/null differ
diff --git a/doc/_images/compute_msd_nongauss.jpg b/doc/_images/compute_msd_nongauss.jpg
deleted file mode 100644
index d57f6a4af..000000000
Binary files a/doc/_images/compute_msd_nongauss.jpg and /dev/null differ
diff --git a/doc/_images/compute_saed1.jpg b/doc/_images/compute_saed1.jpg
deleted file mode 100644
index 6bad3a610..000000000
Binary files a/doc/_images/compute_saed1.jpg and /dev/null differ
diff --git a/doc/_images/compute_saed2.jpg b/doc/_images/compute_saed2.jpg
deleted file mode 100644
index 2b3b0bc09..000000000
Binary files a/doc/_images/compute_saed2.jpg and /dev/null differ
diff --git a/doc/_images/compute_saed3.jpg b/doc/_images/compute_saed3.jpg
deleted file mode 100644
index 1bbc92090..000000000
Binary files a/doc/_images/compute_saed3.jpg and /dev/null differ
diff --git a/doc/_images/compute_sna_atom1.jpg b/doc/_images/compute_sna_atom1.jpg
deleted file mode 100644
index fe4b641aa..000000000
Binary files a/doc/_images/compute_sna_atom1.jpg and /dev/null differ
diff --git a/doc/_images/compute_sna_atom2.jpg b/doc/_images/compute_sna_atom2.jpg
deleted file mode 100644
index 7a4b2c211..000000000
Binary files a/doc/_images/compute_sna_atom2.jpg and /dev/null differ
diff --git a/doc/_images/compute_sna_atom3.jpg b/doc/_images/compute_sna_atom3.jpg
deleted file mode 100644
index 41d6774e9..000000000
Binary files a/doc/_images/compute_sna_atom3.jpg and /dev/null differ
diff --git a/doc/_images/compute_sna_atom4.jpg b/doc/_images/compute_sna_atom4.jpg
deleted file mode 100644
index 5d53943bf..000000000
Binary files a/doc/_images/compute_sna_atom4.jpg and /dev/null differ
diff --git a/doc/_images/compute_sna_atom5.jpg b/doc/_images/compute_sna_atom5.jpg
deleted file mode 100644
index 732731fe1..000000000
Binary files a/doc/_images/compute_sna_atom5.jpg and /dev/null differ
diff --git a/doc/_images/compute_sna_atom6.jpg b/doc/_images/compute_sna_atom6.jpg
deleted file mode 100644
index 963dd8141..000000000
Binary files a/doc/_images/compute_sna_atom6.jpg and /dev/null differ
diff --git a/doc/_images/compute_xrd1.jpg b/doc/_images/compute_xrd1.jpg
deleted file mode 100644
index 8432fad4a..000000000
Binary files a/doc/_images/compute_xrd1.jpg and /dev/null differ
diff --git a/doc/_images/compute_xrd2.jpg b/doc/_images/compute_xrd2.jpg
deleted file mode 100644
index 1bcf0494e..000000000
Binary files a/doc/_images/compute_xrd2.jpg and /dev/null differ
diff --git a/doc/_images/compute_xrd3.jpg b/doc/_images/compute_xrd3.jpg
deleted file mode 100644
index 19f7aa99b..000000000
Binary files a/doc/_images/compute_xrd3.jpg and /dev/null differ
diff --git a/doc/_images/compute_xrd4.jpg b/doc/_images/compute_xrd4.jpg
deleted file mode 100644
index 385bb1efd..000000000
Binary files a/doc/_images/compute_xrd4.jpg and /dev/null differ
diff --git a/doc/_images/compute_xrd5.jpg b/doc/_images/compute_xrd5.jpg
deleted file mode 100644
index c6f0a2609..000000000
Binary files a/doc/_images/compute_xrd5.jpg and /dev/null differ
diff --git a/doc/_images/coul_soft.jpg b/doc/_images/coul_soft.jpg
deleted file mode 100644
index d2cc4c0c9..000000000
Binary files a/doc/_images/coul_soft.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_charmm.jpg b/doc/_images/dihedral_charmm.jpg
deleted file mode 100644
index 810afa3cd..000000000
Binary files a/doc/_images/dihedral_charmm.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_class2.jpg b/doc/_images/dihedral_class2.jpg
deleted file mode 100644
index 6a6780e76..000000000
Binary files a/doc/_images/dihedral_class2.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_cosine_shift_exp.jpg b/doc/_images/dihedral_cosine_shift_exp.jpg
deleted file mode 100644
index ea0a7550f..000000000
Binary files a/doc/_images/dihedral_cosine_shift_exp.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_fourier.jpg b/doc/_images/dihedral_fourier.jpg
deleted file mode 100644
index 663ac17ee..000000000
Binary files a/doc/_images/dihedral_fourier.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_harmonic.jpg b/doc/_images/dihedral_harmonic.jpg
deleted file mode 100644
index cb5c16a8c..000000000
Binary files a/doc/_images/dihedral_harmonic.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_helix.jpg b/doc/_images/dihedral_helix.jpg
deleted file mode 100644
index 01a0ec982..000000000
Binary files a/doc/_images/dihedral_helix.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_multi_harmonic.jpg b/doc/_images/dihedral_multi_harmonic.jpg
deleted file mode 100644
index d066cd212..000000000
Binary files a/doc/_images/dihedral_multi_harmonic.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_nharmonic.jpg b/doc/_images/dihedral_nharmonic.jpg
deleted file mode 100644
index 4f4928bdd..000000000
Binary files a/doc/_images/dihedral_nharmonic.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_opls.jpg b/doc/_images/dihedral_opls.jpg
deleted file mode 100644
index 0546aebfd..000000000
Binary files a/doc/_images/dihedral_opls.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_quadratic.jpg b/doc/_images/dihedral_quadratic.jpg
deleted file mode 100644
index 8fb17622f..000000000
Binary files a/doc/_images/dihedral_quadratic.jpg and /dev/null differ
diff --git a/doc/_images/dihedral_sign.jpg b/doc/_images/dihedral_sign.jpg
deleted file mode 100644
index 8d8352e8f..000000000
Binary files a/doc/_images/dihedral_sign.jpg and /dev/null differ
diff --git a/doc/_images/dreiding_hbond.jpg b/doc/_images/dreiding_hbond.jpg
deleted file mode 100644
index 76cc42a45..000000000
Binary files a/doc/_images/dreiding_hbond.jpg and /dev/null differ
diff --git a/doc/_images/dump1.jpg b/doc/_images/dump1.jpg
deleted file mode 100644
index 6068ba017..000000000
Binary files a/doc/_images/dump1.jpg and /dev/null differ
diff --git a/doc/_images/dump2.jpg b/doc/_images/dump2.jpg
deleted file mode 100644
index bd0d573e1..000000000
Binary files a/doc/_images/dump2.jpg and /dev/null differ
diff --git a/doc/_images/eff_ECP1.jpg b/doc/_images/eff_ECP1.jpg
deleted file mode 100644
index 3b8a3f8ff..000000000
Binary files a/doc/_images/eff_ECP1.jpg and /dev/null differ
diff --git a/doc/_images/eff_ECP2.jpg b/doc/_images/eff_ECP2.jpg
deleted file mode 100644
index 195ed55e4..000000000
Binary files a/doc/_images/eff_ECP2.jpg and /dev/null differ
diff --git a/doc/_images/eff_KE.jpg b/doc/_images/eff_KE.jpg
deleted file mode 100644
index 40eed0df6..000000000
Binary files a/doc/_images/eff_KE.jpg and /dev/null differ
diff --git a/doc/_images/eff_NN.jpg b/doc/_images/eff_NN.jpg
deleted file mode 100644
index c3c52e19b..000000000
Binary files a/doc/_images/eff_NN.jpg and /dev/null differ
diff --git a/doc/_images/eff_Ne.jpg b/doc/_images/eff_Ne.jpg
deleted file mode 100644
index e23ceacc8..000000000
Binary files a/doc/_images/eff_Ne.jpg and /dev/null differ
diff --git a/doc/_images/eff_Pauli.jpg b/doc/_images/eff_Pauli.jpg
deleted file mode 100644
index 61bb8652e..000000000
Binary files a/doc/_images/eff_Pauli.jpg and /dev/null differ
diff --git a/doc/_images/eff_ee.jpg b/doc/_images/eff_ee.jpg
deleted file mode 100644
index aef84d0fd..000000000
Binary files a/doc/_images/eff_ee.jpg and /dev/null differ
diff --git a/doc/_images/eff_energy_expression.jpg b/doc/_images/eff_energy_expression.jpg
deleted file mode 100644
index e06fe8ff2..000000000
Binary files a/doc/_images/eff_energy_expression.jpg and /dev/null differ
diff --git a/doc/_images/fix_box_relax1.jpg b/doc/_images/fix_box_relax1.jpg
deleted file mode 100644
index d42552604..000000000
Binary files a/doc/_images/fix_box_relax1.jpg and /dev/null differ
diff --git a/doc/_images/fix_box_relax2.jpg b/doc/_images/fix_box_relax2.jpg
deleted file mode 100644
index 8fac42e0f..000000000
Binary files a/doc/_images/fix_box_relax2.jpg and /dev/null differ
diff --git a/doc/_images/fix_eos-cv.jpg b/doc/_images/fix_eos-cv.jpg
deleted file mode 100644
index 37eeac8e2..000000000
Binary files a/doc/_images/fix_eos-cv.jpg and /dev/null differ
diff --git a/doc/_images/fix_gld1.jpg b/doc/_images/fix_gld1.jpg
deleted file mode 100644
index d54ce57a6..000000000
Binary files a/doc/_images/fix_gld1.jpg and /dev/null differ
diff --git a/doc/_images/fix_lb_fluid_boltzmann.jpg b/doc/_images/fix_lb_fluid_boltzmann.jpg
deleted file mode 100644
index 9d82b40ec..000000000
Binary files a/doc/_images/fix_lb_fluid_boltzmann.jpg and /dev/null differ
diff --git a/doc/_images/fix_lb_fluid_fluidforce.jpg b/doc/_images/fix_lb_fluid_fluidforce.jpg
deleted file mode 100644
index d3149616c..000000000
Binary files a/doc/_images/fix_lb_fluid_fluidforce.jpg and /dev/null differ
diff --git a/doc/_images/fix_lb_fluid_gammadefault.jpg b/doc/_images/fix_lb_fluid_gammadefault.jpg
deleted file mode 100644
index cd10239c9..000000000
Binary files a/doc/_images/fix_lb_fluid_gammadefault.jpg and /dev/null differ
diff --git a/doc/_images/fix_lb_fluid_navierstokes.jpg b/doc/_images/fix_lb_fluid_navierstokes.jpg
deleted file mode 100644
index 0a1c10414..000000000
Binary files a/doc/_images/fix_lb_fluid_navierstokes.jpg and /dev/null differ
diff --git a/doc/_images/fix_lb_fluid_properties.jpg b/doc/_images/fix_lb_fluid_properties.jpg
deleted file mode 100644
index 3d70cd766..000000000
Binary files a/doc/_images/fix_lb_fluid_properties.jpg and /dev/null differ
diff --git a/doc/_images/fix_lb_fluid_stress.jpg b/doc/_images/fix_lb_fluid_stress.jpg
deleted file mode 100644
index 8f730e9d7..000000000
Binary files a/doc/_images/fix_lb_fluid_stress.jpg and /dev/null differ
diff --git a/doc/_images/fix_lb_fluid_viscosity.jpg b/doc/_images/fix_lb_fluid_viscosity.jpg
deleted file mode 100644
index 1816317ee..000000000
Binary files a/doc/_images/fix_lb_fluid_viscosity.jpg and /dev/null differ
diff --git a/doc/_images/fix_nh1.jpg b/doc/_images/fix_nh1.jpg
deleted file mode 100644
index af07ea3a4..000000000
Binary files a/doc/_images/fix_nh1.jpg and /dev/null differ
diff --git a/doc/_images/fix_nphug.jpg b/doc/_images/fix_nphug.jpg
deleted file mode 100644
index a3a67e7b7..000000000
Binary files a/doc/_images/fix_nphug.jpg and /dev/null differ
diff --git a/doc/_images/fix_orient_fcc.jpg b/doc/_images/fix_orient_fcc.jpg
deleted file mode 100644
index b22e6c9c2..000000000
Binary files a/doc/_images/fix_orient_fcc.jpg and /dev/null differ
diff --git a/doc/_images/fix_pimd.jpg b/doc/_images/fix_pimd.jpg
deleted file mode 100644
index b6e8f5831..000000000
Binary files a/doc/_images/fix_pimd.jpg and /dev/null differ
diff --git a/doc/_images/fix_rattle_constraints.jpg b/doc/_images/fix_rattle_constraints.jpg
deleted file mode 100644
index 2ba86095c..000000000
Binary files a/doc/_images/fix_rattle_constraints.jpg and /dev/null differ
diff --git a/doc/_images/fix_rattle_rij.jpg b/doc/_images/fix_rattle_rij.jpg
deleted file mode 100644
index b08e2fe02..000000000
Binary files a/doc/_images/fix_rattle_rij.jpg and /dev/null differ
diff --git a/doc/_images/fix_spring_rg.jpg b/doc/_images/fix_spring_rg.jpg
deleted file mode 100644
index 313844f55..000000000
Binary files a/doc/_images/fix_spring_rg.jpg and /dev/null differ
diff --git a/doc/_images/fix_ti_rs_force.jpg b/doc/_images/fix_ti_rs_force.jpg
deleted file mode 100644
index a09bcb66c..000000000
Binary files a/doc/_images/fix_ti_rs_force.jpg and /dev/null differ
diff --git a/doc/_images/fix_ti_rs_function_1.jpg b/doc/_images/fix_ti_rs_function_1.jpg
deleted file mode 100644
index 478dc5781..000000000
Binary files a/doc/_images/fix_ti_rs_function_1.jpg and /dev/null differ
diff --git a/doc/_images/fix_ti_rs_function_2.jpg b/doc/_images/fix_ti_rs_function_2.jpg
deleted file mode 100644
index 4fbfe45c6..000000000
Binary files a/doc/_images/fix_ti_rs_function_2.jpg and /dev/null differ
diff --git a/doc/_images/fix_ti_rs_function_3.jpg b/doc/_images/fix_ti_rs_function_3.jpg
deleted file mode 100644
index 94ab0f468..000000000
Binary files a/doc/_images/fix_ti_rs_function_3.jpg and /dev/null differ
diff --git a/doc/_images/fix_ti_spring_force.jpg b/doc/_images/fix_ti_spring_force.jpg
deleted file mode 100644
index 347102b3e..000000000
Binary files a/doc/_images/fix_ti_spring_force.jpg and /dev/null differ
diff --git a/doc/_images/fix_ti_spring_function_1.jpg b/doc/_images/fix_ti_spring_function_1.jpg
deleted file mode 100644
index 8d3c9a78e..000000000
Binary files a/doc/_images/fix_ti_spring_function_1.jpg and /dev/null differ
diff --git a/doc/_images/fix_ti_spring_function_2.jpg b/doc/_images/fix_ti_spring_function_2.jpg
deleted file mode 100644
index 96a17e63e..000000000
Binary files a/doc/_images/fix_ti_spring_function_2.jpg and /dev/null differ
diff --git a/doc/_images/fix_ttm.jpg b/doc/_images/fix_ttm.jpg
deleted file mode 100644
index 8d9fac3fe..000000000
Binary files a/doc/_images/fix_ttm.jpg and /dev/null differ
diff --git a/doc/_images/fix_ttm_blast.jpg b/doc/_images/fix_ttm_blast.jpg
deleted file mode 100644
index d4ffe05f1..000000000
Binary files a/doc/_images/fix_ttm_blast.jpg and /dev/null differ
diff --git a/doc/_images/fix_ttm_blast1.jpg b/doc/_images/fix_ttm_blast1.jpg
deleted file mode 100644
index 1106c627c..000000000
Binary files a/doc/_images/fix_ttm_blast1.jpg and /dev/null differ
diff --git a/doc/_images/fix_ttm_ce.jpg b/doc/_images/fix_ttm_ce.jpg
deleted file mode 100644
index 4f439e31e..000000000
Binary files a/doc/_images/fix_ttm_ce.jpg and /dev/null differ
diff --git a/doc/_images/fix_ttm_mod.jpg b/doc/_images/fix_ttm_mod.jpg
deleted file mode 100644
index 7cc67200f..000000000
Binary files a/doc/_images/fix_ttm_mod.jpg and /dev/null differ
diff --git a/doc/_images/fix_wall_colloid.jpg b/doc/_images/fix_wall_colloid.jpg
deleted file mode 100644
index 8168d3a79..000000000
Binary files a/doc/_images/fix_wall_colloid.jpg and /dev/null differ
diff --git a/doc/_images/fix_wall_harmonic.jpg b/doc/_images/fix_wall_harmonic.jpg
deleted file mode 100644
index 3c605690c..000000000
Binary files a/doc/_images/fix_wall_harmonic.jpg and /dev/null differ
diff --git a/doc/_images/fix_wall_lj1043.jpg b/doc/_images/fix_wall_lj1043.jpg
deleted file mode 100644
index 303743bf3..000000000
Binary files a/doc/_images/fix_wall_lj1043.jpg and /dev/null differ
diff --git a/doc/_images/fix_wall_lj93.jpg b/doc/_images/fix_wall_lj93.jpg
deleted file mode 100644
index 18e502cfb..000000000
Binary files a/doc/_images/fix_wall_lj93.jpg and /dev/null differ
diff --git a/doc/_images/fld.jpg b/doc/_images/fld.jpg
deleted file mode 100644
index 3d80d436f..000000000
Binary files a/doc/_images/fld.jpg and /dev/null differ
diff --git a/doc/_images/fld2.jpg b/doc/_images/fld2.jpg
deleted file mode 100644
index 42de943c9..000000000
Binary files a/doc/_images/fld2.jpg and /dev/null differ
diff --git a/doc/_images/heat_flux_J.jpg b/doc/_images/heat_flux_J.jpg
deleted file mode 100644
index cf3e220ca..000000000
Binary files a/doc/_images/heat_flux_J.jpg and /dev/null differ
diff --git a/doc/_images/heat_flux_k.jpg b/doc/_images/heat_flux_k.jpg
deleted file mode 100644
index 2fd4a19e5..000000000
Binary files a/doc/_images/heat_flux_k.jpg and /dev/null differ
diff --git a/doc/_images/hexorder.jpg b/doc/_images/hexorder.jpg
deleted file mode 100644
index dafa25cab..000000000
Binary files a/doc/_images/hexorder.jpg and /dev/null differ
diff --git a/doc/_images/hop1.jpg b/doc/_images/hop1.jpg
deleted file mode 100644
index cc0f2dbf5..000000000
Binary files a/doc/_images/hop1.jpg and /dev/null differ
diff --git a/doc/_images/hop2.jpg b/doc/_images/hop2.jpg
deleted file mode 100644
index 579e7d87e..000000000
Binary files a/doc/_images/hop2.jpg and /dev/null differ
diff --git a/doc/_images/improper_class2.jpg b/doc/_images/improper_class2.jpg
deleted file mode 100644
index ca0604f8d..000000000
Binary files a/doc/_images/improper_class2.jpg and /dev/null differ
diff --git a/doc/_images/improper_cossq.jpg b/doc/_images/improper_cossq.jpg
deleted file mode 100644
index bddcb3d86..000000000
Binary files a/doc/_images/improper_cossq.jpg and /dev/null differ
diff --git a/doc/_images/improper_cvff.jpg b/doc/_images/improper_cvff.jpg
deleted file mode 100644
index 14be3ffa0..000000000
Binary files a/doc/_images/improper_cvff.jpg and /dev/null differ
diff --git a/doc/_images/improper_dist-1.jpg b/doc/_images/improper_dist-1.jpg
deleted file mode 100644
index aeb761bfb..000000000
Binary files a/doc/_images/improper_dist-1.jpg and /dev/null differ
diff --git a/doc/_images/improper_distance.jpg b/doc/_images/improper_distance.jpg
deleted file mode 100644
index ce58436b6..000000000
Binary files a/doc/_images/improper_distance.jpg and /dev/null differ
diff --git a/doc/_images/improper_fourier.jpg b/doc/_images/improper_fourier.jpg
deleted file mode 100644
index 0a1b13baf..000000000
Binary files a/doc/_images/improper_fourier.jpg and /dev/null differ
diff --git a/doc/_images/improper_harmonic.jpg b/doc/_images/improper_harmonic.jpg
deleted file mode 100644
index c2c1eb466..000000000
Binary files a/doc/_images/improper_harmonic.jpg and /dev/null differ
diff --git a/doc/_images/improper_ring.jpg b/doc/_images/improper_ring.jpg
deleted file mode 100644
index 81a79f7ce..000000000
Binary files a/doc/_images/improper_ring.jpg and /dev/null differ
diff --git a/doc/_images/improper_umbrella.jpg b/doc/_images/improper_umbrella.jpg
deleted file mode 100644
index 8d6cbf81e..000000000
Binary files a/doc/_images/improper_umbrella.jpg and /dev/null differ
diff --git a/doc/_images/lj_soft.jpg b/doc/_images/lj_soft.jpg
deleted file mode 100644
index 47c6a04b9..000000000
Binary files a/doc/_images/lj_soft.jpg and /dev/null differ
diff --git a/doc/_images/min_energy.jpg b/doc/_images/min_energy.jpg
deleted file mode 100644
index 7925d268a..000000000
Binary files a/doc/_images/min_energy.jpg and /dev/null differ
diff --git a/doc/_images/orientorder.jpg b/doc/_images/orientorder.jpg
deleted file mode 100644
index 5ec79964f..000000000
Binary files a/doc/_images/orientorder.jpg and /dev/null differ
diff --git a/doc/_images/pair_adp.jpg b/doc/_images/pair_adp.jpg
deleted file mode 100644
index accae4716..000000000
Binary files a/doc/_images/pair_adp.jpg and /dev/null differ
diff --git a/doc/_images/pair_airebo.jpg b/doc/_images/pair_airebo.jpg
deleted file mode 100644
index a3259879f..000000000
Binary files a/doc/_images/pair_airebo.jpg and /dev/null differ
diff --git a/doc/_images/pair_beck.jpg b/doc/_images/pair_beck.jpg
deleted file mode 100644
index a6da8a87d..000000000
Binary files a/doc/_images/pair_beck.jpg and /dev/null differ
diff --git a/doc/_images/pair_bop.jpg b/doc/_images/pair_bop.jpg
deleted file mode 100644
index d1fbb14b0..000000000
Binary files a/doc/_images/pair_bop.jpg and /dev/null differ
diff --git a/doc/_images/pair_born.jpg b/doc/_images/pair_born.jpg
deleted file mode 100644
index 5e6b6a729..000000000
Binary files a/doc/_images/pair_born.jpg and /dev/null differ
diff --git a/doc/_images/pair_buck.jpg b/doc/_images/pair_buck.jpg
deleted file mode 100644
index aaa5f7659..000000000
Binary files a/doc/_images/pair_buck.jpg and /dev/null differ
diff --git a/doc/_images/pair_charmm.jpg b/doc/_images/pair_charmm.jpg
deleted file mode 100644
index 7d6c709ce..000000000
Binary files a/doc/_images/pair_charmm.jpg and /dev/null differ
diff --git a/doc/_images/pair_class2.jpg b/doc/_images/pair_class2.jpg
deleted file mode 100644
index abec072e7..000000000
Binary files a/doc/_images/pair_class2.jpg and /dev/null differ
diff --git a/doc/_images/pair_cmm.jpg b/doc/_images/pair_cmm.jpg
deleted file mode 100644
index 1ec60f730..000000000
Binary files a/doc/_images/pair_cmm.jpg and /dev/null differ
diff --git a/doc/_images/pair_colloid_cc.jpg b/doc/_images/pair_colloid_cc.jpg
deleted file mode 100644
index a64094dda..000000000
Binary files a/doc/_images/pair_colloid_cc.jpg and /dev/null differ
diff --git a/doc/_images/pair_colloid_cs.jpg b/doc/_images/pair_colloid_cs.jpg
deleted file mode 100644
index 8f5948fa5..000000000
Binary files a/doc/_images/pair_colloid_cs.jpg and /dev/null differ
diff --git a/doc/_images/pair_colloid_ss.jpg b/doc/_images/pair_colloid_ss.jpg
deleted file mode 100644
index 4ce19ba1e..000000000
Binary files a/doc/_images/pair_colloid_ss.jpg and /dev/null differ
diff --git a/doc/_images/pair_comb1.jpg b/doc/_images/pair_comb1.jpg
deleted file mode 100644
index e0711ca97..000000000
Binary files a/doc/_images/pair_comb1.jpg and /dev/null differ
diff --git a/doc/_images/pair_comb2.jpg b/doc/_images/pair_comb2.jpg
deleted file mode 100644
index 8b0e5ba51..000000000
Binary files a/doc/_images/pair_comb2.jpg and /dev/null differ
diff --git a/doc/_images/pair_coul_diel.jpg b/doc/_images/pair_coul_diel.jpg
deleted file mode 100644
index 70cb84f7a..000000000
Binary files a/doc/_images/pair_coul_diel.jpg and /dev/null differ
diff --git a/doc/_images/pair_coul_dsf.jpg b/doc/_images/pair_coul_dsf.jpg
deleted file mode 100644
index a891b3ad1..000000000
Binary files a/doc/_images/pair_coul_dsf.jpg and /dev/null differ
diff --git a/doc/_images/pair_coul_soft.jpg b/doc/_images/pair_coul_soft.jpg
deleted file mode 100644
index dad9c745b..000000000
Binary files a/doc/_images/pair_coul_soft.jpg and /dev/null differ
diff --git a/doc/_images/pair_coul_wolf.jpg b/doc/_images/pair_coul_wolf.jpg
deleted file mode 100644
index fd64cb6c0..000000000
Binary files a/doc/_images/pair_coul_wolf.jpg and /dev/null differ
diff --git a/doc/_images/pair_coulomb.jpg b/doc/_images/pair_coulomb.jpg
deleted file mode 100644
index 39aaebac3..000000000
Binary files a/doc/_images/pair_coulomb.jpg and /dev/null differ
diff --git a/doc/_images/pair_cs.jpg b/doc/_images/pair_cs.jpg
deleted file mode 100644
index b870a3bdf..000000000
Binary files a/doc/_images/pair_cs.jpg and /dev/null differ
diff --git a/doc/_images/pair_debye.jpg b/doc/_images/pair_debye.jpg
deleted file mode 100644
index 42bcb5cc6..000000000
Binary files a/doc/_images/pair_debye.jpg and /dev/null differ
diff --git a/doc/_images/pair_dipole.jpg b/doc/_images/pair_dipole.jpg
deleted file mode 100644
index e106c17c9..000000000
Binary files a/doc/_images/pair_dipole.jpg and /dev/null differ
diff --git a/doc/_images/pair_dipole_sf.jpg b/doc/_images/pair_dipole_sf.jpg
deleted file mode 100644
index c59153455..000000000
Binary files a/doc/_images/pair_dipole_sf.jpg and /dev/null differ
diff --git a/doc/_images/pair_dipole_sf2.jpg b/doc/_images/pair_dipole_sf2.jpg
deleted file mode 100644
index b9e57becf..000000000
Binary files a/doc/_images/pair_dipole_sf2.jpg and /dev/null differ
diff --git a/doc/_images/pair_dpd.jpg b/doc/_images/pair_dpd.jpg
deleted file mode 100644
index e9bb8a69a..000000000
Binary files a/doc/_images/pair_dpd.jpg and /dev/null differ
diff --git a/doc/_images/pair_dpd_conservative.jpg b/doc/_images/pair_dpd_conservative.jpg
deleted file mode 100644
index aa0006caa..000000000
Binary files a/doc/_images/pair_dpd_conservative.jpg and /dev/null differ
diff --git a/doc/_images/pair_dpd_omega.jpg b/doc/_images/pair_dpd_omega.jpg
deleted file mode 100644
index fd25f00f1..000000000
Binary files a/doc/_images/pair_dpd_omega.jpg and /dev/null differ
diff --git a/doc/_images/pair_eam.jpg b/doc/_images/pair_eam.jpg
deleted file mode 100644
index 95c86b4ce..000000000
Binary files a/doc/_images/pair_eam.jpg and /dev/null differ
diff --git a/doc/_images/pair_eam_fs.jpg b/doc/_images/pair_eam_fs.jpg
deleted file mode 100644
index fa72f8fc7..000000000
Binary files a/doc/_images/pair_eam_fs.jpg and /dev/null differ
diff --git a/doc/_images/pair_edip.jpg b/doc/_images/pair_edip.jpg
deleted file mode 100644
index 393328048..000000000
Binary files a/doc/_images/pair_edip.jpg and /dev/null differ
diff --git a/doc/_images/pair_eim1.jpg b/doc/_images/pair_eim1.jpg
deleted file mode 100644
index c243120b2..000000000
Binary files a/doc/_images/pair_eim1.jpg and /dev/null differ
diff --git a/doc/_images/pair_eim2.jpg b/doc/_images/pair_eim2.jpg
deleted file mode 100644
index 4896f658f..000000000
Binary files a/doc/_images/pair_eim2.jpg and /dev/null differ
diff --git a/doc/_images/pair_eim3.jpg b/doc/_images/pair_eim3.jpg
deleted file mode 100644
index 57366bc15..000000000
Binary files a/doc/_images/pair_eim3.jpg and /dev/null differ
diff --git a/doc/_images/pair_gauss.jpg b/doc/_images/pair_gauss.jpg
deleted file mode 100644
index 97c2f0ecb..000000000
Binary files a/doc/_images/pair_gauss.jpg and /dev/null differ
diff --git a/doc/_images/pair_gauss_cut.jpg b/doc/_images/pair_gauss_cut.jpg
deleted file mode 100644
index e47bb8cc0..000000000
Binary files a/doc/_images/pair_gauss_cut.jpg and /dev/null differ
diff --git a/doc/_images/pair_gayberne.jpg b/doc/_images/pair_gayberne.jpg
deleted file mode 100644
index e9b1f3ca9..000000000
Binary files a/doc/_images/pair_gayberne.jpg and /dev/null differ
diff --git a/doc/_images/pair_gayberne2.jpg b/doc/_images/pair_gayberne2.jpg
deleted file mode 100644
index a4e6c6f70..000000000
Binary files a/doc/_images/pair_gayberne2.jpg and /dev/null differ
diff --git a/doc/_images/pair_gran_hertz.jpg b/doc/_images/pair_gran_hertz.jpg
deleted file mode 100644
index 733875fee..000000000
Binary files a/doc/_images/pair_gran_hertz.jpg and /dev/null differ
diff --git a/doc/_images/pair_gran_hooke.jpg b/doc/_images/pair_gran_hooke.jpg
deleted file mode 100644
index 36f34db6c..000000000
Binary files a/doc/_images/pair_gran_hooke.jpg and /dev/null differ
diff --git a/doc/_images/pair_gromacs.jpg b/doc/_images/pair_gromacs.jpg
deleted file mode 100644
index 885c059e6..000000000
Binary files a/doc/_images/pair_gromacs.jpg and /dev/null differ
diff --git a/doc/_images/pair_hbond_dreiding.jpg b/doc/_images/pair_hbond_dreiding.jpg
deleted file mode 100644
index b93044ed3..000000000
Binary files a/doc/_images/pair_hbond_dreiding.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj.jpg b/doc/_images/pair_lj.jpg
deleted file mode 100644
index 49cf7f5eb..000000000
Binary files a/doc/_images/pair_lj.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj96.jpg b/doc/_images/pair_lj96.jpg
deleted file mode 100644
index 6462de180..000000000
Binary files a/doc/_images/pair_lj96.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj_cubic.jpg b/doc/_images/pair_lj_cubic.jpg
deleted file mode 100644
index 69ec4f6e8..000000000
Binary files a/doc/_images/pair_lj_cubic.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj_expand.jpg b/doc/_images/pair_lj_expand.jpg
deleted file mode 100644
index e27481889..000000000
Binary files a/doc/_images/pair_lj_expand.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj_sf.jpg b/doc/_images/pair_lj_sf.jpg
deleted file mode 100644
index a70224000..000000000
Binary files a/doc/_images/pair_lj_sf.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj_smooth.jpg b/doc/_images/pair_lj_smooth.jpg
deleted file mode 100644
index d380fd345..000000000
Binary files a/doc/_images/pair_lj_smooth.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj_smooth_linear.jpg b/doc/_images/pair_lj_smooth_linear.jpg
deleted file mode 100644
index b0626abae..000000000
Binary files a/doc/_images/pair_lj_smooth_linear.jpg and /dev/null differ
diff --git a/doc/_images/pair_lj_soft.jpg b/doc/_images/pair_lj_soft.jpg
deleted file mode 100644
index 856d6d5bb..000000000
Binary files a/doc/_images/pair_lj_soft.jpg and /dev/null differ
diff --git a/doc/_images/pair_lubricate.jpg b/doc/_images/pair_lubricate.jpg
deleted file mode 100644
index 560591765..000000000
Binary files a/doc/_images/pair_lubricate.jpg and /dev/null differ
diff --git a/doc/_images/pair_mdf-1.jpg b/doc/_images/pair_mdf-1.jpg
deleted file mode 100644
index fb0d9d644..000000000
Binary files a/doc/_images/pair_mdf-1.jpg and /dev/null differ
diff --git a/doc/_images/pair_mdf-2.jpg b/doc/_images/pair_mdf-2.jpg
deleted file mode 100644
index ae6358e5c..000000000
Binary files a/doc/_images/pair_mdf-2.jpg and /dev/null differ
diff --git a/doc/_images/pair_mdf-3.jpg b/doc/_images/pair_mdf-3.jpg
deleted file mode 100644
index 45a1a68e0..000000000
Binary files a/doc/_images/pair_mdf-3.jpg and /dev/null differ
diff --git a/doc/_images/pair_mdf-4.jpg b/doc/_images/pair_mdf-4.jpg
deleted file mode 100644
index 05d08c01a..000000000
Binary files a/doc/_images/pair_mdf-4.jpg and /dev/null differ
diff --git a/doc/_images/pair_mdf-5.jpg b/doc/_images/pair_mdf-5.jpg
deleted file mode 100644
index 9e047a50a..000000000
Binary files a/doc/_images/pair_mdf-5.jpg and /dev/null differ
diff --git a/doc/_images/pair_mdf-6.jpg b/doc/_images/pair_mdf-6.jpg
deleted file mode 100644
index 54a08b25d..000000000
Binary files a/doc/_images/pair_mdf-6.jpg and /dev/null differ
diff --git a/doc/_images/pair_meam.jpg b/doc/_images/pair_meam.jpg
deleted file mode 100644
index f6de50a99..000000000
Binary files a/doc/_images/pair_meam.jpg and /dev/null differ
diff --git a/doc/_images/pair_meam_spline.jpg b/doc/_images/pair_meam_spline.jpg
deleted file mode 100644
index 29f1c7254..000000000
Binary files a/doc/_images/pair_meam_spline.jpg and /dev/null differ
diff --git a/doc/_images/pair_meam_sw_spline.jpg b/doc/_images/pair_meam_sw_spline.jpg
deleted file mode 100644
index 80078999d..000000000
Binary files a/doc/_images/pair_meam_sw_spline.jpg and /dev/null differ
diff --git a/doc/_images/pair_mgpt.jpg b/doc/_images/pair_mgpt.jpg
deleted file mode 100644
index 2bede7f90..000000000
Binary files a/doc/_images/pair_mgpt.jpg and /dev/null differ
diff --git a/doc/_images/pair_mie.jpg b/doc/_images/pair_mie.jpg
deleted file mode 100644
index 05a8221a9..000000000
Binary files a/doc/_images/pair_mie.jpg and /dev/null differ
diff --git a/doc/_images/pair_mie2.jpg b/doc/_images/pair_mie2.jpg
deleted file mode 100644
index 216ca1554..000000000
Binary files a/doc/_images/pair_mie2.jpg and /dev/null differ
diff --git a/doc/_images/pair_morse.jpg b/doc/_images/pair_morse.jpg
deleted file mode 100644
index 5ebcdb2e1..000000000
Binary files a/doc/_images/pair_morse.jpg and /dev/null differ
diff --git a/doc/_images/pair_morse_smooth_linear.jpg b/doc/_images/pair_morse_smooth_linear.jpg
deleted file mode 100644
index b95102360..000000000
Binary files a/doc/_images/pair_morse_smooth_linear.jpg and /dev/null differ
diff --git a/doc/_images/pair_nb3b_harmonic.jpg b/doc/_images/pair_nb3b_harmonic.jpg
deleted file mode 100644
index c8d23da04..000000000
Binary files a/doc/_images/pair_nb3b_harmonic.jpg and /dev/null differ
diff --git a/doc/_images/pair_nm.jpg b/doc/_images/pair_nm.jpg
deleted file mode 100644
index 1e7fe0981..000000000
Binary files a/doc/_images/pair_nm.jpg and /dev/null differ
diff --git a/doc/_images/pair_resquared.jpg b/doc/_images/pair_resquared.jpg
deleted file mode 100644
index c290c68df..000000000
Binary files a/doc/_images/pair_resquared.jpg and /dev/null differ
diff --git a/doc/_images/pair_resquared2.jpg b/doc/_images/pair_resquared2.jpg
deleted file mode 100644
index d2ed21a62..000000000
Binary files a/doc/_images/pair_resquared2.jpg and /dev/null differ
diff --git a/doc/_images/pair_resquared3.jpg b/doc/_images/pair_resquared3.jpg
deleted file mode 100644
index 3916062a1..000000000
Binary files a/doc/_images/pair_resquared3.jpg and /dev/null differ
diff --git a/doc/_images/pair_resquared4.jpg b/doc/_images/pair_resquared4.jpg
deleted file mode 100644
index 79ad067fa..000000000
Binary files a/doc/_images/pair_resquared4.jpg and /dev/null differ
diff --git a/doc/_images/pair_smtbq1.jpg b/doc/_images/pair_smtbq1.jpg
deleted file mode 100644
index 6bfb07b77..000000000
Binary files a/doc/_images/pair_smtbq1.jpg and /dev/null differ
diff --git a/doc/_images/pair_smtbq2.jpg b/doc/_images/pair_smtbq2.jpg
deleted file mode 100644
index 0e2024878..000000000
Binary files a/doc/_images/pair_smtbq2.jpg and /dev/null differ
diff --git a/doc/_images/pair_smtbq3.jpg b/doc/_images/pair_smtbq3.jpg
deleted file mode 100644
index 1d6045916..000000000
Binary files a/doc/_images/pair_smtbq3.jpg and /dev/null differ
diff --git a/doc/_images/pair_snap.jpg b/doc/_images/pair_snap.jpg
deleted file mode 100644
index af48357b5..000000000
Binary files a/doc/_images/pair_snap.jpg and /dev/null differ
diff --git a/doc/_images/pair_soft.jpg b/doc/_images/pair_soft.jpg
deleted file mode 100644
index e8a654e1e..000000000
Binary files a/doc/_images/pair_soft.jpg and /dev/null differ
diff --git a/doc/_images/pair_sph_ideal.jpg b/doc/_images/pair_sph_ideal.jpg
deleted file mode 100644
index 370b75fe9..000000000
Binary files a/doc/_images/pair_sph_ideal.jpg and /dev/null differ
diff --git a/doc/_images/pair_sph_tait.jpg b/doc/_images/pair_sph_tait.jpg
deleted file mode 100644
index 8bbfe8051..000000000
Binary files a/doc/_images/pair_sph_tait.jpg and /dev/null differ
diff --git a/doc/_images/pair_srp1.jpg b/doc/_images/pair_srp1.jpg
deleted file mode 100644
index bbbdc43e0..000000000
Binary files a/doc/_images/pair_srp1.jpg and /dev/null differ
diff --git a/doc/_images/pair_srp2.jpg b/doc/_images/pair_srp2.jpg
deleted file mode 100644
index c5d20dc21..000000000
Binary files a/doc/_images/pair_srp2.jpg and /dev/null differ
diff --git a/doc/_images/pair_sw.jpg b/doc/_images/pair_sw.jpg
deleted file mode 100644
index f60f07fd2..000000000
Binary files a/doc/_images/pair_sw.jpg and /dev/null differ
diff --git a/doc/_images/pair_tersoff_1.jpg b/doc/_images/pair_tersoff_1.jpg
deleted file mode 100644
index 79600b499..000000000
Binary files a/doc/_images/pair_tersoff_1.jpg and /dev/null differ
diff --git a/doc/_images/pair_tersoff_2.jpg b/doc/_images/pair_tersoff_2.jpg
deleted file mode 100644
index 6cb8778a0..000000000
Binary files a/doc/_images/pair_tersoff_2.jpg and /dev/null differ
diff --git a/doc/_images/pair_tersoff_mod.jpg b/doc/_images/pair_tersoff_mod.jpg
deleted file mode 100644
index 2618943d8..000000000
Binary files a/doc/_images/pair_tersoff_mod.jpg and /dev/null differ
diff --git a/doc/_images/pair_tersoff_zbl.jpg b/doc/_images/pair_tersoff_zbl.jpg
deleted file mode 100644
index 20d60d225..000000000
Binary files a/doc/_images/pair_tersoff_zbl.jpg and /dev/null differ
diff --git a/doc/_images/pair_vashishta.jpg b/doc/_images/pair_vashishta.jpg
deleted file mode 100644
index ca5f118a8..000000000
Binary files a/doc/_images/pair_vashishta.jpg and /dev/null differ
diff --git a/doc/_images/pair_yukawa.jpg b/doc/_images/pair_yukawa.jpg
deleted file mode 100644
index 103edc604..000000000
Binary files a/doc/_images/pair_yukawa.jpg and /dev/null differ
diff --git a/doc/_images/pair_yukawa_colloid.jpg b/doc/_images/pair_yukawa_colloid.jpg
deleted file mode 100644
index 1d8362475..000000000
Binary files a/doc/_images/pair_yukawa_colloid.jpg and /dev/null differ
diff --git a/doc/_images/pair_zbl.jpg b/doc/_images/pair_zbl.jpg
deleted file mode 100644
index 88656af5e..000000000
Binary files a/doc/_images/pair_zbl.jpg and /dev/null differ
diff --git a/doc/_images/pimd.jpg b/doc/_images/pimd.jpg
deleted file mode 100644
index f26764e60..000000000
Binary files a/doc/_images/pimd.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic1.jpg b/doc/_images/polymorphic1.jpg
deleted file mode 100644
index 4757cb7ad..000000000
Binary files a/doc/_images/polymorphic1.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic2.jpg b/doc/_images/polymorphic2.jpg
deleted file mode 100644
index 05133f484..000000000
Binary files a/doc/_images/polymorphic2.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic3.jpg b/doc/_images/polymorphic3.jpg
deleted file mode 100644
index ba748e63c..000000000
Binary files a/doc/_images/polymorphic3.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic4.jpg b/doc/_images/polymorphic4.jpg
deleted file mode 100644
index 7a094d6a2..000000000
Binary files a/doc/_images/polymorphic4.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic5.jpg b/doc/_images/polymorphic5.jpg
deleted file mode 100644
index 500238b2a..000000000
Binary files a/doc/_images/polymorphic5.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic6.jpg b/doc/_images/polymorphic6.jpg
deleted file mode 100644
index 65ea78bf2..000000000
Binary files a/doc/_images/polymorphic6.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic7.jpg b/doc/_images/polymorphic7.jpg
deleted file mode 100644
index 0749d537d..000000000
Binary files a/doc/_images/polymorphic7.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic8.jpg b/doc/_images/polymorphic8.jpg
deleted file mode 100644
index f88d486a5..000000000
Binary files a/doc/_images/polymorphic8.jpg and /dev/null differ
diff --git a/doc/_images/polymorphic9.jpg b/doc/_images/polymorphic9.jpg
deleted file mode 100644
index e538487c9..000000000
Binary files a/doc/_images/polymorphic9.jpg and /dev/null differ
diff --git a/doc/_images/pressure.jpg b/doc/_images/pressure.jpg
deleted file mode 100644
index 0ed674775..000000000
Binary files a/doc/_images/pressure.jpg and /dev/null differ
diff --git a/doc/_images/pressure_tensor.jpg b/doc/_images/pressure_tensor.jpg
deleted file mode 100644
index b5abf0ce4..000000000
Binary files a/doc/_images/pressure_tensor.jpg and /dev/null differ
diff --git a/doc/_images/qbmsst_init.jpg b/doc/_images/qbmsst_init.jpg
deleted file mode 100644
index ab1baea98..000000000
Binary files a/doc/_images/qbmsst_init.jpg and /dev/null differ
diff --git a/doc/_images/qbmsst_shock.jpg b/doc/_images/qbmsst_shock.jpg
deleted file mode 100644
index b4e663fd8..000000000
Binary files a/doc/_images/qbmsst_shock.jpg and /dev/null differ
diff --git a/doc/_images/rhodo_staggered.jpg b/doc/_images/rhodo_staggered.jpg
deleted file mode 100644
index 423c0f2c4..000000000
Binary files a/doc/_images/rhodo_staggered.jpg and /dev/null differ
diff --git a/doc/_images/rotate.jpg b/doc/_images/rotate.jpg
deleted file mode 100644
index 42b46bfa9..000000000
Binary files a/doc/_images/rotate.jpg and /dev/null differ
diff --git a/doc/_images/saed_ewald_intersect.jpg b/doc/_images/saed_ewald_intersect.jpg
deleted file mode 100644
index a1ab118bd..000000000
Binary files a/doc/_images/saed_ewald_intersect.jpg and /dev/null differ
diff --git a/doc/_images/saed_mesh.jpg b/doc/_images/saed_mesh.jpg
deleted file mode 100644
index 7b0bf4117..000000000
Binary files a/doc/_images/saed_mesh.jpg and /dev/null differ
diff --git a/doc/_images/screenshot_atomeye.jpg b/doc/_images/screenshot_atomeye.jpg
deleted file mode 100644
index a9d53ff80..000000000
Binary files a/doc/_images/screenshot_atomeye.jpg and /dev/null differ
diff --git a/doc/_images/screenshot_gl.jpg b/doc/_images/screenshot_gl.jpg
deleted file mode 100644
index 218bb8404..000000000
Binary files a/doc/_images/screenshot_gl.jpg and /dev/null differ
diff --git a/doc/_images/screenshot_pymol.jpg b/doc/_images/screenshot_pymol.jpg
deleted file mode 100644
index 0e30ae152..000000000
Binary files a/doc/_images/screenshot_pymol.jpg and /dev/null differ
diff --git a/doc/_images/screenshot_vmd.jpg b/doc/_images/screenshot_vmd.jpg
deleted file mode 100644
index 9a881e10c..000000000
Binary files a/doc/_images/screenshot_vmd.jpg and /dev/null differ
diff --git a/doc/_images/sinusoid.jpg b/doc/_images/sinusoid.jpg
deleted file mode 100644
index 00969281a..000000000
Binary files a/doc/_images/sinusoid.jpg and /dev/null differ
diff --git a/doc/_images/stress_tensor.jpg b/doc/_images/stress_tensor.jpg
deleted file mode 100644
index a62d6aa97..000000000
Binary files a/doc/_images/stress_tensor.jpg and /dev/null differ
diff --git a/doc/_images/transform.jpg b/doc/_images/transform.jpg
deleted file mode 100644
index 4c591c4f9..000000000
Binary files a/doc/_images/transform.jpg and /dev/null differ
diff --git a/doc/_images/tutorial_branch.png b/doc/_images/tutorial_branch.png
deleted file mode 100644
index 0c6d2c088..000000000
Binary files a/doc/_images/tutorial_branch.png and /dev/null differ
diff --git a/doc/_images/tutorial_fork.png b/doc/_images/tutorial_fork.png
deleted file mode 100644
index f22db9711..000000000
Binary files a/doc/_images/tutorial_fork.png and /dev/null differ
diff --git a/doc/_images/tutorial_https_block.png b/doc/_images/tutorial_https_block.png
deleted file mode 100644
index ffa452368..000000000
Binary files a/doc/_images/tutorial_https_block.png and /dev/null differ
diff --git a/doc/_images/tutorial_merged.png b/doc/_images/tutorial_merged.png
deleted file mode 100644
index d3961afae..000000000
Binary files a/doc/_images/tutorial_merged.png and /dev/null differ
diff --git a/doc/_images/tutorial_pull_request2.png b/doc/_images/tutorial_pull_request2.png
deleted file mode 100644
index 44ef92a34..000000000
Binary files a/doc/_images/tutorial_pull_request2.png and /dev/null differ
diff --git a/doc/_images/tutorial_pull_request3.png b/doc/_images/tutorial_pull_request3.png
deleted file mode 100644
index d2bda96e9..000000000
Binary files a/doc/_images/tutorial_pull_request3.png and /dev/null differ
diff --git a/doc/_images/tutorial_pull_request4.png b/doc/_images/tutorial_pull_request4.png
deleted file mode 100644
index 120e5638b..000000000
Binary files a/doc/_images/tutorial_pull_request4.png and /dev/null differ
diff --git a/doc/_images/tutorial_pull_request_feature_branch1.png b/doc/_images/tutorial_pull_request_feature_branch1.png
deleted file mode 100644
index 91b27060b..000000000
Binary files a/doc/_images/tutorial_pull_request_feature_branch1.png and /dev/null differ
diff --git a/doc/_images/umbrella.jpg b/doc/_images/umbrella.jpg
deleted file mode 100644
index 5783b54ea..000000000
Binary files a/doc/_images/umbrella.jpg and /dev/null differ
diff --git a/doc/_images/xrd_mesh.jpg b/doc/_images/xrd_mesh.jpg
deleted file mode 100644
index 677234caa..000000000
Binary files a/doc/_images/xrd_mesh.jpg and /dev/null differ
diff --git a/doc/_sources/Manual.txt b/doc/_sources/Manual.txt
deleted file mode 100644
index affa23bf2..000000000
--- a/doc/_sources/Manual.txt
+++ /dev/null
@@ -1,104 +0,0 @@
-.. raw:: html
-
- <H1></H1>
-
-LAMMPS Documentation
-====================
-
-3 May 2016 version
-------------------
-
-Version info:
--------------
-
-The LAMMPS "version" is the date when it was released, such as 1 May
-2010. LAMMPS is updated continuously. Whenever we fix a bug or add a
-feature, we release it immediately, and post a notice on `this page of the WWW site <bug_>`_. Each dated copy of LAMMPS contains all the
-features and bug-fixes up to and including that version date. The
-version date is printed to the screen and logfile every time you run
-LAMMPS. It is also in the file src/version.h and in the LAMMPS
-directory name created when you unpack a tarball, and at the top of
-the first page of the manual (this page).
-
-* If you browse the HTML doc pages on the LAMMPS WWW site, they always
- describe the most current version of LAMMPS.
-* If you browse the HTML doc pages included in your tarball, they
- describe the version you have.
-* 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
- it to be part of every patch.
-* There is also a `Developer.pdf <Developer.pdf>`_ file in the doc
- directory, which describes the internal structure and algorithms of
- LAMMPS.
-LAMMPS stands for Large-scale Atomic/Molecular Massively Parallel
-Simulator.
-
-LAMMPS is a classical molecular dynamics simulation code designed to
-run efficiently on parallel computers. It was developed at Sandia
-National Laboratories, a US Department of Energy facility, with
-funding from the DOE. It is an open-source code, distributed freely
-under the terms of the GNU Public License (GPL).
-
-The primary developers of LAMMPS are `Steve Plimpton <sjp_>`_, Aidan
-Thompson, and Paul Crozier who can be contacted at
-sjplimp,athomps,pscrozi at sandia.gov. The `LAMMPS WWW Site <lws_>`_ at
-http://lammps.sandia.gov has more information about the code and its
-uses.
-
-.. _bug: http://lammps.sandia.gov/bug.html
-
-
-
-.. _sjp: http://www.sandia.gov/~sjplimp
-
-
-
-
-----------
-
-
-The LAMMPS documentation is organized into the following sections. If
-you find errors or omissions in this manual or have suggestions for
-useful information to add, please send an email to the developers so
-we can improve the LAMMPS documentation.
-
-Once you are familiar with LAMMPS, you may want to bookmark :ref:`this page <comm>` at Section_commands.html#comm since
-it gives quick access to documentation for all LAMMPS commands.
-
-`PDF file <Manual.pdf>`_ of the entire manual, generated by
-`htmldoc <http://freecode.com/projects/htmldoc>`_
-
-
-.. toctree::
- :maxdepth: 2
- :numbered:
-
- Section_intro
- Section_start
- Section_commands
- Section_packages
- Section_accelerate
- Section_howto
- Section_example
- Section_perf
- Section_tools
- Section_modify
- Section_python
- Section_errors
- Section_history
-
-
-Indices and tables
-==================
-
-* :ref:`genindex`
-* :ref:`search`
-
-.. raw:: html
-
- </BODY>
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_accelerate.txt b/doc/_sources/Section_accelerate.txt
deleted file mode 100644
index eaa5e34e9..000000000
--- a/doc/_sources/Section_accelerate.txt
+++ /dev/null
@@ -1,430 +0,0 @@
-Accelerating LAMMPS performance
-===============================
-
-This section describes various methods for improving LAMMPS
-performance for different classes of problems running on different
-kinds of machines.
-
-There are two thrusts to the discussion that follows. The
-first is using code options that implement alternate algorithms
-that can speed-up a simulation. The second is to use one
-of the several accelerator packages provided with LAMMPS that
-contain code optimized for certain kinds of hardware, including
-multi-core CPUs, GPUs, and Intel Xeon Phi coprocessors.
-
-* 5.1 :ref:`Measuring performance <acc_1>`
-* 5.2 :ref:`Algorithms and code options to boost performace <acc_2>`
-* 5.3 :ref:`Accelerator packages with optimized styles <acc_3>`
-* 5.3.1 :doc:`USER-CUDA package <accelerate_cuda>`
-* 5.3.2 :doc:`GPU package <accelerate_gpu>`
-* 5.3.3 :doc:`USER-INTEL package <accelerate_intel>`
-* 5.3.4 :doc:`KOKKOS package <accelerate_kokkos>`
-* 5.3.5 :doc:`USER-OMP package <accelerate_omp>`
-* 5.3.6 :doc:`OPT package <accelerate_opt>`
-* 5.4 :ref:`Comparison of various accelerator packages <acc_4>`
-The `Benchmark page <http://lammps.sandia.gov/bench.html>`_ of the LAMMPS
-web site gives performance results for the various accelerator
-packages discussed in Section 5.2, for several of the standard LAMMPS
-benchmark problems, as a function of problem size and number of
-compute nodes, on different hardware platforms.
-
-
-
-
-
-.. _acc_1:
-
-Measuring performance
----------------------------------
-
-Before trying to make your simulation run faster, you should
-understand how it currently performs and where the bottlenecks are.
-
-The best way to do this is run the your system (actual number of
-atoms) for a modest number of timesteps (say 100 steps) on several
-different processor counts, including a single processor if possible.
-Do this for an equilibrium version of your system, so that the
-100-step timings are representative of a much longer run. There is
-typically no need to run for 1000s of timesteps to get accurate
-timings; you can simply extrapolate from short runs.
-
-For the set of runs, look at the timing data printed to the screen and
-log file at the end of each LAMMPS run. :ref:`This section <start_8>` of the manual has an overview.
-
-Running on one (or a few processors) should give a good estimate of
-the serial performance and what portions of the timestep are taking
-the most time. Running the same problem on a few different processor
-counts should give an estimate of parallel scalability. I.e. if the
-simulation runs 16x faster on 16 processors, its 100% parallel
-efficient; if it runs 8x faster on 16 processors, it's 50% efficient.
-
-The most important data to look at in the timing info is the timing
-breakdown and relative percentages. For example, trying different
-options for speeding up the long-range solvers will have little impact
-if they only consume 10% of the run time. If the pairwise time is
-dominating, you may want to look at GPU or OMP versions of the pair
-style, as discussed below. Comparing how the percentages change as
-you increase the processor count gives you a sense of how different
-operations within the timestep are scaling. Note that if you are
-running with a Kspace solver, there is additional output on the
-breakdown of the Kspace time. For PPPM, this includes the fraction
-spent on FFTs, which can be communication intensive.
-
-Another important detail in the timing info are the histograms of
-atoms counts and neighbor counts. If these vary widely across
-processors, you have a load-imbalance issue. This often results in
-inaccurate relative timing data, because processors have to wait when
-communication occurs for other processors to catch up. Thus the
-reported times for "Communication" or "Other" may be higher than they
-really are, due to load-imbalance. If this is an issue, you can
-uncomment the MPI_Barrier() lines in src/timer.cpp, and recompile
-LAMMPS, to obtain synchronized timings.
-
-
-----------
-
-
-.. _acc_2:
-
-General strategies
-------------------------------
-
-.. note::
-
- this section 5.2 is still a work in progress
-
-Here is a list of general ideas for improving simulation performance.
-Most of them are only applicable to certain models and certain
-bottlenecks in the current performance, so let the timing data you
-generate be your guide. It is hard, if not impossible, to predict how
-much difference these options will make, since it is a function of
-problem size, number of processors used, and your machine. There is
-no substitute for identifying performance bottlenecks, and trying out
-various options.
-
-* rRESPA
-* 2-FFT PPPM
-* Staggered PPPM
-* single vs double PPPM
-* partial charge PPPM
-* verlet/split run style
-* processor command for proc layout and numa layout
-* load-balancing: balance and fix balance
-
-2-FFT PPPM, also called *analytic differentiation* or *ad* PPPM, uses
-2 FFTs instead of the 4 FFTs used by the default *ik differentiation*
-PPPM. However, 2-FFT PPPM also requires a slightly larger mesh size to
-achieve the same accuracy as 4-FFT PPPM. For problems where the FFT
-cost is the performance bottleneck (typically large problems running
-on many processors), 2-FFT PPPM may be faster than 4-FFT PPPM.
-
-Staggered PPPM performs calculations using two different meshes, one
-shifted slightly with respect to the other. This can reduce force
-aliasing errors and increase the accuracy of the method, but also
-doubles the amount of work required. For high relative accuracy, using
-staggered PPPM allows one to half the mesh size in each dimension as
-compared to regular PPPM, which can give around a 4x speedup in the
-kspace time. However, for low relative accuracy, using staggered PPPM
-gives little benefit and can be up to 2x slower in the kspace
-time. For example, the rhodopsin benchmark was run on a single
-processor, and results for kspace time vs. relative accuracy for the
-different methods are shown in the figure below. For this system,
-staggered PPPM (using ik differentiation) becomes useful when using a
-relative accuracy of slightly greater than 1e-5 and above.
-
-.. image:: JPG/rhodo_staggered.jpg
- :align: center
-
-.. note::
-
- Using staggered PPPM may not give the same increase in accuracy
- of energy and pressure as it does in forces, so some caution must be
- used if energy and/or pressure are quantities of interest, such as
- when using a barostat.
-
-
-----------
-
-
-.. _acc_3:
-
-Packages with optimized styles
-------------------------------------------
-
-Accelerated versions of various :doc:`pair_style <pair_style>`,
-:doc:`fixes <fix>`, :doc:`computes <compute>`, and other commands have
-been added to LAMMPS, which will typically run faster than the
-standard non-accelerated versions. Some require appropriate hardware
-to be present on your system, e.g. GPUs or Intel Xeon Phi
-coprocessors.
-
-All of these commands are in packages provided with LAMMPS. An
-overview of packages is give in :doc:`Section packages <Section_packages>`.
-
-These are the accelerator packages
-currently in LAMMPS, either as standard or user packages:
-
-+--------------------------------------+------------------------------------------------+
-| :doc:`USER-CUDA <accelerate_cuda>` | for NVIDIA GPUs |
-+--------------------------------------+------------------------------------------------+
-| :doc:`GPU <accelerate_gpu>` | for NVIDIA GPUs as well as OpenCL support |
-+--------------------------------------+------------------------------------------------+
-| :doc:`USER-INTEL <accelerate_intel>` | for Intel CPUs and Intel Xeon Phi |
-+--------------------------------------+------------------------------------------------+
-| :doc:`KOKKOS <accelerate_kokkos>` | for GPUs, Intel Xeon Phi, and OpenMP threading |
-+--------------------------------------+------------------------------------------------+
-| :doc:`USER-OMP <accelerate_omp>` | for OpenMP threading |
-+--------------------------------------+------------------------------------------------+
-| :doc:`OPT <accelerate_opt>` | generic CPU optimizations |
-+--------------------------------------+------------------------------------------------+
-
-Inverting this list, LAMMPS currently has acceleration support for
-three kinds of hardware, via the listed packages:
-
-+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
-| Many-core CPUs | :doc:`USER-INTEL <accelerate_intel>`, :doc:`KOKKOS <accelerate_kokkos>`, :doc:`USER-OMP <accelerate_omp>`, :doc:`OPT <accelerate_opt>` packages |
-+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
-| NVIDIA GPUs | :doc:`USER-CUDA <accelerate_cuda>`, :doc:`GPU <accelerate_gpu>`, :doc:`KOKKOS <accelerate_kokkos>` packages |
-+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
-| Intel Phi | :doc:`USER-INTEL <accelerate_intel>`, :doc:`KOKKOS <accelerate_kokkos>` packages |
-+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
-
-Which package is fastest for your hardware may depend on the size
-problem you are running and what commands (accelerated and
-non-accelerated) are invoked by your input script. While these doc
-pages include performance guidelines, there is no substitute for
-trying out the different packages appropriate to your hardware.
-
-Any accelerated style has the same name as the corresponding standard
-style, except that a suffix is appended. Otherwise, the syntax for
-the command that uses the style is identical, their functionality is
-the same, and the numerical results it produces should also be the
-same, except for precision and round-off effects.
-
-For example, all of these styles are accelerated variants of the
-Lennard-Jones :doc:`pair_style lj/cut <pair_lj>`:
-
-* :doc:`pair_style lj/cut/cuda <pair_lj>`
-* :doc:`pair_style lj/cut/gpu <pair_lj>`
-* :doc:`pair_style lj/cut/intel <pair_lj>`
-* :doc:`pair_style lj/cut/kk <pair_lj>`
-* :doc:`pair_style lj/cut/omp <pair_lj>`
-* :doc:`pair_style lj/cut/opt <pair_lj>`
-
-To see what accelerate styles are currently available, see
-:ref:`Section_commands 5 <cmd_5>` of the manual. The
-doc pages for individual commands (e.g. :doc:`pair lj/cut <pair_lj>` or
-:doc:`fix nve <fix_nve>`) also list any accelerated variants available
-for that style.
-
-To use an accelerator package in LAMMPS, and one or more of the styles
-it provides, follow these general steps. Details vary from package to
-package and are explained in the individual accelerator doc pages,
-listed above:
-
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| build the accelerator library | only for USER-CUDA and GPU packages |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| install the accelerator package | make yes-opt, make yes-user-intel, etc |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| add compile/link flags to Makefile.machine | in src/MAKE, <br>
- only for USER-INTEL, KOKKOS, USER-OMP, OPT packages |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| re-build LAMMPS | make machine |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| run a LAMMPS simulation | lmp_machine < in.script <br>
- mpirun -np 32 lmp_machine -in in.script |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| enable the accelerator package | via "-c on" and "-k on" :ref:`command-line switches <start_7>`, <br>
- only for USER-CUDA and KOKKOS packages |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| set any needed options for the package | via "-pk" :ref:`command-line switch <start_7>` or
- :doc:`package <package>` command, <br>
- only if defaults need to be changed |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-| use accelerated styles in your input script | via "-sf" :ref:`command-line switch <start_7>` or
- :doc:`suffix <suffix>` command |
-+---------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+
-
-Note that the first 4 steps can be done as a single command, using the
-src/Make.py tool. This tool is discussed in :ref:`Section 2.4 <start_4>` of the manual, and its use is
-illustrated in the individual accelerator sections. Typically these
-steps only need to be done once, to create an executable that uses one
-or more accelerator packages.
-
-The last 4 steps can all be done from the command-line when LAMMPS is
-launched, without changing your input script, as illustrated in the
-individual accelerator sections. Or you can add
-:doc:`package <package>` and :doc:`suffix <suffix>` commands to your input
-script.
-
-.. note::
-
- With a few exceptions, you can build a single LAMMPS executable
- with all its accelerator packages installed. Note however that the
- USER-INTEL and KOKKOS packages require you to choose one of their
- hardware options when building for a specific platform. I.e. CPU or
- Phi option for the USER-INTEL package. Or the OpenMP, Cuda, or Phi
- option for the KOKKOS package.
-
-These are the exceptions. You cannot build a single executable with:
-
-* both the USER-INTEL Phi and KOKKOS Phi options
-* the USER-INTEL Phi or Kokkos Phi option, and either the USER-CUDA or GPU packages
-
-See the examples/accelerate/README and make.list files for sample
-Make.py commands that build LAMMPS with any or all of the accelerator
-packages. As an example, here is a command that builds with all the
-GPU related packages installed (USER-CUDA, GPU, KOKKOS with Cuda),
-including settings to build the needed auxiliary USER-CUDA and GPU
-libraries for Kepler GPUs:
-
-.. parsed-literal::
-
- Make.py -j 16 -p omp gpu cuda kokkos -cc nvcc wrap=mpi -cuda mode=double arch=35 -gpu mode=double arch=35 \ -kokkos cuda arch=35 lib-all file mpi
-
-The examples/accelerate directory also has input scripts that can be
-used with all of the accelerator packages. See its README file for
-details.
-
-Likewise, the bench directory has FERMI and KEPLER and PHI
-sub-directories with Make.py commands and input scripts for using all
-the accelerator packages on various machines. See the README files in
-those dirs.
-
-As mentioned above, the `Benchmark page <http://lammps.sandia.gov/bench.html>`_ of the LAMMPS web site gives
-performance results for the various accelerator packages for several
-of the standard LAMMPS benchmark problems, as a function of problem
-size and number of compute nodes, on different hardware platforms.
-
-Here is a brief summary of what the various packages provide. Details
-are in the individual accelerator sections.
-
-* Styles with a "cuda" or "gpu" suffix are part of the USER-CUDA or GPU
- packages, and can be run on NVIDIA GPUs. The speed-up on a GPU
- depends on a variety of factors, discussed in the accelerator
- sections.
-* Styles with an "intel" suffix are part of the USER-INTEL
- package. These styles support vectorized single and mixed precision
- calculations, in addition to full double precision. In extreme cases,
- this can provide speedups over 3.5x on CPUs. The package also
- supports acceleration in "offload" mode to Intel(R) Xeon Phi(TM)
- coprocessors. This can result in additional speedup over 2x depending
- on the hardware configuration.
-* Styles with a "kk" suffix are part of the KOKKOS package, and can be
- run using OpenMP on multicore CPUs, on an NVIDIA GPU, or on an Intel
- Xeon Phi in "native" mode. The speed-up depends on a variety of
- factors, as discussed on the KOKKOS accelerator page.
-* Styles with an "omp" suffix are part of the USER-OMP package and allow
- a pair-style to be run in multi-threaded mode using OpenMP. This can
- be useful on nodes with high-core counts when using less MPI processes
- than cores is advantageous, e.g. when running with PPPM so that FFTs
- are run on fewer MPI processors or when the many MPI tasks would
- overload the available bandwidth for communication.
-* Styles with an "opt" suffix are part of the OPT package and typically
- speed-up the pairwise calculations of your simulation by 5-25% on a
- CPU.
-The individual accelerator package doc pages explain:
-
-* what hardware and software the accelerated package requires
-* how to build LAMMPS with the accelerated package
-* how to run with the accelerated package either via command-line switches or modifying the input script
-* speed-ups to expect
-* guidelines for best performance
-* restrictions
-
-
-----------
-
-
-.. _acc_4:
-
-Comparison of various accelerator packages
-------------------------------------------------------
-
-.. note::
-
- this section still needs to be re-worked with additional KOKKOS
- and USER-INTEL information.
-
-The next section compares and contrasts the various accelerator
-options, since there are multiple ways to perform OpenMP threading,
-run on GPUs, and run on Intel Xeon Phi coprocessors.
-
-All 3 of these packages accelerate a LAMMPS calculation using NVIDIA
-hardware, but they do it in different ways.
-
-As a consequence, for a particular simulation on specific hardware,
-one package may be faster than the other. We give guidelines below,
-but the best way to determine which package is faster for your input
-script is to try both of them on your machine. See the benchmarking
-section below for examples where this has been done.
-
-**Guidelines for using each package optimally:**
-
-* The GPU package allows you to assign multiple CPUs (cores) to a single
- GPU (a common configuration for "hybrid" nodes that contain multicore
- CPU(s) and GPU(s)) and works effectively in this mode. The USER-CUDA
- package does not allow this; you can only use one CPU per GPU.
-* The GPU package moves per-atom data (coordinates, forces)
- back-and-forth between the CPU and GPU every timestep. The USER-CUDA
- package only does this on timesteps when a CPU calculation is required
- (e.g. to invoke a fix or compute that is non-GPU-ized). Hence, if you
- can formulate your input script to only use GPU-ized fixes and
- computes, and avoid doing I/O too often (thermo output, dump file
- snapshots, restart files), then the data transfer cost of the
- USER-CUDA package can be very low, causing it to run faster than the
- GPU package.
-* The GPU package is often faster than the USER-CUDA package, if the
- number of atoms per GPU is smaller. The crossover point, in terms of
- atoms/GPU at which the USER-CUDA package becomes faster depends
- strongly on the pair style. For example, for a simple Lennard Jones
- system the crossover (in single precision) is often about 50K-100K
- atoms per GPU. When performing double precision calculations the
- crossover point can be significantly smaller.
-* Both packages compute bonded interactions (bonds, angles, etc) on the
- CPU. This means a model with bonds will force the USER-CUDA package
- to transfer per-atom data back-and-forth between the CPU and GPU every
- timestep. If the GPU package is running with several MPI processes
- assigned to one GPU, the cost of computing the bonded interactions is
- spread across more CPUs and hence the GPU package can run faster.
-* When using the GPU package with multiple CPUs assigned to one GPU, its
- performance depends to some extent on high bandwidth between the CPUs
- and the GPU. Hence its performance is affected if full 16 PCIe lanes
- are not available for each GPU. In HPC environments this can be the
- case if S2050/70 servers are used, where two devices generally share
- one PCIe 2.0 16x slot. Also many multi-GPU mainboards do not provide
- full 16 lanes to each of the PCIe 2.0 16x slots.
-**Differences between the two packages:**
-
-* The GPU package accelerates only pair force, neighbor list, and PPPM
- calculations. The USER-CUDA package currently supports a wider range
- of pair styles and can also accelerate many fix styles and some
- compute styles, as well as neighbor list and PPPM calculations.
-* The USER-CUDA package does not support acceleration for minimization.
-* The USER-CUDA package does not support hybrid pair styles.
-* The USER-CUDA package can order atoms in the neighbor list differently
- from run to run resulting in a different order for force accumulation.
-* The USER-CUDA package has a limit on the number of atom types that can be
- used in a simulation.
-* The GPU package requires neighbor lists to be built on the CPU when using
- exclusion lists or a triclinic simulation box.
-* The GPU package uses more GPU memory than the USER-CUDA package. This
- is generally not a problem since typical runs are computation-limited
- rather than memory-limited.
-Examples
-""""""""
-
-The LAMMPS distribution has two directories with sample input scripts
-for the GPU and USER-CUDA packages.
-
-* lammps/examples/gpu = GPU package files
-* lammps/examples/USER/cuda = USER-CUDA package files
-
-These contain input scripts for identical systems, so they can be used
-to benchmark the performance of both packages on your system.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_commands.txt b/doc/_sources/Section_commands.txt
deleted file mode 100644
index 7d6f77d48..000000000
--- a/doc/_sources/Section_commands.txt
+++ /dev/null
@@ -1,820 +0,0 @@
-Commands
-========
-
-This section describes how a LAMMPS input script is formatted and the
-input script commands used to define a LAMMPS simulation.
-
-| 3.1 :ref:`LAMMPS input script <cmd_1>`
-| 3.2 :ref:`Parsing rules <cmd_2>`
-| 3.3 :ref:`Input script structure <cmd_3>`
-| 3.4 :ref:`Commands listed by category <cmd_4>`
-| 3.5 :ref:`Commands listed alphabetically <cmd_5>`
-|
-
-
-
-
-
-.. _cmd_1:
-
-LAMMPS input script
--------------------
-
-LAMMPS executes by reading commands from a input script (text file),
-one line at a time. When the input script ends, LAMMPS exits. Each
-command causes LAMMPS to take some action. It may set an internal
-variable, read in a file, or run a simulation. Most commands have
-default settings, which means you only need to use the command if you
-wish to change the default.
-
-In many cases, the ordering of commands in an input script is not
-important. However the following rules apply:
-
-(1) LAMMPS does not read your entire input script and then perform a
-simulation with all the settings. Rather, the input script is read
-one line at a time and each command takes effect when it is read.
-Thus this sequence of commands:
-
-.. parsed-literal::
-
- timestep 0.5
- run 100
- run 100
-
-does something different than this sequence:
-
-.. parsed-literal::
-
- run 100
- timestep 0.5
- run 100
-
-In the first case, the specified timestep (0.5 fmsec) is used for two
-simulations of 100 timesteps each. In the 2nd case, the default
-timestep (1.0 fmsec) is used for the 1st 100 step simulation and a 0.5
-fmsec timestep is used for the 2nd one.
-
-(2) Some commands are only valid when they follow other commands. For
-example you cannot set the temperature of a group of atoms until atoms
-have been defined and a group command is used to define which atoms
-belong to the group.
-
-(3) Sometimes command B will use values that can be set by command A.
-This means command A must precede command B in the input script if it
-is to have the desired effect. For example, the
-:doc:`read_data <read_data>` command initializes the system by setting
-up the simulation box and assigning atoms to processors. If default
-values are not desired, the :doc:`processors <processors>` and
-:doc:`boundary <boundary>` commands need to be used before read_data to
-tell LAMMPS how to map processors to the simulation box.
-
-Many input script errors are detected by LAMMPS and an ERROR or
-WARNING message is printed. :doc:`This section <Section_errors>` gives
-more information on what errors mean. The documentation for each
-command lists restrictions on how the command can be used.
-
-
-----------
-
-
-.. _cmd_2:
-
-Parsing rules
--------------
-
-Each non-blank line in the input script is treated as a command.
-LAMMPS commands are case sensitive. Command names are lower-case, as
-are specified command arguments. Upper case letters may be used in
-file names or user-chosen ID strings.
-
-Here is how each line in the input script is parsed by LAMMPS:
-
-(1) If the last printable character on the line is a "&" character,
-the command is assumed to continue on the next line. The next line is
-concatenated to the previous line by removing the "&" character and
-line break. This allows long commands to be continued across two or
-more lines. See the discussion of triple quotes in (6) for how to
-continue a command across multiple line without using "&" characters.
-
-(2) All characters from the first "#" character onward are treated as
-comment and discarded. See an exception in (6). Note that a
-comment after a trailing "&" character will prevent the command from
-continuing on the next line. Also note that for multi-line commands a
-single leading "#" will comment out the entire command.
-
-(3) The line is searched repeatedly for $ characters, which indicate
-variables that are replaced with a text string. See an exception in
-(6).
-
-If the $ is followed by curly brackets, then the variable name is the
-text inside the curly brackets. If no curly brackets follow the $,
-then the variable name is the single character immediately following
-the $. Thus ${myTemp} and $x refer to variable names "myTemp" and
-"x".
-
-How the variable is converted to a text string depends on what style
-of variable it is; see the `variable <variable>`_ doc page for details.
-It can be a variable that stores multiple text strings, and return one
-of them. The returned text string can be multiple "words" (space
-separated) which will then be interpreted as multiple arguments in the
-input command. The variable can also store a numeric formula which
-will be evaluated and its numeric result returned as a string.
-
-As a special case, if the $ is followed by parenthesis, then the text
-inside the parenthesis is treated as an "immediate" variable and
-evaluated as an :doc:`equal-style variable <variable>`. This is a way
-to use numeric formulas in an input script without having to assign
-them to variable names. For example, these 3 input script lines:
-
-.. parsed-literal::
-
- variable X equal (xlo+xhi)/2+sqrt(v_area)
- region 1 block $X 2 INF INF EDGE EDGE
- variable X delete
-
-can be replaced by
-
-.. parsed-literal::
-
- region 1 block $((xlo+xhi)/2+sqrt(v_area)) 2 INF INF EDGE EDGE
-
-so that you do not have to define (or discard) a temporary variable X.
-
-Note that neither the curly-bracket or immediate form of variables can
-contain nested $ characters for other variables to substitute for.
-Thus you cannot do this:
-
-.. parsed-literal::
-
- variable a equal 2
- variable b2 equal 4
- print "B2 = ${b$a}"
-
-Nor can you specify this $($x-1.0) for an immediate variable, but
-you could use $(v_x-1.0), since the latter is valid syntax for an
-:doc:`equal-style variable <variable>`.
-
-See the :doc:`variable <variable>` command for more details of how
-strings are assigned to variables and evaluated, and how they can be
-used in input script commands.
-
-(4) The line is broken into "words" separated by whitespace (tabs,
-spaces). Note that words can thus contain letters, digits,
-underscores, or punctuation characters.
-
-(5) The first word is the command name. All successive words in the
-line are arguments.
-
-(6) If you want text with spaces to be treated as a single argument,
-it can be enclosed in either single or double or triple quotes. A
-long single argument enclosed in single or double quotes can span
-multiple lines if the "&" character is used, as described above. When
-the lines are concatenated together (and the "&" characters and line
-breaks removed), the text will become a single line. If you want
-multiple lines of an argument to retain their line breaks, the text
-can be enclosed in triple quotes, in which case "&" characters are not
-needed. For example:
-
-.. parsed-literal::
-
- print "Volume = $v"
- print 'Volume = $v'
- if "${steps} > 1000" then quit
- variable a string "red green blue &
- purple orange cyan"
- print """
- System volume = $v
- System temperature = $t
- """
-
-In each case, the single, double, or triple quotes are removed when
-the single argument they enclose is stored internally.
-
-See the :doc:`dump modify format <dump_modify>`, :doc:`print <print>`,
-:doc:`if <if>`, and :doc:`python <python>` commands for examples.
-
-A "#" or "$" character that is between quotes will not be treated as a
-comment indicator in (2) or substituted for as a variable in (3).
-
-.. note::
-
- If the argument is itself a command that requires a quoted
- argument (e.g. using a :doc:`print <print>` command as part of an
- :doc:`if <if>` or :doc:`run every <run>` command), then single, double, or
- triple quotes can be nested in the usual manner. See the doc pages
- for those commands for examples. Only one of level of nesting is
- allowed, but that should be sufficient for most use cases.
-
-
-----------
-
-
-.. _cmd_3:
-
-Input script structure
-----------------------------------
-
-This section describes the structure of a typical LAMMPS input script.
-The "examples" directory in the LAMMPS distribution contains many
-sample input scripts; the corresponding problems are discussed in
-:doc:`Section_example <Section_example>`, and animated on the `LAMMPS WWW Site <lws_>`_.
-
-A LAMMPS input script typically has 4 parts:
-
-1. Initialization
-2. Atom definition
-3. Settings
-4. Run a simulation
-
-The last 2 parts can be repeated as many times as desired. I.e. run a
-simulation, change some settings, run some more, etc. Each of the 4
-parts is now described in more detail. Remember that almost all the
-commands need only be used if a non-default value is desired.
-
-(1) Initialization
-
-Set parameters that need to be defined before atoms are created or
-read-in from a file.
-
-The relevant commands are :doc:`units <units>`,
-:doc:`dimension <dimension>`, :doc:`newton <newton>`,
-:doc:`processors <processors>`, :doc:`boundary <boundary>`,
-:doc:`atom_style <atom_style>`, :doc:`atom_modify <atom_modify>`.
-
-If force-field parameters appear in the files that will be read, these
-commands tell LAMMPS what kinds of force fields are being used:
-:doc:`pair_style <pair_style>`, :doc:`bond_style <bond_style>`,
-:doc:`angle_style <angle_style>`, :doc:`dihedral_style <dihedral_style>`,
-:doc:`improper_style <improper_style>`.
-
-(2) Atom definition
-
-There are 3 ways to define atoms in LAMMPS. Read them in from a data
-or restart file via the :doc:`read_data <read_data>` or
-:doc:`read_restart <read_restart>` commands. These files can contain
-molecular topology information. Or create atoms on a lattice (with no
-molecular topology), using these commands: :doc:`lattice <lattice>`,
-:doc:`region <region>`, :doc:`create_box <create_box>`,
-:doc:`create_atoms <create_atoms>`. The entire set of atoms can be
-duplicated to make a larger simulation using the
-:doc:`replicate <replicate>` command.
-
-(3) Settings
-
-Once atoms and molecular topology are defined, a variety of settings
-can be specified: force field coefficients, simulation parameters,
-output options, etc.
-
-Force field coefficients are set by these commands (they can also be
-set in the read-in files): :doc:`pair_coeff <pair_coeff>`,
-:doc:`bond_coeff <bond_coeff>`, :doc:`angle_coeff <angle_coeff>`,
-:doc:`dihedral_coeff <dihedral_coeff>`,
-:doc:`improper_coeff <improper_coeff>`,
-:doc:`kspace_style <kspace_style>`, :doc:`dielectric <dielectric>`,
-:doc:`special_bonds <special_bonds>`.
-
-Various simulation parameters are set by these commands:
-:doc:`neighbor <neighbor>`, :doc:`neigh_modify <neigh_modify>`,
-:doc:`group <group>`, :doc:`timestep <timestep>`,
-:doc:`reset_timestep <reset_timestep>`, :doc:`run_style <run_style>`,
-:doc:`min_style <min_style>`, :doc:`min_modify <min_modify>`.
-
-Fixes impose a variety of boundary conditions, time integration, and
-diagnostic options. The :doc:`fix <fix>` command comes in many flavors.
-
-Various computations can be specified for execution during a
-simulation using the :doc:`compute <compute>`,
-:doc:`compute_modify <compute_modify>`, and :doc:`variable <variable>`
-commands.
-
-Output options are set by the :doc:`thermo <thermo>`, :doc:`dump <dump>`,
-and :doc:`restart <restart>` commands.
-
-(4) Run a simulation
-
-A molecular dynamics simulation is run using the :doc:`run <run>`
-command. Energy minimization (molecular statics) is performed using
-the :doc:`minimize <minimize>` command. A parallel tempering
-(replica-exchange) simulation can be run using the
-:doc:`temper <temper>` command.
-
-
-----------
-
-
-.. _cmd_4:
-
-Commands listed by category
----------------------------
-
-This section lists all LAMMPS commands, grouped by category. The
-:ref:`next section <cmd_5>` lists the same commands alphabetically. Note
-that some style options for some commands are part of specific LAMMPS
-packages, which means they cannot be used unless the package was
-included when LAMMPS was built. Not all packages are included in a
-default LAMMPS build. These dependencies are listed as Restrictions
-in the command's documentation.
-
-Initialization:
-
-:doc:`atom_modify <atom_modify>`, :doc:`atom_style <atom_style>`,
-:doc:`boundary <boundary>`, :doc:`dimension <dimension>`,
-:doc:`newton <newton>`, :doc:`processors <processors>`, :doc:`units <units>`
-
-Atom definition:
-
-:doc:`create_atoms <create_atoms>`, :doc:`create_box <create_box>`,
-:doc:`lattice <lattice>`, :doc:`read_data <read_data>`,
-:doc:`read_dump <read_dump>`, :doc:`read_restart <read_restart>`,
-:doc:`region <region>`, :doc:`replicate <replicate>`
-
-Force fields:
-
-:doc:`angle_coeff <angle_coeff>`, :doc:`angle_style <angle_style>`,
-:doc:`bond_coeff <bond_coeff>`, :doc:`bond_style <bond_style>`,
-:doc:`dielectric <dielectric>`, :doc:`dihedral_coeff <dihedral_coeff>`,
-:doc:`dihedral_style <dihedral_style>`,
-:doc:`improper_coeff <improper_coeff>`,
-:doc:`improper_style <improper_style>`,
-:doc:`kspace_modify <kspace_modify>`, :doc:`kspace_style <kspace_style>`,
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_modify <pair_modify>`,
-:doc:`pair_style <pair_style>`, :doc:`pair_write <pair_write>`,
-:doc:`special_bonds <special_bonds>`
-
-Settings:
-
-:doc:`comm_style <comm_style>`, :doc:`group <group>`, :doc:`mass <mass>`,
-:doc:`min_modify <min_modify>`, :doc:`min_style <min_style>`,
-:doc:`neigh_modify <neigh_modify>`, :doc:`neighbor <neighbor>`,
-:doc:`reset_timestep <reset_timestep>`, :doc:`run_style <run_style>`,
-:doc:`set <set>`, :doc:`timestep <timestep>`, :doc:`velocity <velocity>`
-
-Fixes:
-
-:doc:`fix <fix>`, :doc:`fix_modify <fix_modify>`, :doc:`unfix <unfix>`
-
-Computes:
-
-:doc:`compute <compute>`, :doc:`compute_modify <compute_modify>`,
-:doc:`uncompute <uncompute>`
-
-Output:
-
-:doc:`dump <dump>`, :doc:`dump image <dump_image>`,
-:doc:`dump_modify <dump_modify>`, :doc:`dump movie <dump_image>`,
-:doc:`restart <restart>`, :doc:`thermo <thermo>`,
-:doc:`thermo_modify <thermo_modify>`, :doc:`thermo_style <thermo_style>`,
-:doc:`undump <undump>`, :doc:`write_data <write_data>`,
-:doc:`write_dump <write_dump>`, :doc:`write_restart <write_restart>`
-
-Actions:
-
-:doc:`delete_atoms <delete_atoms>`, :doc:`delete_bonds <delete_bonds>`,
-:doc:`displace_atoms <displace_atoms>`, :doc:`change_box <change_box>`,
-:doc:`minimize <minimize>`, :doc:`neb <neb>` :doc:`prd <prd>`,
-:doc:`rerun <rerun>`, :doc:`run <run>`, :doc:`temper <temper>`
-
-Miscellaneous:
-
-:doc:`clear <clear>`, :doc:`echo <echo>`, :doc:`if <if>`,
-:doc:`include <include>`, :doc:`jump <jump>`, :doc:`label <label>`,
-:doc:`log <log>`, :doc:`next <next>`, :doc:`print <print>`,
-:doc:`shell <shell>`, :doc:`variable <variable>`
-
-
-----------
-
-
-.. _cmd_5:
-
-.. _comm:
-
-Individual commands
-------------------------------------------
-
-This section lists all LAMMPS commands alphabetically, with a separate
-listing below of styles within certain commands. The :ref:`previous section <cmd_4>` lists the same commands, grouped by category. Note
-that some style options for some commands are part of specific LAMMPS
-packages, which means they cannot be used unless the package was
-included when LAMMPS was built. Not all packages are included in a
-default LAMMPS build. These dependencies are listed as Restrictions
-in the command's documentation.
-
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`angle_coeff <angle_coeff>` | :doc:`angle_style <angle_style>` | :doc:`atom_modify <atom_modify>` | :doc:`atom_style <atom_style>` | :doc:`balance <balance>` | :doc:`bond_coeff <bond_coeff>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`bond_style <bond_style>` | :doc:`bond_write <bond_write>` | :doc:`boundary <boundary>` | :doc:`box <box>` | :doc:`change_box <change_box>` | :doc:`clear <clear>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`comm_modify <comm_modify>` | :doc:`comm_style <comm_style>` | :doc:`compute <compute>` | :doc:`compute_modify <compute_modify>` | :doc:`create_atoms <create_atoms>` | :doc:`create_bonds <create_bonds>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`create_box <create_box>` | :doc:`delete_atoms <delete_atoms>` | :doc:`delete_bonds <delete_bonds>` | :doc:`dielectric <dielectric>` | :doc:`dihedral_coeff <dihedral_coeff>` | :doc:`dihedral_style <dihedral_style>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`dimension <dimension>` | :doc:`displace_atoms <displace_atoms>` | :doc:`dump <dump>` | :doc:`dump image <dump_image>` | :doc:`dump_modify <dump_modify>` | :doc:`dump movie <dump_image>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`echo <echo>` | :doc:`fix <fix>` | :doc:`fix_modify <fix_modify>` | :doc:`group <group>` | :doc:`if <if>` | :doc:`info <info>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`improper_coeff <improper_coeff>` | :doc:`improper_style <improper_style>` | :doc:`include <include>` | :doc:`jump <jump>` | :doc:`kspace_modify <kspace_modify>` | :doc:`kspace_style <kspace_style>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`label <label>` | :doc:`lattice <lattice>` | :doc:`log <log>` | :doc:`mass <mass>` | :doc:`minimize <minimize>` | :doc:`min_modify <min_modify>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`min_style <min_style>` | :doc:`molecule <molecule>` | :doc:`neb <neb>` | :doc:`neigh_modify <neigh_modify>` | :doc:`neighbor <neighbor>` | :doc:`newton <newton>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`next <next>` | :doc:`package <package>` | :doc:`pair_coeff <pair_coeff>` | :doc:`pair_modify <pair_modify>` | :doc:`pair_style <pair_style>` | :doc:`pair_write <pair_write>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`partition <partition>` | :doc:`prd <prd>` | :doc:`print <print>` | :doc:`processors <processors>` | :doc:`python <python>` | :doc:`quit <quit>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`read_data <read_data>` | :doc:`read_dump <read_dump>` | :doc:`read_restart <read_restart>` | :doc:`region <region>` | :doc:`replicate <replicate>` | :doc:`rerun <rerun>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`reset_timestep <reset_timestep>` | :doc:`restart <restart>` | :doc:`run <run>` | :doc:`run_style <run_style>` | :doc:`set <set>` | :doc:`shell <shell>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`special_bonds <special_bonds>` | :doc:`suffix <suffix>` | :doc:`tad <tad>` | :doc:`temper <temper>` | :doc:`thermo <thermo>` | :doc:`thermo_modify <thermo_modify>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`thermo_style <thermo_style>` | :doc:`timer <timer>` | :doc:`timestep <timestep>` | :doc:`uncompute <uncompute>` | :doc:`undump <undump>` | :doc:`unfix <unfix>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`units <units>` | :doc:`variable <variable>` | :doc:`velocity <velocity>` | :doc:`write_coeff <write_coeff>` | :doc:`write_data <write_data>` | :doc:`write_dump <write_dump>` |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-| :doc:`write_restart <write_restart>` | | | | | |
-+----------------------------------------+----------------------------------------+------------------------------------+----------------------------------------+----------------------------------------+----------------------------------------+
-
-These are additional commands in USER packages, which can be used if
-:ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+------------------------------------------+------------------------------+------------------------------+
-| :doc:`dump custom/vtk <dump_custom_vtk>` | :doc:`group2ndx <group2ndx>` | :doc:`ndx2group <group2ndx>` |
-+------------------------------------------+------------------------------+------------------------------+
-
-
-----------
-
-
-Fix styles
-----------
-
-See the :doc:`fix <fix>` command for one-line descriptions of each style
-or click on the style itself for a full description. Some of the
-styles have accelerated versions, which can be used if LAMMPS is built
-with the :doc:`appropriate accelerated package <Section_accelerate>`.
-This is indicated by additional letters in parenthesis: c = USER-CUDA,
-g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT.
-
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`adapt <fix_adapt>` | :doc:`addforce (c) <fix_addforce>` | :doc:`append/atoms <fix_append_atoms>` | :doc:`atom/swap <fix_atom_swap>` | :doc:`aveforce (c) <fix_aveforce>` | :doc:`ave/atom <fix_ave_atom>` | :doc:`ave/chunk <fix_ave_chunk>` | :doc:`ave/correlate <fix_ave_correlate>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`ave/histo <fix_ave_histo>` | :doc:`ave/histo/weight <fix_ave_histo>` | :doc:`ave/spatial <fix_ave_spatial>` | :doc:`ave/time <fix_ave_time>` | :doc:`balance <fix_balance>` | :doc:`bond/break <fix_bond_break>` | :doc:`bond/create <fix_bond_create>` | :doc:`bond/swap <fix_bond_swap>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`box/relax <fix_box_relax>` | :doc:`deform (k) <fix_deform>` | :doc:`deposit <fix_deposit>` | :doc:`drag <fix_drag>` | :doc:`dt/reset <fix_dt_reset>` | :doc:`efield <fix_efield>` | :doc:`enforce2d (c) <fix_enforce2d>` | :doc:`evaporate <fix_evaporate>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`external <fix_external>` | :doc:`freeze (c) <fix_freeze>` | :doc:`gcmc <fix_gcmc>` | :doc:`gld <fix_gld>` | :doc:`gravity (co) <fix_gravity>` | :doc:`heat <fix_heat>` | :doc:`indent <fix_indent>` | :doc:`langevin (k) <fix_langevin>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`lineforce <fix_lineforce>` | :doc:`momentum <fix_momentum>` | :doc:`move <fix_move>` | :doc:`msst <fix_msst>` | :doc:`neb <fix_neb>` | :doc:`nph (ko) <fix_nh>` | :doc:`nphug (o) <fix_nphug>` | :doc:`nph/asphere (o) <fix_nph_asphere>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`nph/body <fix_nph_body>` | :doc:`nph/sphere (o) <fix_nph_sphere>` | :doc:`npt (ckio) <fix_nh>` | :doc:`npt/asphere (o) <fix_npt_asphere>` | :doc:`npt/body <fix_npt_body>` | :doc:`npt/sphere (o) <fix_npt_sphere>` | :doc:`nve (ckio) <fix_nve>` | :doc:`nve/asphere (i) <fix_nve_asphere>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`nve/asphere/noforce <fix_nve_asphere_noforce>` | :doc:`nve/body <fix_nve_body>` | :doc:`nve/limit <fix_nve_limit>` | :doc:`nve/line <fix_nve_line>` | :doc:`nve/noforce <fix_nve_noforce>` | :doc:`nve/sphere (o) <fix_nve_sphere>` | :doc:`nve/tri <fix_nve_tri>` | :doc:`nvt (ciko) <fix_nh>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`nvt/asphere (o) <fix_nvt_asphere>` | :doc:`nvt/body <fix_nvt_body>` | :doc:`nvt/sllod (io) <fix_nvt_sllod>` | :doc:`nvt/sphere (o) <fix_nvt_sphere>` | :doc:`oneway <fix_oneway>` | :doc:`orient/fcc <fix_orient_fcc>` | :doc:`planeforce <fix_planeforce>` | :doc:`poems <fix_poems>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`pour <fix_pour>` | :doc:`press/berendsen <fix_press_berendsen>` | :doc:`print <fix_print>` | :doc:`property/atom <fix_property_atom>` | :doc:`qeq/comb (o) <fix_qeq_comb>` | :doc:`qeq/dynamic <fix_qeq>` | :doc:`qeq/fire <fix_qeq>` | :doc:`qeq/point <fix_qeq>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`qeq/shielded <fix_qeq>` | :doc:`qeq/slater <fix_qeq>` | :doc:`rattle <fix_shake>` | :doc:`reax/bonds <fix_reax_bonds>` | :doc:`recenter <fix_recenter>` | :doc:`restrain <fix_restrain>` | :doc:`rigid (o) <fix_rigid>` | :doc:`rigid/nph (o) <fix_rigid>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`rigid/npt (o) <fix_rigid>` | :doc:`rigid/nve (o) <fix_rigid>` | :doc:`rigid/nvt (o) <fix_rigid>` | :doc:`rigid/small (o) <fix_rigid>` | :doc:`rigid/small/nph <fix_rigid>` | :doc:`rigid/small/npt <fix_rigid>` | :doc:`rigid/small/nve <fix_rigid>` | :doc:`rigid/small/nvt <fix_rigid>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`setforce (ck) <fix_setforce>` | :doc:`shake (c) <fix_shake>` | :doc:`spring <fix_spring>` | :doc:`spring/rg <fix_spring_rg>` | :doc:`spring/self <fix_spring_self>` | :doc:`srd <fix_srd>` | :doc:`store/force <fix_store_force>` | :doc:`store/state <fix_store_state>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`temp/berendsen (c) <fix_temp_berendsen>` | :doc:`temp/csld <fix_temp_csvr>` | :doc:`temp/csvr <fix_temp_csvr>` | :doc:`temp/rescale (c) <fix_temp_rescale>` | :doc:`tfmc <fix_tfmc>` | :doc:`thermal/conductivity <fix_thermal_conductivity>` | :doc:`tmd <fix_tmd>` | :doc:`ttm <fix_ttm>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`tune/kspace <fix_tune_kspace>` | :doc:`vector <fix_vector>` | :doc:`viscosity <fix_viscosity>` | :doc:`viscous (c) <fix_viscous>` | :doc:`wall/colloid <fix_wall>` | :doc:`wall/gran <fix_wall_gran>` | :doc:`wall/harmonic <fix_wall>` | :doc:`wall/lj1043 <fix_wall>` |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-| :doc:`wall/lj126 <fix_wall>` | :doc:`wall/lj93 <fix_wall>` | :doc:`wall/piston <fix_wall_piston>` | :doc:`wall/reflect (k) <fix_wall_reflect>` | :doc:`wall/region <fix_wall_region>` | :doc:`wall/srd <fix_wall_srd>` | | |
-+------------------------------------------------------+----------------------------------------------+----------------------------------------+--------------------------------------------+--------------------------------------+--------------------------------------------------------+--------------------------------------+------------------------------------------+
-
-These are additional fix styles in USER packages, which can be used if
-:ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`adapt/fep <fix_adapt_fep>` | :doc:`addtorque <fix_addtorque>` | :doc:`atc <fix_atc>` | :doc:`ave/correlate/long <fix_ave_correlate_long>` | :doc:`ave/spatial/sphere <fix_ave_spatial_sphere>` | :doc:`colvars <fix_colvars>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`drude <fix_drude>` | :doc:`drude/transform/direct <fix_drude_transform>` | :doc:`drude/transform/reverse <fix_drude_transform>` | :doc:`eos/cv <fix_eos_cv>` | :doc:`eos/table <fix_eos_table>` | :doc:`gle <fix_gle>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`imd <fix_imd>` | :doc:`ipi <fix_ipi>` | :doc:`langevin/drude <fix_langevin_drude>` | :doc:`langevin/eff <fix_langevin_eff>` | :doc:`lb/fluid <fix_lb_fluid>` | :doc:`lb/momentum <fix_lb_momentum>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`lb/pc <fix_lb_pc>` | :doc:`lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>` | :doc:`lb/viscous <fix_lb_viscous>` | :doc:`meso <fix_meso>` | :doc:`meso/stationary <fix_meso_stationary>` | :doc:`nph/eff <fix_nh_eff>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`npt/eff <fix_nh_eff>` | :doc:`nve/eff <fix_nve_eff>` | :doc:`nvt/eff <fix_nh_eff>` | :doc:`nvt/sllod/eff <fix_nvt_sllod_eff>` | :doc:`phonon <fix_phonon>` | :doc:`pimd <fix_pimd>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`qbmsst <fix_qbmsst>` | :doc:`qeq/reax <fix_qeq_reax>` | :doc:`qmmm <fix_qmmm>` | :doc:`qtb <fix_qtb>` | :doc:`reax/c/bonds <fix_reax_bonds>` | :doc:`reax/c/species <fix_reaxc_species>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`saed/vtk <fix_saed_vtk>` | :doc:`shardlow <fix_shardlow>` | :doc:`smd <fix_smd>` | :doc:`smd/adjust/dt <fix_smd_adjust_dt>` | :doc:`smd/integrate/tlsph <fix_smd_integrate_tlsph>` | :doc:`smd/integrate/ulsph <fix_smd_integrate_ulsph>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`smd/move/triangulated/surface <fix_smd_move_triangulated_surface>` | :doc:`smd/setvel <fix_smd_setvel>` | :doc:`smd/tlsph/reference/configuration <fix_smd_tlsph_reference_configuration>` | :doc:`smd/wall/surface <fix_smd_wall_surface>` | :doc:`temp/rescale/eff <fix_temp_rescale_eff>` | :doc:`ti/rs <fix_ti_rs>` |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-| :doc:`ti/spring <fix_ti_spring>` | :doc:`ttm/mod <fix_ttm>` | | | | |
-+--------------------------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------------------------------------+----------------------------------------------------+------------------------------------------------------+------------------------------------------------------+
-
-
-----------
-
-
-Compute styles
---------------
-
-See the :doc:`compute <compute>` command for one-line descriptions of
-each style or click on the style itself for a full description. Some
-of the styles have accelerated versions, which can be used if LAMMPS
-is built with the :doc:`appropriate accelerated package <Section_accelerate>`. This is indicated by additional
-letters in parenthesis: c = USER-CUDA, g = GPU, i = USER-INTEL, k =
-KOKKOS, o = USER-OMP, t = OPT.
-
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`angle <compute_angle>` | :doc:`angle/local <compute_angle_local>` | :doc:`angmom/chunk <compute_angmom_chunk>` | :doc:`body/local <compute_body_local>` | :doc:`bond <compute_bond>` | :doc:`bond/local <compute_bond_local>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`centro/atom <compute_centro_atom>` | :doc:`chunk/atom <compute_chunk_atom>` | :doc:`cluster/atom <compute_cluster_atom>` | :doc:`cna/atom <compute_cna_atom>` | :doc:`com <compute_com>` | :doc:`com/chunk <compute_com_chunk>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`contact/atom <compute_contact_atom>` | :doc:`coord/atom <compute_coord_atom>` | :doc:`damage/atom <compute_damage_atom>` | :doc:`dihedral <compute_dihedral>` | :doc:`dihedral/local <compute_dihedral_local>` | :doc:`dilatation/atom <compute_dilatation_atom>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`dipole/chunk <compute_dipole_chunk>` | :doc:`displace/atom <compute_displace_atom>` | :doc:`erotate/asphere <compute_erotate_asphere>` | :doc:`erotate/rigid <compute_erotate_rigid>` | :doc:`erotate/sphere <compute_erotate_sphere>` | :doc:`erotate/sphere/atom <compute_erotate_sphere_atom>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`event/displace <compute_event_displace>` | :doc:`group/group <compute_group_group>` | :doc:`gyration <compute_gyration>` | :doc:`gyration/chunk <compute_gyration_chunk>` | :doc:`heat/flux <compute_heat_flux>` | :doc:`hexorder/atom <compute_hexorder_atom>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`improper <compute_improper>` | :doc:`improper/local <compute_improper_local>` | :doc:`inertia/chunk <compute_inertia_chunk>` | :doc:`ke <compute_ke>` | :doc:`ke/atom <compute_ke_atom>` | :doc:`ke/rigid <compute_ke_rigid>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`msd <compute_msd>` | :doc:`msd/chunk <compute_msd_chunk>` | :doc:`msd/nongauss <compute_msd_nongauss>` | :doc:`omega/chunk <compute_omega_chunk>` | :doc:`orientorder/atom <compute_orientorder_atom>` | :doc:`pair <compute_pair>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`pair/local <compute_pair_local>` | :doc:`pe (c) <compute_pe>` | :doc:`pe/atom <compute_pe_atom>` | :doc:`plasticity/atom <compute_plasticity_atom>` | :doc:`pressure (c) <compute_pressure>` | :doc:`property/atom <compute_property_atom>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`property/local <compute_property_local>` | :doc:`property/chunk <compute_property_chunk>` | :doc:`rdf <compute_rdf>` | :doc:`reduce <compute_reduce>` | :doc:`reduce/region <compute_reduce>` | :doc:`slice <compute_slice>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`sna/atom <compute_sna_atom>` | :doc:`snad/atom <compute_sna_atom>` | :doc:`snav/atom <compute_sna_atom>` | :doc:`stress/atom <compute_stress_atom>` | :doc:`temp (ck) <compute_temp>` | :doc:`temp/asphere <compute_temp_asphere>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`temp/body <compute_temp_body>` | :doc:`temp/chunk <compute_temp_chunk>` | :doc:`temp/com <compute_temp_com>` | :doc:`temp/deform <compute_temp_deform>` | :doc:`temp/partial (c) <compute_temp_partial>` | :doc:`temp/profile <compute_temp_profile>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`temp/ramp <compute_temp_ramp>` | :doc:`temp/region <compute_temp_region>` | :doc:`temp/sphere <compute_temp_sphere>` | :doc:`ti <compute_ti>` | :doc:`torque/chunk <compute_torque_chunk>` | :doc:`vacf <compute_vacf>` |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-| :doc:`vcm/chunk <compute_vcm_chunk>` | :doc:`voronoi/atom <compute_voronoi_atom>` | | | | |
-+------------------------------------------------+------------------------------------------------+--------------------------------------------------+--------------------------------------------------+----------------------------------------------------+----------------------------------------------------------+
-
-These are additional compute styles in USER packages, which can be
-used if :ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-| :doc:`ackland/atom <compute_ackland_atom>` | :doc:`basal/atom <compute_basal_atom>` | :doc:`dpd <compute_dpd>` | :doc:`dpd/atom <compute_dpd_atom>` | :doc:`fep <compute_fep>` | :doc:`force/tally <compute_tally>` |
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-| :doc:`heat/flux/tally <compute_tally>` | :doc:`ke/eff <compute_ke_eff>` | :doc:`ke/atom/eff <compute_ke_atom_eff>` | :doc:`meso/e/atom <compute_meso_e_atom>` | :doc:`meso/rho/atom <compute_meso_rho_atom>` | :doc:`meso/t/atom <compute_meso_t_atom>` |
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-| :doc:`pe/tally <compute_tally>` | :doc:`pe/mol/tally <compute_tally>` | :doc:`saed <compute_saed>` | :doc:`smd/contact/radius <compute_smd_contact_radius>` | :doc:`smd/damage <compute_smd_damage>` | :doc:`smd/hourglass/error <compute_smd_hourglass_error>` |
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-| :doc:`smd/internal/energy <compute_smd_internal_energy>` | :doc:`smd/plastic/strain <compute_smd_plastic_strain>` | :doc:`smd/plastic/strain/rate <compute_smd_plastic_strain_rate>` | :doc:`smd/rho <compute_smd_rho>` | :doc:`smd/tlsph/defgrad <compute_smd_tlsph_defgrad>` | :doc:`smd/tlsph/dt <compute_smd_tlsph_dt>` |
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-| :doc:`smd/tlsph/num/neighs <compute_smd_tlsph_num_neighs>` | :doc:`smd/tlsph/shape <compute_smd_tlsph_shape>` | :doc:`smd/tlsph/strain <compute_smd_tlsph_strain>` | :doc:`smd/tlsph/strain/rate <compute_smd_tlsph_strain_rate>` | :doc:`smd/tlsph/stress <compute_smd_tlsph_stress>` | :doc:`smd/triangle/mesh/vertices <compute_smd_triangle_mesh_vertices>` |
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-| :doc:`smd/ulsph/num/neighs <compute_smd_ulsph_num_neighs>` | :doc:`smd/ulsph/strain <compute_smd_ulsph_strain>` | :doc:`smd/ulsph/strain/rate <compute_smd_ulsph_strain_rate>` | :doc:`smd/ulsph/stress <compute_smd_ulsph_stress>` | :doc:`smd/vol <compute_smd_vol>` | :doc:`stress/tally <compute_tally>` |
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-| :doc:`temp/drude <compute_temp_drude>` | :doc:`temp/eff <compute_temp_eff>` | :doc:`temp/deform/eff <compute_temp_deform_eff>` | :doc:`temp/region/eff <compute_temp_region_eff>` | :doc:`temp/rotate <compute_temp_rotate>` | :doc:`xrd <compute_xrd>` |
-+------------------------------------------------------------+--------------------------------------------------------+------------------------------------------------------------------+--------------------------------------------------------------+------------------------------------------------------+------------------------------------------------------------------------+
-
-
-----------
-
-
-Pair_style potentials
----------------------
-
-See the :doc:`pair_style <pair_style>` command for an overview of pair
-potentials. Click on the style itself for a full description. Many
-of the styles have accelerated versions, which can be used if LAMMPS
-is built with the :doc:`appropriate accelerated package <Section_accelerate>`. This is indicated by additional
-letters in parenthesis: c = USER-CUDA, g = GPU, i = USER-INTEL, k =
-KOKKOS, o = USER-OMP, t = OPT.
-
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`none <pair_none>` | :doc:`zero <pair_zero>` | :doc:`hybrid <pair_hybrid>` | :doc:`hybrid/overlay <pair_hybrid>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`adp (o) <pair_adp>` | :doc:`airebo (o) <pair_airebo>` | :doc:`airebo/morse (o) <pair_airebo>` | :doc:`beck (go) <pair_beck>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`body <pair_body>` | :doc:`bop <pair_bop>` | :doc:`born (go) <pair_born>` | :doc:`born/coul/long (cgo) <pair_born>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`born/coul/long/cs <pair_born>` | :doc:`born/coul/msm (o) <pair_born>` | :doc:`born/coul/wolf (go) <pair_born>` | :doc:`brownian (o) <pair_brownian>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`brownian/poly (o) <pair_brownian>` | :doc:`buck (cgkio) <pair_buck>` | :doc:`buck/coul/cut (cgkio) <pair_buck>` | :doc:`buck/coul/long (cgkio) <pair_buck>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`buck/coul/long/cs <pair_buck>` | :doc:`buck/coul/msm (o) <pair_buck>` | :doc:`buck/long/coul/long (o) <pair_buck_long>` | :doc:`colloid (go) <pair_colloid>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`comb (o) <pair_comb>` | :doc:`comb3 <pair_comb>` | :doc:`coul/cut (gko) <pair_coul>` | :doc:`coul/debye (gko) <pair_coul>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`coul/dsf (gko) <pair_coul>` | :doc:`coul/long (gko) <pair_coul>` | :doc:`coul/long/cs <pair_coul>` | :doc:`coul/msm <pair_coul>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`coul/streitz <pair_coul>` | :doc:`coul/wolf (ko) <pair_coul>` | :doc:`dpd (o) <pair_dpd>` | :doc:`dpd/tstat (o) <pair_dpd>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`dsmc <pair_dsmc>` | :doc:`eam (cgkot) <pair_eam>` | :doc:`eam/alloy (cgkot) <pair_eam>` | :doc:`eam/fs (cgkot) <pair_eam>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`eim (o) <pair_eim>` | :doc:`gauss (go) <pair_gauss>` | :doc:`gayberne (gio) <pair_gayberne>` | :doc:`gran/hertz/history (o) <pair_gran>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`gran/hooke (co) <pair_gran>` | :doc:`gran/hooke/history (o) <pair_gran>` | :doc:`hbond/dreiding/lj (o) <pair_hbond_dreiding>` | :doc:`hbond/dreiding/morse (o) <pair_hbond_dreiding>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`kim <pair_kim>` | :doc:`lcbop <pair_lcbop>` | :doc:`line/lj <pair_line_lj>` | :doc:`lj/charmm/coul/charmm (cko) <pair_charmm>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lj/charmm/coul/charmm/implicit (cko) <pair_charmm>` | :doc:`lj/charmm/coul/long (cgiko) <pair_charmm>` | :doc:`lj/charmm/coul/msm <pair_charmm>` | :doc:`lj/class2 (cgko) <pair_class2>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lj/class2/coul/cut (cko) <pair_class2>` | :doc:`lj/class2/coul/long (cgko) <pair_class2>` | :doc:`lj/cubic (go) <pair_lj_cubic>` | :doc:`lj/cut (cgikot) <pair_lj>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lj/cut/coul/cut (cgko) <pair_lj>` | :doc:`lj/cut/coul/debye (cgko) <pair_lj>` | :doc:`lj/cut/coul/dsf (gko) <pair_lj>` | :doc:`lj/cut/coul/long (cgikot) <pair_lj>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lj/cut/coul/long/cs <pair_lj>` | :doc:`lj/cut/coul/msm (go) <pair_lj>` | :doc:`lj/cut/dipole/cut (go) <pair_dipole>` | :doc:`lj/cut/dipole/long <pair_dipole>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lj/cut/tip4p/cut (o) <pair_lj>` | :doc:`lj/cut/tip4p/long (ot) <pair_lj>` | :doc:`lj/expand (cgko) <pair_lj_expand>` | :doc:`lj/gromacs (cgko) <pair_gromacs>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lj/gromacs/coul/gromacs (cko) <pair_gromacs>` | :doc:`lj/long/coul/long (o) <pair_lj_long>` | :doc:`lj/long/dipole/long <pair_dipole>` | :doc:`lj/long/tip4p/long <pair_lj_long>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lj/smooth (co) <pair_lj_smooth>` | :doc:`lj/smooth/linear (o) <pair_lj_smooth_linear>` | :doc:`lj96/cut (cgo) <pair_lj96>` | :doc:`lubricate (o) <pair_lubricate>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`lubricate/poly (o) <pair_lubricate>` | :doc:`lubricateU <pair_lubricateU>` | :doc:`lubricateU/poly <pair_lubricateU>` | :doc:`meam (o) <pair_meam>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`mie/cut (o) <pair_mie>` | :doc:`morse (cgot) <pair_morse>` | :doc:`nb3b/harmonic (o) <pair_nb3b_harmonic>` | :doc:`nm/cut (o) <pair_nm>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`nm/cut/coul/cut (o) <pair_nm>` | :doc:`nm/cut/coul/long (o) <pair_nm>` | :doc:`peri/eps <pair_peri>` | :doc:`peri/lps (o) <pair_peri>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`peri/pmb (o) <pair_peri>` | :doc:`peri/ves <pair_peri>` | :doc:`polymorphic <pair_polymorphic>` | :doc:`reax <pair_reax>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`rebo (o) <pair_airebo>` | :doc:`resquared (go) <pair_resquared>` | :doc:`snap <pair_snap>` | :doc:`soft (go) <pair_soft>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`sw (cgkio) <pair_sw>` | :doc:`table (gko) <pair_table>` | :doc:`tersoff (cgkio) <pair_tersoff>` | :doc:`tersoff/mod (gko) <pair_tersoff_mod>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`tersoff/zbl (gko) <pair_tersoff_zbl>` | :doc:`tip4p/cut (o) <pair_coul>` | :doc:`tip4p/long (o) <pair_coul>` | :doc:`tri/lj <pair_tri_lj>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-| :doc:`vashishta (o) <pair_vashishta>` | :doc:`yukawa (go) <pair_yukawa>` | :doc:`yukawa/colloid (go) <pair_yukawa_colloid>` | :doc:`zbl (go) <pair_zbl>` |
-+-----------------------------------------------------------+-----------------------------------------------------+----------------------------------------------------+-------------------------------------------------------+
-
-These are additional pair styles in USER packages, which can be used
-if :ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`awpmd/cut <pair_awpmd>` | :doc:`buck/mdf <pair_mdf>` | :doc:`coul/cut/soft (o) <pair_lj_soft>` | :doc:`coul/diel (o) <pair_coul_diel>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`coul/long/soft (o) <pair_lj_soft>` | :doc:`dpd/conservative <pair_dpd_conservative>` | :doc:`dpd/fdt <pair_dpd_fdt>` | :doc:`dpd/fdt/energy <pair_dpd_fdt>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`eam/cd (o) <pair_eam>` | :doc:`edip (o) <pair_edip>` | :doc:`eff/cut <pair_eff>` | :doc:`gauss/cut <pair_gauss>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`lennard/mdf <pair_mdf>` | :doc:`list <pair_list>` | :doc:`lj/charmm/coul/long/soft (o) <pair_charmm>` | :doc:`lj/cut/coul/cut/soft (o) <pair_lj_soft>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`lj/cut/coul/long/soft (o) <pair_lj_soft>` | :doc:`lj/cut/dipole/sf (go) <pair_dipole>` | :doc:`lj/cut/soft (o) <pair_lj_soft>` | :doc:`lj/cut/thole/long (o) <pair_thole>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`lj/cut/tip4p/long/soft (o) <pair_lj_soft>` | :doc:`lj/mdf <pair_mdf>` | :doc:`lj/sdk (gko) <pair_sdk>` | :doc:`lj/sdk/coul/long (go) <pair_sdk>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`lj/sdk/coul/msm (o) <pair_sdk>` | :doc:`lj/sf (o) <pair_lj_sf>` | :doc:`meam/spline <pair_meam_spline>` | :doc:`meam/sw/spline <pair_meam_sw_spline>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`mgpt <pair_mgpt>` | :doc:`morse/smooth/linear <pair_morse>` | :doc:`morse/soft <pair_morse>` | :doc:`quip <pair_quip>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`reax/c <pair_reax_c>` | :doc:`smd/hertz <pair_smd_hertz>` | :doc:`smd/tlsph <pair_smd_tlsph>` | :doc:`smd/triangulated/surface <pair_smd_triangulated_surface>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`smd/ulsph <pair_smd_ulsph>` | :doc:`smtbq <pair_smtbq>` | :doc:`sph/heatconduction <pair_sph_heatconduction>` | :doc:`sph/idealgas <pair_sph_idealgas>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`sph/lj <pair_sph_lj>` | :doc:`sph/rhosum <pair_sph_rhosum>` | :doc:`sph/taitwater <pair_sph_taitwater>` | :doc:`sph/taitwater/morris <pair_sph_taitwater_morris>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-| :doc:`srp <pair_srp>` | :doc:`tersoff/table (o) <pair_tersoff>` | :doc:`thole <pair_thole>` | :doc:`tip4p/long/soft (o) <pair_lj_soft>` |
-+--------------------------------------------------+-------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+
-
-
-----------
-
-
-Bond_style potentials
----------------------
-
-See the :doc:`bond_style <bond_style>` command for an overview of bond
-potentials. Click on the style itself for a full description. Some
-of the styles have accelerated versions, which can be used if LAMMPS
-is built with the :doc:`appropriate accelerated package <Section_accelerate>`. This is indicated by additional
-letters in parenthesis: c = USER-CUDA, g = GPU, i = USER-INTEL, k =
-KOKKOS, o = USER-OMP, t = OPT.
-
-+---------------------------------------+-------------------------------------------+--------------------------------------+---------------------------------+
-| :doc:`none <bond_none>` | :doc:`zero <bond_zero>` | :doc:`hybrid <bond_hybrid>` | :doc:`class2 (o) <bond_class2>` |
-+---------------------------------------+-------------------------------------------+--------------------------------------+---------------------------------+
-| :doc:`fene (ko) <bond_fene>` | :doc:`fene/expand (o) <bond_fene_expand>` | :doc:`harmonic (ko) <bond_harmonic>` | :doc:`morse (o) <bond_morse>` |
-+---------------------------------------+-------------------------------------------+--------------------------------------+---------------------------------+
-| :doc:`nonlinear (o) <bond_nonlinear>` | :doc:`quartic (o) <bond_quartic>` | :doc:`table (o) <bond_table>` | |
-+---------------------------------------+-------------------------------------------+--------------------------------------+---------------------------------+
-
-These are additional bond styles in USER packages, which can be used
-if :ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+-------------------------------------------------+---------------------------------------------------------+
-| :doc:`harmonic/shift (o) <bond_harmonic_shift>` | :doc:`harmonic/shift/cut (o) <bond_harmonic_shift_cut>` |
-+-------------------------------------------------+---------------------------------------------------------+
-
-
-----------
-
-
-Angle_style potentials
-----------------------
-
-See the :doc:`angle_style <angle_style>` command for an overview of
-angle potentials. Click on the style itself for a full description.
-Some of the styles have accelerated versions, which can be used if
-LAMMPS is built with the :doc:`appropriate accelerated package <Section_accelerate>`. This is indicated by additional
-letters in parenthesis: c = USER-CUDA, g = GPU, i = USER-INTEL, k =
-KOKKOS, o = USER-OMP, t = OPT.
-
-+--------------------------------------------------+----------------------------------------+----------------------------------------------+----------------------------------------------------+
-| :doc:`none <angle_none>` | :doc:`zero <angle_zero>` | :doc:`hybrid <angle_hybrid>` | :doc:`charmm (ko) <angle_charmm>` |
-+--------------------------------------------------+----------------------------------------+----------------------------------------------+----------------------------------------------------+
-| :doc:`class2 (o) <angle_class2>` | :doc:`cosine (o) <angle_cosine>` | :doc:`cosine/delta (o) <angle_cosine_delta>` | :doc:`cosine/periodic (o) <angle_cosine_periodic>` |
-+--------------------------------------------------+----------------------------------------+----------------------------------------------+----------------------------------------------------+
-| :doc:`cosine/squared (o) <angle_cosine_squared>` | :doc:`harmonic (iko) <angle_harmonic>` | :doc:`table (o) <angle_table>` | |
-+--------------------------------------------------+----------------------------------------+----------------------------------------------+----------------------------------------------------+
-
-These are additional angle styles in USER packages, which can be used
-if :ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+--------------------------------------------------+------------------------------------------------------+----------------------------------+------------------------------------+
-| :doc:`cosine/shift (o) <angle_cosine_shift>` | :doc:`cosine/shift/exp (o) <angle_cosine_shift_exp>` | :doc:`dipole (o) <angle_dipole>` | :doc:`fourier (o) <angle_fourier>` |
-+--------------------------------------------------+------------------------------------------------------+----------------------------------+------------------------------------+
-| :doc:`fourier/simple (o) <angle_fourier_simple>` | :doc:`quartic (o) <angle_quartic>` | :doc:`sdk <angle_sdk>` | |
-+--------------------------------------------------+------------------------------------------------------+----------------------------------+------------------------------------+
-
-
-----------
-
-
-Dihedral_style potentials
--------------------------
-
-See the :doc:`dihedral_style <dihedral_style>` command for an overview
-of dihedral potentials. Click on the style itself for a full
-description. Some of the styles have accelerated versions, which can
-be used if LAMMPS is built with the :doc:`appropriate accelerated package <Section_accelerate>`. This is indicated by additional
-letters in parenthesis: c = USER-CUDA, g = GPU, i = USER-INTEL, k =
-KOKKOS, o = USER-OMP, t = OPT.
-
-+-------------------------------------+------------------------------------------+-----------------------------------+-----------------------------------------------------+
-| :doc:`none <dihedral_none>` | :doc:`zero <dihedral_zero>` | :doc:`hybrid <dihedral_hybrid>` | :doc:`charmm (ko) <dihedral_charmm>` |
-+-------------------------------------+------------------------------------------+-----------------------------------+-----------------------------------------------------+
-| :doc:`class2 (o) <dihedral_class2>` | :doc:`harmonic (io) <dihedral_harmonic>` | :doc:`helix (o) <dihedral_helix>` | :doc:`multi/harmonic (o) <dihedral_multi_harmonic>` |
-+-------------------------------------+------------------------------------------+-----------------------------------+-----------------------------------------------------+
-| :doc:`opls (iko) <dihedral_opls>` | | | |
-+-------------------------------------+------------------------------------------+-----------------------------------+-----------------------------------------------------+
-
-These are additional dihedral styles in USER packages, which can be
-used if :ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+---------------------------------------------------------+---------------------------------------+-------------------------------------------+-------------------------------------------+
-| :doc:`cosine/shift/exp (o) <dihedral_cosine_shift_exp>` | :doc:`fourier (o) <dihedral_fourier>` | :doc:`nharmonic (o) <dihedral_nharmonic>` | :doc:`quadratic (o) <dihedral_quadratic>` |
-+---------------------------------------------------------+---------------------------------------+-------------------------------------------+-------------------------------------------+
-| :doc:`table (o) <dihedral_table>` | | | |
-+---------------------------------------------------------+---------------------------------------+-------------------------------------------+-------------------------------------------+
-
-
-----------
-
-
-Improper_style potentials
--------------------------
-
-See the :doc:`improper_style <improper_style>` command for an overview
-of improper potentials. Click on the style itself for a full
-description. Some of the styles have accelerated versions, which can
-be used if LAMMPS is built with the :doc:`appropriate accelerated package <Section_accelerate>`. This is indicated by additional
-letters in parenthesis: c = USER-CUDA, g = GPU, i = USER-INTEL, k =
-KOKKOS, o = USER-OMP, t = OPT.
-
-+----------------------------------+------------------------------------------+-----------------------------------------+-------------------------------------+
-| :doc:`none <improper_none>` | :doc:`zero <improper_zero>` | :doc:`hybrid <improper_hybrid>` | :doc:`class2 (o) <improper_class2>` |
-+----------------------------------+------------------------------------------+-----------------------------------------+-------------------------------------+
-| :doc:`cvff (io) <improper_cvff>` | :doc:`harmonic (ko) <improper_harmonic>` | :doc:`umbrella (o) <improper_umbrella>` | |
-+----------------------------------+------------------------------------------+-----------------------------------------+-------------------------------------+
-
-These are additional improper styles in USER packages, which can be
-used if :ref:`LAMMPS is built with the appropriate package <start_3>`.
-
-+-----------------------------------+-------------------------------------+---------------------------------------+---------------------------------+
-| :doc:`cossq (o) <improper_cossq>` | :doc:`distance <improper_distance>` | :doc:`fourier (o) <improper_fourier>` | :doc:`ring (o) <improper_ring>` |
-+-----------------------------------+-------------------------------------+---------------------------------------+---------------------------------+
-
-
-----------
-
-
-Kspace solvers
---------------
-
-See the :doc:`kspace_style <kspace_style>` command for an overview of
-Kspace solvers. Click on the style itself for a full description.
-Some of the styles have accelerated versions, which can be used if
-LAMMPS is built with the :doc:`appropriate accelerated package <Section_accelerate>`. This is indicated by additional
-letters in parenthesis: c = USER-CUDA, g = GPU, i = USER-INTEL, k =
-KOKKOS, o = USER-OMP, t = OPT.
-
-+------------------------------------+--------------------------------------+---------------------------------+---------------------------------------+
-| :doc:`ewald (o) <kspace_style>` | :doc:`ewald/disp <kspace_style>` | :doc:`msm (o) <kspace_style>` | :doc:`msm/cg (o) <kspace_style>` |
-+------------------------------------+--------------------------------------+---------------------------------+---------------------------------------+
-| :doc:`pppm (cgo) <kspace_style>` | :doc:`pppm/cg (o) <kspace_style>` | :doc:`pppm/disp <kspace_style>` | :doc:`pppm/disp/tip4p <kspace_style>` |
-+------------------------------------+--------------------------------------+---------------------------------+---------------------------------------+
-| :doc:`pppm/stagger <kspace_style>` | :doc:`pppm/tip4p (o) <kspace_style>` | | |
-+------------------------------------+--------------------------------------+---------------------------------+---------------------------------------+
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_errors.txt b/doc/_sources/Section_errors.txt
deleted file mode 100644
index e4901c70d..000000000
--- a/doc/_sources/Section_errors.txt
+++ /dev/null
@@ -1,9259 +0,0 @@
-Errors
-======
-
-This section describes the errors you can encounter when using LAMMPS,
-either conceptually, or as printed out by the program.
-
-| 12.1 :ref:`Common problems <err_1>`
-| 12.2 :ref:`Reporting bugs <err_2>`
-| 12.3 :ref:`Error & warning messages <err_3>`
-|
-
-
-
-
-
-.. _err_1:
-
-Common problems
----------------
-
-If two LAMMPS runs do not produce the same answer on different
-machines or different numbers of processors, this is typically not a
-bug. In theory you should get identical answers on any number of
-processors and on any machine. In practice, numerical round-off can
-cause slight differences and eventual divergence of molecular dynamics
-phase space trajectories within a few 100s or few 1000s of timesteps.
-However, the statistical properties of the two runs (e.g. average
-energy or temperature) should still be the same.
-
-If the :doc:`velocity <velocity>` command is used to set initial atom
-velocities, a particular atom can be assigned a different velocity
-when the problem is run on a different number of processors or on
-different machines. If this happens, the phase space trajectories of
-the two simulations will rapidly diverge. See the discussion of the
-*loop* option in the :doc:`velocity <velocity>` command for details and
-options that avoid this issue.
-
-Similarly, the :doc:`create_atoms <create_atoms>` command generates a
-lattice of atoms. For the same physical system, the ordering and
-numbering of atoms by atom ID may be different depending on the number
-of processors.
-
-Some commands use random number generators which may be setup to
-produce different random number streams on each processor and hence
-will produce different effects when run on different numbers of
-processors. A commonly-used example is the :doc:`fix langevin <fix_langevin>` command for thermostatting.
-
-A LAMMPS simulation typically has two stages, setup and run. Most
-LAMMPS errors are detected at setup time; others like a bond
-stretching too far may not occur until the middle of a run.
-
-LAMMPS tries to flag errors and print informative error messages so
-you can fix the problem. Of course, LAMMPS cannot figure out your
-physics or numerical mistakes, like choosing too big a timestep,
-specifying erroneous force field coefficients, or putting 2 atoms on
-top of each other! If you run into errors that LAMMPS doesn't catch
-that you think it should flag, please send an email to the
-`developers <http://lammps.sandia.gov/authors.html>`_.
-
-If you get an error message about an invalid command in your input
-script, you can determine what command is causing the problem by
-looking in the log.lammps file or using the :doc:`echo command <echo>`
-to see it on the screen. If you get an error like "Invalid ...
-style", with ... being fix, compute, pair, etc, it means that you
-mistyped the style name or that the command is part of an optional
-package which was not compiled into your executable. The list of
-available styles in your executable can be listed by using :ref:`the -h command-line argument <start_7>`. The installation
-and compilation of optional packages is explained in the :ref:`installation instructions <start_3>`.
-
-For a given command, LAMMPS expects certain arguments in a specified
-order. If you mess this up, LAMMPS will often flag the error, but it
-may also simply read a bogus argument and assign a value that is
-valid, but not what you wanted. E.g. trying to read the string "abc"
-as an integer value of 0. Careful reading of the associated doc page
-for the command should allow you to fix these problems. Note that
-some commands allow for variables to be specified in place of numeric
-constants so that the value can be evaluated and change over the
-course of a run. This is typically done with the syntax *v_name* for
-a parameter, where name is the name of the variable. This is only
-allowed if the command documentation says it is.
-
-Generally, LAMMPS will print a message to the screen and logfile and
-exit gracefully when it encounters a fatal error. Sometimes it will
-print a WARNING to the screen and logfile and continue on; you can
-decide if the WARNING is important or not. A WARNING message that is
-generated in the middle of a run is only printed to the screen, not to
-the logfile, to avoid cluttering up thermodynamic output. If LAMMPS
-crashes or hangs without spitting out an error message first then it
-could be a bug (see :ref:`this section <err_2>`) or one of the following
-cases:
-
-LAMMPS runs in the available memory a processor allows to be
-allocated. Most reasonable MD runs are compute limited, not memory
-limited, so this shouldn't be a bottleneck on most platforms. Almost
-all large memory allocations in the code are done via C-style malloc's
-which will generate an error message if you run out of memory.
-Smaller chunks of memory are allocated via C++ "new" statements. If
-you are unlucky you could run out of memory just when one of these
-small requests is made, in which case the code will crash or hang (in
-parallel), since LAMMPS doesn't trap on those errors.
-
-Illegal arithmetic can cause LAMMPS to run slow or crash. This is
-typically due to invalid physics and numerics that your simulation is
-computing. If you see wild thermodynamic values or NaN values in your
-LAMMPS output, something is wrong with your simulation. If you
-suspect this is happening, it is a good idea to print out
-thermodynamic info frequently (e.g. every timestep) via the
-:doc:`thermo <thermo>` so you can monitor what is happening.
-Visualizing the atom movement is also a good idea to insure your model
-is behaving as you expect.
-
-In parallel, one way LAMMPS can hang is due to how different MPI
-implementations handle buffering of messages. If the code hangs
-without an error message, it may be that you need to specify an MPI
-setting or two (usually via an environment variable) to enable
-buffering or boost the sizes of messages that can be buffered.
-
-
-----------
-
-
-.. _err_2:
-
-Reporting bugs
---------------
-
-If you are confident that you have found a bug in LAMMPS, follow these
-steps.
-
-Check the `New features and bug fixes <http://lammps.sandia.gov/bug.html>`_ section of the `LAMMPS WWW site <lws_>`_ to see if the bug has already been reported or fixed or the
-`Unfixed bug <http://lammps.sandia.gov/unbug.html>`_ to see if a fix is
-pending.
-
-Check the `mailing list <http://lammps.sandia.gov/mail.html>`_
-to see if it has been discussed before.
-
-If not, send an email to the mailing list describing the problem with
-any ideas you have as to what is causing it or where in the code the
-problem might be. The developers will ask for more info if needed,
-such as an input script or data files.
-
-The most useful thing you can do to help us fix the bug is to isolate
-the problem. Run it on the smallest number of atoms and fewest number
-of processors and with the simplest input script that reproduces the
-bug and try to identify what command or combination of commands is
-causing the problem.
-
-As a last resort, you can send an email directly to the
-`developers <http://lammps.sandia.gov/authors.html>`_.
-
-
-----------
-
-
-.. _err_3:
-
-Error & warning messages
-------------------------------------
-
-These are two alphabetic lists of the :ref:`ERROR <error>` and
-:ref:`WARNING <warn>` messages LAMMPS prints out and the reason why. If the
-explanation here is not sufficient, the documentation for the
-offending command may help.
-Error and warning messages also list the source file and line number
-where the error was generated. For example, this message
-
-ERROR: Illegal velocity command (velocity.cpp:78)
-
-means that line #78 in the file src/velocity.cpp generated the error.
-Looking in the source code may help you figure out what went wrong.
-
-Note that error messages from :ref:`user-contributed packages <start_3>` are not listed here. If such an
-error occurs and is not self-explanatory, you'll need to look in the
-source code or contact the author of the package.
-
-.. _error:
-
-Errors:
--------------------
-
-
-
-*1-3 bond count is inconsistent*
- An inconsistency was detected when computing the number of 1-3
- neighbors for each atom. This likely means something is wrong with
- the bond topologies you have defined.
-
-*1-4 bond count is inconsistent*
- An inconsistency was detected when computing the number of 1-4
- neighbors for each atom. This likely means something is wrong with
- the bond topologies you have defined.
-
-*Accelerator sharing is not currently supported on system*
- Multiple MPI processes cannot share the accelerator on your
- system. For NVIDIA GPUs, see the nvidia-smi command to change this
- setting.
-
-*All angle coeffs are not set*
- All angle coefficients must be set in the data file or by the
- angle_coeff command before running a simulation.
-
-*All atom IDs = 0 but atom_modify id = yes*
- Self-explanatory.
-
-*All atoms of a swapped type must have same charge.*
- Self-explanatory.
-
-*All atoms of a swapped type must have the same charge.*
- Self-explanatory.
-
-*All bond coeffs are not set*
- All bond coefficients must be set in the data file or by the
- bond_coeff command before running a simulation.
-
-*All dihedral coeffs are not set*
- All dihedral coefficients must be set in the data file or by the
- dihedral_coeff command before running a simulation.
-
-*All improper coeffs are not set*
- All improper coefficients must be set in the data file or by the
- improper_coeff command before running a simulation.
-
-*All masses are not set*
- For atom styles that define masses for each atom type, all masses must
- be set in the data file or by the mass command before running a
- simulation. They must also be set before using the velocity
- command.
-
-*All mol IDs should be set for fix gcmc group atoms*
- The molecule flag is on, yet not all molecule ids in the fix group
- have been set to non-zero positive values by the user. This is an
- error since all atoms in the fix gcmc group are eligible for deletion,
- rotation, and translation and therefore must have valid molecule ids.
-
-*All pair coeffs are not set*
- All pair coefficients must be set in the data file or by the
- pair_coeff command before running a simulation.
-
-*All read_dump x,y,z fields must be specified for scaled, triclinic coords*
- For triclinic boxes and scaled coordinates you must specify all 3 of
- the x,y,z fields, else LAMMPS cannot reconstruct the unscaled
- coordinates.
-
-*All universe/uloop variables must have same # of values*
- Self-explanatory.
-
-*All variables in next command must be same style*
- Self-explanatory.
-
-*Angle atom missing in delete_bonds*
- The delete_bonds command cannot find one or more atoms in a particular
- angle on a particular processor. The pairwise cutoff is too short or
- the atoms are too far apart to make a valid angle.
-
-*Angle atom missing in set command*
- The set command cannot find one or more atoms in a particular angle on
- a particular processor. The pairwise cutoff is too short or the atoms
- are too far apart to make a valid angle.
-
-*Angle atoms %d %d %d missing on proc %d at step %ld*
- One or more of 3 atoms needed to compute a particular angle are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the angle has blown apart and an atom is
- too far away.
-
-*Angle atoms missing on proc %d at step %ld*
- One or more of 3 atoms needed to compute a particular angle are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the angle has blown apart and an atom is
- too far away.
-
-*Angle coeff for hybrid has invalid style*
- Angle style hybrid uses another angle style as one of its
- coefficients. The angle style used in the angle_coeff command or read
- from a restart file is not recognized.
-
-*Angle coeffs are not set*
- No angle coefficients have been assigned in the data file or via the
- angle_coeff command.
-
-*Angle extent > half of periodic box length*
- This error was detected by the neigh_modify check yes setting. It is
- an error because the angle atoms are so far apart it is ambiguous how
- it should be defined.
-
-*Angle potential must be defined for SHAKE*
- When shaking angles, an angle_style potential must be used.
-
-*Angle style hybrid cannot have hybrid as an argument*
- Self-explanatory.
-
-*Angle style hybrid cannot have none as an argument*
- Self-explanatory.
-
-*Angle style hybrid cannot use same angle style twice*
- Self-explanatory.
-
-*Angle table must range from 0 to 180 degrees*
- Self-explanatory.
-
-*Angle table parameters did not set N*
- List of angle table parameters must include N setting.
-
-*Angle_coeff command before angle_style is defined*
- Coefficients cannot be set in the data file or via the angle_coeff
- command until an angle_style has been assigned.
-
-*Angle_coeff command before simulation box is defined*
- The angle_coeff command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Angle_coeff command when no angles allowed*
- The chosen atom style does not allow for angles to be defined.
-
-*Angle_style command when no angles allowed*
- The chosen atom style does not allow for angles to be defined.
-
-*Angles assigned incorrectly*
- Angles read in from the data file were not assigned correctly to
- atoms. This means there is something invalid about the topology
- definitions.
-
-*Angles defined but no angle types*
- The data file header lists angles but no angle types.
-
-*Append boundary must be shrink/minimum*
- The boundary style of the face where atoms are added
- must be of type m (shrink/minimum).
-
-*Arccos of invalid value in variable formula*
- Argument of arccos() must be between -1 and 1.
-
-*Arcsin of invalid value in variable formula*
- Argument of arcsin() must be between -1 and 1.
-
-*Assigning body parameters to non-body atom*
- Self-explanatory.
-
-*Assigning ellipsoid parameters to non-ellipsoid atom*
- Self-explanatory.
-
-*Assigning line parameters to non-line atom*
- Self-explanatory.
-
-*Assigning quat to non-body atom*
- Self-explanatory.
-
-*Assigning tri parameters to non-tri atom*
- Self-explanatory.
-
-*At least one atom of each swapped type must be present to define charges.*
- Self-explanatory.
-
-*Atom IDs must be consecutive for velocity create loop all*
- Self-explanatory.
-
-*Atom IDs must be used for molecular systems*
- Atom IDs are used to identify and find partner atoms in bonds.
-
-*Atom count changed in fix neb*
- This is not allowed in a NEB calculation.
-
-*Atom count is inconsistent, cannot write data file*
- The sum of atoms across processors does not equal the global number
- of atoms. Probably some atoms have been lost.
-
-*Atom count is inconsistent, cannot write restart file*
- Sum of atoms across processors does not equal initial total count.
- This is probably because you have lost some atoms.
-
-*Atom in too many rigid bodies - boost MAXBODY*
- Fix poems has a parameter MAXBODY (in fix_poems.cpp) which determines
- the maximum number of rigid bodies a single atom can belong to (i.e. a
- multibody joint). The bodies you have defined exceed this limit.
-
-*Atom sort did not operate correctly*
- This is an internal LAMMPS error. Please report it to the
- developers.
-
-*Atom sorting has bin size = 0.0*
- The neighbor cutoff is being used as the bin size, but it is zero.
- Thus you must explicitly list a bin size in the atom_modify sort
- command or turn off sorting.
-
-*Atom style hybrid cannot have hybrid as an argument*
- Self-explanatory.
-
-*Atom style hybrid cannot use same atom style twice*
- Self-explanatory.
-
-*Atom style template molecule must have atom types*
- The defined molecule(s) does not specify atom types.
-
-*Atom style was redefined after using fix property/atom*
- This is not allowed.
-
-*Atom type must be zero in fix gcmc mol command*
- Self-explanatory.
-
-*Atom vector in equal-style variable formula*
- Atom vectors generate one value per atom which is not allowed
- in an equal-style variable.
-
-*Atom-style variable in equal-style variable formula*
- Atom-style variables generate one value per atom which is not allowed
- in an equal-style variable.
-
-*Atom_modify id command after simulation box is defined*
- The atom_modify id command cannot be used after a read_data,
- read_restart, or create_box command.
-
-*Atom_modify map command after simulation box is defined*
- The atom_modify map command cannot be used after a read_data,
- read_restart, or create_box command.
-
-*Atom_modify sort and first options cannot be used together*
- Self-explanatory.
-
-*Atom_style command after simulation box is defined*
- The atom_style command cannot be used after a read_data,
- read_restart, or create_box command.
-
-*Atom_style line can only be used in 2d simulations*
- Self-explanatory.
-
-*Atom_style tri can only be used in 3d simulations*
- Self-explanatory.
-
-*Atomfile variable could not read values*
- Check the file assigned to the variable.
-
-*Atomfile variable in equal-style variable formula*
- Self-explanatory.
-
-*Atomfile-style variable in equal-style variable formula*
- Self-explanatory.
-
-*Attempt to pop empty stack in fix box/relax*
- Internal LAMMPS error. Please report it to the developers.
-
-*Attempt to push beyond stack limit in fix box/relax*
- Internal LAMMPS error. Please report it to the developers.
-
-*Attempting to rescale a 0.0 temperature*
- Cannot rescale a temperature that is already 0.0.
-
-*Bad FENE bond*
- Two atoms in a FENE bond have become so far apart that the bond cannot
- be computed.
-
-*Bad TIP4P angle type for PPPM/TIP4P*
- Specified angle type is not valid.
-
-*Bad TIP4P angle type for PPPMDisp/TIP4P*
- Specified angle type is not valid.
-
-*Bad TIP4P bond type for PPPM/TIP4P*
- Specified bond type is not valid.
-
-*Bad TIP4P bond type for PPPMDisp/TIP4P*
- Specified bond type is not valid.
-
-*Bad fix ID in fix append/atoms command*
- The value of the fix_id for keyword spatial must start with the suffix
- f_.
-
-*Bad grid of processors*
- The 3d grid of processors defined by the processors command does not
- match the number of processors LAMMPS is being run on.
-
-*Bad kspace_modify kmax/ewald parameter*
- Kspace_modify values for the kmax/ewald keyword must be integers > 0
-
-*Bad kspace_modify slab parameter*
- Kspace_modify value for the slab/volume keyword must be >= 2.0.
-
-*Bad matrix inversion in mldivide3*
- This error should not occur unless the matrix is badly formed.
-
-*Bad principal moments*
- Fix rigid did not compute the principal moments of inertia of a rigid
- group of atoms correctly.
-
-*Bad quadratic solve for particle/line collision*
- This is an internal error. It should nornally not occur.
-
-*Bad quadratic solve for particle/tri collision*
- This is an internal error. It should nornally not occur.
-
-*Bad real space Coulomb cutoff in fix tune/kspace*
- Fix tune/kspace tried to find the optimal real space Coulomb cutoff using
- the Newton-Rhaphson method, but found a non-positive or NaN cutoff
-
-*Balance command before simulation box is defined*
- The balance command cannot be used before a read_data, read_restart,
- or create_box command.
-
-*Balance produced bad splits*
- This should not occur. It means two or more cutting plane locations
- are on top of each other or out of order. Report the problem to the
- developers.
-
-*Balance rcb cannot be used with comm_style brick*
- Comm_style tiled must be used instead.
-
-*Balance shift string is invalid*
- The string can only contain the characters "x", "y", or "z".
-
-*Bias compute does not calculate a velocity bias*
- The specified compute must compute a bias for temperature.
-
-*Bias compute does not calculate temperature*
- The specified compute must compute temperature.
-
-*Bias compute group does not match compute group*
- The specified compute must operate on the same group as the parent
- compute.
-
-*Big particle in fix srd cannot be point particle*
- Big particles must be extended spheriods or ellipsoids.
-
-*Bigint setting in lmptype.h is invalid*
- Size of bigint is less than size of tagint.
-
-*Bigint setting in lmptype.h is not compatible*
- Format of bigint stored in restart file is not consistent with LAMMPS
- version you are running. See the settings in src/lmptype.h
-
-*Bitmapped lookup tables require int/float be same size*
- Cannot use pair tables on this machine, because of word sizes. Use
- the pair_modify command with table 0 instead.
-
-*Bitmapped table in file does not match requested table*
- Setting for bitmapped table in pair_coeff command must match table
- in file exactly.
-
-*Bitmapped table is incorrect length in table file*
- Number of table entries is not a correct power of 2.
-
-*Bond and angle potentials must be defined for TIP4P*
- Cannot use TIP4P pair potential unless bond and angle potentials
- are defined.
-
-*Bond atom missing in box size check*
- The 2nd atoms needed to compute a particular bond is missing on this
- processor. Typically this is because the pairwise cutoff is set too
- short or the bond has blown apart and an atom is too far away.
-
-*Bond atom missing in delete_bonds*
- The delete_bonds command cannot find one or more atoms in a particular
- bond on a particular processor. The pairwise cutoff is too short or
- the atoms are too far apart to make a valid bond.
-
-*Bond atom missing in image check*
- The 2nd atom in a particular bond is missing on this processor.
- Typically this is because the pairwise cutoff is set too short or the
- bond has blown apart and an atom is too far away.
-
-*Bond atom missing in set command*
- The set command cannot find one or more atoms in a particular bond on
- a particular processor. The pairwise cutoff is too short or the atoms
- are too far apart to make a valid bond.
-
-*Bond atoms %d %d missing on proc %d at step %ld*
- The 2nd atom needed to compute a particular bond is missing on this
- processor. Typically this is because the pairwise cutoff is set too
- short or the bond has blown apart and an atom is too far away.
-
-*Bond atoms missing on proc %d at step %ld*
- The 2nd atom needed to compute a particular bond is missing on this
- processor. Typically this is because the pairwise cutoff is set too
- short or the bond has blown apart and an atom is too far away.
-
-*Bond coeff for hybrid has invalid style*
- Bond style hybrid uses another bond style as one of its coefficients.
- The bond style used in the bond_coeff command or read from a restart
- file is not recognized.
-
-*Bond coeffs are not set*
- No bond coefficients have been assigned in the data file or via the
- bond_coeff command.
-
-*Bond extent > half of periodic box length*
- This error was detected by the neigh_modify check yes setting. It is
- an error because the bond atoms are so far apart it is ambiguous how
- it should be defined.
-
-*Bond potential must be defined for SHAKE*
- Cannot use fix shake unless bond potential is defined.
-
-*Bond style hybrid cannot have hybrid as an argument*
- Self-explanatory.
-
-*Bond style hybrid cannot have none as an argument*
- Self-explanatory.
-
-*Bond style hybrid cannot use same bond style twice*
- Self-explanatory.
-
-*Bond style quartic cannot be used with 3,4-body interactions*
- No angle, dihedral, or improper styles can be defined when using
- bond style quartic.
-
-*Bond style quartic cannot be used with atom style template*
- This bond style can change the bond topology which is not
- allowed with this atom style.
-
-*Bond style quartic requires special_bonds = 1,1,1*
- This is a restriction of the current bond quartic implementation.
-
-*Bond table parameters did not set N*
- List of bond table parameters must include N setting.
-
-*Bond table values are not increasing*
- The values in the tabulated file must be monotonically increasing.
-
-*BondAngle coeff for hybrid angle has invalid format*
- No "ba" field should appear in data file entry.
-
-*BondBond coeff for hybrid angle has invalid format*
- No "bb" field should appear in data file entry.
-
-*Bond_coeff command before bond_style is defined*
- Coefficients cannot be set in the data file or via the bond_coeff
- command until an bond_style has been assigned.
-
-*Bond_coeff command before simulation box is defined*
- The bond_coeff command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Bond_coeff command when no bonds allowed*
- The chosen atom style does not allow for bonds to be defined.
-
-*Bond_style command when no bonds allowed*
- The chosen atom style does not allow for bonds to be defined.
-
-*Bonds assigned incorrectly*
- Bonds read in from the data file were not assigned correctly to atoms.
- This means there is something invalid about the topology definitions.
-
-*Bonds defined but no bond types*
- The data file header lists bonds but no bond types.
-
-*Both restart files must use % or neither*
- Self-explanatory.
-
-*Both restart files must use MPI-IO or neither*
- Self-explanatory.
-
-*Both sides of boundary must be periodic*
- Cannot specify a boundary as periodic only on the lo or hi side. Must
- be periodic on both sides.
-
-*Boundary command after simulation box is defined*
- The boundary command cannot be used after a read_data, read_restart,
- or create_box command.
-
-*Box bounds are invalid*
- The box boundaries specified in the read_data file are invalid. The
- lo value must be less than the hi value for all 3 dimensions.
-
-*Box command after simulation box is defined*
- The box command cannot be used after a read_data, read_restart, or
- create_box command.
-
-*CPU neighbor lists must be used for ellipsoid/sphere mix.*
- When using Gay-Berne or RE-squared pair styles with both ellipsoidal and
- spherical particles, the neighbor list must be built on the CPU
-
-*Can not specify Pxy/Pxz/Pyz in fix box/relax with non-triclinic box*
- Only triclinic boxes can be used with off-diagonal pressure components.
- See the region prism command for details.
-
-*Can not specify Pxy/Pxz/Pyz in fix nvt/npt/nph with non-triclinic box*
- Only triclinic boxes can be used with off-diagonal pressure components.
- See the region prism command for details.
-
-*Can only use -plog with multiple partitions*
- Self-explanatory. See doc page discussion of command-line switches.
-
-*Can only use -pscreen with multiple partitions*
- Self-explanatory. See doc page discussion of command-line switches.
-
-*Can only use Kokkos supported regions with Kokkos package*
- Self-explanatory.
-
-*Can only use NEB with 1-processor replicas*
- This is current restriction for NEB as implemented in LAMMPS.
-
-*Can only use TAD with 1-processor replicas for NEB*
- This is current restriction for NEB as implemented in LAMMPS.
-
-*Cannot (yet) do analytic differentiation with pppm/gpu*
- This is a current restriction of this command.
-
-*Cannot (yet) request ghost atoms with Kokkos half neighbor list*
- This feature is not yet supported.
-
-*Cannot (yet) use 'electron' units with dipoles*
- This feature is not yet supported.
-
-*Cannot (yet) use Ewald with triclinic box and slab correction*
- This feature is not yet supported.
-
-*Cannot (yet) use K-space slab correction with compute group/group for triclinic systems*
- This option is not yet supported.
-
-*Cannot (yet) use MSM with 2d simulation*
- This feature is not yet supported.
-
-*Cannot (yet) use PPPM with triclinic box and TIP4P*
- This feature is not yet supported.
-
-*Cannot (yet) use PPPM with triclinic box and kspace_modify diff ad*
- This feature is not yet supported.
-
-*Cannot (yet) use PPPM with triclinic box and slab correction*
- This feature is not yet supported.
-
-*Cannot (yet) use kspace slab correction with long-range dipoles and non-neutral systems or per-atom energy*
- This feature is not yet supported.
-
-*Cannot (yet) use kspace_modify diff ad with compute group/group*
- This option is not yet supported.
-
-*Cannot (yet) use kspace_style pppm/stagger with triclinic systems*
- This feature is not yet supported.
-
-*Cannot (yet) use molecular templates with Kokkos*
- Self-explanatory.
-
-*Cannot (yet) use respa with Kokkos*
- Self-explanatory.
-
-*Cannot (yet) use rigid bodies with fix deform and Kokkos*
- Self-explanatory.
-
-*Cannot (yet) use rigid bodies with fix nh and Kokkos*
- Self-explanatory.
-
-*Cannot (yet) use single precision with MSM (remove -DFFT_SINGLE from Makefile and recompile)*
- Single precision cannot be used with MSM.
-
-*Cannot add atoms to fix move variable*
- Atoms can not be added afterwards to this fix option.
-
-*Cannot append atoms to a triclinic box*
- The simulation box must be defined with edges alligned with the
- Cartesian axes.
-
-*Cannot balance in z dimension for 2d simulation*
- Self-explanatory.
-
-*Cannot change box ortho/triclinic with certain fixes defined*
- This is because those fixes store the shape of the box. You need to
- use unfix to discard the fix, change the box, then redefine a new
- fix.
-
-*Cannot change box ortho/triclinic with dumps defined*
- This is because some dumps store the shape of the box. You need to
- use undump to discard the dump, change the box, then redefine a new
- dump.
-
-*Cannot change box tilt factors for orthogonal box*
- Cannot use tilt factors unless the simulation box is non-orthogonal.
-
-*Cannot change box to orthogonal when tilt is non-zero*
- Self-explanatory.
-
-*Cannot change box z boundary to nonperiodic for a 2d simulation*
- Self-explanatory.
-
-*Cannot change dump_modify every for dump dcd*
- The frequency of writing dump dcd snapshots cannot be changed.
-
-*Cannot change dump_modify every for dump xtc*
- The frequency of writing dump xtc snapshots cannot be changed.
-
-*Cannot change timestep once fix srd is setup*
- This is because various SRD properties depend on the timestep
- size.
-
-*Cannot change timestep with fix pour*
- This is because fix pour pre-computes the time delay for particles to
- fall out of the insertion volume due to gravity.
-
-*Cannot change to comm_style brick from tiled layout*
- Self-explanatory.
-
-*Cannot change_box after reading restart file with per-atom info*
- This is because the restart file info cannot be migrated with the
- atoms. You can get around this by performing a 0-timestep run which
- will assign the restart file info to actual atoms.
-
-*Cannot change_box in xz or yz for 2d simulation*
- Self-explanatory.
-
-*Cannot change_box in z dimension for 2d simulation*
- Self-explanatory.
-
-*Cannot clear group all*
- This operation is not allowed.
-
-*Cannot close restart file - MPI error: %s*
- This error was generated by MPI when reading/writing an MPI-IO restart
- file.
-
-*Cannot compute initial g_ewald_disp*
- LAMMPS failed to compute an initial guess for the PPPM_disp g_ewald_6
- factor that partitions the computation between real space and k-space
- for Disptersion interactions.
-
-*Cannot create an atom map unless atoms have IDs*
- The simulation requires a mapping from global atom IDs to local atoms,
- but the atoms that have been defined have no IDs.
-
-*Cannot create atoms with undefined lattice*
- Must use the lattice command before using the create_atoms
- command.
-
-*Cannot create/grow a vector/array of pointers for %s*
- LAMMPS code is making an illegal call to the templated memory
- allocaters, to create a vector or array of pointers.
-
-*Cannot create_atoms after reading restart file with per-atom info*
- The per-atom info was stored to be used when by a fix that you may
- re-define. If you add atoms before re-defining the fix, then there
- will not be a correct amount of per-atom info.
-
-*Cannot create_box after simulation box is defined*
- A simulation box can only be defined once.
-
-*Cannot currently use pair reax with pair hybrid*
- This is not yet supported.
-
-*Cannot currently use pppm/gpu with fix balance.*
- Self-explanatory.
-
-*Cannot delete group all*
- Self-explanatory.
-
-*Cannot delete group currently used by a compute*
- Self-explanatory.
-
-*Cannot delete group currently used by a dump*
- Self-explanatory.
-
-*Cannot delete group currently used by a fix*
- Self-explanatory.
-
-*Cannot delete group currently used by atom_modify first*
- Self-explanatory.
-
-*Cannot delete_atoms bond yes for non-molecular systems*
- Self-explanatory.
-
-*Cannot displace_atoms after reading restart file with per-atom info*
- This is because the restart file info cannot be migrated with the
- atoms. You can get around this by performing a 0-timestep run which
- will assign the restart file info to actual atoms.
-
-*Cannot do GCMC on atoms in atom_modify first group*
- This is a restriction due to the way atoms are organized in a list to
- enable the atom_modify first command.
-
-*Cannot do atom/swap on atoms in atom_modify first group*
- This is a restriction due to the way atoms are organized in a list to
- enable the atom_modify first command.
-
-*Cannot dump sort on atom IDs with no atom IDs defined*
- Self-explanatory.
-
-*Cannot dump sort when multiple dump files are written*
- In this mode, each processor dumps its atoms to a file, so
- no sorting is allowed.
-
-*Cannot embed Python when also extending Python with LAMMPS*
- When running LAMMPS via Python through the LAMMPS library interface
- you cannot also user the input script python command.
-
-*Cannot evaporate atoms in atom_modify first group*
- This is a restriction due to the way atoms are organized in
- a list to enable the atom_modify first command.
-
-*Cannot find create_bonds group ID*
- Self-explanatory.
-
-*Cannot find delete_bonds group ID*
- Group ID used in the delete_bonds command does not exist.
-
-*Cannot find specified group ID for core particles*
- Self-explanatory.
-
-*Cannot find specified group ID for shell particles*
- Self-explanatory.
-
-*Cannot have both pair_modify shift and tail set to yes*
- These 2 options are contradictory.
-
-*Cannot intersect groups using a dynamic group*
- This operation is not allowed.
-
-*Cannot mix molecular and molecule template atom styles*
- Self-explanatory.
-
-*Cannot open -reorder file*
- Self-explanatory.
-
-*Cannot open ADP potential file %s*
- The specified ADP potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open AIREBO potential file %s*
- The specified AIREBO potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open BOP potential file %s*
- The specified BOP potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open COMB potential file %s*
- The specified COMB potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open COMB3 lib.comb3 file*
- The COMB3 library file cannot be opened. Check that the path and name
- are correct.
-
-*Cannot open COMB3 potential file %s*
- The specified COMB3 potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open EAM potential file %s*
- The specified EAM potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open EIM potential file %s*
- The specified EIM potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open LCBOP potential file %s*
- The specified LCBOP potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open MEAM potential file %s*
- The specified MEAM potential file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open SNAP coefficient file %s*
- The specified SNAP coefficient file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open SNAP parameter file %s*
- The specified SNAP parameter file cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open Stillinger-Weber potential file %s*
- The specified SW potential file cannot be opened. Check that the path
- and name are correct.
-
-*Cannot open Tersoff potential file %s*
- The specified potential file cannot be opened. Check that the path
- and name are correct.
-
-*Cannot open Vashishta potential file %s*
- The specified Vashishta potential file cannot be opened. Check that the path
- and name are correct.
-
-*Cannot open balance output file*
- Self-explanatory.
-
-*Cannot open coul/streitz potential file %s*
- The specified coul/streitz potential file cannot be opened. Check
- that the path and name are correct.
-
-*Cannot open custom file*
- Self-explanatory.
-
-*Cannot open data file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open dir to search for restart file*
- Using a "*" in the name of the restart file will open the current
- directory to search for matching file names.
-
-*Cannot open dump file*
- Self-explanatory.
-
-*Cannot open dump file %s*
- The output file for the dump command cannot be opened. Check that the
- path and name are correct.
-
-*Cannot open file %s*
- The specified file cannot be opened. Check that the path and name are
- correct. If the file is a compressed file, also check that the gzip
- executable can be found and run.
-
-*Cannot open file variable file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix ave/chunk file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix ave/correlate file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix ave/histo file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix ave/spatial file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix ave/time file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix balance output file*
- Self-explanatory.
-
-*Cannot open fix poems file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix print file %s*
- The output file generated by the fix print command cannot be opened
-
-*Cannot open fix qeq parameter file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix qeq/comb file %s*
- The output file for the fix qeq/combs command cannot be opened.
- Check that the path and name are correct.
-
-*Cannot open fix reax/bonds file %s*
- The output file for the fix reax/bonds command cannot be opened.
- Check that the path and name are correct.
-
-*Cannot open fix rigid infile %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix rigid restart file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix rigid/small infile %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open fix tmd file %s*
- The output file for the fix tmd command cannot be opened. Check that
- the path and name are correct.
-
-*Cannot open fix ttm file %s*
- The output file for the fix ttm command cannot be opened. Check that
- the path and name are correct.
-
-*Cannot open gzipped file*
- LAMMPS was compiled without support for reading and writing gzipped
- files through a pipeline to the gzip program with -DLAMMPS_GZIP.
-
-*Cannot open input script %s*
- Self-explanatory.
-
-*Cannot open log.cite file*
- This file is created when you use some LAMMPS features, to indicate
- what paper you should cite on behalf of those who implemented
- the feature. Check that you have write priveleges into the directory
- you are running in.
-
-*Cannot open log.lammps for writing*
- The default LAMMPS log file cannot be opened. Check that the
- directory you are running in allows for files to be created.
-
-*Cannot open logfile*
- The LAMMPS log file named in a command-line argument cannot be opened.
- Check that the path and name are correct.
-
-*Cannot open logfile %s*
- The LAMMPS log file specified in the input script cannot be opened.
- Check that the path and name are correct.
-
-*Cannot open molecule file %s*
- The specified file cannot be opened. Check that the path and name are
- correct.
-
-*Cannot open nb3b/harmonic potential file %s*
- The specified potential file cannot be opened. Check that the path
- and name are correct.
-
-*Cannot open pair_write file*
- The specified output file for pair energies and forces cannot be
- opened. Check that the path and name are correct.
-
-*Cannot open polymorphic potential file %s*
- The specified polymorphic potential file cannot be opened. Check that
- the path and name are correct.
-
-*Cannot open print file %s*
- Self-explanatory.
-
-*Cannot open processors output file*
- Self-explanatory.
-
-*Cannot open restart file %s*
- Self-explanatory.
-
-*Cannot open restart file for reading - MPI error: %s*
- This error was generated by MPI when reading/writing an MPI-IO restart
- file.
-
-*Cannot open restart file for writing - MPI error: %s*
- This error was generated by MPI when reading/writing an MPI-IO restart
- file.
-
-*Cannot open screen file*
- The screen file specified as a command-line argument cannot be
- opened. Check that the directory you are running in allows for files
- to be created.
-
-*Cannot open temporary file for world counter.*
- Self-explanatory.
-
-*Cannot open universe log file*
- For a multi-partition run, the master log file cannot be opened.
- Check that the directory you are running in allows for files to be
- created.
-
-*Cannot open universe screen file*
- For a multi-partition run, the master screen file cannot be opened.
- Check that the directory you are running in allows for files to be
- created.
-
-*Cannot read from restart file - MPI error: %s*
- This error was generated by MPI when reading/writing an MPI-IO restart
- file.
-
-*Cannot read_data without add keyword after simulation box is defined*
- Self-explanatory.
-
-*Cannot read_restart after simulation box is defined*
- The read_restart command cannot be used after a read_data,
- read_restart, or create_box command.
-
-*Cannot redefine variable as a different style*
- An equal-style variable can be re-defined but only if it was
- originally an equal-style variable.
-
-*Cannot replicate 2d simulation in z dimension*
- The replicate command cannot replicate a 2d simulation in the z
- dimension.
-
-*Cannot replicate with fixes that store atom quantities*
- Either fixes are defined that create and store atom-based vectors or a
- restart file was read which included atom-based vectors for fixes.
- The replicate command cannot duplicate that information for new atoms.
- You should use the replicate command before fixes are applied to the
- system.
-
-*Cannot reset timestep with a dynamic region defined*
- Dynamic regions (see the region command) have a time dependence.
- Thus you cannot change the timestep when one or more of these
- are defined.
-
-*Cannot reset timestep with a time-dependent fix defined*
- You cannot reset the timestep when a fix that keeps track of elapsed
- time is in place.
-
-*Cannot run 2d simulation with nonperiodic Z dimension*
- Use the boundary command to make the z dimension periodic in order to
- run a 2d simulation.
-
-*Cannot set bond topology types for atom style template*
- The bond, angle, etc types cannot be changed for this atom style since
- they are static settings in the molecule template files.
-
-*Cannot set both respa pair and inner/middle/outer*
- In the rRESPA integrator, you must compute pairwise potentials either
- all together (pair), or in pieces (inner/middle/outer). You can't do
- both.
-
-*Cannot set cutoff/multi before simulation box is defined*
- Self-explanatory.
-
-*Cannot set dpd/theta for this atom style*
- Self-explanatory.
-
-*Cannot set dump_modify flush for dump xtc*
- Self-explanatory.
-
-*Cannot set mass for this atom style*
- This atom style does not support mass settings for each atom type.
- Instead they are defined on a per-atom basis in the data file.
-
-*Cannot set meso/cv for this atom style*
- Self-explanatory.
-
-*Cannot set meso/e for this atom style*
- Self-explanatory.
-
-*Cannot set meso/rho for this atom style*
- Self-explanatory.
-
-*Cannot set non-zero image flag for non-periodic dimension*
- Self-explanatory.
-
-*Cannot set non-zero z velocity for 2d simulation*
- Self-explanatory.
-
-*Cannot set quaternion for atom that has none*
- Self-explanatory.
-
-*Cannot set quaternion with xy components for 2d system*
- Self-explanatory.
-
-*Cannot set respa hybrid and any of pair/inner/middle/outer*
- In the rRESPA integrator, you must compute pairwise potentials either
- all together (pair), with different cutoff regions (inner/middle/outer),
- or per hybrid sub-style (hybrid). You cannot mix those.
-
-*Cannot set respa middle without inner/outer*
- In the rRESPA integrator, you must define both a inner and outer
- setting in order to use a middle setting.
-
-*Cannot set restart file size - MPI error: %s*
- This error was generated by MPI when reading/writing an MPI-IO restart
- file.
-
-*Cannot set smd/contact/radius for this atom style*
- Self-explanatory.
-
-*Cannot set smd/mass/density for this atom style*
- Self-explanatory.
-
-*Cannot set temperature for fix rigid/nph*
- The temp keyword cannot be specified.
-
-*Cannot set theta for atom that is not a line*
- Self-explanatory.
-
-*Cannot set this attribute for this atom style*
- The attribute being set does not exist for the defined atom style.
-
-*Cannot set variable z velocity for 2d simulation*
- Self-explanatory.
-
-*Cannot skew triclinic box in z for 2d simulation*
- Self-explanatory.
-
-*Cannot subtract groups using a dynamic group*
- This operation is not allowed.
-
-*Cannot union groups using a dynamic group*
- This operation is not allowed.
-
-*Cannot use -cuda on and -kokkos on together*
- This is not allowed since both packages can use GPUs.
-
-*Cannot use -cuda on without USER-CUDA installed*
- The USER-CUDA package must be installed via "make yes-user-cuda"
- before LAMMPS is built.
-
-*Cannot use -kokkos on without KOKKOS installed*
- Self-explanatory.
-
-*Cannot use -reorder after -partition*
- Self-explanatory. See doc page discussion of command-line switches.
-
-*Cannot use Ewald with 2d simulation*
- The kspace style ewald cannot be used in 2d simulations. You can use
- 2d Ewald in a 3d simulation; see the kspace_modify command.
-
-*Cannot use Ewald/disp solver on system with no charge, dipole, or LJ particles*
- No atoms in system have a non-zero charge or dipole, or are LJ
- particles. Change charges/dipoles or change options of the kspace
- solver/pair style.
-
-*Cannot use EwaldDisp with 2d simulation*
- This is a current restriction of this command.
-
-*Cannot use GPU package with USER-CUDA package enabled*
- You cannot use both the GPU and USER-CUDA packages
- together. Use one or the other.
-
-*Cannot use Kokkos pair style with rRESPA inner/middle*
- Self-explanatory.
-
-*Cannot use NEB unless atom map exists*
- Use the atom_modify command to create an atom map.
-
-*Cannot use NEB with a single replica*
- Self-explanatory.
-
-*Cannot use NEB with atom_modify sort enabled*
- This is current restriction for NEB implemented in LAMMPS.
-
-*Cannot use PPPM with 2d simulation*
- The kspace style pppm cannot be used in 2d simulations. You can use
- 2d PPPM in a 3d simulation; see the kspace_modify command.
-
-*Cannot use PPPMDisp with 2d simulation*
- The kspace style pppm/disp cannot be used in 2d simulations. You can
- use 2d pppm/disp in a 3d simulation; see the kspace_modify command.
-
-*Cannot use PRD with a changing box*
- The current box dimensions are not copied between replicas
-
-*Cannot use PRD with a time-dependent fix defined*
- PRD alters the timestep in ways that will mess up these fixes.
-
-*Cannot use PRD with a time-dependent region defined*
- PRD alters the timestep in ways that will mess up these regions.
-
-*Cannot use PRD with atom_modify sort enabled*
- This is a current restriction of PRD. You must turn off sorting,
- which is enabled by default, via the atom_modify command.
-
-*Cannot use PRD with multi-processor replicas unless atom map exists*
- Use the atom_modify command to create an atom map.
-
-*Cannot use TAD unless atom map exists for NEB*
- See atom_modify map command to set this.
-
-*Cannot use TAD with a single replica for NEB*
- NEB requires multiple replicas.
-
-*Cannot use TAD with atom_modify sort enabled for NEB*
- This is a current restriction of NEB.
-
-*Cannot use a damped dynamics min style with fix box/relax*
- This is a current restriction in LAMMPS. Use another minimizer
- style.
-
-*Cannot use a damped dynamics min style with per-atom DOF*
- This is a current restriction in LAMMPS. Use another minimizer
- style.
-
-*Cannot use append/atoms in periodic dimension*
- The boundary style of the face where atoms are added can not be of
- type p (periodic).
-
-*Cannot use atomfile-style variable unless atom map exists*
- Self-explanatory. See the atom_modify command to create a map.
-
-*Cannot use both com and bias with compute temp/chunk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with buck/coul/cut/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with buck/coul/long/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with buck/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with coul/cut/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with coul/debye/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with coul/dsf/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with coul/wolf/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with lj/charmm/coul/charmm/implicit/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/charmm/coul/charmm/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/charmm/coul/long/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/class2/coul/cut/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/class2/coul/long/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/class2/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/cut/coul/cut/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with lj/cut/coul/debye/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/cut/coul/long/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with lj/cut/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with lj/expand/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/gromacs/coul/gromacs/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/gromacs/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with lj/sdk/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with pair eam/kk*
- That style is not supported by Kokkos.
-
-*Cannot use chosen neighbor list style with pair eam/kk/alloy*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with pair eam/kk/fs*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with pair sw/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with tersoff/kk*
- Self-explanatory.
-
-*Cannot use chosen neighbor list style with tersoff/zbl/kk*
- Self-explanatory.
-
-*Cannot use compute chunk/atom bin z for 2d model*
- Self-explanatory.
-
-*Cannot use compute cluster/atom unless atoms have IDs*
- Atom IDs are used to identify clusters.
-
-*Cannot use create_atoms rotate unless single style*
- Self-explanatory.
-
-*Cannot use create_bonds unless atoms have IDs*
- This command requires a mapping from global atom IDs to local atoms,
- but the atoms that have been defined have no IDs.
-
-*Cannot use create_bonds with non-molecular system*
- Self-explanatory.
-
-*Cannot use cwiggle in variable formula between runs*
- This is a function of elapsed time.
-
-*Cannot use delete_atoms bond yes with atom_style template*
- This is because the bonds for that atom style are hardwired in the
- molecule template.
-
-*Cannot use delete_atoms unless atoms have IDs*
- Your atoms do not have IDs, so the delete_atoms command cannot be
- used.
-
-*Cannot use delete_bonds with non-molecular system*
- Your choice of atom style does not have bonds.
-
-*Cannot use dump_modify fileper without % in dump file name*
- Self-explanatory.
-
-*Cannot use dump_modify nfile without % in dump file name*
- Self-explanatory.
-
-*Cannot use dynamic group with fix adapt atom*
- This is not yet supported.
-
-*Cannot use fix TMD unless atom map exists*
- Using this fix requires the ability to lookup an atom index, which is
- provided by an atom map. An atom map does not exist (by default) for
- non-molecular problems. Using the atom_modify map command will force
- an atom map to be created.
-
-*Cannot use fix ave/spatial z for 2 dimensional model*
- Self-explanatory.
-
-*Cannot use fix bond/break with non-molecular systems*
- Only systems with bonds that can be changed can be used. Atom_style
- template does not qualify.
-
-*Cannot use fix bond/create with non-molecular systems*
- Only systems with bonds that can be changed can be used. Atom_style
- template does not qualify.
-
-*Cannot use fix bond/swap with non-molecular systems*
- Only systems with bonds that can be changed can be used. Atom_style
- template does not qualify.
-
-*Cannot use fix box/relax on a 2nd non-periodic dimension*
- When specifying an off-diagonal pressure component, the 2nd of the two
- dimensions must be periodic. E.g. if the xy component is specified,
- then the y dimension must be periodic.
-
-*Cannot use fix box/relax on a non-periodic dimension*
- When specifying a diagonal pressure component, the dimension must be
- periodic.
-
-*Cannot use fix box/relax with both relaxation and scaling on a tilt factor*
- When specifying scaling on a tilt factor component, that component can not
- also be controlled by the barostat. E.g. if scalexy yes is specified and
- also keyword tri or xy, this is wrong.
-
-*Cannot use fix box/relax with tilt factor scaling on a 2nd non-periodic dimension*
- When specifying scaling on a tilt factor component, the 2nd of the two
- dimensions must be periodic. E.g. if the xy component is specified,
- then the y dimension must be periodic.
-
-*Cannot use fix deform on a shrink-wrapped boundary*
- The x, y, z options cannot be applied to shrink-wrapped
- dimensions.
-
-*Cannot use fix deform tilt on a shrink-wrapped 2nd dim*
- This is because the shrink-wrapping will change the value
- of the strain implied by the tilt factor.
-
-*Cannot use fix deform trate on a box with zero tilt*
- The trate style alters the current strain.
-
-*Cannot use fix deposit rigid and not molecule*
- Self-explanatory.
-
-*Cannot use fix deposit rigid and shake*
- These two attributes are conflicting.
-
-*Cannot use fix deposit shake and not molecule*
- Self-explanatory.
-
-*Cannot use fix enforce2d with 3d simulation*
- Self-explanatory.
-
-*Cannot use fix gcmc in a 2d simulation*
- Fix gcmc is set up to run in 3d only. No 2d simulations with fix gcmc
- are allowed.
-
-*Cannot use fix gcmc shake and not molecule*
- Self-explanatory.
-
-*Cannot use fix msst without per-type mass defined*
- Self-explanatory.
-
-*Cannot use fix npt and fix deform on same component of stress tensor*
- This would be changing the same box dimension twice.
-
-*Cannot use fix nvt/npt/nph on a 2nd non-periodic dimension*
- When specifying an off-diagonal pressure component, the 2nd of the two
- dimensions must be periodic. E.g. if the xy component is specified,
- then the y dimension must be periodic.
-
-*Cannot use fix nvt/npt/nph on a non-periodic dimension*
- When specifying a diagonal pressure component, the dimension must be
- periodic.
-
-*Cannot use fix nvt/npt/nph with both xy dynamics and xy scaling*
- Self-explanatory.
-
-*Cannot use fix nvt/npt/nph with both xz dynamics and xz scaling*
- Self-explanatory.
-
-*Cannot use fix nvt/npt/nph with both yz dynamics and yz scaling*
- Self-explanatory.
-
-*Cannot use fix nvt/npt/nph with xy scaling when y is non-periodic dimension*
- The 2nd dimension in the barostatted tilt factor must be periodic.
-
-*Cannot use fix nvt/npt/nph with xz scaling when z is non-periodic dimension*
- The 2nd dimension in the barostatted tilt factor must be periodic.
-
-*Cannot use fix nvt/npt/nph with yz scaling when z is non-periodic dimension*
- The 2nd dimension in the barostatted tilt factor must be periodic.
-
-*Cannot use fix pour rigid and not molecule*
- Self-explanatory.
-
-*Cannot use fix pour rigid and shake*
- These two attributes are conflicting.
-
-*Cannot use fix pour shake and not molecule*
- Self-explanatory.
-
-*Cannot use fix pour with triclinic box*
- This option is not yet supported.
-
-*Cannot use fix press/berendsen and fix deform on same component of stress tensor*
- These commands both change the box size/shape, so you cannot use both
- together.
-
-*Cannot use fix press/berendsen on a non-periodic dimension*
- Self-explanatory.
-
-*Cannot use fix press/berendsen with triclinic box*
- Self-explanatory.
-
-*Cannot use fix reax/bonds without pair_style reax*
- Self-explantory.
-
-*Cannot use fix rigid npt/nph and fix deform on same component of stress tensor*
- This would be changing the same box dimension twice.
-
-*Cannot use fix rigid npt/nph on a non-periodic dimension*
- When specifying a diagonal pressure component, the dimension must be
- periodic.
-
-*Cannot use fix rigid/small npt/nph on a non-periodic dimension*
- When specifying a diagonal pressure component, the dimension must be
- periodic.
-
-*Cannot use fix shake with non-molecular system*
- Your choice of atom style does not have bonds.
-
-*Cannot use fix ttm with 2d simulation*
- This is a current restriction of this fix due to the grid it creates.
-
-*Cannot use fix ttm with triclinic box*
- This is a current restriction of this fix due to the grid it creates.
-
-*Cannot use fix tune/kspace without a kspace style*
- Self-explanatory.
-
-*Cannot use fix tune/kspace without a pair style*
- This fix (tune/kspace) can only be used when a pair style has been specified.
-
-*Cannot use fix wall in periodic dimension*
- Self-explanatory.
-
-*Cannot use fix wall zlo/zhi for a 2d simulation*
- Self-explanatory.
-
-*Cannot use fix wall/reflect in periodic dimension*
- Self-explanatory.
-
-*Cannot use fix wall/reflect zlo/zhi for a 2d simulation*
- Self-explanatory.
-
-*Cannot use fix wall/srd in periodic dimension*
- Self-explanatory.
-
-*Cannot use fix wall/srd more than once*
- Nor is their a need to since multiple walls can be specified
- in one command.
-
-*Cannot use fix wall/srd without fix srd*
- Self-explanatory.
-
-*Cannot use fix wall/srd zlo/zhi for a 2d simulation*
- Self-explanatory.
-
-*Cannot use fix_deposit unless atoms have IDs*
- Self-explanatory.
-
-*Cannot use fix_pour unless atoms have IDs*
- Self-explanatory.
-
-*Cannot use include command within an if command*
- Self-explanatory.
-
-*Cannot use lines with fix srd unless overlap is set*
- This is because line segements are connected to each other.
-
-*Cannot use multiple fix wall commands with pair brownian*
- Self-explanatory.
-
-*Cannot use multiple fix wall commands with pair lubricate*
- Self-explanatory.
-
-*Cannot use multiple fix wall commands with pair lubricate/poly*
- Self-explanatory.
-
-*Cannot use multiple fix wall commands with pair lubricateU*
- Self-explanatory.
-
-*Cannot use neigh_modify exclude with GPU neighbor builds*
- This is a current limitation of the GPU implementation
- in LAMMPS.
-
-*Cannot use neighbor bins - box size << cutoff*
- Too many neighbor bins will be created. This typically happens when
- the simulation box is very small in some dimension, compared to the
- neighbor cutoff. Use the "nsq" style instead of "bin" style.
-
-*Cannot use newton pair with beck/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with born/coul/long/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with born/coul/wolf/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with born/gpu pair style*
- Self-explantory.
-
-*Cannot use newton pair with buck/coul/cut/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with buck/coul/long/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with buck/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with colloid/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with coul/cut/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with coul/debye/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with coul/dsf/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with coul/long/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with dipole/cut/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with dipole/sf/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with dpd/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with dpd/tstat/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with eam/alloy/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with eam/fs/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with eam/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with gauss/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with gayberne/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/charmm/coul/long/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/class2/coul/long/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/class2/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/cubic/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/cut/coul/cut/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/cut/coul/debye/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/cut/coul/dsf/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/cut/coul/long/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/cut/coul/msm/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/cut/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/expand/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/gromacs/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/sdk/coul/long/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj/sdk/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with lj96/cut/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with mie/cut/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with morse/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with resquared/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with soft/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with table/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with yukawa/colloid/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with yukawa/gpu pair style*
- Self-explanatory.
-
-*Cannot use newton pair with zbl/gpu pair style*
- Self-explantory.
-
-*Cannot use non-zero forces in an energy minimization*
- Fix setforce cannot be used in this manner. Use fix addforce
- instead.
-
-*Cannot use nonperiodic boundares with fix ttm*
- This fix requires a fully periodic simulation box.
-
-*Cannot use nonperiodic boundaries with Ewald*
- For kspace style ewald, all 3 dimensions must have periodic boundaries
- unless you use the kspace_modify command to define a 2d slab with a
- non-periodic z dimension.
-
-*Cannot use nonperiodic boundaries with EwaldDisp*
- For kspace style ewald/disp, all 3 dimensions must have periodic
- boundaries unless you use the kspace_modify command to define a 2d
- slab with a non-periodic z dimension.
-
-*Cannot use nonperiodic boundaries with PPPM*
- For kspace style pppm, all 3 dimensions must have periodic boundaries
- unless you use the kspace_modify command to define a 2d slab with a
- non-periodic z dimension.
-
-*Cannot use nonperiodic boundaries with PPPMDisp*
- For kspace style pppm/disp, all 3 dimensions must have periodic
- boundaries unless you use the kspace_modify command to define a 2d
- slab with a non-periodic z dimension.
-
-*Cannot use order greater than 8 with pppm/gpu.*
- Self-explanatory.
-
-*Cannot use package gpu neigh yes with triclinic box*
- This is a current restriction in LAMMPS.
-
-*Cannot use pair hybrid with GPU neighbor list builds*
- Neighbor list builds must be done on the CPU for this pair style.
-
-*Cannot use pair tail corrections with 2d simulations*
- The correction factors are only currently defined for 3d systems.
-
-*Cannot use processors part command without using partitions*
- See the command-line -partition switch.
-
-*Cannot use ramp in variable formula between runs*
- This is because the ramp() function is time dependent.
-
-*Cannot use read_data add before simulation box is defined*
- Self-explanatory.
-
-*Cannot use read_data extra with add flag*
- Self-explanatory.
-
-*Cannot use read_data offset without add flag*
- Self-explanatory.
-
-*Cannot use read_data shift without add flag*
- Self-explanatory.
-
-*Cannot use region INF or EDGE when box does not exist*
- Regions that extend to the box boundaries can only be used after the
- create_box command has been used.
-
-*Cannot use set atom with no atom IDs defined*
- Atom IDs are not defined, so they cannot be used to identify an atom.
-
-*Cannot use set mol with no molecule IDs defined*
- Self-explanatory.
-
-*Cannot use swiggle in variable formula between runs*
- This is a function of elapsed time.
-
-*Cannot use tris with fix srd unless overlap is set*
- This is because triangles are connected to each other.
-
-*Cannot use variable energy with constant efield in fix efield*
- LAMMPS computes the energy itself when the E-field is constant.
-
-*Cannot use variable energy with constant force in fix addforce*
- This is because for constant force, LAMMPS can compute the change
- in energy directly.
-
-*Cannot use variable every setting for dump dcd*
- The format of DCD dump files requires snapshots be output
- at a constant frequency.
-
-*Cannot use variable every setting for dump xtc*
- The format of this file requires snapshots at regular intervals.
-
-*Cannot use vdisplace in variable formula between runs*
- This is a function of elapsed time.
-
-*Cannot use velocity bias command without temp keyword*
- Self-explanatory.
-
-*Cannot use velocity create loop all unless atoms have IDs*
- Atoms in the simulation to do not have IDs, so this style
- of velocity creation cannot be performed.
-
-*Cannot use wall in periodic dimension*
- Self-explanatory.
-
-*Cannot use write_restart fileper without % in restart file name*
- Self-explanatory.
-
-*Cannot use write_restart nfile without % in restart file name*
- Self-explanatory.
-
-*Cannot wiggle and shear fix wall/gran*
- Cannot specify both options at the same time.
-
-*Cannot write to restart file - MPI error: %s*
- This error was generated by MPI when reading/writing an MPI-IO restart
- file.
-
-*Cannot yet use KSpace solver with grid with comm style tiled*
- This is current restriction in LAMMPS.
-
-*Cannot yet use comm_style tiled with multi-mode comm*
- Self-explanatory.
-
-*Cannot yet use comm_style tiled with triclinic box*
- Self-explanatory.
-
-*Cannot yet use compute tally with Kokkos*
- This feature is not yet supported.
-
-*Cannot yet use fix bond/break with this improper style*
- This is a current restriction in LAMMPS.
-
-*Cannot yet use fix bond/create with this improper style*
- This is a current restriction in LAMMPS.
-
-*Cannot yet use minimize with Kokkos*
- This feature is not yet supported.
-
-*Cannot yet use pair hybrid with Kokkos*
- This feature is not yet supported.
-
-*Cannot zero Langevin force of 0 atoms*
- The group has zero atoms, so you cannot request its force
- be zeroed.
-
-*Cannot zero gld force for zero atoms*
- There are no atoms currently in the group.
-
-*Cannot zero momentum of no atoms*
- Self-explanatory.
-
-*Change_box command before simulation box is defined*
- Self-explanatory.
-
-*Change_box volume used incorrectly*
- The "dim volume" option must be used immediately following one or two
- settings for "dim1 ..." (and optionally "dim2 ...") and must be for a
- different dimension, i.e. dim != dim1 and dim != dim2.
-
-*Chunk/atom compute does not exist for compute angmom/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute com/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute gyration/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute inertia/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute msd/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute omega/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute property/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute temp/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute torque/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for compute vcm/chunk*
- Self-explanatory.
-
-*Chunk/atom compute does not exist for fix ave/chunk*
- Self-explanatory.
-
-*Comm tiled invalid index in box drop brick*
- Internal error check in comm_style tiled which should not occur.
- Contact the developers.
-
-*Comm tiled mis-match in box drop brick*
- Internal error check in comm_style tiled which should not occur.
- Contact the developers.
-
-*Comm_modify group != atom_modify first group*
- Self-explanatory.
-
-*Communication cutoff for comm_style tiled cannot exceed periodic box length*
- Self-explanatory.
-
-*Communication cutoff too small for SNAP micro load balancing*
- This can happen if you change the neighbor skin after your pair_style
- command or if your box dimensions grow during a run. You can set the
- cutoff explicitly via the comm_modify cutoff command.
-
-*Compute %s does not allow use of dynamic group*
- Dynamic groups have not yet been enabled for this compute.
-
-*Compute ID for compute chunk /atom does not exist*
- Self-explanatory.
-
-*Compute ID for compute chunk/atom does not exist*
- Self-explanatory.
-
-*Compute ID for compute reduce does not exist*
- Self-explanatory.
-
-*Compute ID for compute slice does not exist*
- Self-explanatory.
-
-*Compute ID for fix ave/atom does not exist*
- Self-explanatory.
-
-*Compute ID for fix ave/chunk does not exist*
- Self-explanatory.
-
-*Compute ID for fix ave/correlate does not exist*
- Self-explanatory.
-
-*Compute ID for fix ave/histo does not exist*
- Self-explanatory.
-
-*Compute ID for fix ave/spatial does not exist*
- Self-explanatory.
-
-*Compute ID for fix ave/time does not exist*
- Self-explanatory.
-
-*Compute ID for fix store/state does not exist*
- Self-explanatory.
-
-*Compute ID for fix vector does not exist*
- Self-explanatory.
-
-*Compute ID must be alphanumeric or underscore characters*
- Self-explanatory.
-
-*Compute angle/local used when angles are not allowed*
- The atom style does not support angles.
-
-*Compute angmom/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute body/local requires atom style body*
- Self-explanatory.
-
-*Compute bond/local used when bonds are not allowed*
- The atom style does not support bonds.
-
-*Compute centro/atom requires a pair style be defined*
- This is because the computation of the centro-symmetry values
- uses a pairwise neighbor list.
-
-*Compute chunk/atom bin/cylinder radius is too large for periodic box*
- Radius cannot be bigger than 1/2 of a non-axis periodic dimention.
-
-*Compute chunk/atom bin/sphere radius is too large for periodic box*
- Radius cannot be bigger than 1/2 of any periodic dimention.
-
-*Compute chunk/atom compute array is accessed out-of-range*
- The index for the array is out of bounds.
-
-*Compute chunk/atom compute does not calculate a per-atom array*
- Self-explanatory.
-
-*Compute chunk/atom compute does not calculate a per-atom vector*
- Self-explanatory.
-
-*Compute chunk/atom compute does not calculate per-atom values*
- Self-explanatory.
-
-*Compute chunk/atom cylinder axis must be z for 2d*
- Self-explanatory.
-
-*Compute chunk/atom fix array is accessed out-of-range*
- the index for the array is out of bounds.
-
-*Compute chunk/atom fix does not calculate a per-atom array*
- Self-explanatory.
-
-*Compute chunk/atom fix does not calculate a per-atom vector*
- Self-explanatory.
-
-*Compute chunk/atom fix does not calculate per-atom values*
- Self-explanatory.
-
-*Compute chunk/atom for triclinic boxes requires units reduced*
- Self-explanatory.
-
-*Compute chunk/atom ids once but nchunk is not once*
- You cannot assign chunks IDs to atom permanently if the number of
- chunks may change.
-
-*Compute chunk/atom molecule for non-molecular system*
- Self-explanatory.
-
-*Compute chunk/atom sphere z origin must be 0.0 for 2d*
- Self-explanatory.
-
-*Compute chunk/atom stores no IDs for compute property/chunk*
- It will only store IDs if its compress option is enabled.
-
-*Compute chunk/atom stores no coord1 for compute property/chunk*
- Only certain binning options for comptue chunk/atom store coordinates.
-
-*Compute chunk/atom stores no coord2 for compute property/chunk*
- Only certain binning options for comptue chunk/atom store coordinates.
-
-*Compute chunk/atom stores no coord3 for compute property/chunk*
- Only certain binning options for comptue chunk/atom store coordinates.
-
-*Compute chunk/atom variable is not atom-style variable*
- Self-explanatory.
-
-*Compute chunk/atom without bins cannot use discard mixed*
- That discard option only applies to the binning styles.
-
-*Compute cluster/atom cutoff is longer than pairwise cutoff*
- Cannot identify clusters beyond cutoff.
-
-*Compute cluster/atom requires a pair style be defined*
- This is so that the pair style defines a cutoff distance which
- is used to find clusters.
-
-*Compute cna/atom cutoff is longer than pairwise cutoff*
- Self-explantory.
-
-*Compute cna/atom requires a pair style be defined*
- Self-explantory.
-
-*Compute com/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute contact/atom requires a pair style be defined*
- Self-explantory.
-
-*Compute contact/atom requires atom style sphere*
- Self-explanatory.
-
-*Compute coord/atom cutoff is longer than pairwise cutoff*
- Cannot compute coordination at distances longer than the pair cutoff,
- since those atoms are not in the neighbor list.
-
-*Compute coord/atom requires a pair style be defined*
- Self-explantory.
-
-*Compute damage/atom requires peridynamic potential*
- Damage is a Peridynamic-specific metric. It requires you
- to be running a Peridynamics simulation.
-
-*Compute dihedral/local used when dihedrals are not allowed*
- The atom style does not support dihedrals.
-
-*Compute dilatation/atom cannot be used with this pair style*
- Self-explanatory.
-
-*Compute dilatation/atom requires Peridynamic pair style*
- Self-explanatory.
-
-*Compute does not allow an extra compute or fix to be reset*
- This is an internal LAMMPS error. Please report it to the
- developers.
-
-*Compute erotate/asphere requires atom style ellipsoid or line or tri*
- Self-explanatory.
-
-*Compute erotate/asphere requires extended particles*
- This compute cannot be used with point paritlces.
-
-*Compute erotate/rigid with non-rigid fix-ID*
- Self-explanatory.
-
-*Compute erotate/sphere requires atom style sphere*
- Self-explanatory.
-
-*Compute erotate/sphere/atom requires atom style sphere*
- Self-explanatory.
-
-*Compute event/displace has invalid fix event assigned*
- This is an internal LAMMPS error. Please report it to the
- developers.
-
-*Compute group/group group ID does not exist*
- Self-explanatory.
-
-*Compute gyration/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute heat/flux compute ID does not compute ke/atom*
- Self-explanatory.
-
-*Compute heat/flux compute ID does not compute pe/atom*
- Self-explanatory.
-
-*Compute heat/flux compute ID does not compute stress/atom*
- Self-explanatory.
-
-*Compute hexorder/atom cutoff is longer than pairwise cutoff*
- Cannot compute order parameter beyond cutoff.
-
-*Compute hexorder/atom requires a pair style be defined*
- Self-explantory.
-
-*Compute improper/local used when impropers are not allowed*
- The atom style does not support impropers.
-
-*Compute inertia/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute ke/rigid with non-rigid fix-ID*
- Self-explanatory.
-
-*Compute msd/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute msd/chunk nchunk is not static*
- This is required because the MSD cannot be computed consistently if
- the number of chunks is changing. Compute chunk/atom allows setting
- nchunk to be static.
-
-*Compute nve/asphere requires atom style ellipsoid*
- Self-explanatory.
-
-*Compute nvt/nph/npt asphere requires atom style ellipsoid*
- Self-explanatory.
-
-*Compute nvt/nph/npt body requires atom style body*
- Self-explanatory.
-
-*Compute omega/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute orientorder/atom cutoff is longer than pairwise cutoff*
- Cannot compute order parameter beyond cutoff.
-
-*Compute orientorder/atom requires a pair style be defined*
- Self-explantory.
-
-*Compute pair must use group all*
- Pair styles accumlate energy on all atoms.
-
-*Compute pe must use group all*
- Energies computed by potentials (pair, bond, etc) are computed on all
- atoms.
-
-*Compute plasticity/atom cannot be used with this pair style*
- Self-explanatory.
-
-*Compute plasticity/atom requires Peridynamic pair style*
- Self-explanatory.
-
-*Compute pressure must use group all*
- Virial contributions computed by potentials (pair, bond, etc) are
- computed on all atoms.
-
-*Compute pressure requires temperature ID to include kinetic energy*
- The keflag cannot be used unless a temperature compute is provided.
-
-*Compute pressure temperature ID does not compute temperature*
- The compute ID assigned to a pressure computation must compute
- temperature.
-
-*Compute property/atom floating point vector does not exist*
- The command is accessing a vector added by the fix property/atom
- command, that does not exist.
-
-*Compute property/atom for atom property that isn't allocated*
- Self-explanatory.
-
-*Compute property/atom integer vector does not exist*
- The command is accessing a vector added by the fix property/atom
- command, that does not exist.
-
-*Compute property/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute property/local cannot use these inputs together*
- Only inputs that generate the same number of datums can be used
- togther. E.g. bond and angle quantities cannot be mixed.
-
-*Compute property/local does not (yet) work with atom_style template*
- Self-explanatory.
-
-*Compute property/local for property that isn't allocated*
- Self-explanatory.
-
-*Compute rdf requires a pair style be defined*
- Self-explanatory.
-
-*Compute reduce compute array is accessed out-of-range*
- An index for the array is out of bounds.
-
-*Compute reduce compute calculates global values*
- A compute that calculates peratom or local values is required.
-
-*Compute reduce compute does not calculate a local array*
- Self-explanatory.
-
-*Compute reduce compute does not calculate a local vector*
- Self-explanatory.
-
-*Compute reduce compute does not calculate a per-atom array*
- Self-explanatory.
-
-*Compute reduce compute does not calculate a per-atom vector*
- Self-explanatory.
-
-*Compute reduce fix array is accessed out-of-range*
- An index for the array is out of bounds.
-
-*Compute reduce fix calculates global values*
- A fix that calculates peratom or local values is required.
-
-*Compute reduce fix does not calculate a local array*
- Self-explanatory.
-
-*Compute reduce fix does not calculate a local vector*
- Self-explanatory.
-
-*Compute reduce fix does not calculate a per-atom array*
- Self-explanatory.
-
-*Compute reduce fix does not calculate a per-atom vector*
- Self-explanatory.
-
-*Compute reduce replace requires min or max mode*
- Self-explanatory.
-
-*Compute reduce variable is not atom-style variable*
- Self-explanatory.
-
-*Compute slice compute array is accessed out-of-range*
- An index for the array is out of bounds.
-
-*Compute slice compute does not calculate a global array*
- Self-explanatory.
-
-*Compute slice compute does not calculate a global vector*
- Self-explanatory.
-
-*Compute slice compute does not calculate global vector or array*
- Self-explanatory.
-
-*Compute slice compute vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Compute slice fix array is accessed out-of-range*
- An index for the array is out of bounds.
-
-*Compute slice fix does not calculate a global array*
- Self-explanatory.
-
-*Compute slice fix does not calculate a global vector*
- Self-explanatory.
-
-*Compute slice fix does not calculate global vector or array*
- Self-explanatory.
-
-*Compute slice fix vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Compute sna/atom cutoff is longer than pairwise cutoff*
- Self-explanatory.
-
-*Compute sna/atom requires a pair style be defined*
- Self-explanatory.
-
-*Compute snad/atom cutoff is longer than pairwise cutoff*
- Self-explanatory.
-
-*Compute snad/atom requires a pair style be defined*
- Self-explanatory.
-
-*Compute snav/atom cutoff is longer than pairwise cutoff*
- Self-explanatory.
-
-*Compute snav/atom requires a pair style be defined*
- Self-explanatory.
-
-*Compute stress/atom temperature ID does not compute temperature*
- The specified compute must compute temperature.
-
-*Compute temp/asphere requires atom style ellipsoid*
- Self-explanatory.
-
-*Compute temp/asphere requires extended particles*
- This compute cannot be used with point paritlces.
-
-*Compute temp/body requires atom style body*
- Self-explanatory.
-
-*Compute temp/body requires bodies*
- This compute can only be applied to body particles.
-
-*Compute temp/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute temp/cs requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Compute temp/cs used when bonds are not allowed*
- This compute only works on pairs of bonded particles.
-
-*Compute temp/partial cannot use vz for 2d systemx*
- Self-explanatory.
-
-*Compute temp/profile cannot bin z for 2d systems*
- Self-explanatory.
-
-*Compute temp/profile cannot use vz for 2d systemx*
- Self-explanatory.
-
-*Compute temp/sphere requires atom style sphere*
- Self-explanatory.
-
-*Compute ti kspace style does not exist*
- Self-explanatory.
-
-*Compute ti pair style does not exist*
- Self-explanatory.
-
-*Compute ti tail when pair style does not compute tail corrections*
- Self-explanatory.
-
-*Compute torque/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Compute used in dump between runs is not current*
- The compute was not invoked on the current timestep, therefore it
- cannot be used in a dump between runs.
-
-*Compute used in variable between runs is not current*
- Computes cannot be invoked by a variable in between runs. Thus they
- must have been evaluated on the last timestep of the previous run in
- order for their value(s) to be accessed. See the doc page for the
- variable command for more info.
-
-*Compute used in variable thermo keyword between runs is not current*
- Some thermo keywords rely on a compute to calculate their value(s).
- Computes cannot be invoked by a variable in between runs. Thus they
- must have been evaluated on the last timestep of the previous run in
- order for their value(s) to be accessed. See the doc page for the
- variable command for more info.
-
-*Compute vcm/chunk does not use chunk/atom compute*
- The style of the specified compute is not chunk/atom.
-
-*Computed temperature for fix temp/berendsen cannot be 0.0*
- Self-explanatory.
-
-*Computed temperature for fix temp/rescale cannot be 0.0*
- Cannot rescale the temperature to a new value if the current
- temperature is 0.0.
-
-*Core/shell partner atom not found*
- Could not find one of the atoms in the bond pair.
-
-*Core/shell partners were not all found*
- Could not find or more atoms in the bond pairs.
-
-*Could not adjust g_ewald_6*
- The Newton-Raphson solver failed to converge to a good value for
- g_ewald. This error should not occur for typical problems. Please
- send an email to the developers.
-
-*Could not compute g_ewald*
- The Newton-Raphson solver failed to converge to a good value for
- g_ewald. This error should not occur for typical problems. Please
- send an email to the developers.
-
-*Could not compute grid size*
- The code is unable to compute a grid size consistent with the desired
- accuracy. This error should not occur for typical problems. Please
- send an email to the developers.
-
-*Could not compute grid size for Coulomb interaction*
- The code is unable to compute a grid size consistent with the desired
- accuracy. This error should not occur for typical problems. Please
- send an email to the developers.
-
-*Could not compute grid size for Dispersion*
- The code is unable to compute a grid size consistent with the desired
- accuracy. This error should not occur for typical problems. Please
- send an email to the developers.
-
-*Could not create 3d FFT plan*
- The FFT setup for the PPPM solver failed, typically due
- to lack of memory. This is an unusual error. Check the
- size of the FFT grid you are requesting.
-
-*Could not create 3d grid of processors*
- The specified constraints did not allow a Px by Py by Pz grid to be
- created where Px * Py * Pz = P = total number of processors.
-
-*Could not create 3d remap plan*
- The FFT setup in pppm failed.
-
-*Could not create Python function arguments*
- This is an internal Python error, possibly because the number
- of inputs to the function is too large.
-
-*Could not create numa grid of processors*
- The specified constraints did not allow this style of grid to be
- created. Usually this is because the total processor count is not a
- multiple of the cores/node or the user specified processor count is >
- 1 in one of the dimensions.
-
-*Could not create twolevel 3d grid of processors*
- The specified constraints did not allow this style of grid to be
- created.
-
-*Could not evaluate Python function input variable*
- Self-explanatory.
-
-*Could not find Python function*
- The provided Python code was run successfully, but it not
- define a callable function with the required name.
-
-*Could not find atom_modify first group ID*
- Self-explanatory.
-
-*Could not find change_box group ID*
- Group ID used in the change_box command does not exist.
-
-*Could not find compute ID for PRD*
- Self-explanatory.
-
-*Could not find compute ID for TAD*
- Self-explanatory.
-
-*Could not find compute ID for temperature bias*
- Self-explanatory.
-
-*Could not find compute ID to delete*
- Self-explanatory.
-
-*Could not find compute displace/atom fix ID*
- Self-explanatory.
-
-*Could not find compute event/displace fix ID*
- Self-explanatory.
-
-*Could not find compute group ID*
- Self-explanatory.
-
-*Could not find compute heat/flux compute ID*
- Self-explanatory.
-
-*Could not find compute msd fix ID*
- Self-explanatory.
-
-*Could not find compute msd/chunk fix ID*
- The compute creates an internal fix, which has been deleted.
-
-*Could not find compute pressure temperature ID*
- The compute ID for calculating temperature does not exist.
-
-*Could not find compute stress/atom temperature ID*
- Self-explanatory.
-
-*Could not find compute vacf fix ID*
- Self-explanatory.
-
-*Could not find compute/voronoi surface group ID*
- Self-explanatory.
-
-*Could not find compute_modify ID*
- Self-explanatory.
-
-*Could not find custom per-atom property ID*
- Self-explanatory.
-
-*Could not find delete_atoms group ID*
- Group ID used in the delete_atoms command does not exist.
-
-*Could not find delete_atoms region ID*
- Region ID used in the delete_atoms command does not exist.
-
-*Could not find displace_atoms group ID*
- Group ID used in the displace_atoms command does not exist.
-
-*Could not find dump custom compute ID*
- Self-explanatory.
-
-*Could not find dump custom fix ID*
- Self-explanatory.
-
-*Could not find dump custom variable name*
- Self-explanatory.
-
-*Could not find dump group ID*
- A group ID used in the dump command does not exist.
-
-*Could not find dump local compute ID*
- Self-explanatory.
-
-*Could not find dump local fix ID*
- Self-explanatory.
-
-*Could not find dump modify compute ID*
- Self-explanatory.
-
-*Could not find dump modify custom atom floating point property ID*
- Self-explanatory.
-
-*Could not find dump modify custom atom integer property ID*
- Self-explanatory.
-
-*Could not find dump modify fix ID*
- Self-explanatory.
-
-*Could not find dump modify variable name*
- Self-explanatory.
-
-*Could not find fix ID to delete*
- Self-explanatory.
-
-*Could not find fix adapt storage fix ID*
- This should not happen unless you explicitly deleted
- a secondary fix that fix adapt created internally.
-
-*Could not find fix gcmc exclusion group ID*
- Self-explanatory.
-
-*Could not find fix gcmc rotation group ID*
- Self-explanatory.
-
-*Could not find fix group ID*
- A group ID used in the fix command does not exist.
-
-*Could not find fix msst compute ID*
- Self-explanatory.
-
-*Could not find fix poems group ID*
- A group ID used in the fix poems command does not exist.
-
-*Could not find fix recenter group ID*
- A group ID used in the fix recenter command does not exist.
-
-*Could not find fix rigid group ID*
- A group ID used in the fix rigid command does not exist.
-
-*Could not find fix srd group ID*
- Self-explanatory.
-
-*Could not find fix_modify ID*
- A fix ID used in the fix_modify command does not exist.
-
-*Could not find fix_modify pressure ID*
- The compute ID for computing pressure does not exist.
-
-*Could not find fix_modify temperature ID*
- The compute ID for computing temperature does not exist.
-
-*Could not find group clear group ID*
- Self-explanatory.
-
-*Could not find group delete group ID*
- Self-explanatory.
-
-*Could not find pair fix ID*
- A fix is created internally by the pair style to store shear
- history information. You cannot delete it.
-
-*Could not find set group ID*
- Group ID specified in set command does not exist.
-
-*Could not find specified fix gcmc group ID*
- Self-explanatory.
-
-*Could not find thermo compute ID*
- Compute ID specified in thermo_style command does not exist.
-
-*Could not find thermo custom compute ID*
- The compute ID needed by thermo style custom to compute a requested
- quantity does not exist.
-
-*Could not find thermo custom fix ID*
- The fix ID needed by thermo style custom to compute a requested
- quantity does not exist.
-
-*Could not find thermo custom variable name*
- Self-explanatory.
-
-*Could not find thermo fix ID*
- Fix ID specified in thermo_style command does not exist.
-
-*Could not find thermo variable name*
- Self-explanatory.
-
-*Could not find thermo_modify pressure ID*
- The compute ID needed by thermo style custom to compute pressure does
- not exist.
-
-*Could not find thermo_modify temperature ID*
- The compute ID needed by thermo style custom to compute temperature does
- not exist.
-
-*Could not find undump ID*
- A dump ID used in the undump command does not exist.
-
-*Could not find velocity group ID*
- A group ID used in the velocity command does not exist.
-
-*Could not find velocity temperature ID*
- The compute ID needed by the velocity command to compute temperature
- does not exist.
-
-*Could not find/initialize a specified accelerator device*
- Could not initialize at least one of the devices specified for the gpu
- package
-
-*Could not grab element entry from EIM potential file*
- Self-explanatory
-
-*Could not grab global entry from EIM potential file*
- Self-explanatory.
-
-*Could not grab pair entry from EIM potential file*
- Self-explanatory.
-
-*Could not initialize embedded Python*
- The main module in Python was not accessible.
-
-*Could not open Python file*
- The specified file of Python code cannot be opened. Check that the
- path and name are correct.
-
-*Could not process Python file*
- The Python code in the specified file was not run sucessfully by
- Python, probably due to errors in the Python code.
-
-*Could not process Python string*
- The Python code in the here string was not run sucessfully by Python,
- probably due to errors in the Python code.
-
-*Coulomb PPPMDisp order has been reduced below minorder*
- The default minimum order is 2. This can be reset by the
- kspace_modify minorder command.
-
-*Coulomb cut not supported in pair_style buck/long/coul/coul*
- Must use long-range Coulombic interactions.
-
-*Coulomb cut not supported in pair_style lj/long/coul/long*
- Must use long-range Coulombic interactions.
-
-*Coulomb cut not supported in pair_style lj/long/tip4p/long*
- Must use long-range Coulombic interactions.
-
-*Coulomb cutoffs of pair hybrid sub-styles do not match*
- If using a Kspace solver, all Coulomb cutoffs of long pair styles must
- be the same.
-
-*Coulombic cut not supported in pair_style lj/long/dipole/long*
- Must use long-range Coulombic interactions.
-
-*Cound not find dump_modify ID*
- Self-explanatory.
-
-*Create_atoms command before simulation box is defined*
- The create_atoms command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Create_atoms molecule has atom IDs, but system does not*
- The atom_style id command can be used to force atom IDs to be stored.
-
-*Create_atoms molecule must have atom types*
- The defined molecule does not specify atom types.
-
-*Create_atoms molecule must have coordinates*
- The defined molecule does not specify coordinates.
-
-*Create_atoms region ID does not exist*
- A region ID used in the create_atoms command does not exist.
-
-*Create_bonds command before simulation box is defined*
- Self-explanatory.
-
-*Create_bonds command requires no kspace_style be defined*
- This is so that atom pairs that are already bonded to not appear
- in the neighbor list.
-
-*Create_bonds command requires special_bonds 1-2 weights be 0.0*
- This is so that atom pairs that are already bonded to not appear in
- the neighbor list.
-
-*Create_bonds max distance > neighbor cutoff*
- Can only create bonds for atom pairs that will be in neighbor list.
-
-*Create_bonds requires a pair style be defined*
- Self-explanatory.
-
-*Create_box region ID does not exist*
- Self-explanatory.
-
-*Create_box region does not support a bounding box*
- Not all regions represent bounded volumes. You cannot use
- such a region with the create_box command.
-
-*Custom floating point vector for fix store/state does not exist*
- The command is accessing a vector added by the fix property/atom
- command, that does not exist.
-
-*Custom integer vector for fix store/state does not exist*
- The command is accessing a vector added by the fix property/atom
- command, that does not exist.
-
-*Custom per-atom property ID is not floating point*
- Self-explanatory.
-
-*Custom per-atom property ID is not integer*
- Self-explanatory.
-
-*Cut-offs missing in pair_style lj/long/dipole/long*
- Self-explanatory.
-
-*Cutoffs missing in pair_style buck/long/coul/long*
- Self-exlanatory.
-
-*Cutoffs missing in pair_style lj/long/coul/long*
- Self-explanatory.
-
-*Cyclic loop in joint connections*
- Fix poems cannot (yet) work with coupled bodies whose joints connect
- the bodies in a ring (or cycle).
-
-*Degenerate lattice primitive vectors*
- Invalid set of 3 lattice vectors for lattice command.
-
-*Delete region ID does not exist*
- Self-explanatory.
-
-*Delete_atoms command before simulation box is defined*
- The delete_atoms command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Delete_atoms cutoff > max neighbor cutoff*
- Can only delete atoms in atom pairs that will be in neighbor list.
-
-*Delete_atoms mol yes requires atom attribute molecule*
- Cannot use this option with a non-molecular system.
-
-*Delete_atoms requires a pair style be defined*
- This is because atom deletion within a cutoff uses a pairwise
- neighbor list.
-
-*Delete_bonds command before simulation box is defined*
- The delete_bonds command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Delete_bonds command with no atoms existing*
- No atoms are yet defined so the delete_bonds command cannot be used.
-
-*Deposition region extends outside simulation box*
- Self-explanatory.
-
-*Did not assign all atoms correctly*
- Atoms read in from a data file were not assigned correctly to
- processors. This is likely due to some atom coordinates being
- outside a non-periodic simulation box.
-
-*Did not assign all restart atoms correctly*
- Atoms read in from the restart file were not assigned correctly to
- processors. This is likely due to some atom coordinates being outside
- a non-periodic simulation box. Normally this should not happen. You
- may wish to use the "remap" option on the read_restart command to see
- if this helps.
-
-*Did not find all elements in MEAM library file*
- The requested elements were not found in the MEAM file.
-
-*Did not find fix shake partner info*
- Could not find bond partners implied by fix shake command. This error
- can be triggered if the delete_bonds command was used before fix
- shake, and it removed bonds without resetting the 1-2, 1-3, 1-4
- weighting list via the special keyword.
-
-*Did not find keyword in table file*
- Keyword used in pair_coeff command was not found in table file.
-
-*Did not set pressure for fix rigid/nph*
- The press keyword must be specified.
-
-*Did not set temp for fix rigid/nvt/small*
- Self-explanatory.
-
-*Did not set temp or press for fix rigid/npt/small*
- Self-explanatory.
-
-*Did not set temperature for fix rigid/nvt*
- The temp keyword must be specified.
-
-*Did not set temperature or pressure for fix rigid/npt*
- The temp and press keywords must be specified.
-
-*Dihedral atom missing in delete_bonds*
- The delete_bonds command cannot find one or more atoms in a particular
- dihedral on a particular processor. The pairwise cutoff is too short
- or the atoms are too far apart to make a valid dihedral.
-
-*Dihedral atom missing in set command*
- The set command cannot find one or more atoms in a particular dihedral
- on a particular processor. The pairwise cutoff is too short or the
- atoms are too far apart to make a valid dihedral.
-
-*Dihedral atoms %d %d %d %d missing on proc %d at step %ld*
- One or more of 4 atoms needed to compute a particular dihedral are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the dihedral has blown apart and an atom is
- too far away.
-
-*Dihedral atoms missing on proc %d at step %ld*
- One or more of 4 atoms needed to compute a particular dihedral are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the dihedral has blown apart and an atom is
- too far away.
-
-*Dihedral charmm is incompatible with Pair style*
- Dihedral style charmm must be used with a pair style charmm
- in order for the 1-4 epsilon/sigma parameters to be defined.
-
-*Dihedral coeff for hybrid has invalid style*
- Dihedral style hybrid uses another dihedral style as one of its
- coefficients. The dihedral style used in the dihedral_coeff command
- or read from a restart file is not recognized.
-
-*Dihedral coeffs are not set*
- No dihedral coefficients have been assigned in the data file or via
- the dihedral_coeff command.
-
-*Dihedral style hybrid cannot have hybrid as an argument*
- Self-explanatory.
-
-*Dihedral style hybrid cannot have none as an argument*
- Self-explanatory.
-
-*Dihedral style hybrid cannot use same dihedral style twice*
- Self-explanatory.
-
-*Dihedral/improper extent > half of periodic box length*
- This error was detected by the neigh_modify check yes setting. It is
- an error because the dihedral atoms are so far apart it is ambiguous
- how it should be defined.
-
-*Dihedral_coeff command before dihedral_style is defined*
- Coefficients cannot be set in the data file or via the dihedral_coeff
- command until an dihedral_style has been assigned.
-
-*Dihedral_coeff command before simulation box is defined*
- The dihedral_coeff command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Dihedral_coeff command when no dihedrals allowed*
- The chosen atom style does not allow for dihedrals to be defined.
-
-*Dihedral_style command when no dihedrals allowed*
- The chosen atom style does not allow for dihedrals to be defined.
-
-*Dihedrals assigned incorrectly*
- Dihedrals read in from the data file were not assigned correctly to
- atoms. This means there is something invalid about the topology
- definitions.
-
-*Dihedrals defined but no dihedral types*
- The data file header lists dihedrals but no dihedral types.
-
-*Dimension command after simulation box is defined*
- The dimension command cannot be used after a read_data,
- read_restart, or create_box command.
-
-*Dispersion PPPMDisp order has been reduced below minorder*
- The default minimum order is 2. This can be reset by the
- kspace_modify minorder command.
-
-*Displace_atoms command before simulation box is defined*
- The displace_atoms command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Distance must be > 0 for compute event/displace*
- Self-explanatory.
-
-*Divide by 0 in influence function*
- This should not normally occur. It is likely a problem with your
- model.
-
-*Divide by 0 in influence function of pair peri/lps*
- This should not normally occur. It is likely a problem with your
- model.
-
-*Divide by 0 in variable formula*
- Self-explanatory.
-
-*Domain too large for neighbor bins*
- The domain has become extremely large so that neighbor bins cannot be
- used. Most likely, one or more atoms have been blown out of the
- simulation box to a great distance.
-
-*Double precision is not supported on this accelerator*
- Self-explanatory
-
-*Dump atom/gz only writes compressed files*
- The dump atom/gz output file name must have a .gz suffix.
-
-*Dump cfg arguments can not mix xs|ys|zs with xsu|ysu|zsu*
- Self-explanatory.
-
-*Dump cfg arguments must start with 'mass type xs ys zs' or 'mass type xsu ysu zsu'*
- This is a requirement of the CFG output format. See the dump cfg doc
- page for more details.
-
-*Dump cfg requires one snapshot per file*
- Use the wildcard "*" character in the filename.
-
-*Dump cfg/gz only writes compressed files*
- The dump cfg/gz output file name must have a .gz suffix.
-
-*Dump custom and fix not computed at compatible times*
- The fix must produce per-atom quantities on timesteps that dump custom
- needs them.
-
-*Dump custom compute does not calculate per-atom array*
- Self-explanatory.
-
-*Dump custom compute does not calculate per-atom vector*
- Self-explanatory.
-
-*Dump custom compute does not compute per-atom info*
- Self-explanatory.
-
-*Dump custom compute vector is accessed out-of-range*
- Self-explanatory.
-
-*Dump custom fix does not compute per-atom array*
- Self-explanatory.
-
-*Dump custom fix does not compute per-atom info*
- Self-explanatory.
-
-*Dump custom fix does not compute per-atom vector*
- Self-explanatory.
-
-*Dump custom fix vector is accessed out-of-range*
- Self-explanatory.
-
-*Dump custom variable is not atom-style variable*
- Only atom-style variables generate per-atom quantities, needed for
- dump output.
-
-*Dump custom/gz only writes compressed files*
- The dump custom/gz output file name must have a .gz suffix.
-
-*Dump dcd of non-matching # of atoms*
- Every snapshot written by dump dcd must contain the same # of atoms.
-
-*Dump dcd requires sorting by atom ID*
- Use the dump_modify sort command to enable this.
-
-*Dump every variable returned a bad timestep*
- The variable must return a timestep greater than the current timestep.
-
-*Dump file MPI-IO output not allowed with % in filename*
- This is because a % signifies one file per processor and MPI-IO
- creates one large file for all processors.
-
-*Dump file does not contain requested snapshot*
- Self-explanatory.
-
-*Dump file is incorrectly formatted*
- Self-explanatory.
-
-*Dump image body yes requires atom style body*
- Self-explanatory.
-
-*Dump image bond not allowed with no bond types*
- Self-explanatory.
-
-*Dump image cannot perform sorting*
- Self-explanatory.
-
-*Dump image line requires atom style line*
- Self-explanatory.
-
-*Dump image persp option is not yet supported*
- Self-explanatory.
-
-*Dump image requires one snapshot per file*
- Use a "*" in the filename.
-
-*Dump image tri requires atom style tri*
- Self-explanatory.
-
-*Dump local and fix not computed at compatible times*
- The fix must produce per-atom quantities on timesteps that dump local
- needs them.
-
-*Dump local attributes contain no compute or fix*
- Self-explanatory.
-
-*Dump local cannot sort by atom ID*
- This is because dump local does not really dump per-atom info.
-
-*Dump local compute does not calculate local array*
- Self-explanatory.
-
-*Dump local compute does not calculate local vector*
- Self-explanatory.
-
-*Dump local compute does not compute local info*
- Self-explanatory.
-
-*Dump local compute vector is accessed out-of-range*
- Self-explanatory.
-
-*Dump local count is not consistent across input fields*
- Every column of output must be the same length.
-
-*Dump local fix does not compute local array*
- Self-explanatory.
-
-*Dump local fix does not compute local info*
- Self-explanatory.
-
-*Dump local fix does not compute local vector*
- Self-explanatory.
-
-*Dump local fix vector is accessed out-of-range*
- Self-explanatory.
-
-*Dump modify bcolor not allowed with no bond types*
- Self-explanatory.
-
-*Dump modify bdiam not allowed with no bond types*
- Self-explanatory.
-
-*Dump modify compute ID does not compute per-atom array*
- Self-explanatory.
-
-*Dump modify compute ID does not compute per-atom info*
- Self-explanatory.
-
-*Dump modify compute ID does not compute per-atom vector*
- Self-explanatory.
-
-*Dump modify compute ID vector is not large enough*
- Self-explanatory.
-
-*Dump modify element names do not match atom types*
- Number of element names must equal number of atom types.
-
-*Dump modify fix ID does not compute per-atom array*
- Self-explanatory.
-
-*Dump modify fix ID does not compute per-atom info*
- Self-explanatory.
-
-*Dump modify fix ID does not compute per-atom vector*
- Self-explanatory.
-
-*Dump modify fix ID vector is not large enough*
- Self-explanatory.
-
-*Dump modify variable is not atom-style variable*
- Self-explanatory.
-
-*Dump sort column is invalid*
- Self-explanatory.
-
-*Dump xtc requires sorting by atom ID*
- Use the dump_modify sort command to enable this.
-
-*Dump xyz/gz only writes compressed files*
- The dump xyz/gz output file name must have a .gz suffix.
-
-*Dump_modify buffer yes not allowed for this style*
- Self-explanatory.
-
-*Dump_modify format string is too short*
- There are more fields to be dumped in a line of output than your
- format string specifies.
-
-*Dump_modify region ID does not exist*
- Self-explanatory.
-
-*Dumping an atom property that isn't allocated*
- The chosen atom style does not define the per-atom quantity being
- dumped.
-
-*Duplicate atom IDs exist*
- Self-explanatory.
-
-*Duplicate fields in read_dump command*
- Self-explanatory.
-
-*Duplicate particle in PeriDynamic bond - simulation box is too small*
- This is likely because your box length is shorter than 2 times
- the bond length.
-
-*Electronic temperature dropped below zero*
- Something has gone wrong with the fix ttm electron temperature model.
-
-*Element not defined in potential file*
- The specified element is not in the potential file.
-
-*Empty brackets in variable*
- There is no variable syntax that uses empty brackets. Check
- the variable doc page.
-
-*Energy was not tallied on needed timestep*
- You are using a thermo keyword that requires potentials to
- have tallied energy, but they didn't on this timestep. See the
- variable doc page for ideas on how to make this work.
-
-*Epsilon or sigma reference not set by pair style in PPPMDisp*
- Self-explanatory.
-
-*Epsilon or sigma reference not set by pair style in ewald/n*
- The pair style is not providing the needed epsilon or sigma values.
-
-*Error in vdw spline: inner radius > outer radius*
- A pre-tabulated spline is invalid. Likely a problem with the
- potential parameters.
-
-*Error writing averaged chunk data*
- Something in the output to the file triggered an error.
-
-*Error writing file header*
- Something in the output to the file triggered an error.
-
-*Error writing out correlation data*
- Something in the output to the file triggered an error.
-
-*Error writing out histogram data*
- Something in the output to the file triggered an error.
-
-*Error writing out time averaged data*
- Something in the output to the file triggered an error.
-
-*Failed to allocate %ld bytes for array %s*
- Your LAMMPS simulation has run out of memory. You need to run a
- smaller simulation or on more processors.
-
-*Failed to open FFmpeg pipeline to file %s*
- The specified file cannot be opened. Check that the path and name are
- correct and writable and that the FFmpeg executable can be found and run.
-
-*Failed to reallocate %ld bytes for array %s*
- Your LAMMPS simulation has run out of memory. You need to run a
- smaller simulation or on more processors.
-
-*Fewer SRD bins than processors in some dimension*
- This is not allowed. Make your SRD bin size smaller.
-
-*File variable could not read value*
- Check the file assigned to the variable.
-
-*Final box dimension due to fix deform is < 0.0*
- Self-explanatory.
-
-*Fix %s does not allow use of dynamic group*
- Dynamic groups have not yet been enabled for this fix.
-
-*Fix ID for compute chunk/atom does not exist*
- Self-explanatory.
-
-*Fix ID for compute erotate/rigid does not exist*
- Self-explanatory.
-
-*Fix ID for compute ke/rigid does not exist*
- Self-explanatory.
-
-*Fix ID for compute reduce does not exist*
- Self-explanatory.
-
-*Fix ID for compute slice does not exist*
- Self-explanatory.
-
-*Fix ID for fix ave/atom does not exist*
- Self-explanatory.
-
-*Fix ID for fix ave/chunk does not exist*
- Self-explanatory.
-
-*Fix ID for fix ave/correlate does not exist*
- Self-explanatory.
-
-*Fix ID for fix ave/histo does not exist*
- Self-explanatory.
-
-*Fix ID for fix ave/spatial does not exist*
- Self-explanatory.
-
-*Fix ID for fix ave/time does not exist*
- Self-explanatory.
-
-*Fix ID for fix store/state does not exist*
- Self-explanatory
-
-*Fix ID for fix vector does not exist*
- Self-explanatory.
-
-*Fix ID for read_data does not exist*
- Self-explanatory.
-
-*Fix ID for velocity does not exist*
- Self-explanatory.
-
-*Fix ID must be alphanumeric or underscore characters*
- Self-explanatory.
-
-*Fix SRD: bad bin assignment for SRD advection*
- Something has gone wrong in your SRD model; try using more
- conservative settings.
-
-*Fix SRD: bad search bin assignment*
- Something has gone wrong in your SRD model; try using more
- conservative settings.
-
-*Fix SRD: bad stencil bin for big particle*
- Something has gone wrong in your SRD model; try using more
- conservative settings.
-
-*Fix SRD: too many big particles in bin*
- Reset the ATOMPERBIN parameter at the top of fix_srd.cpp
- to a larger value, and re-compile the code.
-
-*Fix SRD: too many walls in bin*
- This should not happen unless your system has been setup incorrectly.
-
-*Fix adapt interface to this pair style not supported*
- New coding for the pair style would need to be done.
-
-*Fix adapt kspace style does not exist*
- Self-explanatory.
-
-*Fix adapt pair style does not exist*
- Self-explanatory
-
-*Fix adapt pair style param not supported*
- The pair style does not know about the parameter you specified.
-
-*Fix adapt requires atom attribute charge*
- The atom style being used does not specify an atom charge.
-
-*Fix adapt requires atom attribute diameter*
- The atom style being used does not specify an atom diameter.
-
-*Fix adapt type pair range is not valid for pair hybrid sub-style*
- Self-explanatory.
-
-*Fix append/atoms requires a lattice be defined*
- Use the lattice command for this purpose.
-
-*Fix ave/atom compute array is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/atom compute does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/atom compute does not calculate a per-atom vector*
- A compute used by fix ave/atom must generate per-atom values.
-
-*Fix ave/atom compute does not calculate per-atom values*
- A compute used by fix ave/atom must generate per-atom values.
-
-*Fix ave/atom fix array is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/atom fix does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/atom fix does not calculate a per-atom vector*
- A fix used by fix ave/atom must generate per-atom values.
-
-*Fix ave/atom fix does not calculate per-atom values*
- A fix used by fix ave/atom must generate per-atom values.
-
-*Fix ave/atom variable is not atom-style variable*
- A variable used by fix ave/atom must generate per-atom values.
-
-*Fix ave/chunk compute does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/chunk compute does not calculate a per-atom vector*
- Self-explanatory.
-
-*Fix ave/chunk compute does not calculate per-atom values*
- Self-explanatory.
-
-*Fix ave/chunk compute vector is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/chunk does not use chunk/atom compute*
- The specified conpute is not for a compute chunk/atom command.
-
-*Fix ave/chunk fix does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/chunk fix does not calculate a per-atom vector*
- Self-explanatory.
-
-*Fix ave/chunk fix does not calculate per-atom values*
- Self-explanatory.
-
-*Fix ave/chunk fix vector is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/chunk variable is not atom-style variable*
- Self-explanatory.
-
-*Fix ave/correlate compute does not calculate a scalar*
- Self-explanatory.
-
-*Fix ave/correlate compute does not calculate a vector*
- Self-explanatory.
-
-*Fix ave/correlate compute vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Fix ave/correlate fix does not calculate a scalar*
- Self-explanatory.
-
-*Fix ave/correlate fix does not calculate a vector*
- Self-explanatory.
-
-*Fix ave/correlate fix vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Fix ave/correlate variable is not equal-style variable*
- Self-explanatory.
-
-*Fix ave/histo cannot input local values in scalar mode*
- Self-explanatory.
-
-*Fix ave/histo cannot input per-atom values in scalar mode*
- Self-explanatory.
-
-*Fix ave/histo compute array is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate a global array*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate a global scalar*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate a global vector*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate a local array*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate a local vector*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate a per-atom vector*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate local values*
- Self-explanatory.
-
-*Fix ave/histo compute does not calculate per-atom values*
- Self-explanatory.
-
-*Fix ave/histo compute vector is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/histo fix array is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate a global array*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate a global scalar*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate a global vector*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate a local array*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate a local vector*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate a per-atom vector*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate local values*
- Self-explanatory.
-
-*Fix ave/histo fix does not calculate per-atom values*
- Self-explanatory.
-
-*Fix ave/histo fix vector is accessed out-of-range*
- Self-explanatory.
-
-*Fix ave/histo input is invalid compute*
- Self-explanatory.
-
-*Fix ave/histo input is invalid fix*
- Self-explanatory.
-
-*Fix ave/histo input is invalid variable*
- Self-explanatory.
-
-*Fix ave/histo inputs are not all global, peratom, or local*
- All inputs in a single fix ave/histo command must be of the
- same style.
-
-*Fix ave/histo/weight value and weight vector lengths do not match*
- Self-explanatory.
-
-*Fix ave/spatial compute does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/spatial compute does not calculate a per-atom vector*
- A compute used by fix ave/spatial must generate per-atom values.
-
-*Fix ave/spatial compute does not calculate per-atom values*
- A compute used by fix ave/spatial must generate per-atom values.
-
-*Fix ave/spatial compute vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Fix ave/spatial fix does not calculate a per-atom array*
- Self-explanatory.
-
-*Fix ave/spatial fix does not calculate a per-atom vector*
- A fix used by fix ave/spatial must generate per-atom values.
-
-*Fix ave/spatial fix does not calculate per-atom values*
- A fix used by fix ave/spatial must generate per-atom values.
-
-*Fix ave/spatial fix vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Fix ave/spatial for triclinic boxes requires units reduced*
- Self-explanatory.
-
-*Fix ave/spatial settings invalid with changing box size*
- If the box size changes, only the units reduced option can be
- used.
-
-*Fix ave/spatial variable is not atom-style variable*
- A variable used by fix ave/spatial must generate per-atom values.
-
-*Fix ave/time cannot set output array intensive/extensive from these inputs*
- One of more of the vector inputs has individual elements which are
- flagged as intensive or extensive. Such an input cannot be flagged as
- all intensive/extensive when turned into an array by fix ave/time.
-
-*Fix ave/time cannot use variable with vector mode*
- Variables produce scalar values.
-
-*Fix ave/time columns are inconsistent lengths*
- Self-explanatory.
-
-*Fix ave/time compute array is accessed out-of-range*
- An index for the array is out of bounds.
-
-*Fix ave/time compute does not calculate a scalar*
- Self-explantory.
-
-*Fix ave/time compute does not calculate a vector*
- Self-explantory.
-
-*Fix ave/time compute does not calculate an array*
- Self-explanatory.
-
-*Fix ave/time compute vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Fix ave/time fix array cannot be variable length*
- Self-explanatory.
-
-*Fix ave/time fix array is accessed out-of-range*
- An index for the array is out of bounds.
-
-*Fix ave/time fix does not calculate a scalar*
- Self-explanatory.
-
-*Fix ave/time fix does not calculate a vector*
- Self-explanatory.
-
-*Fix ave/time fix does not calculate an array*
- Self-explanatory.
-
-*Fix ave/time fix vector cannot be variable length*
- Self-explanatory.
-
-*Fix ave/time fix vector is accessed out-of-range*
- The index for the vector is out of bounds.
-
-*Fix ave/time variable is not equal-style variable*
- Self-explanatory.
-
-*Fix balance rcb cannot be used with comm_style brick*
- Comm_style tiled must be used instead.
-
-*Fix balance shift string is invalid*
- The string can only contain the characters "x", "y", or "z".
-
-*Fix bond/break needs ghost atoms from further away*
- This is because the fix needs to walk bonds to a certain distance to
- acquire needed info, The comm_modify cutoff command can be used to
- extend the communication range.
-
-*Fix bond/create angle type is invalid*
- Self-explanatory.
-
-*Fix bond/create cutoff is longer than pairwise cutoff*
- This is not allowed because bond creation is done using the
- pairwise neighbor list.
-
-*Fix bond/create dihedral type is invalid*
- Self-explanatory.
-
-*Fix bond/create improper type is invalid*
- Self-explanatory.
-
-*Fix bond/create induced too many angles/dihedrals/impropers per atom*
- See the read_data command for info on setting the "extra angle per
- atom", etc header values to allow for additional angles, etc to be
- formed.
-
-*Fix bond/create needs ghost atoms from further away*
- This is because the fix needs to walk bonds to a certain distance to
- acquire needed info, The comm_modify cutoff command can be used to
- extend the communication range.
-
-*Fix bond/swap cannot use dihedral or improper styles*
- These styles cannot be defined when using this fix.
-
-*Fix bond/swap requires pair and bond styles*
- Self-explanatory.
-
-*Fix bond/swap requires special_bonds = 0,1,1*
- Self-explanatory.
-
-*Fix box/relax generated negative box length*
- The pressure being applied is likely too large. Try applying
- it incrementally, to build to the high pressure.
-
-*Fix command before simulation box is defined*
- The fix command cannot be used before a read_data, read_restart, or
- create_box command.
-
-*Fix deform cannot use yz variable with xy*
- The yz setting cannot be a variable if xy deformation is also
- specified. This is because LAMMPS cannot determine if the yz setting
- will induce a box flip which would be invalid if xy is also changing.
-
-*Fix deform is changing yz too much with xy*
- When both yz and xy are changing, it induces changes in xz if the
- box must flip from one tilt extreme to another. Thus it is not
- allowed for yz to grow so much that a flip is induced.
-
-*Fix deform tilt factors require triclinic box*
- Cannot deform the tilt factors of a simulation box unless it
- is a triclinic (non-orthogonal) box.
-
-*Fix deform volume setting is invalid*
- Cannot use volume style unless other dimensions are being controlled.
-
-*Fix deposit and fix rigid/small not using same molecule template ID*
- Self-explanatory.
-
-*Fix deposit and fix shake not using same molecule template ID*
- Self-explanatory.
-
-*Fix deposit molecule must have atom types*
- The defined molecule does not specify atom types.
-
-*Fix deposit molecule must have coordinates*
- The defined molecule does not specify coordinates.
-
-*Fix deposit molecule template ID must be same as atom_style template ID*
- When using atom_style template, you cannot deposit molecules that are
- not in that template.
-
-*Fix deposit region cannot be dynamic*
- Only static regions can be used with fix deposit.
-
-*Fix deposit region does not support a bounding box*
- Not all regions represent bounded volumes. You cannot use
- such a region with the fix deposit command.
-
-*Fix deposit shake fix does not exist*
- Self-explanatory.
-
-*Fix efield requires atom attribute q or mu*
- The atom style defined does not have this attribute.
-
-*Fix efield with dipoles cannot use atom-style variables*
- This option is not supported.
-
-*Fix evaporate molecule requires atom attribute molecule*
- The atom style being used does not define a molecule ID.
-
-*Fix external callback function not set*
- This must be done by an external program in order to use this fix.
-
-*Fix for fix ave/atom not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix ave/atom is
- requesting a value on a non-allowed timestep.
-
-*Fix for fix ave/chunk not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix ave/chunk is
- requesting a value on a non-allowed timestep.
-
-*Fix for fix ave/correlate not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix ave/correlate
- is requesting a value on a non-allowed timestep.
-
-*Fix for fix ave/histo not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix ave/histo is
- requesting a value on a non-allowed timestep.
-
-*Fix for fix ave/spatial not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix ave/spatial is
- requesting a value on a non-allowed timestep.
-
-*Fix for fix ave/time not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix ave/time
- is requesting a value on a non-allowed timestep.
-
-*Fix for fix store/state not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix store/state
- is requesting a value on a non-allowed timestep.
-
-*Fix for fix vector not computed at compatible time*
- Fixes generate their values on specific timesteps. Fix vector is
- requesting a value on a non-allowed timestep.
-
-*Fix freeze requires atom attribute torque*
- The atom style defined does not have this attribute.
-
-*Fix gcmc and fix shake not using same molecule template ID*
- Self-explanatory.
-
-*Fix gcmc atom has charge, but atom style does not*
- Self-explanatory.
-
-*Fix gcmc cannot exchange individual atoms belonging to a molecule*
- This is an error since you should not delete only one atom of a
- molecule. The user has specified atomic (non-molecular) gas
- exchanges, but an atom belonging to a molecule could be deleted.
-
-*Fix gcmc does not (yet) work with atom_style template*
- Self-explanatory.
-
-*Fix gcmc molecule command requires that atoms have molecule attributes*
- Should not choose the gcmc molecule feature if no molecules are being
- simulated. The general molecule flag is off, but gcmc's molecule flag
- is on.
-
-*Fix gcmc molecule has charges, but atom style does not*
- Self-explanatory.
-
-*Fix gcmc molecule must have atom types*
- The defined molecule does not specify atom types.
-
-*Fix gcmc molecule must have coordinates*
- The defined molecule does not specify coordinates.
-
-*Fix gcmc molecule template ID must be same as atom_style template ID*
- When using atom_style template, you cannot insert molecules that are
- not in that template.
-
-*Fix gcmc put atom outside box*
- This should not normally happen. Contact the developers.
-
-*Fix gcmc ran out of available atom IDs*
- See the setting for tagint in the src/lmptype.h file.
-
-*Fix gcmc ran out of available molecule IDs*
- See the setting for tagint in the src/lmptype.h file.
-
-*Fix gcmc region cannot be dynamic*
- Only static regions can be used with fix gcmc.
-
-*Fix gcmc region does not support a bounding box*
- Not all regions represent bounded volumes. You cannot use
- such a region with the fix gcmc command.
-
-*Fix gcmc region extends outside simulation box*
- Self-explanatory.
-
-*Fix gcmc shake fix does not exist*
- Self-explanatory.
-
-*Fix gld c coefficients must be >= 0*
- Self-explanatory.
-
-*Fix gld needs more prony series coefficients*
- Self-explanatory.
-
-*Fix gld prony terms must be > 0*
- Self-explanatory.
-
-*Fix gld series type must be pprony for now*
- Self-explanatory.
-
-*Fix gld start temperature must be >= 0*
- Self-explanatory.
-
-*Fix gld stop temperature must be >= 0*
- Self-explanatory.
-
-*Fix gld tau coefficients must be > 0*
- Self-explanatory.
-
-*Fix heat group has no atoms*
- Self-explanatory.
-
-*Fix heat kinetic energy of an atom went negative*
- This will cause the velocity rescaling about to be performed by fix
- heat to be invalid.
-
-*Fix heat kinetic energy went negative*
- This will cause the velocity rescaling about to be performed by fix
- heat to be invalid.
-
-*Fix in variable not computed at compatible time*
- Fixes generate their values on specific timesteps. The variable is
- requesting the values on a non-allowed timestep.
-
-*Fix langevin angmom is not yet implemented with kokkos*
- This option is not yet available.
-
-*Fix langevin angmom requires atom style ellipsoid*
- Self-explanatory.
-
-*Fix langevin angmom requires extended particles*
- This fix option cannot be used with point paritlces.
-
-*Fix langevin omega is not yet implemented with kokkos*
- This option is not yet available.
-
-*Fix langevin omega requires atom style sphere*
- Self-explanatory.
-
-*Fix langevin omega requires extended particles*
- One of the particles has radius 0.0.
-
-*Fix langevin period must be > 0.0*
- The time window for temperature relaxation must be > 0
-
-*Fix langevin variable returned negative temperature*
- Self-explanatory.
-
-*Fix momentum group has no atoms*
- Self-explanatory.
-
-*Fix move cannot define z or vz variable for 2d problem*
- Self-explanatory.
-
-*Fix move cannot rotate aroung non z-axis for 2d problem*
- Self-explanatory.
-
-*Fix move cannot set linear z motion for 2d problem*
- Self-explanatory.
-
-*Fix move cannot set wiggle z motion for 2d problem*
- Self-explanatory.
-
-*Fix msst compute ID does not compute potential energy*
- Self-explanatory.
-
-*Fix msst compute ID does not compute pressure*
- Self-explanatory.
-
-*Fix msst compute ID does not compute temperature*
- Self-explanatory.
-
-*Fix msst requires a periodic box*
- Self-explanatory.
-
-*Fix msst tscale must satisfy 0 <= tscale < 1*
- Self-explanatory.
-
-*Fix npt/nph has tilted box too far in one step - periodic cell is too far from equilibrium state*
- Self-explanatory. The change in the box tilt is too extreme
- on a short timescale.
-
-*Fix nve/asphere requires extended particles*
- This fix can only be used for particles with a shape setting.
-
-*Fix nve/asphere/noforce requires atom style ellipsoid*
- Self-explanatory.
-
-*Fix nve/asphere/noforce requires extended particles*
- One of the particles is not an ellipsoid.
-
-*Fix nve/body requires atom style body*
- Self-explanatory.
-
-*Fix nve/body requires bodies*
- This fix can only be used for particles that are bodies.
-
-*Fix nve/line can only be used for 2d simulations*
- Self-explanatory.
-
-*Fix nve/line requires atom style line*
- Self-explanatory.
-
-*Fix nve/line requires line particles*
- Self-explanatory.
-
-*Fix nve/sphere dipole requires atom attribute mu*
- An atom style with this attribute is needed.
-
-*Fix nve/sphere requires atom style sphere*
- Self-explanatory.
-
-*Fix nve/sphere requires extended particles*
- This fix can only be used for particles of a finite size.
-
-*Fix nve/tri can only be used for 3d simulations*
- Self-explanatory.
-
-*Fix nve/tri requires atom style tri*
- Self-explanatory.
-
-*Fix nve/tri requires tri particles*
- Self-explanatory.
-
-*Fix nvt/nph/npt asphere requires extended particles*
- The shape setting for a particle in the fix group has shape = 0.0,
- which means it is a point particle.
-
-*Fix nvt/nph/npt body requires bodies*
- Self-explanatory.
-
-*Fix nvt/nph/npt sphere requires atom style sphere*
- Self-explanatory.
-
-*Fix nvt/npt/nph damping parameters must be > 0.0*
- Self-explanatory.
-
-*Fix nvt/npt/nph dilate group ID does not exist*
- Self-explanatory.
-
-*Fix nvt/sphere requires extended particles*
- This fix can only be used for particles of a finite size.
-
-*Fix orient/fcc file open failed*
- The fix orient/fcc command could not open a specified file.
-
-*Fix orient/fcc file read failed*
- The fix orient/fcc command could not read the needed parameters from a
- specified file.
-
-*Fix orient/fcc found self twice*
- The neighbor lists used by fix orient/fcc are messed up. If this
- error occurs, it is likely a bug, so send an email to the
- `developers <http://lammps.sandia.gov/authors.html>`_.
-
-*Fix peri neigh does not exist*
- Somehow a fix that the pair style defines has been deleted.
-
-*Fix pour and fix rigid/small not using same molecule template ID*
- Self-explanatory.
-
-*Fix pour and fix shake not using same molecule template ID*
- Self-explanatory.
-
-*Fix pour insertion count per timestep is 0*
- Self-explanatory.
-
-*Fix pour molecule must have atom types*
- The defined molecule does not specify atom types.
-
-*Fix pour molecule must have coordinates*
- The defined molecule does not specify coordinates.
-
-*Fix pour molecule template ID must be same as atom style template ID*
- When using atom_style template, you cannot pour molecules that are
- not in that template.
-
-*Fix pour polydisperse fractions do not sum to 1.0*
- Self-explanatory.
-
-*Fix pour region ID does not exist*
- Self-explanatory.
-
-*Fix pour region cannot be dynamic*
- Only static regions can be used with fix pour.
-
-*Fix pour region does not support a bounding box*
- Not all regions represent bounded volumes. You cannot use
- such a region with the fix pour command.
-
-*Fix pour requires atom attributes radius, rmass*
- The atom style defined does not have these attributes.
-
-*Fix pour rigid fix does not exist*
- Self-explanatory.
-
-*Fix pour shake fix does not exist*
- Self-explanatory.
-
-*Fix press/berendsen damping parameters must be > 0.0*
- Self-explanatory.
-
-*Fix property/atom cannot specify mol twice*
- Self-explanatory.
-
-*Fix property/atom cannot specify q twice*
- Self-explanatory.
-
-*Fix property/atom mol when atom_style already has molecule attribute*
- Self-explanatory.
-
-*Fix property/atom q when atom_style already has charge attribute*
- Self-explanatory.
-
-*Fix property/atom vector name already exists*
- The name for an integer or floating-point vector must be unique.
-
-*Fix qeq has negative upper Taper radius cutoff*
- Self-explanatory.
-
-*Fix qeq/comb group has no atoms*
- Self-explanatory.
-
-*Fix qeq/comb requires atom attribute q*
- An atom style with charge must be used to perform charge equilibration.
-
-*Fix qeq/dynamic group has no atoms*
- Self-explanatory.
-
-*Fix qeq/dynamic requires atom attribute q*
- Self-explanatory.
-
-*Fix qeq/fire group has no atoms*
- Self-explanatory.
-
-*Fix qeq/fire requires atom attribute q*
- Self-explanatory.
-
-*Fix qeq/point group has no atoms*
- Self-explanatory.
-
-*Fix qeq/point has insufficient QEq matrix size*
- Occurs when number of neighbor atoms for an atom increased too much
- during a run. Increase SAFE_ZONE and MIN_CAP in fix_qeq.h and
- recompile.
-
-*Fix qeq/point requires atom attribute q*
- Self-explanatory.
-
-*Fix qeq/shielded group has no atoms*
- Self-explanatory.
-
-*Fix qeq/shielded has insufficient QEq matrix size*
- Occurs when number of neighbor atoms for an atom increased too much
- during a run. Increase SAFE_ZONE and MIN_CAP in fix_qeq.h and
- recompile.
-
-*Fix qeq/shielded requires atom attribute q*
- Self-explanatory.
-
-*Fix qeq/slater could not extract params from pair coul/streitz*
- This should not happen unless pair coul/streitz has been altered.
-
-*Fix qeq/slater group has no atoms*
- Self-explanatory.
-
-*Fix qeq/slater has insufficient QEq matrix size*
- Occurs when number of neighbor atoms for an atom increased too much
- during a run. Increase SAFE_ZONE and MIN_CAP in fix_qeq.h and
- recompile.
-
-*Fix qeq/slater requires atom attribute q*
- Self-explanatory.
-
-*Fix reax/bonds numbonds > nsbmax_most*
- The limit of the number of bonds expected by the ReaxFF force field
- was exceeded.
-
-*Fix recenter group has no atoms*
- Self-explanatory.
-
-*Fix restrain requires an atom map, see atom_modify*
- Self-explanatory.
-
-*Fix rigid atom has non-zero image flag in a non-periodic dimension*
- Image flags for non-periodic dimensions should not be set.
-
-*Fix rigid file has no lines*
- Self-explanatory.
-
-*Fix rigid langevin period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid molecule requires atom attribute molecule*
- Self-explanatory.
-
-*Fix rigid npt/nph dilate group ID does not exist*
- Self-explanatory.
-
-*Fix rigid npt/nph does not yet allow triclinic box*
- This is a current restriction in LAMMPS.
-
-*Fix rigid npt/nph period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid npt/small t_chain should not be less than 1*
- Self-explanatory.
-
-*Fix rigid npt/small t_order must be 3 or 5*
- Self-explanatory.
-
-*Fix rigid nvt/npt/nph damping parameters must be > 0.0*
- Self-explanatory.
-
-*Fix rigid nvt/small t_chain should not be less than 1*
- Self-explanatory.
-
-*Fix rigid nvt/small t_iter should not be less than 1*
- Self-explanatory.
-
-*Fix rigid nvt/small t_order must be 3 or 5*
- Self-explanatory.
-
-*Fix rigid xy torque cannot be on for 2d simulation*
- Self-explanatory.
-
-*Fix rigid z force cannot be on for 2d simulation*
- Self-explanatory.
-
-*Fix rigid/npt period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid/npt temperature order must be 3 or 5*
- Self-explanatory.
-
-*Fix rigid/npt/small period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid/nvt period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid/nvt temperature order must be 3 or 5*
- Self-explanatory.
-
-*Fix rigid/nvt/small period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid/small atom has non-zero image flag in a non-periodic dimension*
- Image flags for non-periodic dimensions should not be set.
-
-*Fix rigid/small langevin period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid/small molecule must have atom types*
- The defined molecule does not specify atom types.
-
-*Fix rigid/small molecule must have coordinates*
- The defined molecule does not specify coordinates.
-
-*Fix rigid/small npt/nph period must be > 0.0*
- Self-explanatory.
-
-*Fix rigid/small nvt/npt/nph damping parameters must be > 0.0*
- Self-explanatory.
-
-*Fix rigid/small nvt/npt/nph dilate group ID does not exist*
- Self-explanatory.
-
-*Fix rigid/small requires an atom map, see atom_modify*
- Self-explanatory.
-
-*Fix rigid/small requires atom attribute molecule*
- Self-explanatory.
-
-*Fix rigid: Bad principal moments*
- The principal moments of inertia computed for a rigid body
- are not within the required tolerances.
-
-*Fix shake cannot be used with minimization*
- Cannot use fix shake while doing an energy minimization since
- it turns off bonds that should contribute to the energy.
-
-*Fix shake molecule template must have shake info*
- The defined molecule does not specify SHAKE information.
-
-*Fix spring couple group ID does not exist*
- Self-explanatory.
-
-*Fix srd can only currently be used with comm_style brick*
- This is a current restriction in LAMMPS.
-
-*Fix srd lamda must be >= 0.6 of SRD grid size*
- This is a requirement for accuracy reasons.
-
-*Fix srd no-slip requires atom attribute torque*
- This is because the SRD collisions will impart torque to the solute
- particles.
-
-*Fix srd requires SRD particles all have same mass*
- Self-explanatory.
-
-*Fix srd requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Fix srd requires newton pair on*
- Self-explanatory.
-
-*Fix store/state compute array is accessed out-of-range*
- Self-explanatory.
-
-*Fix store/state compute does not calculate a per-atom array*
- The compute calculates a per-atom vector.
-
-*Fix store/state compute does not calculate a per-atom vector*
- The compute calculates a per-atom vector.
-
-*Fix store/state compute does not calculate per-atom values*
- Computes that calculate global or local quantities cannot be used
- with fix store/state.
-
-*Fix store/state fix array is accessed out-of-range*
- Self-explanatory.
-
-*Fix store/state fix does not calculate a per-atom array*
- The fix calculates a per-atom vector.
-
-*Fix store/state fix does not calculate a per-atom vector*
- The fix calculates a per-atom array.
-
-*Fix store/state fix does not calculate per-atom values*
- Fixes that calculate global or local quantities cannot be used with
- fix store/state.
-
-*Fix store/state for atom property that isn't allocated*
- Self-explanatory.
-
-*Fix store/state variable is not atom-style variable*
- Only atom-style variables calculate per-atom quantities.
-
-*Fix temp/berendsen period must be > 0.0*
- Self-explanatory.
-
-*Fix temp/berendsen variable returned negative temperature*
- Self-explanatory.
-
-*Fix temp/csld is not compatible with fix rattle or fix shake*
- These two commands cannot currently be used together with fix temp/csld.
-
-*Fix temp/csld variable returned negative temperature*
- Self-explanatory.
-
-*Fix temp/csvr variable returned negative temperature*
- Self-explanatory.
-
-*Fix temp/rescale variable returned negative temperature*
- Self-explanatory.
-
-*Fix tfmc displacement length must be > 0*
- Self-explanatory.
-
-*Fix tfmc is not compatible with fix shake*
- These two commands cannot currently be used together.
-
-*Fix tfmc temperature must be > 0*
- Self-explanatory.
-
-*Fix thermal/conductivity swap value must be positive*
- Self-explanatory.
-
-*Fix tmd must come after integration fixes*
- Any fix tmd command must appear in the input script after all time
- integration fixes (nve, nvt, npt). See the fix tmd documentation for
- details.
-
-*Fix ttm electron temperatures must be > 0.0*
- Self-explanatory.
-
-*Fix ttm electronic_density must be > 0.0*
- Self-explanatory.
-
-*Fix ttm electronic_specific_heat must be > 0.0*
- Self-explanatory.
-
-*Fix ttm electronic_thermal_conductivity must be >= 0.0*
- Self-explanatory.
-
-*Fix ttm gamma_p must be > 0.0*
- Self-explanatory.
-
-*Fix ttm gamma_s must be >= 0.0*
- Self-explanatory.
-
-*Fix ttm number of nodes must be > 0*
- Self-explanatory.
-
-*Fix ttm v_0 must be >= 0.0*
- Self-explanatory.
-
-*Fix used in compute chunk/atom not computed at compatible time*
- The chunk/atom compute cannot query the output of the fix on a timestep
- it is needed.
-
-*Fix used in compute reduce not computed at compatible time*
- Fixes generate their values on specific timesteps. Compute reduce is
- requesting a value on a non-allowed timestep.
-
-*Fix used in compute slice not computed at compatible time*
- Fixes generate their values on specific timesteps. Compute slice is
- requesting a value on a non-allowed timestep.
-
-*Fix vector cannot set output array intensive/extensive from these inputs*
- The inputs to the command have conflicting intensive/extensive attributes.
- You need to use more than one fix vector command.
-
-*Fix vector compute does not calculate a scalar*
- Self-explanatory.
-
-*Fix vector compute does not calculate a vector*
- Self-explanatory.
-
-*Fix vector compute vector is accessed out-of-range*
- Self-explanatory.
-
-*Fix vector fix does not calculate a scalar*
- Self-explanatory.
-
-*Fix vector fix does not calculate a vector*
- Self-explanatory.
-
-*Fix vector fix vector is accessed out-of-range*
- Self-explanatory.
-
-*Fix vector variable is not equal-style variable*
- Self-explanatory.
-
-*Fix viscosity swap value must be positive*
- Self-explanatory.
-
-*Fix viscosity vtarget value must be positive*
- Self-explanatory.
-
-*Fix wall cutoff <= 0.0*
- Self-explanatory.
-
-*Fix wall/colloid requires atom style sphere*
- Self-explanatory.
-
-*Fix wall/colloid requires extended particles*
- One of the particles has radius 0.0.
-
-*Fix wall/gran is incompatible with Pair style*
- Must use a granular pair style to define the parameters needed for
- this fix.
-
-*Fix wall/gran requires atom style sphere*
- Self-explanatory.
-
-*Fix wall/piston command only available at zlo*
- The face keyword must be zlo.
-
-*Fix wall/region colloid requires atom style sphere*
- Self-explanatory.
-
-*Fix wall/region colloid requires extended particles*
- One of the particles has radius 0.0.
-
-*Fix wall/region cutoff <= 0.0*
- Self-explanatory.
-
-*Fix_modify pressure ID does not compute pressure*
- The compute ID assigned to the fix must compute pressure.
-
-*Fix_modify temperature ID does not compute temperature*
- The compute ID assigned to the fix must compute temperature.
-
-*For triclinic deformation, specified target stress must be hydrostatic*
- Triclinic pressure control is allowed using the tri keyword, but
- non-hydrostatic pressure control can not be used in this case.
-
-*Found no restart file matching pattern*
- When using a "*" in the restart file name, no matching file was found.
-
-*GPU library not compiled for this accelerator*
- Self-explanatory.
-
-*GPU package does not (yet) work with atom_style template*
- Self-explanatory.
-
-*GPU particle split must be set to 1 for this pair style.*
- For this pair style, you cannot run part of the force calculation on
- the host. See the package command.
-
-*GPU split param must be positive for hybrid pair styles*
- See the package gpu command.
-
-*GPUs are requested but Kokkos has not been compiled for CUDA*
- Recompile Kokkos with CUDA support to use GPUs.
-
-*Ghost velocity forward comm not yet implemented with Kokkos*
- This is a current restriction.
-
-*Gmask function in equal-style variable formula*
- Gmask is per-atom operation.
-
-*Gravity changed since fix pour was created*
- The gravity vector defined by fix gravity must be static.
-
-*Gravity must point in -y to use with fix pour in 2d*
- Self-explanatory.
-
-*Gravity must point in -z to use with fix pour in 3d*
- Self-explanatory.
-
-*Grmask function in equal-style variable formula*
- Grmask is per-atom operation.
-
-*Group ID does not exist*
- A group ID used in the group command does not exist.
-
-*Group ID in variable formula does not exist*
- Self-explanatory.
-
-*Group all cannot be made dynamic*
- This operation is not allowed.
-
-*Group command before simulation box is defined*
- The group command cannot be used before a read_data, read_restart, or
- create_box command.
-
-*Group dynamic cannot reference itself*
- Self-explanatory.
-
-*Group dynamic parent group cannot be dynamic*
- Self-explanatory.
-
-*Group dynamic parent group does not exist*
- Self-explanatory.
-
-*Group region ID does not exist*
- A region ID used in the group command does not exist.
-
-*If read_dump purges it cannot replace or trim*
- These operations are not compatible. See the read_dump doc
- page for details.
-
-*Illegal ... command*
- Self-explanatory. Check the input script syntax and compare to the
- documentation for the command. You can use -echo screen as a
- command-line option when running LAMMPS to see the offending line.
-
-*Illegal COMB parameter*
- One or more of the coefficients defined in the potential file is
- invalid.
-
-*Illegal COMB3 parameter*
- One or more of the coefficients defined in the potential file is
- invalid.
-
-*Illegal Stillinger-Weber parameter*
- One or more of the coefficients defined in the potential file is
- invalid.
-
-*Illegal Tersoff parameter*
- One or more of the coefficients defined in the potential file is
- invalid.
-
-*Illegal Vashishta parameter*
- One or more of the coefficients defined in the potential file is
- invalid.
-
-*Illegal compute voronoi/atom command (occupation and (surface or edges))*
- Self-explanatory.
-
-*Illegal coul/streitz parameter*
- One or more of the coefficients defined in the potential file is
- invalid.
-
-*Illegal dump_modify sfactor value (must be > 0.0)*
- Self-explanatory.
-
-*Illegal dump_modify tfactor value (must be > 0.0)*
- Self-explanatory.
-
-*Illegal fix gcmc gas mass <= 0*
- The computed mass of the designated gas molecule or atom type was less
- than or equal to zero.
-
-*Illegal fix tfmc random seed*
- Seeds can only be nonzero positive integers.
-
-*Illegal fix wall/piston velocity*
- The piston velocity must be positive.
-
-*Illegal integrate style*
- Self-explanatory.
-
-*Illegal nb3b/harmonic parameter*
- One or more of the coefficients defined in the potential file is
- invalid.
-
-*Illegal number of angle table entries*
- There must be at least 2 table entries.
-
-*Illegal number of bond table entries*
- There must be at least 2 table entries.
-
-*Illegal number of pair table entries*
- There must be at least 2 table entries.
-
-*Illegal or unset periodicity in restart*
- This error should not normally occur unless the restart file is invalid.
-
-*Illegal range increment value*
- The increment must be >= 1.
-
-*Illegal simulation box*
- The lower bound of the simulation box is greater than the upper bound.
-
-*Illegal size double vector read requested*
- This error should not normally occur unless the restart file is invalid.
-
-*Illegal size integer vector read requested*
- This error should not normally occur unless the restart file is invalid.
-
-*Illegal size string or corrupt restart*
- This error should not normally occur unless the restart file is invalid.
-
-*Imageint setting in lmptype.h is invalid*
- Imageint must be as large or larger than smallint.
-
-*Imageint setting in lmptype.h is not compatible*
- Format of imageint stored in restart file is not consistent with
- LAMMPS version you are running. See the settings in src/lmptype.h
-
-*Improper atom missing in delete_bonds*
- The delete_bonds command cannot find one or more atoms in a particular
- improper on a particular processor. The pairwise cutoff is too short
- or the atoms are too far apart to make a valid improper.
-
-*Improper atom missing in set command*
- The set command cannot find one or more atoms in a particular improper
- on a particular processor. The pairwise cutoff is too short or the
- atoms are too far apart to make a valid improper.
-
-*Improper atoms %d %d %d %d missing on proc %d at step %ld*
- One or more of 4 atoms needed to compute a particular improper are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the improper has blown apart and an atom is
- too far away.
-
-*Improper atoms missing on proc %d at step %ld*
- One or more of 4 atoms needed to compute a particular improper are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the improper has blown apart and an atom is
- too far away.
-
-*Improper coeff for hybrid has invalid style*
- Improper style hybrid uses another improper style as one of its
- coefficients. The improper style used in the improper_coeff command
- or read from a restart file is not recognized.
-
-*Improper coeffs are not set*
- No improper coefficients have been assigned in the data file or via
- the improper_coeff command.
-
-*Improper style hybrid cannot have hybrid as an argument*
- Self-explanatory.
-
-*Improper style hybrid cannot have none as an argument*
- Self-explanatory.
-
-*Improper style hybrid cannot use same improper style twice*
- Self-explanatory.
-
-*Improper_coeff command before improper_style is defined*
- Coefficients cannot be set in the data file or via the improper_coeff
- command until an improper_style has been assigned.
-
-*Improper_coeff command before simulation box is defined*
- The improper_coeff command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Improper_coeff command when no impropers allowed*
- The chosen atom style does not allow for impropers to be defined.
-
-*Improper_style command when no impropers allowed*
- The chosen atom style does not allow for impropers to be defined.
-
-*Impropers assigned incorrectly*
- Impropers read in from the data file were not assigned correctly to
- atoms. This means there is something invalid about the topology
- definitions.
-
-*Impropers defined but no improper types*
- The data file header lists improper but no improper types.
-
-*Incomplete use of variables in create_atoms command*
- The var and set options must be used together.
-
-*Inconsistent iparam/jparam values in fix bond/create command*
- If itype and jtype are the same, then their maxbond and newtype
- settings must also be the same.
-
-*Inconsistent line segment in data file*
- The end points of the line segment are not equal distances from the
- center point which is the atom coordinate.
-
-*Inconsistent triangle in data file*
- The centroid of the triangle as defined by the corner points is not
- the atom coordinate.
-
-*Inconsistent use of finite-size particles by molecule template molecules*
- Not all of the molecules define a radius for their constituent
- particles.
-
-*Incorrect # of floating-point values in Bodies section of data file*
- See doc page for body style.
-
-*Incorrect # of integer values in Bodies section of data file*
- See doc page for body style.
-
-*Incorrect %s format in data file*
- A section of the data file being read by fix property/atom does
- not have the correct number of values per line.
-
-*Incorrect SNAP parameter file*
- The file cannot be parsed correctly, check its internal syntax.
-
-*Incorrect args for angle coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Incorrect args for bond coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Incorrect args for dihedral coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Incorrect args for improper coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Incorrect args for pair coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Incorrect args in pair_style command*
- Self-explanatory.
-
-*Incorrect atom format in data file*
- Number of values per atom line in the data file is not consistent with
- the atom style.
-
-*Incorrect atom format in neb file*
- The number of fields per line is not what expected.
-
-*Incorrect bonus data format in data file*
- See the read_data doc page for a description of how various kinds of
- bonus data must be formatted for certain atom styles.
-
-*Incorrect boundaries with slab Ewald*
- Must have periodic x,y dimensions and non-periodic z dimension to use
- 2d slab option with Ewald.
-
-*Incorrect boundaries with slab EwaldDisp*
- Must have periodic x,y dimensions and non-periodic z dimension to use
- 2d slab option with Ewald.
-
-*Incorrect boundaries with slab PPPM*
- Must have periodic x,y dimensions and non-periodic z dimension to use
- 2d slab option with PPPM.
-
-*Incorrect boundaries with slab PPPMDisp*
- Must have periodic x,y dimensions and non-periodic z dimension to use
- 2d slab option with pppm/disp.
-
-*Incorrect element names in ADP potential file*
- The element names in the ADP file do not match those requested.
-
-*Incorrect element names in EAM potential file*
- The element names in the EAM file do not match those requested.
-
-*Incorrect format in COMB potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect format in COMB3 potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect format in MEAM potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect format in SNAP coefficient file*
- Incorrect number of words per line in the coefficient file.
-
-*Incorrect format in SNAP parameter file*
- Incorrect number of words per line in the parameter file.
-
-*Incorrect format in Stillinger-Weber potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect format in TMD target file*
- Format of file read by fix tmd command is incorrect.
-
-*Incorrect format in Tersoff potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect format in Vashishta potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect format in coul/streitz potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect format in nb3b/harmonic potential file*
- Incorrect number of words per line in the potential file.
-
-*Incorrect integer value in Bodies section of data file*
- See doc page for body style.
-
-*Incorrect multiplicity arg for dihedral coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Incorrect number of elements in potential file*
- Self-explanatory.
-
-*Incorrect rigid body format in fix rigid file*
- The number of fields per line is not what expected.
-
-*Incorrect rigid body format in fix rigid/small file*
- The number of fields per line is not what expected.
-
-*Incorrect sign arg for dihedral coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Incorrect table format check for element types*
- Self-explanatory.
-
-*Incorrect velocity format in data file*
- Each atom style defines a format for the Velocity section
- of the data file. The read-in lines do not match.
-
-*Incorrect weight arg for dihedral coefficients*
- Self-explanatory. Check the input script or data file.
-
-*Index between variable brackets must be positive*
- Self-explanatory.
-
-*Indexed per-atom vector in variable formula without atom map*
- Accessing a value from an atom vector requires the ability to lookup
- an atom index, which is provided by an atom map. An atom map does not
- exist (by default) for non-molecular problems. Using the atom_modify
- map command will force an atom map to be created.
-
-*Initial temperatures not all set in fix ttm*
- Self-explantory.
-
-*Input line quote not followed by whitespace*
- An end quote must be followed by whitespace.
-
-*Insertion region extends outside simulation box*
- Self-explanatory.
-
-*Insufficient Jacobi rotations for POEMS body*
- Eigensolve for rigid body was not sufficiently accurate.
-
-*Insufficient Jacobi rotations for body nparticle*
- Eigensolve for rigid body was not sufficiently accurate.
-
-*Insufficient Jacobi rotations for rigid body*
- Eigensolve for rigid body was not sufficiently accurate.
-
-*Insufficient Jacobi rotations for rigid molecule*
- Eigensolve for rigid body was not sufficiently accurate.
-
-*Insufficient Jacobi rotations for triangle*
- The calculation of the intertia tensor of the triangle failed. This
- should not happen if it is a reasonably shaped triangle.
-
-*Insufficient memory on accelerator*
- There is insufficient memory on one of the devices specified for the gpu
- package
-
-*Internal error in atom_style body*
- This error should not occur. Contact the developers.
-
-*Invalid -reorder N value*
- Self-explanatory.
-
-*Invalid Angles section in molecule file*
- Self-explanatory.
-
-*Invalid Bonds section in molecule file*
- Self-explanatory.
-
-*Invalid Boolean syntax in if command*
- Self-explanatory.
-
-*Invalid Charges section in molecule file*
- Self-explanatory.
-
-*Invalid Coords section in molecule file*
- Self-explanatory.
-
-*Invalid Diameters section in molecule file*
- Self-explanatory.
-
-*Invalid Dihedrals section in molecule file*
- Self-explanatory.
-
-*Invalid Impropers section in molecule file*
- Self-explanatory.
-
-*Invalid Kokkos command-line args*
- Self-explanatory. See Section 2.7 of the manual for details.
-
-*Invalid LAMMPS restart file*
- The file does not appear to be a LAMMPS restart file since
- it doesn't contain the correct magic string at the beginning.
-
-*Invalid Masses section in molecule file*
- Self-explanatory.
-
-*Invalid REAX atom type*
- There is a mis-match between LAMMPS atom types and the elements
- listed in the ReaxFF force field file.
-
-*Invalid Special Bond Counts section in molecule file*
- Self-explanatory.
-
-*Invalid Types section in molecule file*
- Self-explanatory.
-
-*Invalid angle count in molecule file*
- Self-explanatory.
-
-*Invalid angle table length*
- Length must be 2 or greater.
-
-*Invalid angle type in Angles section of data file*
- Angle type must be positive integer and within range of specified angle
- types.
-
-*Invalid angle type in Angles section of molecule file*
- Self-explanatory.
-
-*Invalid angle type index for fix shake*
- Self-explanatory.
-
-*Invalid args for non-hybrid pair coefficients*
- "NULL" is only supported in pair_coeff calls when using pair hybrid
-
-*Invalid argument to factorial %d*
- N must be >= 0 and <= 167, otherwise the factorial result is too
- large.
-
-*Invalid atom ID in %s section of data file*
- An atom in a section of the data file being read by fix property/atom
- has an invalid atom ID that is <= 0 or > the maximum existing atom ID.
-
-*Invalid atom ID in Angles section of data file*
- Atom IDs must be positive integers and within range of defined
- atoms.
-
-*Invalid atom ID in Angles section of molecule file*
- Self-explanatory.
-
-*Invalid atom ID in Atoms section of data file*
- Atom IDs must be positive integers.
-
-*Invalid atom ID in Bodies section of data file*
- Atom IDs must be positive integers and within range of defined
- atoms.
-
-*Invalid atom ID in Bonds section of data file*
- Atom IDs must be positive integers and within range of defined
- atoms.
-
-*Invalid atom ID in Bonds section of molecule file*
- Self-explanatory.
-
-*Invalid atom ID in Bonus section of data file*
- Atom IDs must be positive integers and within range of defined
- atoms.
-
-*Invalid atom ID in Dihedrals section of data file*
- Atom IDs must be positive integers and within range of defined
- atoms.
-
-*Invalid atom ID in Impropers section of data file*
- Atom IDs must be positive integers and within range of defined
- atoms.
-
-*Invalid atom ID in Velocities section of data file*
- Atom IDs must be positive integers and within range of defined
- atoms.
-
-*Invalid atom ID in dihedrals section of molecule file*
- Self-explanatory.
-
-*Invalid atom ID in impropers section of molecule file*
- Self-explanatory.
-
-*Invalid atom ID in variable file*
- Self-explanatory.
-
-*Invalid atom IDs in neb file*
- An ID in the file was not found in the system.
-
-*Invalid atom diameter in molecule file*
- Diameters must be >= 0.0.
-
-*Invalid atom mass for fix shake*
- Mass specified in fix shake command must be > 0.0.
-
-*Invalid atom mass in molecule file*
- Masses must be > 0.0.
-
-*Invalid atom type in Atoms section of data file*
- Atom types must range from 1 to specified # of types.
-
-*Invalid atom type in create_atoms command*
- The create_box command specified the range of valid atom types.
- An invalid type is being requested.
-
-*Invalid atom type in create_atoms mol command*
- The atom types in the defined molecule are added to the value
- specified in the create_atoms command, as an offset. The final value
- for each atom must be between 1 to N, where N is the number of atom
- types.
-
-*Invalid atom type in fix atom/swap command*
- The atom type specified in the atom/swap command does not exist.
-
-*Invalid atom type in fix bond/create command*
- Self-explanatory.
-
-*Invalid atom type in fix deposit command*
- Self-explanatory.
-
-*Invalid atom type in fix deposit mol command*
- The atom types in the defined molecule are added to the value
- specified in the create_atoms command, as an offset. The final value
- for each atom must be between 1 to N, where N is the number of atom
- types.
-
-*Invalid atom type in fix gcmc command*
- The atom type specified in the gcmc command does not exist.
-
-*Invalid atom type in fix pour command*
- Self-explanatory.
-
-*Invalid atom type in fix pour mol command*
- The atom types in the defined molecule are added to the value
- specified in the create_atoms command, as an offset. The final value
- for each atom must be between 1 to N, where N is the number of atom
- types.
-
-*Invalid atom type in molecule file*
- Atom types must range from 1 to specified # of types.
-
-*Invalid atom type in neighbor exclusion list*
- Atom types must range from 1 to Ntypes inclusive.
-
-*Invalid atom type index for fix shake*
- Atom types must range from 1 to Ntypes inclusive.
-
-*Invalid atom types in pair_write command*
- Atom types must range from 1 to Ntypes inclusive.
-
-*Invalid atom vector in variable formula*
- The atom vector is not recognized.
-
-*Invalid atom_style body command*
- No body style argument was provided.
-
-*Invalid atom_style command*
- Self-explanatory.
-
-*Invalid attribute in dump custom command*
- Self-explantory.
-
-*Invalid attribute in dump local command*
- Self-explantory.
-
-*Invalid attribute in dump modify command*
- Self-explantory.
-
-*Invalid basis setting in create_atoms command*
- The basis index must be between 1 to N where N is the number of basis
- atoms in the lattice. The type index must be between 1 to N where N
- is the number of atom types.
-
-*Invalid basis setting in fix append/atoms command*
- The basis index must be between 1 to N where N is the number of basis
- atoms in the lattice. The type index must be between 1 to N where N
- is the number of atom types.
-
-*Invalid bin bounds in compute chunk/atom*
- The lo/hi values are inconsistent.
-
-*Invalid bin bounds in fix ave/spatial*
- The lo/hi values are inconsistent.
-
-*Invalid body nparticle command*
- Arguments in atom-style command are not correct.
-
-*Invalid bond count in molecule file*
- Self-explanatory.
-
-*Invalid bond table length*
- Length must be 2 or greater.
-
-*Invalid bond type in Bonds section of data file*
- Bond type must be positive integer and within range of specified bond
- types.
-
-*Invalid bond type in Bonds section of molecule file*
- Self-explanatory.
-
-*Invalid bond type in create_bonds command*
- Self-explanatory.
-
-*Invalid bond type in fix bond/break command*
- Self-explanatory.
-
-*Invalid bond type in fix bond/create command*
- Self-explanatory.
-
-*Invalid bond type index for fix shake*
- Self-explanatory. Check the fix shake command in the input script.
-
-*Invalid coeffs for this dihedral style*
- Cannot set class 2 coeffs in data file for this dihedral style.
-
-*Invalid color in dump_modify command*
- The specified color name was not in the list of recognized colors.
- See the dump_modify doc page.
-
-*Invalid color map min/max values*
- The min/max values are not consistent with either each other or
- with values in the color map.
-
-*Invalid command-line argument*
- One or more command-line arguments is invalid. Check the syntax of
- the command you are using to launch LAMMPS.
-
-*Invalid compute ID in variable formula*
- The compute is not recognized.
-
-*Invalid create_atoms rotation vector for 2d model*
- The rotation vector can only have a z component.
-
-*Invalid custom OpenCL parameter string.*
- There are not enough or too many parameters in the custom string for package
- GPU.
-
-*Invalid cutoff in comm_modify command*
- Specified cutoff must be >= 0.0.
-
-*Invalid cutoffs in pair_write command*
- Inner cutoff must be larger than 0.0 and less than outer cutoff.
-
-*Invalid d1 or d2 value for pair colloid coeff*
- Neither d1 or d2 can be < 0.
-
-*Invalid data file section: Angle Coeffs*
- Atom style does not allow angles.
-
-*Invalid data file section: AngleAngle Coeffs*
- Atom style does not allow impropers.
-
-*Invalid data file section: AngleAngleTorsion Coeffs*
- Atom style does not allow dihedrals.
-
-*Invalid data file section: AngleTorsion Coeffs*
- Atom style does not allow dihedrals.
-
-*Invalid data file section: Angles*
- Atom style does not allow angles.
-
-*Invalid data file section: Bodies*
- Atom style does not allow bodies.
-
-*Invalid data file section: Bond Coeffs*
- Atom style does not allow bonds.
-
-*Invalid data file section: BondAngle Coeffs*
- Atom style does not allow angles.
-
-*Invalid data file section: BondBond Coeffs*
- Atom style does not allow angles.
-
-*Invalid data file section: BondBond13 Coeffs*
- Atom style does not allow dihedrals.
-
-*Invalid data file section: Bonds*
- Atom style does not allow bonds.
-
-*Invalid data file section: Dihedral Coeffs*
- Atom style does not allow dihedrals.
-
-*Invalid data file section: Dihedrals*
- Atom style does not allow dihedrals.
-
-*Invalid data file section: Ellipsoids*
- Atom style does not allow ellipsoids.
-
-*Invalid data file section: EndBondTorsion Coeffs*
- Atom style does not allow dihedrals.
-
-*Invalid data file section: Improper Coeffs*
- Atom style does not allow impropers.
-
-*Invalid data file section: Impropers*
- Atom style does not allow impropers.
-
-*Invalid data file section: Lines*
- Atom style does not allow lines.
-
-*Invalid data file section: MiddleBondTorsion Coeffs*
- Atom style does not allow dihedrals.
-
-*Invalid data file section: Triangles*
- Atom style does not allow triangles.
-
-*Invalid delta_conf in tad command*
- The value must be between 0 and 1 inclusive.
-
-*Invalid density in Atoms section of data file*
- Density value cannot be <= 0.0.
-
-*Invalid density in set command*
- Density must be > 0.0.
-
-*Invalid diameter in set command*
- Self-explanatory.
-
-*Invalid dihedral count in molecule file*
- Self-explanatory.
-
-*Invalid dihedral type in Dihedrals section of data file*
- Dihedral type must be positive integer and within range of specified
- dihedral types.
-
-*Invalid dihedral type in dihedrals section of molecule file*
- Self-explanatory.
-
-*Invalid dipole length in set command*
- Self-explanatory.
-
-*Invalid displace_atoms rotate axis for 2d*
- Axis must be in z direction.
-
-*Invalid dump dcd filename*
- Filenames used with the dump dcd style cannot be binary or compressed
- or cause multiple files to be written.
-
-*Invalid dump frequency*
- Dump frequency must be 1 or greater.
-
-*Invalid dump image element name*
- The specified element name was not in the standard list of elements.
- See the dump_modify doc page.
-
-*Invalid dump image filename*
- The file produced by dump image cannot be binary and must
- be for a single processor.
-
-*Invalid dump image persp value*
- Persp value must be >= 0.0.
-
-*Invalid dump image theta value*
- Theta must be between 0.0 and 180.0 inclusive.
-
-*Invalid dump image zoom value*
- Zoom value must be > 0.0.
-
-*Invalid dump movie filename*
- The file produced by dump movie cannot be binary or compressed
- and must be a single file for a single processor.
-
-*Invalid dump xtc filename*
- Filenames used with the dump xtc style cannot be binary or compressed
- or cause multiple files to be written.
-
-*Invalid dump xyz filename*
- Filenames used with the dump xyz style cannot be binary or cause files
- to be written by each processor.
-
-*Invalid dump_modify threshhold operator*
- Operator keyword used for threshold specification in not recognized.
-
-*Invalid entry in -reorder file*
- Self-explanatory.
-
-*Invalid fix ID in variable formula*
- The fix is not recognized.
-
-*Invalid fix ave/time off column*
- Self-explantory.
-
-*Invalid fix box/relax command for a 2d simulation*
- Fix box/relax styles involving the z dimension cannot be used in
- a 2d simulation.
-
-*Invalid fix box/relax command pressure settings*
- If multiple dimensions are coupled, those dimensions must be specified.
-
-*Invalid fix box/relax pressure settings*
- Settings for coupled dimensions must be the same.
-
-*Invalid fix nvt/npt/nph command for a 2d simulation*
- Cannot control z dimension in a 2d model.
-
-*Invalid fix nvt/npt/nph command pressure settings*
- If multiple dimensions are coupled, those dimensions must be
- specified.
-
-*Invalid fix nvt/npt/nph pressure settings*
- Settings for coupled dimensions must be the same.
-
-*Invalid fix press/berendsen for a 2d simulation*
- The z component of pressure cannot be controlled for a 2d model.
-
-*Invalid fix press/berendsen pressure settings*
- Settings for coupled dimensions must be the same.
-
-*Invalid fix qeq parameter file*
- Element index > number of atom types.
-
-*Invalid fix rigid npt/nph command for a 2d simulation*
- Cannot control z dimension in a 2d model.
-
-*Invalid fix rigid npt/nph command pressure settings*
- If multiple dimensions are coupled, those dimensions must be
- specified.
-
-*Invalid fix rigid/small npt/nph command for a 2d simulation*
- Cannot control z dimension in a 2d model.
-
-*Invalid fix rigid/small npt/nph command pressure settings*
- If multiple dimensions are coupled, those dimensions must be
- specified.
-
-*Invalid flag in force field section of restart file*
- Unrecognized entry in restart file.
-
-*Invalid flag in header section of restart file*
- Unrecognized entry in restart file.
-
-*Invalid flag in peratom section of restart file*
- The format of this section of the file is not correct.
-
-*Invalid flag in type arrays section of restart file*
- Unrecognized entry in restart file.
-
-*Invalid frequency in temper command*
- Nevery must be > 0.
-
-*Invalid group ID in neigh_modify command*
- A group ID used in the neigh_modify command does not exist.
-
-*Invalid group function in variable formula*
- Group function is not recognized.
-
-*Invalid group in comm_modify command*
- Self-explanatory.
-
-*Invalid image up vector*
- Up vector cannot be (0,0,0).
-
-*Invalid immediate variable*
- Syntax of immediate value is incorrect.
-
-*Invalid improper count in molecule file*
- Self-explanatory.
-
-*Invalid improper type in Impropers section of data file*
- Improper type must be positive integer and within range of specified
- improper types.
-
-*Invalid improper type in impropers section of molecule file*
- Self-explanatory.
-
-*Invalid index for non-body particles in compute body/local command*
- Only indices 1,2,3 can be used for non-body particles.
-
-*Invalid index in compute body/local command*
- Self-explanatory.
-
-*Invalid is_active() function in variable formula*
- Self-explanatory.
-
-*Invalid is_available() function in variable formula*
- Self-explanatory.
-
-*Invalid is_defined() function in variable formula*
- Self-explanatory.
-
-*Invalid keyword in angle table parameters*
- Self-explanatory.
-
-*Invalid keyword in bond table parameters*
- Self-explanatory.
-
-*Invalid keyword in compute angle/local command*
- Self-explanatory.
-
-*Invalid keyword in compute bond/local command*
- Self-explanatory.
-
-*Invalid keyword in compute dihedral/local command*
- Self-explanatory.
-
-*Invalid keyword in compute improper/local command*
- Self-explanatory.
-
-*Invalid keyword in compute pair/local command*
- Self-explanatory.
-
-*Invalid keyword in compute property/atom command*
- Self-explanatory.
-
-*Invalid keyword in compute property/chunk command*
- Self-explanatory.
-
-*Invalid keyword in compute property/local command*
- Self-explanatory.
-
-*Invalid keyword in dump cfg command*
- Self-explanatory.
-
-*Invalid keyword in pair table parameters*
- Keyword used in list of table parameters is not recognized.
-
-*Invalid length in set command*
- Self-explanatory.
-
-*Invalid mass in set command*
- Self-explanatory.
-
-*Invalid mass line in data file*
- Self-explanatory.
-
-*Invalid mass value*
- Self-explanatory.
-
-*Invalid math function in variable formula*
- Self-explanatory.
-
-*Invalid math/group/special function in variable formula*
- Self-explanatory.
-
-*Invalid option in lattice command for non-custom style*
- Certain lattice keywords are not supported unless the
- lattice style is "custom".
-
-*Invalid order of forces within respa levels*
- For respa, ordering of force computations within respa levels must
- obey certain rules. E.g. bonds cannot be compute less frequently than
- angles, pairwise forces cannot be computed less frequently than
- kspace, etc.
-
-*Invalid pair table cutoff*
- Cutoffs in pair_coeff command are not valid with read-in pair table.
-
-*Invalid pair table length*
- Length of read-in pair table is invalid
-
-*Invalid param file for fix qeq/shielded*
- Invalid value of gamma.
-
-*Invalid param file for fix qeq/slater*
- Zeta value is 0.0.
-
-*Invalid partitions in processors part command*
- Valid partitions are numbered 1 to N and the sender and receiver
- cannot be the same partition.
-
-*Invalid python command*
- Self-explanatory. Check the input script syntax and compare to the
- documentation for the command. You can use -echo screen as a
- command-line option when running LAMMPS to see the offending line.
-
-*Invalid radius in Atoms section of data file*
- Radius must be >= 0.0.
-
-*Invalid random number seed in fix ttm command*
- Random number seed must be > 0.
-
-*Invalid random number seed in set command*
- Random number seed must be > 0.
-
-*Invalid replace values in compute reduce*
- Self-explanatory.
-
-*Invalid rigid body ID in fix rigid file*
- The ID does not match the number of an existing ID of rigid bodies
- that are defined by the fix rigid command.
-
-*Invalid rigid body ID in fix rigid/small file*
- The ID does not match the number of an existing ID of rigid bodies
- that are defined by the fix rigid/small command.
-
-*Invalid run command N value*
- The number of timesteps must fit in a 32-bit integer. If you want to
- run for more steps than this, perform multiple shorter runs.
-
-*Invalid run command start/stop value*
- Self-explanatory.
-
-*Invalid run command upto value*
- Self-explanatory.
-
-*Invalid seed for Marsaglia random # generator*
- The initial seed for this random number generator must be a positive
- integer less than or equal to 900 million.
-
-*Invalid seed for Park random # generator*
- The initial seed for this random number generator must be a positive
- integer.
-
-*Invalid shake angle type in molecule file*
- Self-explanatory.
-
-*Invalid shake atom in molecule file*
- Self-explanatory.
-
-*Invalid shake bond type in molecule file*
- Self-explanatory.
-
-*Invalid shake flag in molecule file*
- Self-explanatory.
-
-*Invalid shape in Ellipsoids section of data file*
- Self-explanatory.
-
-*Invalid shape in Triangles section of data file*
- Two or more of the triangle corners are duplicate points.
-
-*Invalid shape in set command*
- Self-explanatory.
-
-*Invalid shear direction for fix wall/gran*
- Self-explanatory.
-
-*Invalid special atom index in molecule file*
- Self-explanatory.
-
-*Invalid special function in variable formula*
- Self-explanatory.
-
-*Invalid style in pair_write command*
- Self-explanatory. Check the input script.
-
-*Invalid syntax in variable formula*
- Self-explanatory.
-
-*Invalid t_event in prd command*
- Self-explanatory.
-
-*Invalid t_event in tad command*
- The value must be greater than 0.
-
-*Invalid template atom in Atoms section of data file*
- The atom indices must be between 1 to N, where N is the number of
- atoms in the template molecule the atom belongs to.
-
-*Invalid template index in Atoms section of data file*
- The template indices must be between 1 to N, where N is the number of
- molecules in the template.
-
-*Invalid thermo keyword in variable formula*
- The keyword is not recognized.
-
-*Invalid threads_per_atom specified.*
- For 3-body potentials on the GPU, the threads_per_atom setting cannot be
- greater than 4 for NVIDIA GPUs.
-
-*Invalid timestep reset for fix ave/atom*
- Resetting the timestep has invalidated the sequence of timesteps this
- fix needs to process.
-
-*Invalid timestep reset for fix ave/chunk*
- Resetting the timestep has invalidated the sequence of timesteps this
- fix needs to process.
-
-*Invalid timestep reset for fix ave/correlate*
- Resetting the timestep has invalidated the sequence of timesteps this
- fix needs to process.
-
-*Invalid timestep reset for fix ave/histo*
- Resetting the timestep has invalidated the sequence of timesteps this
- fix needs to process.
-
-*Invalid timestep reset for fix ave/spatial*
- Resetting the timestep has invalidated the sequence of timesteps this
- fix needs to process.
-
-*Invalid timestep reset for fix ave/time*
- Resetting the timestep has invalidated the sequence of timesteps this
- fix needs to process.
-
-*Invalid tmax in tad command*
- The value must be greater than 0.0.
-
-*Invalid type for mass set*
- Mass command must set a type from 1-N where N is the number of atom
- types.
-
-*Invalid use of library file() function*
- This function is called thru the library interface. This
- error should not occur. Contact the developers if it does.
-
-*Invalid value in set command*
- The value specified for the setting is invalid, likely because it is
- too small or too large.
-
-*Invalid variable evaluation in variable formula*
- A variable used in a formula could not be evaluated.
-
-*Invalid variable in next command*
- Self-explanatory.
-
-*Invalid variable name*
- Variable name used in an input script line is invalid.
-
-*Invalid variable name in variable formula*
- Variable name is not recognized.
-
-*Invalid variable style in special function next*
- Only file-style or atomfile-style variables can be used with next().
-
-*Invalid variable style with next command*
- Variable styles *equal* and *world* cannot be used in a next
- command.
-
-*Invalid volume in set command*
- Volume must be > 0.0.
-
-*Invalid wiggle direction for fix wall/gran*
- Self-explanatory.
-
-*Invoked angle equil angle on angle style none*
- Self-explanatory.
-
-*Invoked angle single on angle style none*
- Self-explanatory.
-
-*Invoked bond equil distance on bond style none*
- Self-explanatory.
-
-*Invoked bond single on bond style none*
- Self-explanatory.
-
-*Invoked pair single on pair style none*
- A command (e.g. a dump) attempted to invoke the single() function on a
- pair style none, which is illegal. You are probably attempting to
- compute per-atom quantities with an undefined pair style.
-
-*Invoking coulombic in pair style lj/coul requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Invoking coulombic in pair style lj/long/dipole/long requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*KIM neighbor iterator exceeded range*
- This should not happen. It likely indicates a bug
- in the KIM implementation of the interatomic potential
- where it is requesting neighbors incorrectly.
-
-*KOKKOS package does not yet support comm_style tiled*
- Self-explanatory.
-
-*KOKKOS package requires a kokkos enabled atom_style*
- Self-explanatory.
-
-*KSpace accuracy must be > 0*
- The kspace accuracy designated in the input must be greater than zero.
-
-*KSpace accuracy too large to estimate G vector*
- Reduce the accuracy request or specify gwald explicitly
- via the kspace_modify command.
-
-*KSpace accuracy too low*
- Requested accuracy must be less than 1.0.
-
-*KSpace solver requires a pair style*
- No pair style is defined.
-
-*KSpace style does not yet support triclinic geometries*
- The specified kspace style does not allow for non-orthogonal
- simulation boxes.
-
-*KSpace style has not yet been set*
- Cannot use kspace_modify command until a kspace style is set.
-
-*KSpace style is incompatible with Pair style*
- Setting a kspace style requires that a pair style with matching
- long-range Coulombic or dispersion components be used.
-
-*Keyword %s in MEAM parameter file not recognized*
- Self-explanatory.
-
-*Kokkos has been compiled for CUDA but no GPUs are requested*
- One or more GPUs must be used when Kokkos is compiled for CUDA.
-
-*Kspace style does not support compute group/group*
- Self-explanatory.
-
-*Kspace style pppm/disp/tip4p requires newton on*
- Self-explanatory.
-
-*Kspace style pppm/tip4p requires newton on*
- Self-explanatory.
-
-*Kspace style requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Kspace_modify eigtol must be smaller than one*
- Self-explanatory.
-
-*LAMMPS is not built with Python embedded*
- This is done by including the PYTHON package before LAMMPS is built.
- This is required to use python-style variables.
-
-*LAMMPS unit_style lj not supported by KIM models*
- Self-explanatory. Check the input script or data file.
-
-*LJ6 off not supported in pair_style buck/long/coul/long*
- Self-exlanatory.
-
-*Label wasn't found in input script*
- Self-explanatory.
-
-*Lattice orient vectors are not orthogonal*
- The three specified lattice orientation vectors must be mutually
- orthogonal.
-
-*Lattice orient vectors are not right-handed*
- The three specified lattice orientation vectors must create a
- right-handed coordinate system such that a1 cross a2 = a3.
-
-*Lattice primitive vectors are collinear*
- The specified lattice primitive vectors do not for a unit cell with
- non-zero volume.
-
-*Lattice settings are not compatible with 2d simulation*
- One or more of the specified lattice vectors has a non-zero z
- component.
-
-*Lattice spacings are invalid*
- Each x,y,z spacing must be > 0.
-
-*Lattice style incompatible with simulation dimension*
- 2d simulation can use sq, sq2, or hex lattice. 3d simulation can use
- sc, bcc, or fcc lattice.
-
-*Log of zero/negative value in variable formula*
- Self-explanatory.
-
-*Lost atoms via balance: original %ld current %ld*
- This should not occur. Report the problem to the developers.
-
-*Lost atoms: original %ld current %ld*
- Lost atoms are checked for each time thermo output is done. See the
- thermo_modify lost command for options. Lost atoms usually indicate
- bad dynamics, e.g. atoms have been blown far out of the simulation
- box, or moved futher than one processor's sub-domain away before
- reneighboring.
-
-*MEAM library error %d*
- A call to the MEAM Fortran library returned an error.
-
-*MPI_LMP_BIGINT and bigint in lmptype.h are not compatible*
- The size of the MPI datatype does not match the size of a bigint.
-
-*MPI_LMP_TAGINT and tagint in lmptype.h are not compatible*
- The size of the MPI datatype does not match the size of a tagint.
-
-*MSM can only currently be used with comm_style brick*
- This is a current restriction in LAMMPS.
-
-*MSM grid is too large*
- The global MSM grid is larger than OFFSET in one or more dimensions.
- OFFSET is currently set to 16384. You likely need to decrease the
- requested accuracy.
-
-*MSM order must be 4, 6, 8, or 10*
- This is a limitation of the MSM implementation in LAMMPS:
- the MSM order can only be 4, 6, 8, or 10.
-
-*Mass command before simulation box is defined*
- The mass command cannot be used before a read_data, read_restart, or
- create_box command.
-
-*Matrix factorization to split dispersion coefficients failed*
- This should not normally happen. Contact the developers.
-
-*Min_style command before simulation box is defined*
- The min_style command cannot be used before a read_data, read_restart,
- or create_box command.
-
-*Minimization could not find thermo_pe compute*
- This compute is created by the thermo command. It must have been
- explicitly deleted by a uncompute command.
-
-*Minimize command before simulation box is defined*
- The minimize command cannot be used before a read_data, read_restart,
- or create_box command.
-
-*Mismatched brackets in variable*
- Self-explanatory.
-
-*Mismatched compute in variable formula*
- A compute is referenced incorrectly or a compute that produces per-atom
- values is used in an equal-style variable formula.
-
-*Mismatched fix in variable formula*
- A fix is referenced incorrectly or a fix that produces per-atom
- values is used in an equal-style variable formula.
-
-*Mismatched variable in variable formula*
- A variable is referenced incorrectly or an atom-style variable that
- produces per-atom values is used in an equal-style variable
- formula.
-
-*Modulo 0 in variable formula*
- Self-explanatory.
-
-*Molecule IDs too large for compute chunk/atom*
- The IDs must not be larger than can be stored in a 32-bit integer
- since chunk IDs are 32-bit integers.
-
-*Molecule auto special bond generation overflow*
- Counts exceed maxspecial setting for other atoms in system.
-
-*Molecule file has angles but no nangles setting*
- Self-explanatory.
-
-*Molecule file has body params but no setting for them*
- Self-explanatory.
-
-*Molecule file has bonds but no nbonds setting*
- Self-explanatory.
-
-*Molecule file has dihedrals but no ndihedrals setting*
- Self-explanatory.
-
-*Molecule file has impropers but no nimpropers setting*
- Self-explanatory.
-
-*Molecule file has no Body Doubles section*
- Self-explanatory.
-
-*Molecule file has no Body Integers section*
- Self-explanatory.
-
-*Molecule file has special flags but no bonds*
- Self-explanatory.
-
-*Molecule file needs both Special Bond sections*
- Self-explanatory.
-
-*Molecule file requires atom style body*
- Self-explanatory.
-
-*Molecule file shake flags not before shake atoms*
- The order of the two sections is important.
-
-*Molecule file shake flags not before shake bonds*
- The order of the two sections is important.
-
-*Molecule file shake info is incomplete*
- All 3 SHAKE sections are needed.
-
-*Molecule file special list does not match special count*
- The number of values in an atom's special list does not match count.
-
-*Molecule file z center-of-mass must be 0.0 for 2d*
- Self-explanatory.
-
-*Molecule file z coord must be 0.0 for 2d*
- Self-explanatory.
-
-*Molecule natoms must be 1 for body particle*
- Self-explanatory.
-
-*Molecule sizescale must be 1.0 for body particle*
- Self-explanatory.
-
-*Molecule template ID for atom_style template does not exist*
- Self-explanatory.
-
-*Molecule template ID for create_atoms does not exist*
- Self-explantory.
-
-*Molecule template ID for fix deposit does not exist*
- Self-explanatory.
-
-*Molecule template ID for fix gcmc does not exist*
- Self-explanatory.
-
-*Molecule template ID for fix pour does not exist*
- Self-explanatory.
-
-*Molecule template ID for fix rigid/small does not exist*
- Self-explanatory.
-
-*Molecule template ID for fix shake does not exist*
- Self-explanatory.
-
-*Molecule template ID must be alphanumeric or underscore characters*
- Self-explanatory.
-
-*Molecule toplogy/atom exceeds system topology/atom*
- The number of bonds, angles, etc per-atom in the molecule exceeds the
- system setting. See the create_box command for how to specify these
- values.
-
-*Molecule topology type exceeds system topology type*
- The number of bond, angle, etc types in the molecule exceeds the
- system setting. See the create_box command for how to specify these
- values.
-
-*More than one fix deform*
- Only one fix deform can be defined at a time.
-
-*More than one fix freeze*
- Only one of these fixes can be defined, since the granular pair
- potentials access it.
-
-*More than one fix shake*
- Only one fix shake can be defined.
-
-*Mu not allowed when not using semi-grand in fix atom/swap command*
- Self-explanatory.
-
-*Must define angle_style before Angle Coeffs*
- Must use an angle_style command before reading a data file that
- defines Angle Coeffs.
-
-*Must define angle_style before BondAngle Coeffs*
- Must use an angle_style command before reading a data file that
- defines Angle Coeffs.
-
-*Must define angle_style before BondBond Coeffs*
- Must use an angle_style command before reading a data file that
- defines Angle Coeffs.
-
-*Must define bond_style before Bond Coeffs*
- Must use a bond_style command before reading a data file that
- defines Bond Coeffs.
-
-*Must define dihedral_style before AngleAngleTorsion Coeffs*
- Must use a dihedral_style command before reading a data file that
- defines AngleAngleTorsion Coeffs.
-
-*Must define dihedral_style before AngleTorsion Coeffs*
- Must use a dihedral_style command before reading a data file that
- defines AngleTorsion Coeffs.
-
-*Must define dihedral_style before BondBond13 Coeffs*
- Must use a dihedral_style command before reading a data file that
- defines BondBond13 Coeffs.
-
-*Must define dihedral_style before Dihedral Coeffs*
- Must use a dihedral_style command before reading a data file that
- defines Dihedral Coeffs.
-
-*Must define dihedral_style before EndBondTorsion Coeffs*
- Must use a dihedral_style command before reading a data file that
- defines EndBondTorsion Coeffs.
-
-*Must define dihedral_style before MiddleBondTorsion Coeffs*
- Must use a dihedral_style command before reading a data file that
- defines MiddleBondTorsion Coeffs.
-
-*Must define improper_style before AngleAngle Coeffs*
- Must use an improper_style command before reading a data file that
- defines AngleAngle Coeffs.
-
-*Must define improper_style before Improper Coeffs*
- Must use an improper_style command before reading a data file that
- defines Improper Coeffs.
-
-*Must define pair_style before Pair Coeffs*
- Must use a pair_style command before reading a data file that defines
- Pair Coeffs.
-
-*Must define pair_style before PairIJ Coeffs*
- Must use a pair_style command before reading a data file that defines
- PairIJ Coeffs.
-
-*Must have more than one processor partition to temper*
- Cannot use the temper command with only one processor partition. Use
- the -partition command-line option.
-
-*Must read Atoms before Angles*
- The Atoms section of a data file must come before an Angles section.
-
-*Must read Atoms before Bodies*
- The Atoms section of a data file must come before a Bodies section.
-
-*Must read Atoms before Bonds*
- The Atoms section of a data file must come before a Bonds section.
-
-*Must read Atoms before Dihedrals*
- The Atoms section of a data file must come before a Dihedrals section.
-
-*Must read Atoms before Ellipsoids*
- The Atoms section of a data file must come before a Ellipsoids
- section.
-
-*Must read Atoms before Impropers*
- The Atoms section of a data file must come before an Impropers
- section.
-
-*Must read Atoms before Lines*
- The Atoms section of a data file must come before a Lines section.
-
-*Must read Atoms before Triangles*
- The Atoms section of a data file must come before a Triangles section.
-
-*Must read Atoms before Velocities*
- The Atoms section of a data file must come before a Velocities
- section.
-
-*Must set both respa inner and outer*
- Cannot use just the inner or outer option with respa without using the
- other.
-
-*Must set number of threads via package omp command*
- Because you are using the USER-OMP package, set the number of threads
- via its settings, not by the pair_style snap nthreads setting.
-
-*Must shrink-wrap piston boundary*
- The boundary style of the face where the piston is applied must be of
- type s (shrink-wrapped).
-
-*Must specify a region in fix deposit*
- The region keyword must be specified with this fix.
-
-*Must specify a region in fix pour*
- Self-explanatory.
-
-*Must specify at least 2 types in fix atom/swap command*
- Self-explanatory.
-
-*Must use 'kspace_modify pressure/scalar no' for rRESPA with kspace_style MSM*
- The kspace scalar pressure option cannot (yet) be used with rRESPA.
-
-*Must use 'kspace_modify pressure/scalar no' for tensor components with kspace_style msm*
- Otherwise MSM will compute only a scalar pressure. See the kspace_modify
- command for details on this setting.
-
-*Must use 'kspace_modify pressure/scalar no' to obtain per-atom virial with kspace_style MSM*
- The kspace scalar pressure option cannot be used to obtain per-atom virial.
-
-*Must use 'kspace_modify pressure/scalar no' with GPU MSM Pair styles*
- The kspace scalar pressure option is not (yet) compatible with GPU MSM Pair styles.
-
-*Must use 'kspace_modify pressure/scalar no' with kspace_style msm/cg*
- The kspace scalar pressure option is not compatible with kspace_style msm/cg.
-
-*Must use -in switch with multiple partitions*
- A multi-partition simulation cannot read the input script from stdin.
- The -in command-line option must be used to specify a file.
-
-*Must use Kokkos half/thread or full neighbor list with threads or GPUs*
- Using Kokkos half-neighbor lists with threading is not allowed.
-
-*Must use a block or cylinder region with fix pour*
- Self-explanatory.
-
-*Must use a block region with fix pour for 2d simulations*
- Self-explanatory.
-
-*Must use a bond style with TIP4P potential*
- TIP4P potentials assume bond lengths in water are constrained
- by a fix shake command.
-
-*Must use a molecular atom style with fix poems molecule*
- Self-explanatory.
-
-*Must use a z-axis cylinder region with fix pour*
- Self-explanatory.
-
-*Must use an angle style with TIP4P potential*
- TIP4P potentials assume angles in water are constrained by a fix shake
- command.
-
-*Must use atom map style array with Kokkos*
- See the atom_modify map command.
-
-*Must use atom style with molecule IDs with fix bond/swap*
- Self-explanatory.
-
-*Must use pair_style comb or comb3 with fix qeq/comb*
- Self-explanatory.
-
-*Must use variable energy with fix addforce*
- Must define an energy vartiable when applyting a dynamic
- force during minimization.
-
-*Must use variable energy with fix efield*
- You must define an energy when performing a minimization with a
- variable E-field.
-
-*NEB command before simulation box is defined*
- Self-explanatory.
-
-*NEB requires damped dynamics minimizer*
- Use a different minimization style.
-
-*NEB requires use of fix neb*
- Self-explanatory.
-
-*NL ramp in wall/piston only implemented in zlo for now*
- The ramp keyword can only be used for piston applied to face zlo.
-
-*Need nswaptypes mu values in fix atom/swap command*
- Self-explanatory.
-
-*Needed bonus data not in data file*
- Some atom styles require bonus data. See the read_data doc page for
- details.
-
-*Needed molecular topology not in data file*
- The header of the data file indicated bonds, angles, etc would be
- included, but they are not present.
-
-*Neigh_modify exclude molecule requires atom attribute molecule*
- Self-explanatory.
-
-*Neigh_modify include group != atom_modify first group*
- Self-explanatory.
-
-*Neighbor delay must be 0 or multiple of every setting*
- The delay and every parameters set via the neigh_modify command are
- inconsistent. If the delay setting is non-zero, then it must be a
- multiple of the every setting.
-
-*Neighbor include group not allowed with ghost neighbors*
- This is a current restriction within LAMMPS.
-
-*Neighbor list overflow, boost neigh_modify one*
- There are too many neighbors of a single atom. Use the neigh_modify
- command to increase the max number of neighbors allowed for one atom.
- You may also want to boost the page size.
-
-*Neighbor multi not yet enabled for ghost neighbors*
- This is a current restriction within LAMMPS.
-
-*Neighbor multi not yet enabled for granular*
- Self-explanatory.
-
-*Neighbor multi not yet enabled for rRESPA*
- Self-explanatory.
-
-*Neighbor page size must be >= 10x the one atom setting*
- This is required to prevent wasting too much memory.
-
-*New atom IDs exceed maximum allowed ID*
- See the setting for tagint in the src/lmptype.h file.
-
-*New bond exceeded bonds per atom in create_bonds*
- See the read_data command for info on setting the "extra bond per
- atom" header value to allow for additional bonds to be formed.
-
-*New bond exceeded bonds per atom in fix bond/create*
- See the read_data command for info on setting the "extra bond per
- atom" header value to allow for additional bonds to be formed.
-
-*New bond exceeded special list size in fix bond/create*
- See the special_bonds extra command for info on how to leave space in
- the special bonds list to allow for additional bonds to be formed.
-
-*Newton bond change after simulation box is defined*
- The newton command cannot be used to change the newton bond value
- after a read_data, read_restart, or create_box command.
-
-*Next command must list all universe and uloop variables*
- This is to insure they stay in sync.
-
-*No Kspace style defined for compute group/group*
- Self-explanatory.
-
-*No OpenMP support compiled in*
- An OpenMP flag is set, but LAMMPS was not built with
- OpenMP support.
-
-*No angle style is defined for compute angle/local*
- Self-explanatory.
-
-*No angles allowed with this atom style*
- Self-explanatory.
-
-*No atoms in data file*
- The header of the data file indicated that atoms would be included,
- but they are not present.
-
-*No basis atoms in lattice*
- Basis atoms must be defined for lattice style user.
-
-*No bodies allowed with this atom style*
- Self-explanatory. Check data file.
-
-*No bond style is defined for compute bond/local*
- Self-explanatory.
-
-*No bonds allowed with this atom style*
- Self-explanatory.
-
-*No box information in dump. You have to use 'box no'*
- Self-explanatory.
-
-*No count or invalid atom count in molecule file*
- The number of atoms must be specified.
-
-*No dihedral style is defined for compute dihedral/local*
- Self-explanatory.
-
-*No dihedrals allowed with this atom style*
- Self-explanatory.
-
-*No dump custom arguments specified*
- The dump custom command requires that atom quantities be specified to
- output to dump file.
-
-*No dump local arguments specified*
- Self-explanatory.
-
-*No ellipsoids allowed with this atom style*
- Self-explanatory. Check data file.
-
-*No fix gravity defined for fix pour*
- Gravity is required to use fix pour.
-
-*No improper style is defined for compute improper/local*
- Self-explanatory.
-
-*No impropers allowed with this atom style*
- Self-explanatory.
-
-*No input values for fix ave/spatial*
- Self-explanatory.
-
-*No lines allowed with this atom style*
- Self-explanatory. Check data file.
-
-*No matching element in ADP potential file*
- The ADP potential file does not contain elements that match the
- requested elements.
-
-*No matching element in EAM potential file*
- The EAM potential file does not contain elements that match the
- requested elements.
-
-*No molecule topology allowed with atom style template*
- The data file cannot specify the number of bonds, angles, etc,
- because this info if inferred from the molecule templates.
-
-*No overlap of box and region for create_atoms*
- Self-explanatory.
-
-*No pair coul/streitz for fix qeq/slater*
- These commands must be used together.
-
-*No pair hbond/dreiding coefficients set*
- Self-explanatory.
-
-*No pair style defined for compute group/group*
- Cannot calculate group interactions without a pair style defined.
-
-*No pair style is defined for compute pair/local*
- Self-explanatory.
-
-*No pair style is defined for compute property/local*
- Self-explanatory.
-
-*No rigid bodies defined*
- The fix specification did not end up defining any rigid bodies.
-
-*No triangles allowed with this atom style*
- Self-explanatory. Check data file.
-
-*No values in fix ave/chunk command*
- Self-explanatory.
-
-*No values in fix ave/time command*
- Self-explanatory.
-
-*Non digit character between brackets in variable*
- Self-explantory.
-
-*Non integer # of swaps in temper command*
- Swap frequency in temper command must evenly divide the total # of
- timesteps.
-
-*Non-numeric box dimensions - simulation unstable*
- The box size has apparently blown up.
-
-*Non-zero atom IDs with atom_modify id = no*
- Self-explanatory.
-
-*Non-zero read_data shift z value for 2d simulation*
- Self-explanatory.
-
-*Nprocs not a multiple of N for -reorder*
- Self-explanatory.
-
-*Number of core atoms != number of shell atoms*
- There must be a one-to-one pairing of core and shell atoms.
-
-*Numeric index is out of bounds*
- A command with an argument that specifies an integer or range of
- integers is using a value that is less than 1 or greater than the
- maximum allowed limit.
-
-*One or more Atom IDs is negative*
- Atom IDs must be positive integers.
-
-*One or more atom IDs is too big*
- The limit on atom IDs is set by the SMALLBIG, BIGBIG, SMALLSMALL
- setting in your Makefile. See Section_start 2.2 of the manual for
- more details.
-
-*One or more atom IDs is zero*
- Either all atoms IDs must be zero or none of them.
-
-*One or more atoms belong to multiple rigid bodies*
- Two or more rigid bodies defined by the fix rigid command cannot
- contain the same atom.
-
-*One or more rigid bodies are a single particle*
- Self-explanatory.
-
-*One or zero atoms in rigid body*
- Any rigid body defined by the fix rigid command must contain 2 or more
- atoms.
-
-*Only 2 types allowed when not using semi-grand in fix atom/swap command*
- Self-explanatory.
-
-*Only one cut-off allowed when requesting all long*
- Self-explanatory.
-
-*Only one cutoff allowed when requesting all long*
- Self-explanatory.
-
-*Only zhi currently implemented for fix append/atoms*
- Self-explanatory.
-
-*Out of range atoms - cannot compute MSM*
- One or more atoms are attempting to map their charge to a MSM grid point
- that is not owned by a processor. This is likely for one of two
- reasons, both of them bad. First, it may mean that an atom near the
- boundary of a processor's sub-domain has moved more than 1/2 the
- :doc:`neighbor skin distance <neighbor>` without neighbor lists being
- rebuilt and atoms being migrated to new processors. This also means
- you may be missing pairwise interactions that need to be computed.
- The solution is to change the re-neighboring criteria via the
- `neigh_modify <neigh_modify>`_ command. The safest settings are "delay 0
- every 1 check yes". Second, it may mean that an atom has moved far
- outside a processor's sub-domain or even the entire simulation box.
- This indicates bad physics, e.g. due to highly overlapping atoms, too
- large a timestep, etc.
-
-*Out of range atoms - cannot compute PPPM*
- One or more atoms are attempting to map their charge to a PPPM grid
- point that is not owned by a processor. This is likely for one of two
- reasons, both of them bad. First, it may mean that an atom near the
- boundary of a processor's sub-domain has moved more than 1/2 the
- :doc:`neighbor skin distance <neighbor>` without neighbor lists being
- rebuilt and atoms being migrated to new processors. This also means
- you may be missing pairwise interactions that need to be computed.
- The solution is to change the re-neighboring criteria via the
- `neigh_modify <neigh_modify>`_ command. The safest settings are "delay 0
- every 1 check yes". Second, it may mean that an atom has moved far
- outside a processor's sub-domain or even the entire simulation box.
- This indicates bad physics, e.g. due to highly overlapping atoms, too
- large a timestep, etc.
-
-*Out of range atoms - cannot compute PPPMDisp*
- One or more atoms are attempting to map their charge to a PPPM grid
- point that is not owned by a processor. This is likely for one of two
- reasons, both of them bad. First, it may mean that an atom near the
- boundary of a processor's sub-domain has moved more than 1/2 the
- :doc:`neighbor skin distance <neighbor>` without neighbor lists being
- rebuilt and atoms being migrated to new processors. This also means
- you may be missing pairwise interactions that need to be computed.
- The solution is to change the re-neighboring criteria via the
- `neigh_modify <neigh_modify>`_ command. The safest settings are "delay 0
- every 1 check yes". Second, it may mean that an atom has moved far
- outside a processor's sub-domain or even the entire simulation box.
- This indicates bad physics, e.g. due to highly overlapping atoms, too
- large a timestep, etc.
-
-*Overflow of allocated fix vector storage*
- This should not normally happen if the fix correctly calculated
- how long the vector will grow to. Contact the developers.
-
-*Overlapping large/large in pair colloid*
- This potential is infinite when there is an overlap.
-
-*Overlapping small/large in pair colloid*
- This potential is infinite when there is an overlap.
-
-*POEMS fix must come before NPT/NPH fix*
- NPT/NPH fix must be defined in input script after all poems fixes,
- else the fix contribution to the pressure virial is incorrect.
-
-*PPPM can only currently be used with comm_style brick*
- This is a current restriction in LAMMPS.
-
-*PPPM grid is too large*
- The global PPPM grid is larger than OFFSET in one or more dimensions.
- OFFSET is currently set to 4096. You likely need to decrease the
- requested accuracy.
-
-*PPPM grid stencil extends beyond nearest neighbor processor*
- This is not allowed if the kspace_modify overlap setting is no.
-
-*PPPM order < minimum allowed order*
- The default minimum order is 2. This can be reset by the
- kspace_modify minorder command.
-
-*PPPM order cannot be < 2 or > than %d*
- This is a limitation of the PPPM implementation in LAMMPS.
-
-*PPPMDisp Coulomb grid is too large*
- The global PPPM grid is larger than OFFSET in one or more dimensions.
- OFFSET is currently set to 4096. You likely need to decrease the
- requested accuracy.
-
-*PPPMDisp Dispersion grid is too large*
- The global PPPM grid is larger than OFFSET in one or more dimensions.
- OFFSET is currently set to 4096. You likely need to decrease the
- requested accuracy.
-
-*PPPMDisp can only currently be used with comm_style brick*
- This is a current restriction in LAMMPS.
-
-*PPPMDisp coulomb order cannot be greater than %d*
- This is a limitation of the PPPM implementation in LAMMPS.
-
-*PPPMDisp used but no parameters set, for further information please see the pppm/disp documentation*
- An efficient and accurate usage of the pppm/disp requires settings via the kspace_modify command. Please see the pppm/disp documentation for further instructions.
-
-*PRD command before simulation box is defined*
- The prd command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*PRD nsteps must be multiple of t_event*
- Self-explanatory.
-
-*PRD t_corr must be multiple of t_event*
- Self-explanatory.
-
-*Package command after simulation box is defined*
- The package command cannot be used afer a read_data, read_restart, or
- create_box command.
-
-*Package cuda command without USER-CUDA package enabled*
- The USER-CUDA package must be installed via "make yes-user-cuda"
- before LAMMPS is built, and the "-c on" must be used to enable the
- package.
-
-*Package gpu command without GPU package installed*
- The GPU package must be installed via "make yes-gpu" before LAMMPS is
- built.
-
-*Package intel command without USER-INTEL package installed*
- The USER-INTEL package must be installed via "make yes-user-intel"
- before LAMMPS is built.
-
-*Package kokkos command without KOKKOS package enabled*
- The KOKKOS package must be installed via "make yes-kokkos" before
- LAMMPS is built, and the "-k on" must be used to enable the package.
-
-*Package omp command without USER-OMP package installed*
- The USER-OMP package must be installed via "make yes-user-omp" before
- LAMMPS is built.
-
-*Pair body requires atom style body*
- Self-explanatory.
-
-*Pair body requires body style nparticle*
- This pair style is specific to the nparticle body style.
-
-*Pair brownian requires atom style sphere*
- Self-explanatory.
-
-*Pair brownian requires extended particles*
- One of the particles has radius 0.0.
-
-*Pair brownian requires monodisperse particles*
- All particles must be the same finite size.
-
-*Pair brownian/poly requires atom style sphere*
- Self-explanatory.
-
-*Pair brownian/poly requires extended particles*
- One of the particles has radius 0.0.
-
-*Pair brownian/poly requires newton pair off*
- Self-explanatory.
-
-*Pair coeff for hybrid has invalid style*
- Style in pair coeff must have been listed in pair_style command.
-
-*Pair coul/wolf requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair cutoff < Respa interior cutoff*
- One or more pairwise cutoffs are too short to use with the specified
- rRESPA cutoffs.
-
-*Pair dipole/cut requires atom attributes q, mu, torque*
- The atom style defined does not have these attributes.
-
-*Pair dipole/cut/gpu requires atom attributes q, mu, torque*
- The atom style defined does not have this attribute.
-
-*Pair dipole/long requires atom attributes q, mu, torque*
- The atom style defined does not have these attributes.
-
-*Pair dipole/sf/gpu requires atom attributes q, mu, torque*
- The atom style defined does not one or more of these attributes.
-
-*Pair distance < table inner cutoff*
- Two atoms are closer together than the pairwise table allows.
-
-*Pair distance > table outer cutoff*
- Two atoms are further apart than the pairwise table allows.
-
-*Pair dpd requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Pair gayberne epsilon a,b,c coeffs are not all set*
- Each atom type involved in pair_style gayberne must
- have these 3 coefficients set at least once.
-
-*Pair gayberne requires atom style ellipsoid*
- Self-explanatory.
-
-*Pair gayberne requires atoms with same type have same shape*
- Self-explanatory.
-
-*Pair gayberne/gpu requires atom style ellipsoid*
- Self-explanatory.
-
-*Pair gayberne/gpu requires atoms with same type have same shape*
- Self-explanatory.
-
-*Pair granular requires atom attributes radius, rmass*
- The atom style defined does not have these attributes.
-
-*Pair granular requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Pair granular with shear history requires newton pair off*
- This is a current restriction of the implementation of pair
- granular styles with history.
-
-*Pair hybrid single calls do not support per sub-style special bond values*
- Self-explanatory.
-
-*Pair hybrid sub-style does not support single call*
- You are attempting to invoke a single() call on a pair style
- that doesn't support it.
-
-*Pair hybrid sub-style is not used*
- No pair_coeff command used a sub-style specified in the pair_style
- command.
-
-*Pair inner cutoff < Respa interior cutoff*
- One or more pairwise cutoffs are too short to use with the specified
- rRESPA cutoffs.
-
-*Pair inner cutoff >= Pair outer cutoff*
- The specified cutoffs for the pair style are inconsistent.
-
-*Pair line/lj requires atom style line*
- Self-explanatory.
-
-*Pair lj/long/dipole/long requires atom attributes mu, torque*
- The atom style defined does not have these attributes.
-
-*Pair lubricate requires atom style sphere*
- Self-explanatory.
-
-*Pair lubricate requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Pair lubricate requires monodisperse particles*
- All particles must be the same finite size.
-
-*Pair lubricate/poly requires atom style sphere*
- Self-explanatory.
-
-*Pair lubricate/poly requires extended particles*
- One of the particles has radius 0.0.
-
-*Pair lubricate/poly requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Pair lubricate/poly requires newton pair off*
- Self-explanatory.
-
-*Pair lubricateU requires atom style sphere*
- Self-explanatory.
-
-*Pair lubricateU requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Pair lubricateU requires monodisperse particles*
- All particles must be the same finite size.
-
-*Pair lubricateU/poly requires ghost atoms store velocity*
- Use the comm_modify vel yes command to enable this.
-
-*Pair lubricateU/poly requires newton pair off*
- Self-explanatory.
-
-*Pair peri lattice is not identical in x, y, and z*
- The lattice defined by the lattice command must be cubic.
-
-*Pair peri requires a lattice be defined*
- Use the lattice command for this purpose.
-
-*Pair peri requires an atom map, see atom_modify*
- Even for atomic systems, an atom map is required to find Peridynamic
- bonds. Use the atom_modify command to define one.
-
-*Pair resquared epsilon a,b,c coeffs are not all set*
- Self-explanatory.
-
-*Pair resquared epsilon and sigma coeffs are not all set*
- Self-explanatory.
-
-*Pair resquared requires atom style ellipsoid*
- Self-explanatory.
-
-*Pair resquared requires atoms with same type have same shape*
- Self-explanatory.
-
-*Pair resquared/gpu requires atom style ellipsoid*
- Self-explanatory.
-
-*Pair resquared/gpu requires atoms with same type have same shape*
- Self-explanatory.
-
-*Pair style AIREBO requires atom IDs*
- This is a requirement to use the AIREBO potential.
-
-*Pair style AIREBO requires newton pair on*
- See the newton command. This is a restriction to use the AIREBO
- potential.
-
-*Pair style BOP requires atom IDs*
- This is a requirement to use the BOP potential.
-
-*Pair style BOP requires newton pair on*
- See the newton command. This is a restriction to use the BOP
- potential.
-
-*Pair style COMB requires atom IDs*
- This is a requirement to use the AIREBO potential.
-
-*Pair style COMB requires atom attribute q*
- Self-explanatory.
-
-*Pair style COMB requires newton pair on*
- See the newton command. This is a restriction to use the COMB
- potential.
-
-*Pair style COMB3 requires atom IDs*
- This is a requirement to use the COMB3 potential.
-
-*Pair style COMB3 requires atom attribute q*
- Self-explanatory.
-
-*Pair style COMB3 requires newton pair on*
- See the newton command. This is a restriction to use the COMB3
- potential.
-
-*Pair style LCBOP requires atom IDs*
- This is a requirement to use the LCBOP potential.
-
-*Pair style LCBOP requires newton pair on*
- See the newton command. This is a restriction to use the Tersoff
- potential.
-
-*Pair style MEAM requires newton pair on*
- See the newton command. This is a restriction to use the MEAM
- potential.
-
-*Pair style SNAP requires newton pair on*
- See the newton command. This is a restriction to use the SNAP
- potential.
-
-*Pair style Stillinger-Weber requires atom IDs*
- This is a requirement to use the SW potential.
-
-*Pair style Stillinger-Weber requires newton pair on*
- See the newton command. This is a restriction to use the SW
- potential.
-
-*Pair style Tersoff requires atom IDs*
- This is a requirement to use the Tersoff potential.
-
-*Pair style Tersoff requires newton pair on*
- See the newton command. This is a restriction to use the Tersoff
- potential.
-
-*Pair style Vashishta requires atom IDs*
- This is a requirement to use the Vashishta potential.
-
-*Pair style Vashishta requires newton pair on*
- See the newton command. This is a restriction to use the Vashishta
- potential.
-
-*Pair style bop requires comm ghost cutoff at least 3x larger than %g*
- Use the communicate ghost command to set this. See the pair bop
- doc page for more details.
-
-*Pair style born/coul/long requires atom attribute q*
- An atom style that defines this attribute must be used.
-
-*Pair style born/coul/long/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style born/coul/wolf requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style buck/coul/cut requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style buck/coul/long requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style buck/coul/long/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style buck/long/coul/long requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style coul/cut requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style coul/cut/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style coul/debye/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style coul/dsf requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style coul/dsf/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style coul/long/gpu requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style coul/streitz requires atom attribute q*
- Self-explanatory.
-
-*Pair style does not have extra field requested by compute pair/local*
- The pair style does not support the pN value requested by the compute
- pair/local command.
-
-*Pair style does not support bond_style quartic*
- The pair style does not have a single() function, so it can
- not be invoked by bond_style quartic.
-
-*Pair style does not support compute group/group*
- The pair_style does not have a single() function, so it cannot be
- invokded by the compute group/group command.
-
-*Pair style does not support compute pair/local*
- The pair style does not have a single() function, so it can
- not be invoked by compute pair/local.
-
-*Pair style does not support compute property/local*
- The pair style does not have a single() function, so it can
- not be invoked by fix bond/swap.
-
-*Pair style does not support fix bond/swap*
- The pair style does not have a single() function, so it can
- not be invoked by fix bond/swap.
-
-*Pair style does not support pair_write*
- The pair style does not have a single() function, so it can
- not be invoked by pair write.
-
-*Pair style does not support rRESPA inner/middle/outer*
- You are attempting to use rRESPA options with a pair style that
- does not support them.
-
-*Pair style granular with history requires atoms have IDs*
- Atoms in the simulation do not have IDs, so history effects
- cannot be tracked by the granular pair potential.
-
-*Pair style hbond/dreiding requires an atom map, see atom_modify*
- Self-explanatory.
-
-*Pair style hbond/dreiding requires atom IDs*
- Self-explanatory.
-
-*Pair style hbond/dreiding requires molecular system*
- Self-explanatory.
-
-*Pair style hbond/dreiding requires newton pair on*
- See the newton command for details.
-
-*Pair style hybrid cannot have hybrid as an argument*
- Self-explanatory.
-
-*Pair style hybrid cannot have none as an argument*
- Self-explanatory.
-
-*Pair style is incompatible with KSpace style*
- If a pair style with a long-range Coulombic component is selected,
- then a kspace style must also be used.
-
-*Pair style is incompatible with TIP4P KSpace style*
- The pair style does not have the requires TIP4P settings.
-
-*Pair style lj/charmm/coul/charmm requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style lj/charmm/coul/long requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style lj/charmm/coul/long/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/class2/coul/cut requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/class2/coul/long requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/class2/coul/long/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/coul/cut requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/coul/cut/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/coul/debye/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/coul/dsf requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style lj/cut/coul/dsf/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/coul/long requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/coul/long/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/tip4p/cut requires atom IDs*
- This is a requirement to use this potential.
-
-*Pair style lj/cut/tip4p/cut requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style lj/cut/tip4p/cut requires newton pair on*
- See the newton command. This is a restriction to use this
- potential.
-
-*Pair style lj/cut/tip4p/long requires atom IDs*
- There are no atom IDs defined in the system and the TIP4P potential
- requires them to find O,H atoms with a water molecule.
-
-*Pair style lj/cut/tip4p/long requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style lj/cut/tip4p/long requires newton pair on*
- This is because the computation of constraint forces within a water
- molecule adds forces to atoms owned by other processors.
-
-*Pair style lj/gromacs/coul/gromacs requires atom attribute q*
- An atom_style with this attribute is needed.
-
-*Pair style lj/long/dipole/long does not currently support respa*
- This feature is not yet supported.
-
-*Pair style lj/long/tip4p/long requires atom IDs*
- There are no atom IDs defined in the system and the TIP4P potential
- requires them to find O,H atoms with a water molecule.
-
-*Pair style lj/long/tip4p/long requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style lj/long/tip4p/long requires newton pair on*
- This is because the computation of constraint forces within a water
- molecule adds forces to atoms owned by other processors.
-
-*Pair style lj/sdk/coul/long/gpu requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style nb3b/harmonic requires atom IDs*
- This is a requirement to use this potential.
-
-*Pair style nb3b/harmonic requires newton pair on*
- See the newton command. This is a restriction to use this potential.
-
-*Pair style nm/cut/coul/cut requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style nm/cut/coul/long requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style peri requires atom style peri*
- Self-explanatory.
-
-*Pair style polymorphic requires atom IDs*
- This is a requirement to use the polymorphic potential.
-
-*Pair style polymorphic requires newton pair on*
- See the newton command. This is a restriction to use the polymorphic
- potential.
-
-*Pair style reax requires atom IDs*
- This is a requirement to use the ReaxFF potential.
-
-*Pair style reax requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style reax requires newton pair on*
- This is a requirement to use the ReaxFF potential.
-
-*Pair style requires a KSpace style*
- No kspace style is defined.
-
-*Pair style requires use of kspace_style ewald/disp*
- Self-explanatory.
-
-*Pair style sw/gpu requires atom IDs*
- This is a requirement to use this potential.
-
-*Pair style sw/gpu requires newton pair off*
- See the newton command. This is a restriction to use this potential.
-
-*Pair style tersoff/gpu requires atom IDs*
- This is a requirement to use the tersoff/gpu potential.
-
-*Pair style tersoff/gpu requires newton pair off*
- See the newton command. This is a restriction to use this pair style.
-
-*Pair style tip4p/cut requires atom IDs*
- This is a requirement to use this potential.
-
-*Pair style tip4p/cut requires atom attribute q*
- The atom style defined does not have this attribute.
-
-*Pair style tip4p/cut requires newton pair on*
- See the newton command. This is a restriction to use this potential.
-
-*Pair style tip4p/long requires atom IDs*
- There are no atom IDs defined in the system and the TIP4P potential
- requires them to find O,H atoms with a water molecule.
-
-*Pair style tip4p/long requires atom attribute q*
- The atom style defined does not have these attributes.
-
-*Pair style tip4p/long requires newton pair on*
- This is because the computation of constraint forces within a water
- molecule adds forces to atoms owned by other processors.
-
-*Pair table cutoffs must all be equal to use with KSpace*
- When using pair style table with a long-range KSpace solver, the
- cutoffs for all atom type pairs must all be the same, since the
- long-range solver starts at that cutoff.
-
-*Pair table parameters did not set N*
- List of pair table parameters must include N setting.
-
-*Pair tersoff/zbl requires metal or real units*
- This is a current restriction of this pair potential.
-
-*Pair tersoff/zbl/kk requires metal or real units*
- This is a current restriction of this pair potential.
-
-*Pair tri/lj requires atom style tri*
- Self-explanatory.
-
-*Pair yukawa/colloid requires atom style sphere*
- Self-explantory.
-
-*Pair yukawa/colloid requires atoms with same type have same radius*
- Self-explantory.
-
-*Pair yukawa/colloid/gpu requires atom style sphere*
- Self-explanatory.
-
-*PairKIM only works with 3D problems*
- This is a current limitation.
-
-*Pair_coeff command before pair_style is defined*
- Self-explanatory.
-
-*Pair_coeff command before simulation box is defined*
- The pair_coeff command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Pair_modify command before pair_style is defined*
- Self-explanatory.
-
-*Pair_modify special setting for pair hybrid incompatible with global special_bonds setting*
- Cannot override a setting of 0.0 or 1.0 or change a setting between
- 0.0 and 1.0.
-
-*Pair_write command before pair_style is defined*
- Self-explanatory.
-
-*Particle on or inside fix wall surface*
- Particles must be "exterior" to the wall in order for energy/force to
- be calculated.
-
-*Particle outside surface of region used in fix wall/region*
- Particles must be inside the region for energy/force to be calculated.
- A particle outside the region generates an error.
-
-*Per-atom compute in equal-style variable formula*
- Equal-style variables cannot use per-atom quantities.
-
-*Per-atom energy was not tallied on needed timestep*
- You are using a thermo keyword that requires potentials to
- have tallied energy, but they didn't on this timestep. See the
- variable doc page for ideas on how to make this work.
-
-*Per-atom fix in equal-style variable formula*
- Equal-style variables cannot use per-atom quantities.
-
-*Per-atom virial was not tallied on needed timestep*
- You are using a thermo keyword that requires potentials to have
- tallied the virial, but they didn't on this timestep. See the
- variable doc page for ideas on how to make this work.
-
-*Per-processor system is too big*
- The number of owned atoms plus ghost atoms on a single
- processor must fit in 32-bit integer.
-
-*Potential energy ID for fix neb does not exist*
- Self-explanatory.
-
-*Potential energy ID for fix nvt/nph/npt does not exist*
- A compute for potential energy must be defined.
-
-*Potential file has duplicate entry*
- The potential file has more than one entry for the same element.
-
-*Potential file is missing an entry*
- The potential file does not have a needed entry.
-
-*Power by 0 in variable formula*
- Self-explanatory.
-
-*Pressure ID for fix box/relax does not exist*
- The compute ID needed to compute pressure for the fix does not
- exist.
-
-*Pressure ID for fix modify does not exist*
- Self-explanatory.
-
-*Pressure ID for fix npt/nph does not exist*
- Self-explanatory.
-
-*Pressure ID for fix press/berendsen does not exist*
- The compute ID needed to compute pressure for the fix does not
- exist.
-
-*Pressure ID for fix rigid npt/nph does not exist*
- Self-explanatory.
-
-*Pressure ID for thermo does not exist*
- The compute ID needed to compute pressure for thermodynamics does not
- exist.
-
-*Pressure control can not be used with fix nvt*
- Self-explanatory.
-
-*Pressure control can not be used with fix nvt/asphere*
- Self-explanatory.
-
-*Pressure control can not be used with fix nvt/body*
- Self-explanatory.
-
-*Pressure control can not be used with fix nvt/sllod*
- Self-explanatory.
-
-*Pressure control can not be used with fix nvt/sphere*
- Self-explanatory.
-
-*Pressure control must be used with fix nph*
- Self-explanatory.
-
-*Pressure control must be used with fix nph/asphere*
- Self-explanatory.
-
-*Pressure control must be used with fix nph/body*
- Self-explanatory.
-
-*Pressure control must be used with fix nph/small*
- Self-explanatory.
-
-*Pressure control must be used with fix nph/sphere*
- Self-explanatory.
-
-*Pressure control must be used with fix nphug*
- A pressure control keyword (iso, aniso, tri, x, y, or z) must be
- provided.
-
-*Pressure control must be used with fix npt*
- Self-explanatory.
-
-*Pressure control must be used with fix npt/asphere*
- Self-explanatory.
-
-*Pressure control must be used with fix npt/body*
- Self-explanatory.
-
-*Pressure control must be used with fix npt/sphere*
- Self-explanatory.
-
-*Processor count in z must be 1 for 2d simulation*
- Self-explanatory.
-
-*Processor partitions do not match number of allocated processors*
- The total number of processors in all partitions must match the number
- of processors LAMMPS is running on.
-
-*Processors command after simulation box is defined*
- The processors command cannot be used after a read_data, read_restart,
- or create_box command.
-
-*Processors custom grid file is inconsistent*
- The vales in the custom file are not consistent with the number of
- processors you are running on or the Px,Py,Pz settings of the
- processors command. Or there was not a setting for every processor.
-
-*Processors grid numa and map style are incompatible*
- Using numa for gstyle in the processors command requires using
- cart for the map option.
-
-*Processors part option and grid style are incompatible*
- Cannot use gstyle numa or custom with the part option.
-
-*Processors twogrid requires proc count be a multiple of core count*
- Self-explanatory.
-
-*Pstart and Pstop must have the same value*
- Self-explanatory.
-
-*Python function evaluation failed*
- The Python function did not run succesfully and/or did not return a
- value (if it is supposed to return a value). This is probably due to
- some error condition in the function.
-
-*Python function is not callable*
- The provided Python code was run successfully, but it not
- define a callable function with the required name.
-
-*Python invoke of undefined function*
- Cannot invoke a function that has not been previously defined.
-
-*Python variable does not match Python function*
- This matching is defined by the python-style variable and the python
- command.
-
-*Python variable has no function*
- No python command was used to define the function associated with the
- python-style variable.
-
-*QEQ with 'newton pair off' not supported*
- See the newton command. This is a restriction to use the QEQ fixes.
-
-*R0 < 0 for fix spring command*
- Equilibrium spring length is invalid.
-
-*RATTLE coordinate constraints are not satisfied up to desired tolerance*
- Self-explanatory.
-
-*RATTLE determinant = 0.0*
- The determinant of the matrix being solved for a single cluster
- specified by the fix rattle command is numerically invalid.
-
-*RATTLE failed*
- Certain constraints were not satisfied.
-
-*RATTLE velocity constraints are not satisfied up to desired tolerance*
- Self-explanatory.
-
-*Read data add offset is too big*
- It cannot be larger than the size of atom IDs, e.g. the maximum 32-bit
- integer.
-
-*Read dump of atom property that isn't allocated*
- Self-explanatory.
-
-*Read rerun dump file timestep > specified stop*
- Self-explanatory.
-
-*Read restart MPI-IO input not allowed with % in filename*
- This is because a % signifies one file per processor and MPI-IO
- creates one large file for all processors.
-
-*Read_data shrink wrap did not assign all atoms correctly*
- This is typically because the box-size specified in the data file is
- large compared to the actual extent of atoms in a shrink-wrapped
- dimension. When LAMMPS shrink-wraps the box atoms will be lost if the
- processor they are re-assigned to is too far away. Choose a box
- size closer to the actual extent of the atoms.
-
-*Read_dump command before simulation box is defined*
- The read_dump command cannot be used before a read_data, read_restart,
- or create_box command.
-
-*Read_dump field not found in dump file*
- Self-explanatory.
-
-*Read_dump triclinic status does not match simulation*
- Both the dump snapshot and the current LAMMPS simulation must
- be using either an orthogonal or triclinic box.
-
-*Read_dump xyz fields do not have consistent scaling/wrapping*
- Self-explanatory.
-
-*Reading from MPI-IO filename when MPIIO package is not installed*
- Self-explanatory.
-
-*Reax_defs.h setting for NATDEF is too small*
- Edit the setting in the ReaxFF library and re-compile the
- library and re-build LAMMPS.
-
-*Reax_defs.h setting for NNEIGHMAXDEF is too small*
- Edit the setting in the ReaxFF library and re-compile the
- library and re-build LAMMPS.
-
-*Receiving partition in processors part command is already a receiver*
- Cannot specify a partition to be a receiver twice.
-
-*Region ID for compute chunk/atom does not exist*
- Self-explanatory.
-
-*Region ID for compute reduce/region does not exist*
- Self-explanatory.
-
-*Region ID for compute temp/region does not exist*
- Self-explanatory.
-
-*Region ID for dump custom does not exist*
- Self-explanatory.
-
-*Region ID for fix addforce does not exist*
- Self-explanatory.
-
-*Region ID for fix atom/swap does not exist*
- Self-explanatory.
-
-*Region ID for fix ave/spatial does not exist*
- Self-explanatory.
-
-*Region ID for fix aveforce does not exist*
- Self-explanatory.
-
-*Region ID for fix deposit does not exist*
- Self-explanatory.
-
-*Region ID for fix efield does not exist*
- Self-explanatory.
-
-*Region ID for fix evaporate does not exist*
- Self-explanatory.
-
-*Region ID for fix gcmc does not exist*
- Self-explanatory.
-
-*Region ID for fix heat does not exist*
- Self-explanatory.
-
-*Region ID for fix setforce does not exist*
- Self-explanatory.
-
-*Region ID for fix wall/region does not exist*
- Self-explanatory.
-
-*Region ID for group dynamic does not exist*
- Self-explanatory.
-
-*Region ID in variable formula does not exist*
- Self-explanatory.
-
-*Region cannot have 0 length rotation vector*
- Self-explanatory.
-
-*Region for fix oneway does not exist*
- Self-explanatory.
-
-*Region intersect region ID does not exist*
- Self-explanatory.
-
-*Region union or intersect cannot be dynamic*
- The sub-regions can be dynamic, but not the combined region.
-
-*Region union region ID does not exist*
- One or more of the region IDs specified by the region union command
- does not exist.
-
-*Replacing a fix, but new style != old style*
- A fix ID can be used a 2nd time, but only if the style matches the
- previous fix. In this case it is assumed you with to reset a fix's
- parameters. This error may mean you are mistakenly re-using a fix ID
- when you do not intend to.
-
-*Replicate command before simulation box is defined*
- The replicate command cannot be used before a read_data, read_restart,
- or create_box command.
-
-*Replicate did not assign all atoms correctly*
- Atoms replicated by the replicate command were not assigned correctly
- to processors. This is likely due to some atom coordinates being
- outside a non-periodic simulation box.
-
-*Replicated system atom IDs are too big*
- See the setting for tagint in the src/lmptype.h file.
-
-*Replicated system is too big*
- See the setting for bigint in the src/lmptype.h file.
-
-*Required border comm not yet implemented with Kokkos*
- There are various limitations in the communication options supported
- by Kokkos.
-
-*Rerun command before simulation box is defined*
- The rerun command cannot be used before a read_data, read_restart, or
- create_box command.
-
-*Rerun dump file does not contain requested snapshot*
- Self-explanatory.
-
-*Resetting timestep size is not allowed with fix move*
- This is because fix move is moving atoms based on elapsed time.
-
-*Respa inner cutoffs are invalid*
- The first cutoff must be <= the second cutoff.
-
-*Respa levels must be >= 1*
- Self-explanatory.
-
-*Respa middle cutoffs are invalid*
- The first cutoff must be <= the second cutoff.
-
-*Restart file MPI-IO output not allowed with % in filename*
- This is because a % signifies one file per processor and MPI-IO
- creates one large file for all processors.
-
-*Restart file byte ordering is not recognized*
- The file does not appear to be a LAMMPS restart file since it doesn't
- contain a recognized byte-orderomg flag at the beginning.
-
-*Restart file byte ordering is swapped*
- The file was written on a machine with different byte-ordering than
- the machine you are reading it on. Convert it to a text data file
- instead, on the machine you wrote it on.
-
-*Restart file incompatible with current version*
- This is probably because you are trying to read a file created with a
- version of LAMMPS that is too old compared to the current version.
- Use your older version of LAMMPS and convert the restart file
- to a data file.
-
-*Restart file is a MPI-IO file*
- The file is inconsistent with the filename you specified for it.
-
-*Restart file is a multi-proc file*
- The file is inconsistent with the filename you specified for it.
-
-*Restart file is not a MPI-IO file*
- The file is inconsistent with the filename you specified for it.
-
-*Restart file is not a multi-proc file*
- The file is inconsistent with the filename you specified for it.
-
-*Restart variable returned a bad timestep*
- The variable must return a timestep greater than the current timestep.
-
-*Restrain atoms %d %d %d %d missing on proc %d at step %ld*
- The 4 atoms in a restrain dihedral specified by the fix restrain
- command are not all accessible to a processor. This probably means an
- atom has moved too far.
-
-*Restrain atoms %d %d %d missing on proc %d at step %ld*
- The 3 atoms in a restrain angle specified by the fix restrain
- command are not all accessible to a processor. This probably means an
- atom has moved too far.
-
-*Restrain atoms %d %d missing on proc %d at step %ld*
- The 2 atoms in a restrain bond specified by the fix restrain
- command are not all accessible to a processor. This probably means an
- atom has moved too far.
-
-*Reuse of compute ID*
- A compute ID cannot be used twice.
-
-*Reuse of dump ID*
- A dump ID cannot be used twice.
-
-*Reuse of molecule template ID*
- The template IDs must be unique.
-
-*Reuse of region ID*
- A region ID cannot be used twice.
-
-*Rigid body atoms %d %d missing on proc %d at step %ld*
- This means that an atom cannot find the atom that owns the rigid body
- it is part of, or vice versa. The solution is to use the communicate
- cutoff command to insure ghost atoms are acquired from far enough away
- to encompass the max distance printed when the fix rigid/small command
- was invoked.
-
-*Rigid body has degenerate moment of inertia*
- Fix poems will only work with bodies (collections of atoms) that have
- non-zero principal moments of inertia. This means they must be 3 or
- more non-collinear atoms, even with joint atoms removed.
-
-*Rigid fix must come before NPT/NPH fix*
- NPT/NPH fix must be defined in input script after all rigid fixes,
- else the rigid fix contribution to the pressure virial is
- incorrect.
-
-*Rmask function in equal-style variable formula*
- Rmask is per-atom operation.
-
-*Run command before simulation box is defined*
- The run command cannot be used before a read_data, read_restart, or
- create_box command.
-
-*Run command start value is after start of run*
- Self-explanatory.
-
-*Run command stop value is before end of run*
- Self-explanatory.
-
-*Run_style command before simulation box is defined*
- The run_style command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*SRD bin size for fix srd differs from user request*
- Fix SRD had to adjust the bin size to fit the simulation box. See the
- cubic keyword if you want this message to be an error vs warning.
-
-*SRD bins for fix srd are not cubic enough*
- The bin shape is not within tolerance of cubic. See the cubic
- keyword if you want this message to be an error vs warning.
-
-*SRD particle %d started inside big particle %d on step %ld bounce %d*
- See the inside keyword if you want this message to be an error vs
- warning.
-
-*SRD particle %d started inside wall %d on step %ld bounce %d*
- See the inside keyword if you want this message to be an error vs
- warning.
-
-*Same dimension twice in fix ave/spatial*
- Self-explanatory.
-
-*Sending partition in processors part command is already a sender*
- Cannot specify a partition to be a sender twice.
-
-*Set command before simulation box is defined*
- The set command cannot be used before a read_data, read_restart,
- or create_box command.
-
-*Set command floating point vector does not exist*
- Self-explanatory.
-
-*Set command integer vector does not exist*
- Self-explanatory.
-
-*Set command with no atoms existing*
- No atoms are yet defined so the set command cannot be used.
-
-*Set region ID does not exist*
- Region ID specified in set command does not exist.
-
-*Shake angles have different bond types*
- All 3-atom angle-constrained SHAKE clusters specified by the fix shake
- command that are the same angle type, must also have the same bond
- types for the 2 bonds in the angle.
-
-*Shake atoms %d %d %d %d missing on proc %d at step %ld*
- The 4 atoms in a single shake cluster specified by the fix shake
- command are not all accessible to a processor. This probably means
- an atom has moved too far.
-
-*Shake atoms %d %d %d missing on proc %d at step %ld*
- The 3 atoms in a single shake cluster specified by the fix shake
- command are not all accessible to a processor. This probably means
- an atom has moved too far.
-
-*Shake atoms %d %d missing on proc %d at step %ld*
- The 2 atoms in a single shake cluster specified by the fix shake
- command are not all accessible to a processor. This probably means
- an atom has moved too far.
-
-*Shake cluster of more than 4 atoms*
- A single cluster specified by the fix shake command can have no more
- than 4 atoms.
-
-*Shake clusters are connected*
- A single cluster specified by the fix shake command must have a single
- central atom with up to 3 other atoms bonded to it.
-
-*Shake determinant = 0.0*
- The determinant of the matrix being solved for a single cluster
- specified by the fix shake command is numerically invalid.
-
-*Shake fix must come before NPT/NPH fix*
- NPT fix must be defined in input script after SHAKE fix, else the
- SHAKE fix contribution to the pressure virial is incorrect.
-
-*Shear history overflow, boost neigh_modify one*
- There are too many neighbors of a single atom. Use the neigh_modify
- command to increase the max number of neighbors allowed for one atom.
- You may also want to boost the page size.
-
-*Small to big integers are not sized correctly*
- This error occurs whenthe sizes of smallint, imageint, tagint, bigint,
- as defined in src/lmptype.h are not what is expected. Contact
- the developers if this occurs.
-
-*Smallint setting in lmptype.h is invalid*
- It has to be the size of an integer.
-
-*Smallint setting in lmptype.h is not compatible*
- Smallint stored in restart file is not consistent with LAMMPS version
- you are running.
-
-*Special list size exceeded in fix bond/create*
- See the read_data command for info on setting the "extra special per
- atom" header value to allow for additional special values to be
- stored.
-
-*Specified processors != physical processors*
- The 3d grid of processors defined by the processors command does not
- match the number of processors LAMMPS is being run on.
-
-*Specified target stress must be uniaxial or hydrostatic*
- Self-explanatory.
-
-*Sqrt of negative value in variable formula*
- Self-explanatory.
-
-*Subsequent read data induced too many angles per atom*
- See the create_box extra/angle/per/atom or read_data "extra angle per
- atom" header value to set this limit larger.
-
-*Subsequent read data induced too many bonds per atom*
- See the create_box extra/bond/per/atom or read_data "extra bond per
- atom" header value to set this limit larger.
-
-*Subsequent read data induced too many dihedrals per atom*
- See the create_box extra/dihedral/per/atom or read_data "extra
- dihedral per atom" header value to set this limit larger.
-
-*Subsequent read data induced too many impropers per atom*
- See the create_box extra/improper/per/atom or read_data "extra
- improper per atom" header value to set this limit larger.
-
-*Substitution for illegal variable*
- Input script line contained a variable that could not be substituted
- for.
-
-*Support for writing images in JPEG format not included*
- LAMMPS was not built with the -DLAMMPS_JPEG switch in the Makefile.
-
-*Support for writing images in PNG format not included*
- LAMMPS was not built with the -DLAMMPS_PNG switch in the Makefile.
-
-*Support for writing movies not included*
- LAMMPS was not built with the -DLAMMPS_FFMPEG switch in the Makefile
-
-*System in data file is too big*
- See the setting for bigint in the src/lmptype.h file.
-
-*System is not charge neutral, net charge = %g*
- The total charge on all atoms on the system is not 0.0.
- For some KSpace solvers this is an error.
-
-*TAD nsteps must be multiple of t_event*
- Self-explanatory.
-
-*TIP4P hydrogen has incorrect atom type*
- The TIP4P pairwise computation found an H atom whose type does not
- agree with the specified H type.
-
-*TIP4P hydrogen is missing*
- The TIP4P pairwise computation failed to find the correct H atom
- within a water molecule.
-
-*TMD target file did not list all group atoms*
- The target file for the fix tmd command did not list all atoms in the
- fix group.
-
-*Tad command before simulation box is defined*
- Self-explanatory.
-
-*Tagint setting in lmptype.h is invalid*
- Tagint must be as large or larger than smallint.
-
-*Tagint setting in lmptype.h is not compatible*
- Format of tagint stored in restart file is not consistent with LAMMPS
- version you are running. See the settings in src/lmptype.h
-
-*Target pressure for fix rigid/nph cannot be < 0.0*
- Self-explanatory.
-
-*Target pressure for fix rigid/npt/small cannot be < 0.0*
- Self-explanatory.
-
-*Target temperature for fix nvt/npt/nph cannot be 0.0*
- Self-explanatory.
-
-*Target temperature for fix rigid/npt cannot be 0.0*
- Self-explanatory.
-
-*Target temperature for fix rigid/npt/small cannot be 0.0*
- Self-explanatory.
-
-*Target temperature for fix rigid/nvt cannot be 0.0*
- Self-explanatory.
-
-*Target temperature for fix rigid/nvt/small cannot be 0.0*
- Self-explanatory.
-
-*Temper command before simulation box is defined*
- The temper command cannot be used before a read_data, read_restart, or
- create_box command.
-
-*Temperature ID for fix bond/swap does not exist*
- Self-explanatory.
-
-*Temperature ID for fix box/relax does not exist*
- Self-explanatory.
-
-*Temperature ID for fix nvt/npt does not exist*
- Self-explanatory.
-
-*Temperature ID for fix press/berendsen does not exist*
- Self-explanatory.
-
-*Temperature ID for fix rigid nvt/npt/nph does not exist*
- Self-explanatory.
-
-*Temperature ID for fix temp/berendsen does not exist*
- Self-explanatory.
-
-*Temperature ID for fix temp/csld does not exist*
- Self-explanatory.
-
-*Temperature ID for fix temp/csvr does not exist*
- Self-explanatory.
-
-*Temperature ID for fix temp/rescale does not exist*
- Self-explanatory.
-
-*Temperature compute degrees of freedom < 0*
- This should not happen if you are calculating the temperature
- on a valid set of atoms.
-
-*Temperature control can not be used with fix nph*
- Self-explanatory.
-
-*Temperature control can not be used with fix nph/asphere*
- Self-explanatory.
-
-*Temperature control can not be used with fix nph/body*
- Self-explanatory.
-
-*Temperature control can not be used with fix nph/sphere*
- Self-explanatory.
-
-*Temperature control must be used with fix nphug*
- The temp keyword must be provided.
-
-*Temperature control must be used with fix npt*
- Self-explanatory.
-
-*Temperature control must be used with fix npt/asphere*
- Self-explanatory.
-
-*Temperature control must be used with fix npt/body*
- Self-explanatory.
-
-*Temperature control must be used with fix npt/sphere*
- Self-explanatory.
-
-*Temperature control must be used with fix nvt*
- Self-explanatory.
-
-*Temperature control must be used with fix nvt/asphere*
- Self-explanatory.
-
-*Temperature control must be used with fix nvt/body*
- Self-explanatory.
-
-*Temperature control must be used with fix nvt/sllod*
- Self-explanatory.
-
-*Temperature control must be used with fix nvt/sphere*
- Self-explanatory.
-
-*Temperature control must not be used with fix nph/small*
- Self-explanatory.
-
-*Temperature for fix nvt/sllod does not have a bias*
- The specified compute must compute temperature with a bias.
-
-*Tempering could not find thermo_pe compute*
- This compute is created by the thermo command. It must have been
- explicitly deleted by a uncompute command.
-
-*Tempering fix ID is not defined*
- The fix ID specified by the temper command does not exist.
-
-*Tempering temperature fix is not valid*
- The fix specified by the temper command is not one that controls
- temperature (nvt or langevin).
-
-*Test_descriptor_string already allocated*
- This is an internal error. Contact the developers.
-
-*The package gpu command is required for gpu styles*
- Self-explanatory.
-
-*Thermo and fix not computed at compatible times*
- Fixes generate values on specific timesteps. The thermo output
- does not match these timesteps.
-
-*Thermo compute array is accessed out-of-range*
- Self-explanatory.
-
-*Thermo compute does not compute array*
- Self-explanatory.
-
-*Thermo compute does not compute scalar*
- Self-explanatory.
-
-*Thermo compute does not compute vector*
- Self-explanatory.
-
-*Thermo compute vector is accessed out-of-range*
- Self-explanatory.
-
-*Thermo custom variable cannot be indexed*
- Self-explanatory.
-
-*Thermo custom variable is not equal-style variable*
- Only equal-style variables can be output with thermodynamics, not
- atom-style variables.
-
-*Thermo every variable returned a bad timestep*
- The variable must return a timestep greater than the current timestep.
-
-*Thermo fix array is accessed out-of-range*
- Self-explanatory.
-
-*Thermo fix does not compute array*
- Self-explanatory.
-
-*Thermo fix does not compute scalar*
- Self-explanatory.
-
-*Thermo fix does not compute vector*
- Self-explanatory.
-
-*Thermo fix vector is accessed out-of-range*
- Self-explanatory.
-
-*Thermo keyword in variable requires thermo to use/init pe*
- You are using a thermo keyword in a variable that requires
- potential energy to be calculated, but your thermo output
- does not use it. Add it to your thermo output.
-
-*Thermo keyword in variable requires thermo to use/init press*
- You are using a thermo keyword in a variable that requires pressure to
- be calculated, but your thermo output does not use it. Add it to your
- thermo output.
-
-*Thermo keyword in variable requires thermo to use/init temp*
- You are using a thermo keyword in a variable that requires temperature
- to be calculated, but your thermo output does not use it. Add it to
- your thermo output.
-
-*Thermo style does not use press*
- Cannot use thermo_modify to set this parameter since the thermo_style
- is not computing this quantity.
-
-*Thermo style does not use temp*
- Cannot use thermo_modify to set this parameter since the thermo_style
- is not computing this quantity.
-
-*Thermo_modify every variable returned a bad timestep*
- The returned timestep is less than or equal to the current timestep.
-
-*Thermo_modify int format does not contain d character*
- Self-explanatory.
-
-*Thermo_modify pressure ID does not compute pressure*
- The specified compute ID does not compute pressure.
-
-*Thermo_modify temperature ID does not compute temperature*
- The specified compute ID does not compute temperature.
-
-*Thermo_style command before simulation box is defined*
- The thermo_style command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*This variable thermo keyword cannot be used between runs*
- Keywords that refer to time (such as cpu, elapsed) do not
- make sense in between runs.
-
-*Threshhold for an atom property that isn't allocated*
- A dump threshhold has been requested on a quantity that is
- not defined by the atom style used in this simulation.
-
-*Timestep must be >= 0*
- Specified timestep is invalid.
-
-*Too big a problem to use velocity create loop all*
- The system size must fit in a 32-bit integer to use this option.
-
-*Too big a timestep for dump dcd*
- The timestep must fit in a 32-bit integer to use this dump style.
-
-*Too big a timestep for dump xtc*
- The timestep must fit in a 32-bit integer to use this dump style.
-
-*Too few bits for lookup table*
- Table size specified via pair_modify command does not work with your
- machine's floating point representation.
-
-*Too few lines in %s section of data file*
- Self-explanatory.
-
-*Too few values in body lines in data file*
- Self-explanatory.
-
-*Too few values in body section of molecule file*
- Self-explanatory.
-
-*Too many -pk arguments in command line*
- The string formed by concatenating the arguments is too long. Use a
- package command in the input script instead.
-
-*Too many MSM grid levels*
- The max number of MSM grid levels is hardwired to 10.
-
-*Too many args in variable function*
- More args are used than any variable function allows.
-
-*Too many atom pairs for pair bop*
- The number of atomic pairs exceeds the expected number. Check your
- atomic structure to ensure that it is realistic.
-
-*Too many atom sorting bins*
- This is likely due to an immense simulation box that has blown up
- to a large size.
-
-*Too many atom triplets for pair bop*
- The number of three atom groups for angle determinations exceeds the
- expected number. Check your atomic structrure to ensure that it is
- realistic.
-
-*Too many atoms for dump dcd*
- The system size must fit in a 32-bit integer to use this dump
- style.
-
-*Too many atoms for dump xtc*
- The system size must fit in a 32-bit integer to use this dump
- style.
-
-*Too many atoms to dump sort*
- Cannot sort when running with more than 2^31 atoms.
-
-*Too many exponent bits for lookup table*
- Table size specified via pair_modify command does not work with your
- machine's floating point representation.
-
-*Too many groups*
- The maximum number of atom groups (including the "all" group) is
- given by MAX_GROUP in group.cpp and is 32.
-
-*Too many iterations*
- You must use a number of iterations that fit in a 32-bit integer
- for minimization.
-
-*Too many lines in one body in data file - boost MAXBODY*
- MAXBODY is a setting at the top of the src/read_data.cpp file.
- Set it larger and re-compile the code.
-
-*Too many local+ghost atoms for neighbor list*
- The number of nlocal + nghost atoms on a processor
- is limited by the size of a 32-bit integer with 2 bits
- removed for masking 1-2, 1-3, 1-4 neighbors.
-
-*Too many mantissa bits for lookup table*
- Table size specified via pair_modify command does not work with your
- machine's floating point representation.
-
-*Too many masses for fix shake*
- The fix shake command cannot list more masses than there are atom
- types.
-
-*Too many molecules for fix poems*
- The limit is 2^31 = ~2 billion molecules.
-
-*Too many molecules for fix rigid*
- The limit is 2^31 = ~2 billion molecules.
-
-*Too many neighbor bins*
- This is likely due to an immense simulation box that has blown up
- to a large size.
-
-*Too many timesteps*
- The cummulative timesteps must fit in a 64-bit integer.
-
-*Too many timesteps for NEB*
- You must use a number of timesteps that fit in a 32-bit integer
- for NEB.
-
-*Too many total atoms*
- See the setting for bigint in the src/lmptype.h file.
-
-*Too many total bits for bitmapped lookup table*
- Table size specified via pair_modify command is too large. Note that
- a value of N generates a 2^N size table.
-
-*Too many values in body lines in data file*
- Self-explanatory.
-
-*Too many values in body section of molecule file*
- Self-explanatory.
-
-*Too much buffered per-proc info for dump*
- The size of the buffered string must fit in a 32-bit integer for a
- dump.
-
-*Too much per-proc info for dump*
- Number of local atoms times number of columns must fit in a 32-bit
- integer for dump.
-
-*Tree structure in joint connections*
- Fix poems cannot (yet) work with coupled bodies whose joints connect
- the bodies in a tree structure.
-
-*Triclinic box skew is too large*
- The displacement in a skewed direction must be less than half the box
- length in that dimension. E.g. the xy tilt must be between -half and
- +half of the x box length. This constraint can be relaxed by using
- the box tilt command.
-
-*Tried to convert a double to int, but input_double > INT_MAX*
- Self-explanatory.
-
-*Trying to build an occasional neighbor list before initialization completed*
- This is not allowed. Source code caller needs to be modified.
-
-*Two fix ave commands using same compute chunk/atom command in incompatible ways*
- They are both attempting to "lock" the chunk/atom command so that the
- chunk assignments persist for some number of timesteps, but are doing
- it in different ways.
-
-*Two groups cannot be the same in fix spring couple*
- Self-explanatory.
-
-*USER-CUDA mode requires CUDA variant of min style*
- CUDA mode is enabled, so the min style must include a cuda suffix.
-
-*USER-CUDA mode requires CUDA variant of run style*
- CUDA mode is enabled, so the run style must include a cuda suffix.
-
-*USER-CUDA package does not yet support comm_style tiled*
- Self-explanatory.
-
-*USER-CUDA package requires a cuda enabled atom_style*
- Self-explanatory.
-
-*Unable to initialize accelerator for use*
- There was a problem initializing an accelerator for the gpu package
-
-*Unbalanced quotes in input line*
- No matching end double quote was found following a leading double
- quote.
-
-*Unexpected end of -reorder file*
- Self-explanatory.
-
-*Unexpected end of AngleCoeffs section*
- Read a blank line.
-
-*Unexpected end of BondCoeffs section*
- Read a blank line.
-
-*Unexpected end of DihedralCoeffs section*
- Read a blank line.
-
-*Unexpected end of ImproperCoeffs section*
- Read a blank line.
-
-*Unexpected end of PairCoeffs section*
- Read a blank line.
-
-*Unexpected end of custom file*
- Self-explanatory.
-
-*Unexpected end of data file*
- LAMMPS hit the end of the data file while attempting to read a
- section. Something is wrong with the format of the data file.
-
-*Unexpected end of dump file*
- A read operation from the file failed.
-
-*Unexpected end of fix rigid file*
- A read operation from the file failed.
-
-*Unexpected end of fix rigid/small file*
- A read operation from the file failed.
-
-*Unexpected end of molecule file*
- Self-explanatory.
-
-*Unexpected end of neb file*
- A read operation from the file failed.
-
-*Units command after simulation box is defined*
- The units command cannot be used after a read_data, read_restart, or
- create_box command.
-
-*Universe/uloop variable count < # of partitions*
- A universe or uloop style variable must specify a number of values >= to the
- number of processor partitions.
-
-*Unknown angle style*
- The choice of angle style is unknown.
-
-*Unknown atom style*
- The choice of atom style is unknown.
-
-*Unknown body style*
- The choice of body style is unknown.
-
-*Unknown bond style*
- The choice of bond style is unknown.
-
-*Unknown category for info is_active()*
- Self-explanatory.
-
-*Unknown category for info is_available()*
- Self-explanatory.
-
-*Unknown category for info is_defined()*
- Self-explanatory.
-
-*Unknown command: %s*
- The command is not known to LAMMPS. Check the input script.
-
-*Unknown compute style*
- The choice of compute style is unknown.
-
-*Unknown dihedral style*
- The choice of dihedral style is unknown.
-
-*Unknown dump reader style*
- The choice of dump reader style via the format keyword is unknown.
-
-*Unknown dump style*
- The choice of dump style is unknown.
-
-*Unknown error in GPU library*
- Self-explanatory.
-
-*Unknown fix style*
- The choice of fix style is unknown.
-
-*Unknown identifier in data file: %s*
- A section of the data file cannot be read by LAMMPS.
-
-*Unknown improper style*
- The choice of improper style is unknown.
-
-*Unknown keyword in thermo_style custom command*
- One or more specified keywords are not recognized.
-
-*Unknown kspace style*
- The choice of kspace style is unknown.
-
-*Unknown name for info newton category*
- Self-explanatory.
-
-*Unknown name for info package category*
- Self-explanatory.
-
-*Unknown name for info pair category*
- Self-explanatory.
-
-*Unknown pair style*
- The choice of pair style is unknown.
-
-*Unknown pair_modify hybrid sub-style*
- The choice of sub-style is unknown.
-
-*Unknown region style*
- The choice of region style is unknown.
-
-*Unknown section in molecule file*
- Self-explanatory.
-
-*Unknown table style in angle style table*
- Self-explanatory.
-
-*Unknown table style in bond style table*
- Self-explanatory.
-
-*Unknown table style in pair_style command*
- Style of table is invalid for use with pair_style table command.
-
-*Unknown unit_style*
- Self-explanatory. Check the input script or data file.
-
-*Unrecognized lattice type in MEAM file 1*
- The lattice type in an entry of the MEAM library file is not
- valid.
-
-*Unrecognized lattice type in MEAM file 2*
- The lattice type in an entry of the MEAM parameter file is not
- valid.
-
-*Unrecognized pair style in compute pair command*
- Self-explanatory.
-
-*Unrecognized virial argument in pair_style command*
- Only two options are supported: LAMMPSvirial and KIMvirial
-
-*Unsupported mixing rule in kspace_style ewald/disp*
- Only geometric mixing is supported.
-
-*Unsupported order in kspace_style ewald/disp*
- Only 1/r^6 dispersion or dipole terms are supported.
-
-*Unsupported order in kspace_style pppm/disp, pair_style %s*
- Only pair styles with 1/r and 1/r^6 dependence are currently supported.
-
-*Use cutoff keyword to set cutoff in single mode*
- Mode is single so cutoff/multi keyword cannot be used.
-
-*Use cutoff/multi keyword to set cutoff in multi mode*
- Mode is multi so cutoff keyword cannot be used.
-
-*Using fix nvt/sllod with inconsistent fix deform remap option*
- Fix nvt/sllod requires that deforming atoms have a velocity profile
- provided by "remap v" as a fix deform option.
-
-*Using fix nvt/sllod with no fix deform defined*
- Self-explanatory.
-
-*Using fix srd with inconsistent fix deform remap option*
- When shearing the box in an SRD simulation, the remap v option for fix
- deform needs to be used.
-
-*Using pair lubricate with inconsistent fix deform remap option*
- Must use remap v option with fix deform with this pair style.
-
-*Using pair lubricate/poly with inconsistent fix deform remap option*
- If fix deform is used, the remap v option is required.
-
-*Using suffix cuda without USER-CUDA package enabled*
- Self-explanatory.
-
-*Using suffix gpu without GPU package installed*
- Self-explanatory.
-
-*Using suffix intel without USER-INTEL package installed*
- Self-explanatory.
-
-*Using suffix kk without KOKKOS package enabled*
- Self-explanatory.
-
-*Using suffix omp without USER-OMP package installed*
- Self-explanatory.
-
-*Using update dipole flag requires atom attribute mu*
- Self-explanatory.
-
-*Using update dipole flag requires atom style sphere*
- Self-explanatory.
-
-*Variable ID in variable formula does not exist*
- Self-explanatory.
-
-*Variable atom ID is too large*
- Specified ID is larger than the maximum allowed atom ID.
-
-*Variable evaluation before simulation box is defined*
- Cannot evaluate a compute or fix or atom-based value in a variable
- before the simulation has been setup.
-
-*Variable evaluation in fix wall gave bad value*
- The returned value for epsilon or sigma < 0.0.
-
-*Variable evaluation in region gave bad value*
- Variable returned a radius < 0.0.
-
-*Variable for compute ti is invalid style*
- Self-explanatory.
-
-*Variable for create_atoms is invalid style*
- The variables must be equal-style variables.
-
-*Variable for displace_atoms is invalid style*
- It must be an equal-style or atom-style variable.
-
-*Variable for dump every is invalid style*
- Only equal-style variables can be used.
-
-*Variable for dump image center is invalid style*
- Must be an equal-style variable.
-
-*Variable for dump image persp is invalid style*
- Must be an equal-style variable.
-
-*Variable for dump image phi is invalid style*
- Must be an equal-style variable.
-
-*Variable for dump image theta is invalid style*
- Must be an equal-style variable.
-
-*Variable for dump image zoom is invalid style*
- Must be an equal-style variable.
-
-*Variable for fix adapt is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix addforce is invalid style*
- Self-explanatory.
-
-*Variable for fix aveforce is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix deform is invalid style*
- The variable must be an equal-style variable.
-
-*Variable for fix efield is invalid style*
- The variable must be an equal- or atom-style variable.
-
-*Variable for fix gravity is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix heat is invalid style*
- Only equal-style or atom-style variables can be used.
-
-*Variable for fix indent is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix indent is not equal style*
- Only equal-style variables can be used.
-
-*Variable for fix langevin is invalid style*
- It must be an equal-style variable.
-
-*Variable for fix move is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix setforce is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix temp/berendsen is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix temp/csld is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix temp/csvr is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix temp/rescale is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix wall is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix wall/reflect is invalid style*
- Only equal-style variables can be used.
-
-*Variable for fix wall/srd is invalid style*
- Only equal-style variables can be used.
-
-*Variable for group dynamic is invalid style*
- The variable must be an atom-style variable.
-
-*Variable for group is invalid style*
- Only atom-style variables can be used.
-
-*Variable for region cylinder is invalid style*
- Only equal-style varaibles are allowed.
-
-*Variable for region is invalid style*
- Only equal-style variables can be used.
-
-*Variable for region is not equal style*
- Self-explanatory.
-
-*Variable for region sphere is invalid style*
- Only equal-style varaibles are allowed.
-
-*Variable for restart is invalid style*
- Only equal-style variables can be used.
-
-*Variable for set command is invalid style*
- Only atom-style variables can be used.
-
-*Variable for thermo every is invalid style*
- Only equal-style variables can be used.
-
-*Variable for velocity set is invalid style*
- Only atom-style variables can be used.
-
-*Variable for voronoi radius is not atom style*
- Self-explanatory.
-
-*Variable formula compute array is accessed out-of-range*
- Self-explanatory.
-
-*Variable formula compute vector is accessed out-of-range*
- Self-explanatory.
-
-*Variable formula fix array is accessed out-of-range*
- Self-explanatory.
-
-*Variable formula fix vector is accessed out-of-range*
- Self-explanatory.
-
-*Variable has circular dependency*
- A circular dependency is when variable "a" in used by variable "b" and
- variable "b" is also used by varaible "a". Circular dependencies with
- longer chains of dependence are also not allowed.
-
-*Variable name between brackets must be alphanumeric or underscore characters*
- Self-explanatory.
-
-*Variable name for compute chunk/atom does not exist*
- Self-explanatory.
-
-*Variable name for compute reduce does not exist*
- Self-explanatory.
-
-*Variable name for compute ti does not exist*
- Self-explanatory.
-
-*Variable name for create_atoms does not exist*
- Self-explanatory.
-
-*Variable name for displace_atoms does not exist*
- Self-explanatory.
-
-*Variable name for dump every does not exist*
- Self-explanatory.
-
-*Variable name for dump image center does not exist*
- Self-explanatory.
-
-*Variable name for dump image persp does not exist*
- Self-explanatory.
-
-*Variable name for dump image phi does not exist*
- Self-explanatory.
-
-*Variable name for dump image theta does not exist*
- Self-explanatory.
-
-*Variable name for dump image zoom does not exist*
- Self-explanatory.
-
-*Variable name for fix adapt does not exist*
- Self-explanatory.
-
-*Variable name for fix addforce does not exist*
- Self-explanatory.
-
-*Variable name for fix ave/atom does not exist*
- Self-explanatory.
-
-*Variable name for fix ave/chunk does not exist*
- Self-explanatory.
-
-*Variable name for fix ave/correlate does not exist*
- Self-explanatory.
-
-*Variable name for fix ave/histo does not exist*
- Self-explanatory.
-
-*Variable name for fix ave/spatial does not exist*
- Self-explanatory.
-
-*Variable name for fix ave/time does not exist*
- Self-explanatory.
-
-*Variable name for fix aveforce does not exist*
- Self-explanatory.
-
-*Variable name for fix deform does not exist*
- Self-explantory.
-
-*Variable name for fix efield does not exist*
- Self-explanatory.
-
-*Variable name for fix gravity does not exist*
- Self-explanatory.
-
-*Variable name for fix heat does not exist*
- Self-explanatory.
-
-*Variable name for fix indent does not exist*
- Self-explanatory.
-
-*Variable name for fix langevin does not exist*
- Self-explanatory.
-
-*Variable name for fix move does not exist*
- Self-explanatory.
-
-*Variable name for fix setforce does not exist*
- Self-explanatory.
-
-*Variable name for fix store/state does not exist*
- Self-explanatory.
-
-*Variable name for fix temp/berendsen does not exist*
- Self-explanatory.
-
-*Variable name for fix temp/csld does not exist*
- Self-explanatory.
-
-*Variable name for fix temp/csvr does not exist*
- Self-explanatory.
-
-*Variable name for fix temp/rescale does not exist*
- Self-explanatory.
-
-*Variable name for fix vector does not exist*
- Self-explanatory.
-
-*Variable name for fix wall does not exist*
- Self-explanatory.
-
-*Variable name for fix wall/reflect does not exist*
- Self-explanatory.
-
-*Variable name for fix wall/srd does not exist*
- Self-explanatory.
-
-*Variable name for group does not exist*
- Self-explanatory.
-
-*Variable name for group dynamic does not exist*
- Self-explanatory.
-
-*Variable name for region cylinder does not exist*
- Self-explanatory.
-
-*Variable name for region does not exist*
- Self-explanatory.
-
-*Variable name for region sphere does not exist*
- Self-explanatory.
-
-*Variable name for restart does not exist*
- Self-explanatory.
-
-*Variable name for set command does not exist*
- Self-explanatory.
-
-*Variable name for thermo every does not exist*
- Self-explanatory.
-
-*Variable name for velocity set does not exist*
- Self-explanatory.
-
-*Variable name for voronoi radius does not exist*
- Self-explanatory.
-
-*Variable name must be alphanumeric or underscore characters*
- Self-explanatory.
-
-*Variable uses atom property that isn't allocated*
- Self-explanatory.
-
-*Velocity command before simulation box is defined*
- The velocity command cannot be used before a read_data, read_restart,
- or create_box command.
-
-*Velocity command with no atoms existing*
- A velocity command has been used, but no atoms yet exist.
-
-*Velocity ramp in z for a 2d problem*
- Self-explanatory.
-
-*Velocity rigid used with non-rigid fix-ID*
- Self-explanatory.
-
-*Velocity temperature ID does calculate a velocity bias*
- The specified compute must compute a bias for temperature.
-
-*Velocity temperature ID does not compute temperature*
- The compute ID given to the velocity command must compute
- temperature.
-
-*Verlet/split can only currently be used with comm_style brick*
- This is a current restriction in LAMMPS.
-
-*Verlet/split does not yet support TIP4P*
- This is a current limitation.
-
-*Verlet/split requires 2 partitions*
- See the -partition command-line switch.
-
-*Verlet/split requires Rspace partition layout be multiple of Kspace partition layout in each dim*
- This is controlled by the processors command.
-
-*Verlet/split requires Rspace partition size be multiple of Kspace partition size*
- This is so there is an equal number of Rspace processors for every
- Kspace processor.
-
-*Virial was not tallied on needed timestep*
- You are using a thermo keyword that requires potentials to
- have tallied the virial, but they didn't on this timestep. See the
- variable doc page for ideas on how to make this work.
-
-*Voro++ error: narea and neigh have a different size*
- This error is returned by the Voro++ library.
-
-*Wall defined twice in fix wall command*
- Self-explanatory.
-
-*Wall defined twice in fix wall/reflect command*
- Self-explanatory.
-
-*Wall defined twice in fix wall/srd command*
- Self-explanatory.
-
-*Water H epsilon must be 0.0 for pair style lj/cut/tip4p/cut*
- This is because LAMMPS does not compute the Lennard-Jones interactions
- with these particles for efficiency reasons.
-
-*Water H epsilon must be 0.0 for pair style lj/cut/tip4p/long*
- This is because LAMMPS does not compute the Lennard-Jones interactions
- with these particles for efficiency reasons.
-
-*Water H epsilon must be 0.0 for pair style lj/long/tip4p/long*
- This is because LAMMPS does not compute the Lennard-Jones interactions
- with these particles for efficiency reasons.
-
-*World variable count doesn't match # of partitions*
- A world-style variable must specify a number of values equal to the
- number of processor partitions.
-
-*Write_data command before simulation box is defined*
- Self-explanatory.
-
-*Write_restart command before simulation box is defined*
- The write_restart command cannot be used before a read_data,
- read_restart, or create_box command.
-
-*Writing to MPI-IO filename when MPIIO package is not installed*
- Self-explanatory.
-
-*Zero length rotation vector with displace_atoms*
- Self-explanatory.
-
-*Zero length rotation vector with fix move*
- Self-explanatory.
-
-*Zero-length lattice orient vector*
- Self-explanatory.
-
-
-
-.. _warn:
-
-Warnings:
---------------------
-
-
-
-*Adjusting Coulombic cutoff for MSM, new cutoff = %g*
- The adjust/cutoff command is turned on and the Coulombic cutoff has been
- adjusted to match the user-specified accuracy.
-
-*Angle atoms missing at step %ld*
- One or more of 3 atoms needed to compute a particular angle are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the angle has blown apart and an atom is
- too far away.
-
-*Angle style in data file differs from currently defined angle style*
- Self-explanatory.
-
-*Atom style in data file differs from currently defined atom style*
- Self-explanatory.
-
-*Bond atom missing in box size check*
- The 2nd atoms needed to compute a particular bond is missing on this
- processor. Typically this is because the pairwise cutoff is set too
- short or the bond has blown apart and an atom is too far away.
-
-*Bond atom missing in image check*
- The 2nd atom in a particular bond is missing on this processor.
- Typically this is because the pairwise cutoff is set too short or the
- bond has blown apart and an atom is too far away.
-
-*Bond atoms missing at step %ld*
- The 2nd atom needed to compute a particular bond is missing on this
- processor. Typically this is because the pairwise cutoff is set too
- short or the bond has blown apart and an atom is too far away.
-
-*Bond style in data file differs from currently defined bond style*
- Self-explanatory.
-
-*Bond/angle/dihedral extent > half of periodic box length*
- This is a restriction because LAMMPS can be confused about which image
- of an atom in the bonded interaction is the correct one to use.
- "Extent" in this context means the maximum end-to-end length of the
- bond/angle/dihedral. LAMMPS computes this by taking the maximum bond
- length, multiplying by the number of bonds in the interaction (e.g. 3
- for a dihedral) and adding a small amount of stretch.
-
-*Both groups in compute group/group have a net charge; the Kspace boundary correction to energy will be non-zero*
- Self-explantory.
-
-*Calling write_dump before a full system init.*
- The write_dump command is used before the system has been fully
- initialized as part of a 'run' or 'minimize' command. Not all dump
- styles and features are fully supported at this point and thus the
- command may fail or produce incomplete or incorrect output. Insert
- a "run 0" command, if a full system init is required.
-
-*Cannot count rigid body degrees-of-freedom before bodies are fully initialized*
- This means the temperature associated with the rigid bodies may be
- incorrect on this timestep.
-
-*Cannot count rigid body degrees-of-freedom before bodies are initialized*
- This means the temperature associated with the rigid bodies may be
- incorrect on this timestep.
-
-*Cannot include log terms without 1/r terms; setting flagHI to 1*
- Self-explanatory.
-
-*Cannot include log terms without 1/r terms; setting flagHI to 1.*
- Self-explanatory.
-
-*Charges are set, but coulombic solver is not used*
- Self-explanatory.
-
-*Charges did not converge at step %ld: %lg*
- Self-explanatory.
-
-*Communication cutoff is too small for SNAP micro load balancing, increased to %lf*
- Self-explanatory.
-
-*Compute cna/atom cutoff may be too large to find ghost atom neighbors*
- The neighbor cutoff used may not encompass enough ghost atoms
- to perform this operation correctly.
-
-*Computing temperature of portions of rigid bodies*
- The group defined by the temperature compute does not encompass all
- the atoms in one or more rigid bodies, so the change in
- degrees-of-freedom for the atoms in those partial rigid bodies will
- not be accounted for.
-
-*Create_bonds max distance > minimum neighbor cutoff*
- This means atom pairs for some atom types may not be in the neighbor
- list and thus no bond can be created between them.
-
-*Delete_atoms cutoff > minimum neighbor cutoff*
- This means atom pairs for some atom types may not be in the neighbor
- list and thus an atom in that pair cannot be deleted.
-
-*Dihedral atoms missing at step %ld*
- One or more of 4 atoms needed to compute a particular dihedral are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the dihedral has blown apart and an atom is
- too far away.
-
-*Dihedral problem*
- Conformation of the 4 listed dihedral atoms is extreme; you may want
- to check your simulation geometry.
-
-*Dihedral problem: %d %ld %d %d %d %d*
- Conformation of the 4 listed dihedral atoms is extreme; you may want
- to check your simulation geometry.
-
-*Dihedral style in data file differs from currently defined dihedral style*
- Self-explanatory.
-
-*Dump dcd/xtc timestamp may be wrong with fix dt/reset*
- If the fix changes the timestep, the dump dcd file will not
- reflect the change.
-
-*Energy tally does not account for 'zero yes'*
- The energy removed by using the 'zero yes' flag is not accounted
- for in the energy tally and thus energy conservation cannot be
- monitored in this case.
-
-*Estimated error in splitting of dispersion coeffs is %g*
- Error is greater than 0.0001 percent.
-
-*Ewald/disp Newton solver failed, using old method to estimate g_ewald*
- Self-explanatory. Choosing a different cutoff value may help.
-
-*FENE bond too long*
- A FENE bond has stretched dangerously far. It's interaction strength
- will be truncated to attempt to prevent the bond from blowing up.
-
-*FENE bond too long: %ld %d %d %g*
- A FENE bond has stretched dangerously far. It's interaction strength
- will be truncated to attempt to prevent the bond from blowing up.
-
-*FENE bond too long: %ld %g*
- A FENE bond has stretched dangerously far. It's interaction strength
- will be truncated to attempt to prevent the bond from blowing up.
-
-*Fix SRD walls overlap but fix srd overlap not set*
- You likely want to set this in your input script.
-
-*Fix bond/swap will ignore defined angles*
- See the doc page for fix bond/swap for more info on this
- restriction.
-
-*Fix deposit near setting < possible overlap separation %g*
- This test is performed for finite size particles with a diameter, not
- for point particles. The near setting is smaller than the particle
- diameter which can lead to overlaps.
-
-*Fix evaporate may delete atom with non-zero molecule ID*
- This is probably an error, since you should not delete only one atom
- of a molecule.
-
-*Fix gcmc using full_energy option*
- Fix gcmc has automatically turned on the full_energy option since it
- is required for systems like the one specified by the user. User input
- included one or more of the following: kspace, triclinic, a hybrid
- pair style, an eam pair style, or no "single" function for the pair
- style.
-
-*Fix property/atom mol or charge w/out ghost communication*
- A model typically needs these properties defined for ghost atoms.
-
-*Fix qeq CG convergence failed (%g) after %d iterations at %ld step*
- Self-explanatory.
-
-*Fix qeq has non-zero lower Taper radius cutoff*
- Absolute value must be <= 0.01.
-
-*Fix qeq has very low Taper radius cutoff*
- Value should typically be >= 5.0.
-
-*Fix qeq/dynamic tolerance may be too small for damped dynamics*
- Self-explanatory.
-
-*Fix qeq/fire tolerance may be too small for damped fires*
- Self-explanatory.
-
-*Fix rattle should come after all other integration fixes*
- This fix is designed to work after all other integration fixes change
- atom positions. Thus it should be the last integration fix specified.
- If not, it will not satisfy the desired constraints as well as it
- otherwise would.
-
-*Fix recenter should come after all other integration fixes*
- Other fixes may change the position of the center-of-mass, so
- fix recenter should come last.
-
-*Fix srd SRD moves may trigger frequent reneighboring*
- This is because the SRD particles may move long distances.
-
-*Fix srd grid size > 1/4 of big particle diameter*
- This may cause accuracy problems.
-
-*Fix srd particle moved outside valid domain*
- This may indicate a problem with your simulation parameters.
-
-*Fix srd particles may move > big particle diameter*
- This may cause accuracy problems.
-
-*Fix srd viscosity < 0.0 due to low SRD density*
- This may cause accuracy problems.
-
-*Fix thermal/conductivity comes before fix ave/spatial*
- The order of these 2 fixes in your input script is such that fix
- thermal/conductivity comes first. If you are using fix ave/spatial to
- measure the temperature profile induced by fix viscosity, then this
- may cause a glitch in the profile since you are averaging immediately
- after swaps have occurred. Flipping the order of the 2 fixes
- typically helps.
-
-*Fix viscosity comes before fix ave/spatial*
- The order of these 2 fixes in your input script is such that
- fix viscosity comes first. If you are using fix ave/spatial
- to measure the velocity profile induced by fix viscosity, then
- this may cause a glitch in the profile since you are averaging
- immediately after swaps have occurred. Flipping the order
- of the 2 fixes typically helps.
-
-*Fixes cannot send data in Kokkos communication, switching to classic communication*
- This is current restriction with Kokkos.
-
-*For better accuracy use 'pair_modify table 0'*
- The user-specified force accuracy cannot be achieved unless the table
- feature is disabled by using 'pair_modify table 0'.
-
-*Geometric mixing assumed for 1/r^6 coefficients*
- Self-explanatory.
-
-*Group for fix_modify temp != fix group*
- The fix_modify command is specifying a temperature computation that
- computes a temperature on a different group of atoms than the fix
- itself operates on. This is probably not what you want to do.
-
-*H matrix size has been exceeded: m_fill=%d H.m=%d\n*
- This is the size of the matrix.
-
-*Ignoring unknown or incorrect info command flag*
- Self-explanatory. An unknown argument was given to the info command.
- Compare your input with the documentation.
-
-*Improper atoms missing at step %ld*
- One or more of 4 atoms needed to compute a particular improper are
- missing on this processor. Typically this is because the pairwise
- cutoff is set too short or the improper has blown apart and an atom is
- too far away.
-
-*Improper problem: %d %ld %d %d %d %d*
- Conformation of the 4 listed improper atoms is extreme; you may want
- to check your simulation geometry.
-
-*Improper style in data file differs from currently defined improper style*
- Self-explanatory.
-
-*Inconsistent image flags*
- The image flags for a pair on bonded atoms appear to be inconsistent.
- Inconsistent means that when the coordinates of the two atoms are
- unwrapped using the image flags, the two atoms are far apart.
- Specifically they are further apart than half a periodic box length.
- Or they are more than a box length apart in a non-periodic dimension.
- This is usually due to the initial data file not having correct image
- flags for the 2 atoms in a bond that straddles a periodic boundary.
- They should be different by 1 in that case. This is a warning because
- inconsistent image flags will not cause problems for dynamics or most
- LAMMPS simulations. However they can cause problems when such atoms
- are used with the fix rigid or replicate commands. Note that if you
- have an infinite periodic crystal with bonds then it is impossible to
- have fully consistent image flags, since some bonds will cross
- periodic boundaries and connect two atoms with the same image
- flag.
-
-*KIM Model does not provide `energy'; Potential energy will be zero*
- Self-explanatory.
-
-*KIM Model does not provide `forces'; Forces will be zero*
- Self-explanatory.
-
-*KIM Model does not provide `particleEnergy'; energy per atom will be zero*
- Self-explanatory.
-
-*KIM Model does not provide `particleVirial'; virial per atom will be zero*
- Self-explanatory.
-
-*Kspace_modify slab param < 2.0 may cause unphysical behavior*
- The kspace_modify slab parameter should be larger to insure periodic
- grids padded with empty space do not overlap.
-
-*Less insertions than requested*
- The fix pour command was unsuccessful at finding open space
- for as many particles as it tried to insert.
-
-*Library error in lammps_gather_atoms*
- This library function cannot be used if atom IDs are not defined
- or are not consecutively numbered.
-
-*Library error in lammps_scatter_atoms*
- This library function cannot be used if atom IDs are not defined or
- are not consecutively numbered, or if no atom map is defined. See the
- atom_modify command for details about atom maps.
-
-*Lost atoms via change_box: original %ld current %ld*
- The command options you have used caused atoms to be lost.
-
-*Lost atoms via displace_atoms: original %ld current %ld*
- The command options you have used caused atoms to be lost.
-
-*Lost atoms: original %ld current %ld*
- Lost atoms are checked for each time thermo output is done. See the
- thermo_modify lost command for options. Lost atoms usually indicate
- bad dynamics, e.g. atoms have been blown far out of the simulation
- box, or moved futher than one processor's sub-domain away before
- reneighboring.
-
-*MSM mesh too small, increasing to 2 points in each direction*
- Self-explanatory.
-
-*Mismatch between velocity and compute groups*
- The temperature computation used by the velocity command will not be
- on the same group of atoms that velocities are being set for.
-
-*Mixing forced for lj coefficients*
- Self-explanatory.
-
-*Molecule attributes do not match system attributes*
- An attribute is specified (e.g. diameter, charge) that is
- not defined for the specified atom style.
-
-*Molecule has bond topology but no special bond settings*
- This means the bonded atoms will not be excluded in pair-wise
- interactions.
-
-*Molecule template for create_atoms has multiple molecules*
- The create_atoms command will only create molecules of a single type,
- i.e. the first molecule in the template.
-
-*Molecule template for fix gcmc has multiple molecules*
- The fix gcmc command will only create molecules of a single type,
- i.e. the first molecule in the template.
-
-*Molecule template for fix shake has multiple molecules*
- The fix shake command will only recoginze molecules of a single
- type, i.e. the first molecule in the template.
-
-*More than one compute centro/atom*
- It is not efficient to use compute centro/atom more than once.
-
-*More than one compute cluster/atom*
- It is not efficient to use compute cluster/atom more than once.
-
-*More than one compute cna/atom defined*
- It is not efficient to use compute cna/atom more than once.
-
-*More than one compute contact/atom*
- It is not efficient to use compute contact/atom more than once.
-
-*More than one compute coord/atom*
- It is not efficient to use compute coord/atom more than once.
-
-*More than one compute damage/atom*
- It is not efficient to use compute ke/atom more than once.
-
-*More than one compute dilatation/atom*
- Self-explanatory.
-
-*More than one compute erotate/sphere/atom*
- It is not efficient to use compute erorate/sphere/atom more than once.
-
-*More than one compute hexorder/atom*
- It is not efficient to use compute hexorder/atom more than once.
-
-*More than one compute ke/atom*
- It is not efficient to use compute ke/atom more than once.
-
-*More than one compute orientorder/atom*
- It is not efficient to use compute orientorder/atom more than once.
-
-*More than one compute plasticity/atom*
- Self-explanatory.
-
-*More than one compute sna/atom*
- Self-explanatory.
-
-*More than one compute snad/atom*
- Self-explanatory.
-
-*More than one compute snav/atom*
- Self-explanatory.
-
-*More than one fix poems*
- It is not efficient to use fix poems more than once.
-
-*More than one fix rigid*
- It is not efficient to use fix rigid more than once.
-
-*Neighbor exclusions used with KSpace solver may give inconsistent Coulombic energies*
- This is because excluding specific pair interactions also excludes
- them from long-range interactions which may not be the desired effect.
- The special_bonds command handles this consistently by insuring
- excluded (or weighted) 1-2, 1-3, 1-4 interactions are treated
- consistently by both the short-range pair style and the long-range
- solver. This is not done for exclusions of charged atom pairs via the
- neigh_modify exclude command.
-
-*New thermo_style command, previous thermo_modify settings will be lost*
- If a thermo_style command is used after a thermo_modify command, the
- settings changed by the thermo_modify command will be reset to their
- default values. This is because the thermo_modify commmand acts on
- the currently defined thermo style, and a thermo_style command creates
- a new style.
-
-*No Kspace calculation with verlet/split*
- The 2nd partition performs a kspace calculation so the kspace_style
- command must be used.
-
-*No automatic unit conversion to XTC file format conventions possible for units lj*
- This means no scaling will be performed.
-
-*No fixes defined, atoms won't move*
- If you are not using a fix like nve, nvt, npt then atom velocities and
- coordinates will not be updated during timestepping.
-
-*No joints between rigid bodies, use fix rigid instead*
- The bodies defined by fix poems are not connected by joints. POEMS
- will integrate the body motion, but it would be more efficient to use
- fix rigid.
-
-*Not using real units with pair reax*
- This is most likely an error, unless you have created your own ReaxFF
- parameter file in a different set of units.
-
-*Number of MSM mesh points changed to be a multiple of 2*
- MSM requires that the number of grid points in each direction be a multiple
- of two and the number of grid points in one or more directions have been
- adjusted to meet this requirement.
-
-*OMP_NUM_THREADS environment is not set.*
- This environment variable must be set appropriately to use the
- USER-OMP package.
-
-*One or more atoms are time integrated more than once*
- This is probably an error since you typically do not want to
- advance the positions or velocities of an atom more than once
- per timestep.
-
-*One or more chunks do not contain all atoms in molecule*
- This may not be what you intended.
-
-*One or more dynamic groups may not be updated at correct point in timestep*
- If there are other fixes that act immediately after the intitial stage
- of time integration within a timestep (i.e. after atoms move), then
- the command that sets up the dynamic group should appear after those
- fixes. This will insure that dynamic group assignements are made
- after all atoms have moved.
-
-*One or more respa levels compute no forces*
- This is computationally inefficient.
-
-*Pair COMB charge %.10f with force %.10f hit max barrier*
- Something is possibly wrong with your model.
-
-*Pair COMB charge %.10f with force %.10f hit min barrier*
- Something is possibly wrong with your model.
-
-*Pair brownian needs newton pair on for momentum conservation*
- Self-explanatory.
-
-*Pair dpd needs newton pair on for momentum conservation*
- Self-explanatory.
-
-*Pair dsmc: num_of_collisions > number_of_A*
- Collision model in DSMC is breaking down.
-
-*Pair dsmc: num_of_collisions > number_of_B*
- Collision model in DSMC is breaking down.
-
-*Pair style in data file differs from currently defined pair style*
- Self-explanatory.
-
-*Particle deposition was unsuccessful*
- The fix deposit command was not able to insert as many atoms as
- needed. The requested volume fraction may be too high, or other atoms
- may be in the insertion region.
-
-*Proc sub-domain size < neighbor skin, could lead to lost atoms*
- The decomposition of the physical domain (likely due to load
- balancing) has led to a processor's sub-domain being smaller than the
- neighbor skin in one or more dimensions. Since reneighboring is
- triggered by atoms moving the skin distance, this may lead to lost
- atoms, if an atom moves all the way across a neighboring processor's
- sub-domain before reneighboring is triggered.
-
-*Reducing PPPM order b/c stencil extends beyond nearest neighbor processor*
- This may lead to a larger grid than desired. See the kspace_modify overlap
- command to prevent changing of the PPPM order.
-
-*Reducing PPPMDisp Coulomb order b/c stencil extends beyond neighbor processor*
- This may lead to a larger grid than desired. See the kspace_modify overlap
- command to prevent changing of the PPPM order.
-
-*Reducing PPPMDisp dispersion order b/c stencil extends beyond neighbor processor*
- This may lead to a larger grid than desired. See the kspace_modify overlap
- command to prevent changing of the PPPM order.
-
-*Replacing a fix, but new group != old group*
- The ID and style of a fix match for a fix you are changing with a fix
- command, but the new group you are specifying does not match the old
- group.
-
-*Replicating in a non-periodic dimension*
- The parameters for a replicate command will cause a non-periodic
- dimension to be replicated; this may cause unwanted behavior.
-
-*Resetting reneighboring criteria during PRD*
- A PRD simulation requires that neigh_modify settings be delay = 0,
- every = 1, check = yes. Since these settings were not in place,
- LAMMPS changed them and will restore them to their original values
- after the PRD simulation.
-
-*Resetting reneighboring criteria during TAD*
- A TAD simulation requires that neigh_modify settings be delay = 0,
- every = 1, check = yes. Since these settings were not in place,
- LAMMPS changed them and will restore them to their original values
- after the PRD simulation.
-
-*Resetting reneighboring criteria during minimization*
- Minimization requires that neigh_modify settings be delay = 0, every =
- 1, check = yes. Since these settings were not in place, LAMMPS
- changed them and will restore them to their original values after the
- minimization.
-
-*Restart file used different # of processors*
- The restart file was written out by a LAMMPS simulation running on a
- different number of processors. Due to round-off, the trajectories of
- your restarted simulation may diverge a little more quickly than if
- you ran on the same # of processors.
-
-*Restart file used different 3d processor grid*
- The restart file was written out by a LAMMPS simulation running on a
- different 3d grid of processors. Due to round-off, the trajectories
- of your restarted simulation may diverge a little more quickly than if
- you ran on the same # of processors.
-
-*Restart file used different boundary settings, using restart file values*
- Your input script cannot change these restart file settings.
-
-*Restart file used different newton bond setting, using restart file value*
- The restart file value will override the setting in the input script.
-
-*Restart file used different newton pair setting, using input script value*
- The input script value will override the setting in the restart file.
-
-*Restrain problem: %d %ld %d %d %d %d*
- Conformation of the 4 listed dihedral atoms is extreme; you may want
- to check your simulation geometry.
-
-*Running PRD with only one replica*
- This is allowed, but you will get no parallel speed-up.
-
-*SRD bin shifting turned on due to small lamda*
- This is done to try to preserve accuracy.
-
-*SRD bin size for fix srd differs from user request*
- Fix SRD had to adjust the bin size to fit the simulation box. See the
- cubic keyword if you want this message to be an error vs warning.
-
-*SRD bins for fix srd are not cubic enough*
- The bin shape is not within tolerance of cubic. See the cubic
- keyword if you want this message to be an error vs warning.
-
-*SRD particle %d started inside big particle %d on step %ld bounce %d*
- See the inside keyword if you want this message to be an error vs
- warning.
-
-*SRD particle %d started inside wall %d on step %ld bounce %d*
- See the inside keyword if you want this message to be an error vs
- warning.
-
-*Shake determinant < 0.0*
- The determinant of the quadratic equation being solved for a single
- cluster specified by the fix shake command is numerically suspect. LAMMPS
- will set it to 0.0 and continue.
-
-*Shell command '%s' failed with error '%s'*
- Self-explanatory.
-
-*Shell command returned with non-zero status*
- This may indicate the shell command did not operate as expected.
-
-*Should not allow rigid bodies to bounce off relecting walls*
- LAMMPS allows this, but their dynamics are not computed correctly.
-
-*Should not use fix nve/limit with fix shake or fix rattle*
- This will lead to invalid constraint forces in the SHAKE/RATTLE
- computation.
-
-*Simulations might be very slow because of large number of structure factors*
- Self-explanatory.
-
-*Slab correction not needed for MSM*
- Slab correction is intended to be used with Ewald or PPPM and is not needed by MSM.
-
-*System is not charge neutral, net charge = %g*
- The total charge on all atoms on the system is not 0.0.
- For some KSpace solvers this is only a warning.
-
-*Table inner cutoff >= outer cutoff*
- You specified an inner cutoff for a Coulombic table that is longer
- than the global cutoff. Probably not what you wanted.
-
-*Temperature for MSST is not for group all*
- User-assigned temperature to MSST fix does not compute temperature for
- all atoms. Since MSST computes a global pressure, the kinetic energy
- contribution from the temperature is assumed to also be for all atoms.
- Thus the pressure used by MSST could be inaccurate.
-
-*Temperature for NPT is not for group all*
- User-assigned temperature to NPT fix does not compute temperature for
- all atoms. Since NPT computes a global pressure, the kinetic energy
- contribution from the temperature is assumed to also be for all atoms.
- Thus the pressure used by NPT could be inaccurate.
-
-*Temperature for fix modify is not for group all*
- The temperature compute is being used with a pressure calculation
- which does operate on group all, so this may be inconsistent.
-
-*Temperature for thermo pressure is not for group all*
- User-assigned temperature to thermo via the thermo_modify command does
- not compute temperature for all atoms. Since thermo computes a global
- pressure, the kinetic energy contribution from the temperature is
- assumed to also be for all atoms. Thus the pressure printed by thermo
- could be inaccurate.
-
-*The fix ave/spatial command has been replaced by the more flexible fix ave/chunk and compute chunk/atom commands -- fix ave/spatial will be removed in the summer of 2015*
- Self-explanatory.
-
-*The minimizer does not re-orient dipoles when using fix efield*
- This means that only the atom coordinates will be minimized,
- not the orientation of the dipoles.
-
-*Too many common neighbors in CNA %d times*
- More than the maximum # of neighbors was found multiple times. This
- was unexpected.
-
-*Too many inner timesteps in fix ttm*
- Self-explanatory.
-
-*Too many neighbors in CNA for %d atoms*
- More than the maximum # of neighbors was found multiple times. This
- was unexpected.
-
-*Triclinic box skew is large*
- The displacement in a skewed direction is normally required to be less
- than half the box length in that dimension. E.g. the xy tilt must be
- between -half and +half of the x box length. You have relaxed the
- constraint using the box tilt command, but the warning means that a
- LAMMPS simulation may be inefficient as a result.
-
-*Use special bonds = 0,1,1 with bond style fene*
- Most FENE models need this setting for the special_bonds command.
-
-*Use special bonds = 0,1,1 with bond style fene/expand*
- Most FENE models need this setting for the special_bonds command.
-
-*Using a manybody potential with bonds/angles/dihedrals and special_bond exclusions*
- This is likely not what you want to do. The exclusion settings will
- eliminate neighbors in the neighbor list, which the manybody potential
- needs to calculated its terms correctly.
-
-*Using compute temp/deform with inconsistent fix deform remap option*
- Fix nvt/sllod assumes deforming atoms have a velocity profile provided
- by "remap v" or "remap none" as a fix deform option.
-
-*Using compute temp/deform with no fix deform defined*
- This is probably an error, since it makes little sense to use
- compute temp/deform in this case.
-
-*Using fix srd with box deformation but no SRD thermostat*
- The deformation will heat the SRD particles so this can
- be dangerous.
-
-*Using kspace solver on system with no charge*
- Self-explanatory.
-
-*Using largest cut-off for lj/long/dipole/long long long*
- Self-explanatory.
-
-*Using largest cutoff for buck/long/coul/long*
- Self-exlanatory.
-
-*Using largest cutoff for lj/long/coul/long*
- Self-explanatory.
-
-*Using largest cutoff for pair_style lj/long/tip4p/long*
- Self-explanatory.
-
-*Using package gpu without any pair style defined*
- Self-explanatory.
-
-*Using pair potential shift with pair_modify compute no*
- The shift effects will thus not be computed.
-
-*Using pair tail corrections with nonperiodic system*
- This is probably a bogus thing to do, since tail corrections are
- computed by integrating the density of a periodic system out to
- infinity.
-
-*Using pair tail corrections with pair_modify compute no*
- The tail corrections will thus not be computed.
-
-*pair style reax is now deprecated and will soon be retired. Users should switch to pair_style reax/c*
- Self-explanatory.
-
-
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_example.txt b/doc/_sources/Section_example.txt
deleted file mode 100644
index 2e44b4fc9..000000000
--- a/doc/_sources/Section_example.txt
+++ /dev/null
@@ -1,199 +0,0 @@
-Example problems
-================
-
-The LAMMPS distribution includes an examples sub-directory with many
-sample problems. Many are 2d models that run quickly are are
-straightforward to visualize, requiring at most a couple of minutes to
-run on a desktop machine. Each problem has an input script (in.*) and
-produces a log file (log.*) when it runs. Some use a data file
-(data.*) of initial coordinates as additional input. A few sample log
-file run on different machines and different numbers of processors are
-included in the directories to compare your answers to. E.g. a log
-file like log.date.crack.foo.P means the "crack" example was run on P
-processors of machine "foo" on that date (i.e. with that version of
-LAMMPS).
-
-Many of the input files have commented-out lines for creating dump
-files and image files.
-
-If you uncomment the :doc:`dump <dump>` command in the input script, a
-text dump file will be produced, which can be animated by various
-`visualization programs <http://lammps.sandia.gov/viz.html>`_. It can
-also be animated using the xmovie tool described in the :doc:`Additional Tools <Section_tools>` section of the LAMMPS documentation.
-
-If you uncomment the :doc:`dump image <dump>` command in the input
-script, and assuming you have built LAMMPS with a JPG library, JPG
-snapshot images will be produced when the simulation runs. They can
-be quickly post-processed into a movie using commands described on the
-:doc:`dump image <dump_image>` doc page.
-
-Animations of many of the examples can be viewed on the Movies section
-of the `LAMMPS web site <lws_>`_.
-
-There are two kinds of sub-directories in the examples dir. Lowercase
-dirs contain one or a few simple, quick-to-run problems. Uppercase
-dirs contain up to several complex scripts that illustrate a
-particular kind of simulation method or model. Some of these run for
-longer times, e.g. to measure a particular quantity.
-
-Lists of both kinds of directories are given below.
-
-
-----------
-
-
-Lowercase directories
----------------------
-
-+-------------+------------------------------------------------------------------+
-| accelerate | run with various acceleration options (OpenMP, GPU, Phi) |
-+-------------+------------------------------------------------------------------+
-| balance | dynamic load balancing, 2d system |
-+-------------+------------------------------------------------------------------+
-| body | body particles, 2d system |
-+-------------+------------------------------------------------------------------+
-| colloid | big colloid particles in a small particle solvent, 2d system |
-+-------------+------------------------------------------------------------------+
-| comb | models using the COMB potential |
-+-------------+------------------------------------------------------------------+
-| coreshell | core/shell model using CORESHELL package |
-+-------------+------------------------------------------------------------------+
-| crack | crack propagation in a 2d solid |
-+-------------+------------------------------------------------------------------+
-| cuda | use of the USER-CUDA package for GPU acceleration |
-+-------------+------------------------------------------------------------------+
-| deposit | deposit atoms and molecules on a surface |
-+-------------+------------------------------------------------------------------+
-| dipole | point dipolar particles, 2d system |
-+-------------+------------------------------------------------------------------+
-| dreiding | methanol via Dreiding FF |
-+-------------+------------------------------------------------------------------+
-| eim | NaCl using the EIM potential |
-+-------------+------------------------------------------------------------------+
-| ellipse | ellipsoidal particles in spherical solvent, 2d system |
-+-------------+------------------------------------------------------------------+
-| flow | Couette and Poiseuille flow in a 2d channel |
-+-------------+------------------------------------------------------------------+
-| friction | frictional contact of spherical asperities between 2d surfaces |
-+-------------+------------------------------------------------------------------+
-| hugoniostat | Hugoniostat shock dynamics |
-+-------------+------------------------------------------------------------------+
-| indent | spherical indenter into a 2d solid |
-+-------------+------------------------------------------------------------------+
-| kim | use of potentials in Knowledge Base for Interatomic Models (KIM) |
-+-------------+------------------------------------------------------------------+
-| meam | MEAM test for SiC and shear (same as shear examples) |
-+-------------+------------------------------------------------------------------+
-| melt | rapid melt of 3d LJ system |
-+-------------+------------------------------------------------------------------+
-| micelle | self-assembly of small lipid-like molecules into 2d bilayers |
-+-------------+------------------------------------------------------------------+
-| min | energy minimization of 2d LJ melt |
-+-------------+------------------------------------------------------------------+
-| msst | MSST shock dynamics |
-+-------------+------------------------------------------------------------------+
-| nb3b | use of nonbonded 3-body harmonic pair style |
-+-------------+------------------------------------------------------------------+
-| neb | nudged elastic band (NEB) calculation for barrier finding |
-+-------------+------------------------------------------------------------------+
-| nemd | non-equilibrium MD of 2d sheared system |
-+-------------+------------------------------------------------------------------+
-| obstacle | flow around two voids in a 2d channel |
-+-------------+------------------------------------------------------------------+
-| peptide | dynamics of a small solvated peptide chain (5-mer) |
-+-------------+------------------------------------------------------------------+
-| peri | Peridynamic model of cylinder impacted by indenter |
-+-------------+------------------------------------------------------------------+
-| pour | pouring of granular particles into a 3d box, then chute flow |
-+-------------+------------------------------------------------------------------+
-| prd | parallel replica dynamics of vacancy diffusion in bulk Si |
-+-------------+------------------------------------------------------------------+
-| python | using embedded Python in a LAMMPS input script |
-+-------------+------------------------------------------------------------------+
-| qeq | use of the QEQ package for charge equilibration |
-+-------------+------------------------------------------------------------------+
-| reax | RDX and TATB models using the ReaxFF |
-+-------------+------------------------------------------------------------------+
-| rigid | rigid bodies modeled as independent or coupled |
-+-------------+------------------------------------------------------------------+
-| shear | sideways shear applied to 2d solid, with and without a void |
-+-------------+------------------------------------------------------------------+
-| snap | NVE dynamics for BCC tantalum crystal using SNAP potential |
-+-------------+------------------------------------------------------------------+
-| srd | stochastic rotation dynamics (SRD) particles as solvent |
-+-------------+------------------------------------------------------------------+
-| streitz | use of Streitz/Mintmire potential with charge equilibration |
-+-------------+------------------------------------------------------------------+
-| tad | temperature-accelerated dynamics of vacancy diffusion in bulk Si |
-+-------------+------------------------------------------------------------------+
-| vashishta | use of the Vashishta potential |
-+-------------+------------------------------------------------------------------+
-
-Here is how you can run and visualize one of the sample problems:
-
-.. parsed-literal::
-
- cd indent
- cp ../../src/lmp_linux . # copy LAMMPS executable to this dir
- lmp_linux -in in.indent # run the problem
-
-Running the simulation produces the files *dump.indent* and
-*log.lammps*. You can visualize the dump file of snapshots with a
-variety of 3rd-party tools highlighted on the
-`Visualization <http://lammps.sandia.gov/viz.html>`_ page of the LAMMPS
-web site.
-
-If you uncomment the :doc:`dump image <dump_image>` line(s) in the input
-script a series of JPG images will be produced by the run (assuming
-you built LAMMPS with JPG support; see :doc:`Section start 2.2 <Section_start>` for details). These can be viewed
-individually or turned into a movie or animated by tools like
-ImageMagick or QuickTime or various Windows-based tools. See the
-:doc:`dump image <dump_image>` doc page for more details. E.g. this
-Imagemagick command would create a GIF file suitable for viewing in a
-browser.
-
-.. parsed-literal::
-
- % convert -loop 1 *.jpg foo.gif
-
-
-----------
-
-
-Uppercase directories
----------------------
-
-+-----------+--------------------------------------------------------------------------------------------------+
-| ASPHERE | various aspherical particle models, using ellipsoids, rigid bodies, line/triangle particles, etc |
-+-----------+--------------------------------------------------------------------------------------------------+
-| COUPLE | examples of how to use LAMMPS as a library |
-+-----------+--------------------------------------------------------------------------------------------------+
-| DIFFUSE | compute diffusion coefficients via several methods |
-+-----------+--------------------------------------------------------------------------------------------------+
-| ELASTIC | compute elastic constants at zero temperature |
-+-----------+--------------------------------------------------------------------------------------------------+
-| ELASTIC_T | compute elastic constants at finite temperature |
-+-----------+--------------------------------------------------------------------------------------------------+
-| KAPPA | compute thermal conductivity via several methods |
-+-----------+--------------------------------------------------------------------------------------------------+
-| MC | using LAMMPS in a Monte Carlo mode to relax the energy of a system |
-+-----------+--------------------------------------------------------------------------------------------------+
-| USER | examples for USER packages and USER-contributed commands |
-+-----------+--------------------------------------------------------------------------------------------------+
-| VISCOSITY | compute viscosity via several methods |
-+-----------+--------------------------------------------------------------------------------------------------+
-
-Nearly all of these directories have README files which give more
-details on how to understand and use their contents.
-
-The USER directory has a large number of sub-directories which
-correspond by name to a USER package. They contain scripts that
-illustrate how to use the command(s) provided in that package. Many
-of the sub-directories have their own README files which give further
-instructions. See the :doc:`Section packages <Section_packages>` doc
-page for more info on specific USER packages.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_history.txt b/doc/_sources/Section_history.txt
deleted file mode 100644
index 29fc2d422..000000000
--- a/doc/_sources/Section_history.txt
+++ /dev/null
@@ -1,127 +0,0 @@
-Future and history
-==================
-
-This section lists features we plan to add to LAMMPS, features of
-previous versions of LAMMPS, and features of other parallel molecular
-dynamics codes our group has distributed.
-
-| 13.1 :ref:`Coming attractions <hist_1>`
-| 13.2 :ref:`Past versions <hist_2>`
-|
-
-
-
-
-
-.. _hist_1:
-
-Coming attractions
--------------------------------
-
-The `Wish list link <http://lammps.sandia.gov/future.html>`_ on the
-LAMMPS WWW page gives a list of features we are hoping to add to
-LAMMPS in the future, including contact names of individuals you can
-email if you are interested in contributing to the developement or
-would be a future user of that feature.
-
-You can also send `email to the developers <http://lammps.sandia.gov/authors.html>`_ if you want to add
-your wish to the list.
-
-
-----------
-
-
-.. _hist_2:
-
-Past versions
---------------------------
-
-LAMMPS development began in the mid 1990s under a cooperative research
-& development agreement (CRADA) between two DOE labs (Sandia and LLNL)
-and 3 companies (Cray, Bristol Myers Squibb, and Dupont). The goal was
-to develop a large-scale parallel classical MD code; the coding effort
-was led by Steve Plimpton at Sandia.
-
-After the CRADA ended, a final F77 version, LAMMPS 99, was
-released. As development of LAMMPS continued at Sandia, its memory
-management was converted to F90; a final F90 version was released as
-LAMMPS 2001.
-
-The current LAMMPS is a rewrite in C++ and was first publicly released
-as an open source code in 2004. It includes many new features beyond
-those in LAMMPS 99 or 2001. It also includes features from older
-parallel MD codes written at Sandia, namely ParaDyn, Warp, and
-GranFlow (see below).
-
-In late 2006 we began merging new capabilities into LAMMPS that were
-developed by Aidan Thompson at Sandia for his MD code GRASP, which has
-a parallel framework similar to LAMMPS. Most notably, these have
-included many-body potentials - Stillinger-Weber, Tersoff, ReaxFF -
-and the associated charge-equilibration routines needed for ReaxFF.
-
-The `History link <http://lammps.sandia.gov/history.html>`_ on the
-LAMMPS WWW page gives a timeline of features added to the
-C++ open-source version of LAMMPS over the last several years.
-
-These older codes are available for download from the `LAMMPS WWW site <lws_>`_, except for Warp & GranFlow which were primarily used
-internally. A brief listing of their features is given here.
-
-LAMMPS 2001
-
-* F90 + MPI
-* dynamic memory
-* spatial-decomposition parallelism
-* NVE, NVT, NPT, NPH, rRESPA integrators
-* LJ and Coulombic pairwise force fields
-* all-atom, united-atom, bead-spring polymer force fields
-* CHARMM-compatible force fields
-* class 2 force fields
-* 3d/2d Ewald & PPPM
-* various force and temperature constraints
-* SHAKE
-* Hessian-free truncated-Newton minimizer
-* user-defined diagnostics
-
-LAMMPS 99
-
-* F77 + MPI
-* static memory allocation
-* spatial-decomposition parallelism
-* most of the LAMMPS 2001 features with a few exceptions
-* no 2d Ewald & PPPM
-* molecular force fields are missing a few CHARMM terms
-* no SHAKE
-
-Warp
-
-* F90 + MPI
-* spatial-decomposition parallelism
-* embedded atom method (EAM) metal potentials + LJ
-* lattice and grain-boundary atom creation
-* NVE, NVT integrators
-* boundary conditions for applying shear stresses
-* temperature controls for actively sheared systems
-* per-atom energy and centro-symmetry computation and output
-
-ParaDyn
-
-* F77 + MPI
-* atom- and force-decomposition parallelism
-* embedded atom method (EAM) metal potentials
-* lattice atom creation
-* NVE, NVT, NPT integrators
-* all serial DYNAMO features for controls and constraints
-
-GranFlow
-
-* F90 + MPI
-* spatial-decomposition parallelism
-* frictional granular potentials
-* NVE integrator
-* boundary conditions for granular flow and packing and walls
-* particle insertion
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_howto.txt b/doc/_sources/Section_howto.txt
deleted file mode 100644
index 3ca5f6ea4..000000000
--- a/doc/_sources/Section_howto.txt
+++ /dev/null
@@ -1,3110 +0,0 @@
-How-to discussions
-==================
-
-This section describes how to perform common tasks using LAMMPS.
-
-| 6.1 :ref:`Restarting a simulation <howto_1>`
-| 6.2 :ref:`2d simulations <howto_2>`
-| 6.3 :ref:`CHARMM, AMBER, and DREIDING force fields <howto_3>`
-| 6.4 :ref:`Running multiple simulations from one input script <howto_4>`
-| 6.5 :ref:`Multi-replica simulations <howto_5>`
-| 6.6 :ref:`Granular models <howto_6>`
-| 6.7 :ref:`TIP3P water model <howto_7>`
-| 6.8 :ref:`TIP4P water model <howto_8>`
-| 6.9 :ref:`SPC water model <howto_9>`
-| 6.10 :ref:`Coupling LAMMPS to other codes <howto_10>`
-| 6.11 :ref:`Visualizing LAMMPS snapshots <howto_11>`
-| 6.12 :ref:`Triclinic (non-orthogonal) simulation boxes <howto_12>`
-| 6.13 :ref:`NEMD simulations <howto_13>`
-| 6.14 :ref:`Finite-size spherical and aspherical particles <howto_14>`
-| 6.15 :ref:`Output from LAMMPS (thermo, dumps, computes, fixes, variables) <howto_15>`
-| 6.16 :ref:`Thermostatting, barostatting and computing temperature <howto_16>`
-| 6.17 :ref:`Walls <howto_17>`
-| 6.18 :ref:`Elastic constants <howto_18>`
-| 6.19 :ref:`Library interface to LAMMPS <howto_19>`
-| 6.20 :ref:`Calculating thermal conductivity <howto_20>`
-| 6.21 :ref:`Calculating viscosity <howto_21>`
-| 6.22 :ref:`Calculating a diffusion coefficient <howto_22>`
-| 6.23 :ref:`Using chunks to calculate system properties <howto_23>`
-| 6.24 :ref:`Setting parameters for the kspace_style pppm/disp command <howto_24>`
-| 6.25 :ref:`Polarizable models <howto_25>`
-| 6.26 :ref:`Adiabatic core/shell model <howto_26>`
-| 6.27 :ref:`Drude induced dipoles <howto_27>`
-|
-
-The example input scripts included in the LAMMPS distribution and
-highlighted in :doc:`Section_example <Section_example>` also show how to
-setup and run various kinds of simulations.
-
-
-
-
-
-.. _howto_1:
-
-Restarting a simulation
------------------------
-
-There are 3 ways to continue a long LAMMPS simulation. Multiple
-:doc:`run <run>` commands can be used in the same input script. Each
-run will continue from where the previous run left off. Or binary
-restart files can be saved to disk using the :doc:`restart <restart>`
-command. At a later time, these binary files can be read via a
-:doc:`read_restart <read_restart>` command in a new script. Or they can
-be converted to text data files using the :ref:`-r command-line switch <start_7>` and read by a
-:doc:`read_data <read_data>` command in a new script.
-
-Here we give examples of 2 scripts that read either a binary restart
-file or a converted data file and then issue a new run command to
-continue where the previous run left off. They illustrate what
-settings must be made in the new script. Details are discussed in the
-documentation for the :doc:`read_restart <read_restart>` and
-:doc:`read_data <read_data>` commands.
-
-Look at the *in.chain* input script provided in the *bench* directory
-of the LAMMPS distribution to see the original script that these 2
-scripts are based on. If that script had the line
-
-.. parsed-literal::
-
- restart 50 tmp.restart
-
-added to it, it would produce 2 binary restart files (tmp.restart.50
-and tmp.restart.100) as it ran.
-
-This script could be used to read the 1st restart file and re-run the
-last 50 timesteps:
-
-.. parsed-literal::
-
- read_restart tmp.restart.50
-
-.. parsed-literal::
-
- neighbor 0.4 bin
- neigh_modify every 1 delay 1
-
-.. parsed-literal::
-
- fix 1 all nve
- fix 2 all langevin 1.0 1.0 10.0 904297
-
-.. parsed-literal::
-
- timestep 0.012
-
-.. parsed-literal::
-
- run 50
-
-Note that the following commands do not need to be repeated because
-their settings are included in the restart file: *units, atom_style,
-special_bonds, pair_style, bond_style*. However these commands do
-need to be used, since their settings are not in the restart file:
-*neighbor, fix, timestep*.
-
-If you actually use this script to perform a restarted run, you will
-notice that the thermodynamic data match at step 50 (if you also put a
-"thermo 50" command in the original script), but do not match at step
-100. This is because the :doc:`fix langevin <fix_langevin>` command
-uses random numbers in a way that does not allow for perfect restarts.
-
-As an alternate approach, the restart file could be converted to a data
-file as follows:
-
-.. parsed-literal::
-
- lmp_g++ -r tmp.restart.50 tmp.restart.data
-
-Then, this script could be used to re-run the last 50 steps:
-
-.. parsed-literal::
-
- units lj
- atom_style bond
- pair_style lj/cut 1.12
- pair_modify shift yes
- bond_style fene
- special_bonds 0.0 1.0 1.0
-
-.. parsed-literal::
-
- read_data tmp.restart.data
-
-.. parsed-literal::
-
- neighbor 0.4 bin
- neigh_modify every 1 delay 1
-
-.. parsed-literal::
-
- fix 1 all nve
- fix 2 all langevin 1.0 1.0 10.0 904297
-
-.. parsed-literal::
-
- timestep 0.012
-
-.. parsed-literal::
-
- reset_timestep 50
- run 50
-
-Note that nearly all the settings specified in the original *in.chain*
-script must be repeated, except the *pair_coeff* and *bond_coeff*
-commands since the new data file lists the force field coefficients.
-Also, the :doc:`reset_timestep <reset_timestep>` command is used to tell
-LAMMPS the current timestep. This value is stored in restart files,
-but not in data files.
-
-
-----------
-
-
-.. _howto_2:
-
-2d simulations
---------------
-
-Use the :doc:`dimension <dimension>` command to specify a 2d simulation.
-
-Make the simulation box periodic in z via the :doc:`boundary <boundary>`
-command. This is the default.
-
-If using the :doc:`create box <create_box>` command to define a
-simulation box, set the z dimensions narrow, but finite, so that the
-create_atoms command will tile the 3d simulation box with a single z
-plane of atoms - e.g.
-
-.. parsed-literal::
-
- :doc:`create box <create_box>` 1 -10 10 -10 10 -0.25 0.25
-
-If using the :doc:`read data <read_data>` command to read in a file of
-atom coordinates, set the "zlo zhi" values to be finite but narrow,
-similar to the create_box command settings just described. For each
-atom in the file, assign a z coordinate so it falls inside the
-z-boundaries of the box - e.g. 0.0.
-
-Use the :doc:`fix enforce2d <fix_enforce2d>` command as the last
-defined fix to insure that the z-components of velocities and forces
-are zeroed out every timestep. The reason to make it the last fix is
-so that any forces induced by other fixes will be zeroed out.
-
-Many of the example input scripts included in the LAMMPS distribution
-are for 2d models.
-
-.. note::
-
- Some models in LAMMPS treat particles as finite-size spheres, as
- opposed to point particles. In 2d, the particles will still be
- spheres, not disks, meaning their moment of inertia will be the same
- as in 3d.
-
-
-----------
-
-
-.. _howto_3:
-
-CHARMM, AMBER, and DREIDING force fields
-----------------------------------------
-
-A force field has 2 parts: the formulas that define it and the
-coefficients used for a particular system. Here we only discuss
-formulas implemented in LAMMPS that correspond to formulas commonly
-used in the CHARMM, AMBER, and DREIDING force fields. Setting
-coefficients is done in the input data file via the
-:doc:`read_data <read_data>` command or in the input script with
-commands like :doc:`pair_coeff <pair_coeff>` or
-:doc:`bond_coeff <bond_coeff>`. See :doc:`Section_tools <Section_tools>`
-for additional tools that can use CHARMM or AMBER to assign force
-field coefficients and convert their output into LAMMPS input.
-
-See :ref:`(MacKerell) <MacKerell>` for a description of the CHARMM force
-field. See :ref:`(Cornell) <Cornell>` for a description of the AMBER force
-field.
-
-.. _charmm: http://www.scripps.edu/brooks
-
-
-
-.. _amber: http://amber.scripps.edu
-
-
-
-These style choices compute force field formulas that are consistent
-with common options in CHARMM or AMBER. See each command's
-documentation for the formula it computes.
-
-* :doc:`bond_style <bond_harmonic>` harmonic
-* :doc:`angle_style <angle_charmm>` charmm
-* :doc:`dihedral_style <dihedral_charmm>` charmm
-* :doc:`pair_style <pair_charmm>` lj/charmm/coul/charmm
-* :doc:`pair_style <pair_charmm>` lj/charmm/coul/charmm/implicit
-* :doc:`pair_style <pair_charmm>` lj/charmm/coul/long
-
-* :doc:`special_bonds <special_bonds>` charmm
-* :doc:`special_bonds <special_bonds>` amber
-
-DREIDING is a generic force field developed by the `Goddard group <http://www.wag.caltech.edu>`_ at Caltech and is useful for
-predicting structures and dynamics of organic, biological and
-main-group inorganic molecules. The philosophy in DREIDING is to use
-general force constants and geometry parameters based on simple
-hybridization considerations, rather than individual force constants
-and geometric parameters that depend on the particular combinations of
-atoms involved in the bond, angle, or torsion terms. DREIDING has an
-:doc:`explicit hydrogen bond term <pair_hbond_dreiding>` to describe
-interactions involving a hydrogen atom on very electronegative atoms
-(N, O, F).
-
-See :ref:`(Mayo) <Mayo>` for a description of the DREIDING force field
-
-These style choices compute force field formulas that are consistent
-with the DREIDING force field. See each command's
-documentation for the formula it computes.
-
-* :doc:`bond_style <bond_harmonic>` harmonic
-* :doc:`bond_style <bond_morse>` morse
-
-* :doc:`angle_style <angle_harmonic>` harmonic
-* :doc:`angle_style <angle_cosine>` cosine
-* :doc:`angle_style <angle_cosine_periodic>` cosine/periodic
-
-* :doc:`dihedral_style <dihedral_charmm>` charmm
-* :doc:`improper_style <improper_umbrella>` umbrella
-
-* :doc:`pair_style <pair_buck>` buck
-* :doc:`pair_style <pair_buck>` buck/coul/cut
-* :doc:`pair_style <pair_buck>` buck/coul/long
-* :doc:`pair_style <pair_lj>` lj/cut
-* :doc:`pair_style <pair_lj>` lj/cut/coul/cut
-* :doc:`pair_style <pair_lj>` lj/cut/coul/long
-
-* :doc:`pair_style <pair_hbond_dreiding>` hbond/dreiding/lj
-* :doc:`pair_style <pair_hbond_dreiding>` hbond/dreiding/morse
-
-* :doc:`special_bonds <special_bonds>` dreiding
-
-
-----------
-
-
-.. _howto_4:
-
-Running multiple simulations from one input script
---------------------------------------------------
-
-This can be done in several ways. See the documentation for
-individual commands for more details on how these examples work.
-
-If "multiple simulations" means continue a previous simulation for
-more timesteps, then you simply use the :doc:`run <run>` command
-multiple times. For example, this script
-
-.. parsed-literal::
-
- units lj
- atom_style atomic
- read_data data.lj
- run 10000
- run 10000
- run 10000
- run 10000
- run 10000
-
-would run 5 successive simulations of the same system for a total of
-50,000 timesteps.
-
-If you wish to run totally different simulations, one after the other,
-the :doc:`clear <clear>` command can be used in between them to
-re-initialize LAMMPS. For example, this script
-
-.. parsed-literal::
-
- units lj
- atom_style atomic
- read_data data.lj
- run 10000
- clear
- units lj
- atom_style atomic
- read_data data.lj.new
- run 10000
-
-would run 2 independent simulations, one after the other.
-
-For large numbers of independent simulations, you can use
-:doc:`variables <variable>` and the :doc:`next <next>` and
-:doc:`jump <jump>` commands to loop over the same input script
-multiple times with different settings. For example, this
-script, named in.polymer
-
-.. parsed-literal::
-
- variable d index run1 run2 run3 run4 run5 run6 run7 run8
- shell cd $d
- read_data data.polymer
- run 10000
- shell cd ..
- clear
- next d
- jump in.polymer
-
-would run 8 simulations in different directories, using a data.polymer
-file in each directory. The same concept could be used to run the
-same system at 8 different temperatures, using a temperature variable
-and storing the output in different log and dump files, for example
-
-.. parsed-literal::
-
- variable a loop 8
- variable t index 0.8 0.85 0.9 0.95 1.0 1.05 1.1 1.15
- log log.$a
- read data.polymer
- velocity all create $t 352839
- fix 1 all nvt $t $t 100.0
- dump 1 all atom 1000 dump.$a
- run 100000
- clear
- next t
- next a
- jump in.polymer
-
-All of the above examples work whether you are running on 1 or
-multiple processors, but assumed you are running LAMMPS on a single
-partition of processors. LAMMPS can be run on multiple partitions via
-the "-partition" command-line switch as described in :ref:`this section <start_7>` of the manual.
-
-In the last 2 examples, if LAMMPS were run on 3 partitions, the same
-scripts could be used if the "index" and "loop" variables were
-replaced with *universe*-style variables, as described in the
-:doc:`variable <variable>` command. Also, the "next t" and "next a"
-commands would need to be replaced with a single "next a t" command.
-With these modifications, the 8 simulations of each script would run
-on the 3 partitions one after the other until all were finished.
-Initially, 3 simulations would be started simultaneously, one on each
-partition. When one finished, that partition would then start
-the 4th simulation, and so forth, until all 8 were completed.
-
-
-----------
-
-
-.. _howto_5:
-
-Multi-replica simulations
--------------------------
-
-Several commands in LAMMPS run mutli-replica simulations, meaning
-that multiple instances (replicas) of your simulation are run
-simultaneously, with small amounts of data exchanged between replicas
-periodically.
-
-These are the relevant commands:
-
-* :doc:`neb <neb>` for nudged elastic band calculations
-* :doc:`prd <prd>` for parallel replica dynamics
-* :doc:`tad <tad>` for temperature accelerated dynamics
-* :doc:`temper <temper>` for parallel tempering
-* :doc:`fix pimd <fix_pimd>` for path-integral molecular dynamics (PIMD)
-
-NEB is a method for finding transition states and barrier energies.
-PRD and TAD are methods for performing accelerated dynamics to find
-and perform infrequent events. Parallel tempering or replica exchange
-runs different replicas at a series of temperature to facilitate
-rare-event sampling.
-
-These commands can only be used if LAMMPS was built with the REPLICA
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-PIMD runs different replicas whose individual particles are coupled
-together by springs to model a system or ring-polymers.
-
-This commands can only be used if LAMMPS was built with the USER-MISC
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-In all these cases, you must run with one or more processors per
-replica. The processors assigned to each replica are determined at
-run-time by using the :ref:`-partition command-line switch <start_7>` to launch LAMMPS on multiple
-partitions, which in this context are the same as replicas. E.g.
-these commands:
-
-.. parsed-literal::
-
- mpirun -np 16 lmp_linux -partition 8x2 -in in.temper
- mpirun -np 8 lmp_linux -partition 8x1 -in in.neb
-
-would each run 8 replicas, on either 16 or 8 processors. Note the use
-of the :ref:`-in command-line switch <start_7>` to specify
-the input script which is required when running in multi-replica mode.
-
-Also note that with MPI installed on a machine (e.g. your desktop),
-you can run on more (virtual) processors than you have physical
-processors. Thus the above commands could be run on a
-single-processor (or few-processor) desktop so that you can run
-a multi-replica simulation on more replicas than you have
-physical processors.
-
-
-----------
-
-
-.. _howto_6:
-
-Granular models
----------------
-
-Granular system are composed of spherical particles with a diameter,
-as opposed to point particles. This means they have an angular
-velocity and torque can be imparted to them to cause them to rotate.
-
-To run a simulation of a granular model, you will want to use
-the following commands:
-
-* :doc:`atom_style sphere <atom_style>`
-* :doc:`fix nve/sphere <fix_nve_sphere>`
-* :doc:`fix gravity <fix_gravity>`
-
-This compute
-
-* :doc:`compute erotate/sphere <compute_erotate_sphere>`
-
-calculates rotational kinetic energy which can be :ref:`output with thermodynamic info <howto_15>`.
-
-Use one of these 3 pair potentials, which compute forces and torques
-between interacting pairs of particles:
-
-* :doc:`pair_style <pair_style>` gran/history
-* :doc:`pair_style <pair_style>` gran/no_history
-* :doc:`pair_style <pair_style>` gran/hertzian
-
-These commands implement fix options specific to granular systems:
-
-* :doc:`fix freeze <fix_freeze>`
-* :doc:`fix pour <fix_pour>`
-* :doc:`fix viscous <fix_viscous>`
-* :doc:`fix wall/gran <fix_wall_gran>`
-
-The fix style *freeze* zeroes both the force and torque of frozen
-atoms, and should be used for granular system instead of the fix style
-*setforce*.
-
-For computational efficiency, you can eliminate needless pairwise
-computations between frozen atoms by using this command:
-
-* :doc:`neigh_modify <neigh_modify>` exclude
-
-
-----------
-
-
-.. _howto_7:
-
-TIP3P water model
------------------
-
-The TIP3P water model as implemented in CHARMM
-:ref:`(MacKerell) <MacKerell>` specifies a 3-site rigid water molecule with
-charges and Lennard-Jones parameters assigned to each of the 3 atoms.
-In LAMMPS the :doc:`fix shake <fix_shake>` command can be used to hold
-the two O-H bonds and the H-O-H angle rigid. A bond style of
-*harmonic* and an angle style of *harmonic* or *charmm* should also be
-used.
-
-These are the additional parameters (in real units) to set for O and H
-atoms and the water molecule to run a rigid TIP3P-CHARMM model with a
-cutoff. The K values can be used if a flexible TIP3P model (without
-fix shake) is desired. If the LJ epsilon and sigma for HH and OH are
-set to 0.0, it corresponds to the original 1983 TIP3P model
-:ref:`(Jorgensen) <Jorgensen>`.
-
-| O mass = 15.9994
-| H mass = 1.008
-| O charge = -0.834
-| H charge = 0.417
-| LJ epsilon of OO = 0.1521
-| LJ sigma of OO = 3.1507
-| LJ epsilon of HH = 0.0460
-| LJ sigma of HH = 0.4000
-| LJ epsilon of OH = 0.0836
-| LJ sigma of OH = 1.7753
-| K of OH bond = 450
-| r0 of OH bond = 0.9572
-| K of HOH angle = 55
-| theta of HOH angle = 104.52
-|
-
-These are the parameters to use for TIP3P with a long-range Coulombic
-solver (e.g. Ewald or PPPM in LAMMPS), see :ref:`(Price) <Price>` for
-details:
-
-| O mass = 15.9994
-| H mass = 1.008
-| O charge = -0.830
-| H charge = 0.415
-| LJ epsilon of OO = 0.102
-| LJ sigma of OO = 3.188
-| LJ epsilon, sigma of OH, HH = 0.0
-| K of OH bond = 450
-| r0 of OH bond = 0.9572
-| K of HOH angle = 55
-| theta of HOH angle = 104.52
-|
-
-Wikipedia also has a nice article on `water models <http://en.wikipedia.org/wiki/Water_model>`_.
-
-
-----------
-
-
-.. _howto_8:
-
-TIP4P water model
------------------
-
-The four-point TIP4P rigid water model extends the traditional
-three-point TIP3P model by adding an additional site, usually
-massless, where the charge associated with the oxygen atom is placed.
-This site M is located at a fixed distance away from the oxygen along
-the bisector of the HOH bond angle. A bond style of *harmonic* and an
-angle style of *harmonic* or *charmm* should also be used.
-
-A TIP4P model is run with LAMMPS using either this command
-for a cutoff model:
-
-:doc:`pair_style lj/cut/tip4p/cut <pair_lj>`
-
-or these two commands for a long-range model:
-
-* :doc:`pair_style lj/cut/tip4p/long <pair_lj>`
-* :doc:`kspace_style pppm/tip4p <kspace_style>`
-
-For both models, the bond lengths and bond angles should be held fixed
-using the :doc:`fix shake <fix_shake>` command.
-
-These are the additional parameters (in real units) to set for O and H
-atoms and the water molecule to run a rigid TIP4P model with a cutoff
-:ref:`(Jorgensen) <Jorgensen>`. Note that the OM distance is specified in
-the :doc:`pair_style <pair_style>` command, not as part of the pair
-coefficients.
-
-| O mass = 15.9994
-| H mass = 1.008
-| O charge = -1.040
-| H charge = 0.520
-| r0 of OH bond = 0.9572
-| theta of HOH angle = 104.52
-| OM distance = 0.15
-| LJ epsilon of O-O = 0.1550
-| LJ sigma of O-O = 3.1536
-| LJ epsilon, sigma of OH, HH = 0.0
-| Coulombic cutoff = 8.5
-|
-
-For the TIP4/Ice model (J Chem Phys, 122, 234511 (2005);
-http://dx.doi.org/10.1063/1.1931662) these values can be used:
-
-| O mass = 15.9994
-| H mass = 1.008
-| O charge = -1.1794
-| H charge = 0.5897
-| r0 of OH bond = 0.9572
-| theta of HOH angle = 104.52
-| OM distance = 0.1577
-| LJ epsilon of O-O = 0.21084
-| LJ sigma of O-O = 3.1668
-| LJ epsilon, sigma of OH, HH = 0.0
-| Coulombic cutoff = 8.5
-|
-
-For the TIP4P/2005 model (J Chem Phys, 123, 234505 (2005);
-http://dx.doi.org/10.1063/1.2121687), these values can be used:
-
-| O mass = 15.9994
-| H mass = 1.008
-| O charge = -1.1128
-| H charge = 0.5564
-| r0 of OH bond = 0.9572
-| theta of HOH angle = 104.52
-| OM distance = 0.1546
-| LJ epsilon of O-O = 0.1852
-| LJ sigma of O-O = 3.1589
-| LJ epsilon, sigma of OH, HH = 0.0
-| Coulombic cutoff = 8.5
-|
-
-These are the parameters to use for TIP4P with a long-range Coulombic
-solver (e.g. Ewald or PPPM in LAMMPS):
-
-| O mass = 15.9994
-| H mass = 1.008
-| O charge = -1.0484
-| H charge = 0.5242
-| r0 of OH bond = 0.9572
-| theta of HOH angle = 104.52
-| OM distance = 0.1250
-| LJ epsilon of O-O = 0.16275
-| LJ sigma of O-O = 3.16435
-| LJ epsilon, sigma of OH, HH = 0.0
-|
-
-Note that the when using the TIP4P pair style, the neighobr list
-cutoff for Coulomb interactions is effectively extended by a distance
-2 * (OM distance), to account for the offset distance of the
-fictitious charges on O atoms in water molecules. Thus it is
-typically best in an efficiency sense to use a LJ cutoff >= Coulomb
-cutoff + 2*(OM distance), to shrink the size of the neighbor list.
-This leads to slightly larger cost for the long-range calculation, so
-you can test the trade-off for your model. The OM distance and the LJ
-and Coulombic cutoffs are set in the :doc:`pair_style lj/cut/tip4p/long <pair_lj>` command.
-
-Wikipedia also has a nice article on `water models <http://en.wikipedia.org/wiki/Water_model>`_.
-
-
-----------
-
-
-.. _howto_9:
-
-SPC water model
----------------
-
-The SPC water model specifies a 3-site rigid water molecule with
-charges and Lennard-Jones parameters assigned to each of the 3 atoms.
-In LAMMPS the :doc:`fix shake <fix_shake>` command can be used to hold
-the two O-H bonds and the H-O-H angle rigid. A bond style of
-*harmonic* and an angle style of *harmonic* or *charmm* should also be
-used.
-
-These are the additional parameters (in real units) to set for O and H
-atoms and the water molecule to run a rigid SPC model.
-
-| O mass = 15.9994
-| H mass = 1.008
-| O charge = -0.820
-| H charge = 0.410
-| LJ epsilon of OO = 0.1553
-| LJ sigma of OO = 3.166
-| LJ epsilon, sigma of OH, HH = 0.0
-| r0 of OH bond = 1.0
-| theta of HOH angle = 109.47
-|
-
-Note that as originally proposed, the SPC model was run with a 9
-Angstrom cutoff for both LJ and Coulommbic terms. It can also be used
-with long-range Coulombics (Ewald or PPPM in LAMMPS), without changing
-any of the parameters above, though it becomes a different model in
-that mode of usage.
-
-The SPC/E (extended) water model is the same, except
-the partial charge assignemnts change:
-
-| O charge = -0.8476
-| H charge = 0.4238
-|
-
-See the :ref:`(Berendsen) <Berendsen>` reference for more details on both
-the SPC and SPC/E models.
-
-Wikipedia also has a nice article on `water models <http://en.wikipedia.org/wiki/Water_model>`_.
-
-
-----------
-
-
-.. _howto_10:
-
-Coupling LAMMPS to other codes
-------------------------------
-
-LAMMPS is designed to allow it to be coupled to other codes. For
-example, a quantum mechanics code might compute forces on a subset of
-atoms and pass those forces to LAMMPS. Or a continuum finite element
-(FE) simulation might use atom positions as boundary conditions on FE
-nodal points, compute a FE solution, and return interpolated forces on
-MD atoms.
-
-LAMMPS can be coupled to other codes in at least 3 ways. Each has
-advantages and disadvantages, which you'll have to think about in the
-context of your application.
-
-(1) Define a new :doc:`fix <fix>` command that calls the other code. In
-this scenario, LAMMPS is the driver code. During its timestepping,
-the fix is invoked, and can make library calls to the other code,
-which has been linked to LAMMPS as a library. This is the way the
-`POEMS <poems_>`_ package that performs constrained rigid-body motion on
-groups of atoms is hooked to LAMMPS. See the
-:doc:`fix poems <fix_poems>` command for more details. See :doc:`this section <Section_modify>` of the documentation for info on how to add
-a new fix to LAMMPS.
-
-.. _poems: http://www.rpi.edu/~anderk5/lab
-
-
-
-(2) Define a new LAMMPS command that calls the other code. This is
-conceptually similar to method (1), but in this case LAMMPS and the
-other code are on a more equal footing. Note that now the other code
-is not called during the timestepping of a LAMMPS run, but between
-runs. The LAMMPS input script can be used to alternate LAMMPS runs
-with calls to the other code, invoked via the new command. The
-:doc:`run <run>` command facilitates this with its *every* option, which
-makes it easy to run a few steps, invoke the command, run a few steps,
-invoke the command, etc.
-
-In this scenario, the other code can be called as a library, as in
-(1), or it could be a stand-alone code, invoked by a system() call
-made by the command (assuming your parallel machine allows one or more
-processors to start up another program). In the latter case the
-stand-alone code could communicate with LAMMPS thru files that the
-command writes and reads.
-
-See :doc:`Section_modify <Section_modify>` of the documentation for how
-to add a new command to LAMMPS.
-
-(3) Use LAMMPS as a library called by another code. In this case the
-other code is the driver and calls LAMMPS as needed. Or a wrapper
-code could link and call both LAMMPS and another code as libraries.
-Again, the :doc:`run <run>` command has options that allow it to be
-invoked with minimal overhead (no setup or clean-up) if you wish to do
-multiple short runs, driven by another program.
-
-Examples of driver codes that call LAMMPS as a library are included in
-the examples/COUPLE directory of the LAMMPS distribution; see
-examples/COUPLE/README for more details:
-
-* simple: simple driver programs in C++ and C which invoke LAMMPS as a
- library
-* lammps_quest: coupling of LAMMPS and `Quest <quest_>`_, to run classical
- MD with quantum forces calculated by a density functional code
-* lammps_spparks: coupling of LAMMPS and `SPPARKS <spparks_>`_, to couple
- a kinetic Monte Carlo model for grain growth using MD to calculate
- strain induced across grain boundaries
-.. _quest: http://dft.sandia.gov/Quest
-
-
-
-.. _spparks: http://www.sandia.gov/~sjplimp/spparks.html
-
-
-
-:ref:`This section <start_5>` of the documentation
-describes how to build LAMMPS as a library. Once this is done, you
-can interface with LAMMPS either via C++, C, Fortran, or Python (or
-any other language that supports a vanilla C-like interface). For
-example, from C++ you could create one (or more) "instances" of
-LAMMPS, pass it an input script to process, or execute individual
-commands, all by invoking the correct class methods in LAMMPS. From C
-or Fortran you can make function calls to do the same things. See
-:doc:`Section_python <Section_python>` of the manual for a description
-of the Python wrapper provided with LAMMPS that operates through the
-LAMMPS library interface.
-
-The files src/library.cpp and library.h contain the C-style interface
-to LAMMPS. See :ref:`Section_howto 19 <howto_19>` of the
-manual for a description of the interface and how to extend it for
-your needs.
-
-Note that the lammps_open() function that creates an instance of
-LAMMPS takes an MPI communicator as an argument. This means that
-instance of LAMMPS will run on the set of processors in the
-communicator. Thus the calling code can run LAMMPS on all or a subset
-of processors. For example, a wrapper script might decide to
-alternate between LAMMPS and another code, allowing them both to run
-on all the processors. Or it might allocate half the processors to
-LAMMPS and half to the other code and run both codes simultaneously
-before syncing them up periodically. Or it might instantiate multiple
-instances of LAMMPS to perform different calculations.
-
-
-----------
-
-
-.. _howto_11:
-
-Visualizing LAMMPS snapshots
-----------------------------
-
-LAMMPS itself does not do visualization, but snapshots from LAMMPS
-simulations can be visualized (and analyzed) in a variety of ways.
-
-LAMMPS snapshots are created by the :doc:`dump <dump>` command which can
-create files in several formats. The native LAMMPS dump format is a
-text file (see "dump atom" or "dump custom") which can be visualized
-by the :ref:`xmovie <xmovie>` program, included with the
-LAMMPS package. This produces simple, fast 2d projections of 3d
-systems, and can be useful for rapid debugging of simulation geometry
-and atom trajectories.
-
-Several programs included with LAMMPS as auxiliary tools can convert
-native LAMMPS dump files to other formats. See the
-:doc:`Section_tools <Section_tools>` doc page for details. The first is
-the :ref:`ch2lmp tool <charmm>`, which contains a
-lammps2pdb Perl script which converts LAMMPS dump files into PDB
-files. The second is the :ref:`lmp2arc tool <arc>` which
-converts LAMMPS dump files into Accelrys' Insight MD program files.
-The third is the :ref:`lmp2cfg tool <cfg>` which converts
-LAMMPS dump files into CFG files which can be read into the
-`AtomEye <atomeye_>`_ visualizer.
-
-A Python-based toolkit distributed by our group can read native LAMMPS
-dump files, including custom dump files with additional columns of
-user-specified atom information, and convert them to various formats
-or pipe them into visualization software directly. See the `Pizza.py WWW site <pizza_>`_ for details. Specifically, Pizza.py can convert
-LAMMPS dump files into PDB, XYZ, `Ensight <ensight_>`_, and VTK formats.
-Pizza.py can pipe LAMMPS dump files directly into the Raster3d and
-RasMol visualization programs. Pizza.py has tools that do interactive
-3d OpenGL visualization and one that creates SVG images of dump file
-snapshots.
-
-LAMMPS can create XYZ files directly (via "dump xyz") which is a
-simple text-based file format used by many visualization programs
-including `VMD <vmd_>`_.
-
-LAMMPS can create DCD files directly (via "dump dcd") which can be
-read by `VMD <vmd_>`_ in conjunction with a CHARMM PSF file. Using this
-form of output avoids the need to convert LAMMPS snapshots to PDB
-files. See the :doc:`dump <dump>` command for more information on DCD
-files.
-
-LAMMPS can create XTC files directly (via "dump xtc") which is GROMACS
-file format which can also be read by `VMD <vmd_>`_ for visualization.
-See the :doc:`dump <dump>` command for more information on XTC files.
-
-.. _pizza: http://www.sandia.gov/~sjplimp/pizza.html
-
-
-
-.. _vmd: http://www.ks.uiuc.edu/Research/vmd
-
-
-
-.. _ensight: http://www.ensight.com
-
-
-
-.. _atomeye: http://mt.seas.upenn.edu/Archive/Graphics/A
-
-
-
-
-----------
-
-
-.. _howto_12:
-
-Triclinic (non-orthogonal) simulation boxes
--------------------------------------------
-
-By default, LAMMPS uses an orthogonal simulation box to encompass the
-particles. The :doc:`boundary <boundary>` command sets the boundary
-conditions of the box (periodic, non-periodic, etc). The orthogonal
-box has its "origin" at (xlo,ylo,zlo) and is defined by 3 edge vectors
-starting from the origin given by **a** = (xhi-xlo,0,0); **b** =
-(0,yhi-ylo,0); **c** = (0,0,zhi-zlo). The 6 parameters
-(xlo,xhi,ylo,yhi,zlo,zhi) are defined at the time the simulation box
-is created, e.g. by the :doc:`create_box <create_box>` or
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands. Additionally, LAMMPS defines box size parameters lx,ly,lz
-where lx = xhi-xlo, and similarly in the y and z dimensions. The 6
-parameters, as well as lx,ly,lz, can be output via the :doc:`thermo_style custom <thermo_style>` command.
-
-LAMMPS also allows simulations to be performed in triclinic
-(non-orthogonal) simulation boxes shaped as a parallelepiped with
-triclinic symmetry. The parallelepiped has its "origin" at
-(xlo,ylo,zlo) and is defined by 3 edge vectors starting from the
-origin given by **a** = (xhi-xlo,0,0); **b** = (xy,yhi-ylo,0); **c** =
-(xz,yz,zhi-zlo). *xy,xz,yz* can be 0.0 or positive or negative values
-and are called "tilt factors" because they are the amount of
-displacement applied to faces of an originally orthogonal box to
-transform it into the parallelepiped. In LAMMPS the triclinic
-simulation box edge vectors **a**, **b**, and **c** cannot be arbitrary
-vectors. As indicated, **a** must lie on the positive x axis. **b** must
-lie in the xy plane, with strictly positive y component. **c** may have
-any orientation with strictly positive z component. The requirement
-that **a**, **b**, and **c** have strictly positive x, y, and z components,
-respectively, ensures that **a**, **b**, and **c** form a complete
-right-handed basis. These restrictions impose no loss of generality,
-since it is possible to rotate/invert any set of 3 crystal basis
-vectors so that they conform to the restrictions.
-
-For example, assume that the 3 vectors **A**,**B**,**C** are the edge
-vectors of a general parallelepiped, where there is no restriction on
-**A**,**B**,**C** other than they form a complete right-handed basis i.e.
-**A** x **B** . **C** > 0. The equivalent LAMMPS **a**,**b**,**c** are a linear
-rotation of **A**, **B**, and **C** and can be computed as follows:
-
-.. image:: Eqs/transform.jpg
- :align: center
-
-where A = |**A**| indicates the scalar length of **A**. The ^ hat symbol
-indicates the corresponding unit vector. *beta* and *gamma* are angles
-between the vectors described below. Note that by construction,
-**a**, **b**, and **c** have strictly positive x, y, and z components, respectively.
-If it should happen that
-**A**, **B**, and **C** form a left-handed basis, then the above equations
-are not valid for **c**. In this case, it is necessary
-to first apply an inversion. This can be achieved
-by interchanging two basis vectors or by changing the sign of one of them.
-
-For consistency, the same rotation/inversion applied to the basis vectors
-must also be applied to atom positions, velocities,
-and any other vector quantities.
-This can be conveniently achieved by first converting to
-fractional coordinates in the
-old basis and then converting to distance coordinates in the new basis.
-The transformation is given by the following equation:
-
-.. image:: Eqs/rotate.jpg
- :align: center
-
-where *V* is the volume of the box, **X** is the original vector quantity and
-**x** is the vector in the LAMMPS basis.
-
-There is no requirement that a triclinic box be periodic in any
-dimension, though it typically should be in at least the 2nd dimension
-of the tilt (y in xy) if you want to enforce a shift in periodic
-boundary conditions across that boundary. Some commands that work
-with triclinic boxes, e.g. the :doc:`fix deform <fix_deform>` and :doc:`fix npt <fix_nh>` commands, require periodicity or non-shrink-wrap
-boundary conditions in specific dimensions. See the command doc pages
-for details.
-
-The 9 parameters (xlo,xhi,ylo,yhi,zlo,zhi,xy,xz,yz) are defined at the
-time the simluation box is created. This happens in one of 3 ways.
-If the :doc:`create_box <create_box>` command is used with a region of
-style *prism*, then a triclinic box is setup. See the
-:doc:`region <region>` command for details. If the
-:doc:`read_data <read_data>` command is used to define the simulation
-box, and the header of the data file contains a line with the "xy xz
-yz" keyword, then a triclinic box is setup. See the
-:doc:`read_data <read_data>` command for details. Finally, if the
-:doc:`read_restart <read_restart>` command reads a restart file which
-was written from a simulation using a triclinic box, then a triclinic
-box will be setup for the restarted simulation.
-
-Note that you can define a triclinic box with all 3 tilt factors =
-0.0, so that it is initially orthogonal. This is necessary if the box
-will become non-orthogonal, e.g. due to the :doc:`fix npt <fix_nh>` or
-:doc:`fix deform <fix_deform>` commands. Alternatively, you can use the
-:doc:`change_box <change_box>` command to convert a simulation box from
-orthogonal to triclinic and vice versa.
-
-As with orthogonal boxes, LAMMPS defines triclinic box size parameters
-lx,ly,lz where lx = xhi-xlo, and similarly in the y and z dimensions.
-The 9 parameters, as well as lx,ly,lz, can be output via the
-:doc:`thermo_style custom <thermo_style>` command.
-
-To avoid extremely tilted boxes (which would be computationally
-inefficient), LAMMPS normally requires that no tilt factor can skew
-the box more than half the distance of the parallel box length, which
-is the 1st dimension in the tilt factor (x for xz). This is required
-both when the simulation box is created, e.g. via the
-:doc:`create_box <create_box>` or :doc:`read_data <read_data>` commands,
-as well as when the box shape changes dynamically during a simulation,
-e.g. via the :doc:`fix deform <fix_deform>` or :doc:`fix npt <fix_nh>`
-commands.
-
-For example, if xlo = 2 and xhi = 12, then the x box length is 10 and
-the xy tilt factor must be between -5 and 5. Similarly, both xz and
-yz must be between -(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is
-not a limitation, since if the maximum tilt factor is 5 (as in this
-example), then configurations with tilt = ..., -15, -5, 5, 15, 25,
-... are geometrically all equivalent. If the box tilt exceeds this
-limit during a dynamics run (e.g. via the :doc:`fix deform <fix_deform>`
-command), then the box is "flipped" to an equivalent shape with a tilt
-factor within the bounds, so the run can continue. See the :doc:`fix deform <fix_deform>` doc page for further details.
-
-One exception to this rule is if the 1st dimension in the tilt
-factor (x for xy) is non-periodic. In that case, the limits on the
-tilt factor are not enforced, since flipping the box in that dimension
-does not change the atom positions due to non-periodicity. In this
-mode, if you tilt the system to extreme angles, the simulation will
-simply become inefficient, due to the highly skewed simulation box.
-
-The limitation on not creating a simulation box with a tilt factor
-skewing the box more than half the distance of the parallel box length
-can be overridden via the :doc:`box <box>` command. Setting the *tilt*
-keyword to *large* allows any tilt factors to be specified.
-
-Box flips that may occur using the :doc:`fix deform <fix_deform>` or
-:doc:`fix npt <fix_nh>` commands can be turned off using the *flip no*
-option with either of the commands.
-
-Note that if a simulation box has a large tilt factor, LAMMPS will run
-less efficiently, due to the large volume of communication needed to
-acquire ghost atoms around a processor's irregular-shaped sub-domain.
-For extreme values of tilt, LAMMPS may also lose atoms and generate an
-error.
-
-Triclinic crystal structures are often defined using three lattice
-constants *a*, *b*, and *c*, and three angles *alpha*, *beta* and
-*gamma*. Note that in this nomenclature, the a, b, and c lattice
-constants are the scalar lengths of the edge vectors **a**, **b**, and **c**
-defined above. The relationship between these 6 quantities
-(a,b,c,alpha,beta,gamma) and the LAMMPS box sizes (lx,ly,lz) =
-(xhi-xlo,yhi-ylo,zhi-zlo) and tilt factors (xy,xz,yz) is as follows:
-
-.. image:: Eqs/box.jpg
- :align: center
-
-The inverse relationship can be written as follows:
-
-.. image:: Eqs/box_inverse.jpg
- :align: center
-
-The values of *a*, *b*, *c* , *alpha*, *beta* , and *gamma* can be printed
-out or accessed by computes using the
-:doc:`thermo_style custom <thermo_style>` keywords
-*cella*, *cellb*, *cellc*, *cellalpha*, *cellbeta*, *cellgamma*,
-respectively.
-
-As discussed on the :doc:`dump <dump>` command doc page, when the BOX
-BOUNDS for a snapshot is written to a dump file for a triclinic box,
-an orthogonal bounding box which encloses the triclinic simulation box
-is output, along with the 3 tilt factors (xy, xz, yz) of the triclinic
-box, formatted as follows:
-
-.. parsed-literal::
-
- ITEM: BOX BOUNDS xy xz yz
- xlo_bound xhi_bound xy
- ylo_bound yhi_bound xz
- zlo_bound zhi_bound yz
-
-This bounding box is convenient for many visualization programs and is
-calculated from the 9 triclinic box parameters
-(xlo,xhi,ylo,yhi,zlo,zhi,xy,xz,yz) as follows:
-
-.. parsed-literal::
-
- xlo_bound = xlo + MIN(0.0,xy,xz,xy+xz)
- xhi_bound = xhi + MAX(0.0,xy,xz,xy+xz)
- ylo_bound = ylo + MIN(0.0,yz)
- yhi_bound = yhi + MAX(0.0,yz)
- zlo_bound = zlo
- zhi_bound = zhi
-
-These formulas can be inverted if you need to convert the bounding box
-back into the triclinic box parameters, e.g. xlo = xlo_bound -
-MIN(0.0,xy,xz,xy+xz).
-
-One use of triclinic simulation boxes is to model solid-state crystals
-with triclinic symmetry. The :doc:`lattice <lattice>` command can be
-used with non-orthogonal basis vectors to define a lattice that will
-tile a triclinic simulation box via the
-:doc:`create_atoms <create_atoms>` command.
-
-A second use is to run Parinello-Rahman dyanamics via the :doc:`fix npt <fix_nh>` command, which will adjust the xy, xz, yz tilt
-factors to compensate for off-diagonal components of the pressure
-tensor. The analalog for an :doc:`energy minimization <minimize>` is
-the :doc:`fix box/relax <fix_box_relax>` command.
-
-A third use is to shear a bulk solid to study the response of the
-material. The :doc:`fix deform <fix_deform>` command can be used for
-this purpose. It allows dynamic control of the xy, xz, yz tilt
-factors as a simulation runs. This is discussed in the next section
-on non-equilibrium MD (NEMD) simulations.
-
-
-----------
-
-
-.. _howto_13:
-
-NEMD simulations
-----------------
-
-Non-equilibrium molecular dynamics or NEMD simulations are typically
-used to measure a fluid's rheological properties such as viscosity.
-In LAMMPS, such simulations can be performed by first setting up a
-non-orthogonal simulation box (see the preceding Howto section).
-
-A shear strain can be applied to the simulation box at a desired
-strain rate by using the :doc:`fix deform <fix_deform>` command. The
-:doc:`fix nvt/sllod <fix_nvt_sllod>` command can be used to thermostat
-the sheared fluid and integrate the SLLOD equations of motion for the
-system. Fix nvt/sllod uses :doc:`compute temp/deform <compute_temp_deform>` to compute a thermal temperature
-by subtracting out the streaming velocity of the shearing atoms. The
-velocity profile or other properties of the fluid can be monitored via
-the :doc:`fix ave/spatial <fix_ave_spatial>` command.
-
-As discussed in the previous section on non-orthogonal simulation
-boxes, the amount of tilt or skew that can be applied is limited by
-LAMMPS for computational efficiency to be 1/2 of the parallel box
-length. However, :doc:`fix deform <fix_deform>` can continuously strain
-a box by an arbitrary amount. As discussed in the :doc:`fix deform <fix_deform>` command, when the tilt value reaches a limit,
-the box is flipped to the opposite limit which is an equivalent tiling
-of periodic space. The strain rate can then continue to change as
-before. In a long NEMD simulation these box re-shaping events may
-occur many times.
-
-In a NEMD simulation, the "remap" option of :doc:`fix deform <fix_deform>` should be set to "remap v", since that is what
-:doc:`fix nvt/sllod <fix_nvt_sllod>` assumes to generate a velocity
-profile consistent with the applied shear strain rate.
-
-An alternative method for calculating viscosities is provided via the
-:doc:`fix viscosity <fix_viscosity>` command.
-
-
-----------
-
-
-.. _howto_14:
-
-Finite-size spherical and aspherical particles
-----------------------------------------------
-
-Typical MD models treat atoms or particles as point masses. Sometimes
-it is desirable to have a model with finite-size particles such as
-spheroids or ellipsoids or generalized aspherical bodies. The
-difference is that such particles have a moment of inertia, rotational
-energy, and angular momentum. Rotation is induced by torque coming
-from interactions with other particles.
-
-LAMMPS has several options for running simulations with these kinds of
-particles. The following aspects are discussed in turn:
-
-* atom styles
-* pair potentials
-* time integration
-* computes, thermodynamics, and dump output
-* rigid bodies composed of finite-size particles
-
-Example input scripts for these kinds of models are in the body,
-colloid, dipole, ellipse, line, peri, pour, and tri directories of the
-:doc:`examples directory <Section_example>` in the LAMMPS distribution.
-
-Atom styles
-^^^^^^^^^^^
-
-There are several :doc:`atom styles <atom_style>` that allow for
-definition of finite-size particles: sphere, dipole, ellipsoid, line,
-tri, peri, and body.
-
-The sphere style defines particles that are spheriods and each
-particle can have a unique diameter and mass (or density). These
-particles store an angular velocity (omega) and can be acted upon by
-torque. The "set" command can be used to modify the diameter and mass
-of individual particles, after then are created.
-
-The dipole style does not actually define finite-size particles, but
-is often used in conjunction with spherical particles, via a command
-like
-
-.. parsed-literal::
-
- atom_style hybrid sphere dipole
-
-This is because when dipoles interact with each other, they induce
-torques, and a particle must be finite-size (i.e. have a moment of
-inertia) in order to respond and rotate. See the :doc:`atom_style dipole <atom_style>` command for details. The "set" command can be
-used to modify the orientation and length of the dipole moment of
-individual particles, after then are created.
-
-The ellipsoid style defines particles that are ellipsoids and thus can
-be aspherical. Each particle has a shape, specified by 3 diameters,
-and mass (or density). These particles store an angular momentum and
-their orientation (quaternion), and can be acted upon by torque. They
-do not store an angular velocity (omega), which can be in a different
-direction than angular momentum, rather they compute it as needed.
-The "set" command can be used to modify the diameter, orientation, and
-mass of individual particles, after then are created. It also has a
-brief explanation of what quaternions are.
-
-The line style defines line segment particles with two end points and
-a mass (or density). They can be used in 2d simulations, and they can
-be joined together to form rigid bodies which represent arbitrary
-polygons.
-
-The tri style defines triangular particles with three corner points
-and a mass (or density). They can be used in 3d simulations, and they
-can be joined together to form rigid bodies which represent arbitrary
-particles with a triangulated surface.
-
-The peri style is used with :doc:`Peridynamic models <pair_peri>` and
-defines particles as having a volume, that is used internally in the
-:doc:`pair_style peri <pair_peri>` potentials.
-
-The body style allows for definition of particles which can represent
-complex entities, such as surface meshes of discrete points,
-collections of sub-particles, deformable objects, etc. The body style
-is discussed in more detail on the :doc:`body <body>` doc page.
-
-Note that if one of these atom styles is used (or multiple styles via
-the :doc:`atom_style hybrid <atom_style>` command), not all particles in
-the system are required to be finite-size or aspherical.
-
-For example, in the ellipsoid style, if the 3 shape parameters are set
-to the same value, the particle will be a sphere rather than an
-ellipsoid. If the 3 shape parameters are all set to 0.0 or if the
-diameter is set to 0.0, it will be a point particle. In the line or
-tri style, if the lineflag or triflag is specified as 0, then it
-will be a point particle.
-
-Some of the pair styles used to compute pairwise interactions between
-finite-size particles also compute the correct interaction with point
-particles as well, e.g. the interaction between a point particle and a
-finite-size particle or between two point particles. If necessary,
-:doc:`pair_style hybrid <pair_hybrid>` can be used to insure the correct
-interactions are computed for the appropriate style of interactions.
-Likewise, using groups to partition particles (ellipsoids versus
-spheres versus point particles) will allow you to use the appropriate
-time integrators and temperature computations for each class of
-particles. See the doc pages for various commands for details.
-
-Also note that for :doc:`2d simulations <dimension>`, atom styles sphere
-and ellipsoid still use 3d particles, rather than as circular disks or
-ellipses. This means they have the same moment of inertia as the 3d
-object. When temperature is computed, the correct degrees of freedom
-are used for rotation in a 2d versus 3d system.
-
-Pair potentials
-^^^^^^^^^^^^^^^
-
-When a system with finite-size particles is defined, the particles
-will only rotate and experience torque if the force field computes
-such interactions. These are the various :doc:`pair styles <pair_style>` that generate torque:
-
-* :doc:`pair_style gran/history <pair_gran>`
-* :doc:`pair_style gran/hertzian <pair_gran>`
-* :doc:`pair_style gran/no_history <pair_gran>`
-* :doc:`pair_style dipole/cut <pair_dipole>`
-* :doc:`pair_style gayberne <pair_gayberne>`
-* :doc:`pair_style resquared <pair_resquared>`
-* :doc:`pair_style brownian <pair_brownian>`
-* :doc:`pair_style lubricate <pair_lubricate>`
-* :doc:`pair_style line/lj <pair_line_lj>`
-* :doc:`pair_style tri/lj <pair_tri_lj>`
-* :doc:`pair_style body <pair_body>`
-
-The granular pair styles are used with spherical particles. The
-dipole pair style is used with the dipole atom style, which could be
-applied to spherical or ellipsoidal particles. The GayBerne and
-REsquared potentials require ellipsoidal particles, though they will
-also work if the 3 shape parameters are the same (a sphere). The
-Brownian and lubrication potentials are used with spherical particles.
-The line, tri, and body potentials are used with line segment,
-triangular, and body particles respectively.
-
-Time integration
-^^^^^^^^^^^^^^^^
-
-There are several fixes that perform time integration on finite-size
-spherical particles, meaning the integrators update the rotational
-orientation and angular velocity or angular momentum of the particles:
-
-* :doc:`fix nve/sphere <fix_nve_sphere>`
-* :doc:`fix nvt/sphere <fix_nvt_sphere>`
-* :doc:`fix npt/sphere <fix_npt_sphere>`
-
-Likewise, there are 3 fixes that perform time integration on
-ellipsoidal particles:
-
-* :doc:`fix nve/asphere <fix_nve_asphere>`
-* :doc:`fix nvt/asphere <fix_nvt_asphere>`
-* :doc:`fix npt/asphere <fix_npt_asphere>`
-
-The advantage of these fixes is that those which thermostat the
-particles include the rotational degrees of freedom in the temperature
-calculation and thermostatting. The `fix langevin <fix_langevin>`_
-command can also be used with its *omgea* or *angmom* options to
-thermostat the rotational degrees of freedom for spherical or
-ellipsoidal particles. Other thermostatting fixes only operate on the
-translational kinetic energy of finite-size particles.
-
-These fixes perform constant NVE time integration on line segment,
-triangular, and body particles:
-
-* :doc:`fix nve/line <fix_nve_line>`
-* :doc:`fix nve/tri <fix_nve_tri>`
-* :doc:`fix nve/body <fix_nve_body>`
-
-Note that for mixtures of point and finite-size particles, these
-integration fixes can only be used with :doc:`groups <group>` which
-contain finite-size particles.
-
-Computes, thermodynamics, and dump output
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-There are several computes that calculate the temperature or
-rotational energy of spherical or ellipsoidal particles:
-
-* :doc:`compute temp/sphere <compute_temp_sphere>`
-* :doc:`compute temp/asphere <compute_temp_asphere>`
-* :doc:`compute erotate/sphere <compute_erotate_sphere>`
-* :doc:`compute erotate/asphere <compute_erotate_asphere>`
-
-These include rotational degrees of freedom in their computation. If
-you wish the thermodynamic output of temperature or pressure to use
-one of these computes (e.g. for a system entirely composed of
-finite-size particles), then the compute can be defined and the
-:doc:`thermo_modify <thermo_modify>` command used. Note that by default
-thermodynamic quantities will be calculated with a temperature that
-only includes translational degrees of freedom. See the
-:doc:`thermo_style <thermo_style>` command for details.
-
-These commands can be used to output various attributes of finite-size
-particles:
-
-* :doc:`dump custom <dump>`
-* :doc:`compute property/atom <compute_property_atom>`
-* :doc:`dump local <dump>`
-* :doc:`compute body/local <compute_body_local>`
-
-Attributes include the dipole moment, the angular velocity, the
-angular momentum, the quaternion, the torque, the end-point and
-corner-point coordinates (for line and tri particles), and
-sub-particle attributes of body particles.
-
-Rigid bodies composed of finite-size particles
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The :doc:`fix rigid <fix_rigid>` command treats a collection of
-particles as a rigid body, computes its inertia tensor, sums the total
-force and torque on the rigid body each timestep due to forces on its
-constituent particles, and integrates the motion of the rigid body.
-
-If any of the constituent particles of a rigid body are finite-size
-particles (spheres or ellipsoids or line segments or triangles), then
-their contribution to the inertia tensor of the body is different than
-if they were point particles. This means the rotational dynamics of
-the rigid body will be different. Thus a model of a dimer is
-different if the dimer consists of two point masses versus two
-spheroids, even if the two particles have the same mass. Finite-size
-particles that experience torque due to their interaction with other
-particles will also impart that torque to a rigid body they are part
-of.
-
-See the "fix rigid" command for example of complex rigid-body models
-it is possible to define in LAMMPS.
-
-Note that the :doc:`fix shake <fix_shake>` command can also be used to
-treat 2, 3, or 4 particles as a rigid body, but it always assumes the
-particles are point masses.
-
-Also note that body particles cannot be modeled with the :doc:`fix rigid <fix_rigid>` command. Body particles are treated by LAMMPS
-as single particles, though they can store internal state, such as a
-list of sub-particles. Individual body partices are typically treated
-as rigid bodies, and their motion integrated with a command like :doc:`fix nve/body <fix_nve_body>`. Interactions between pairs of body
-particles are computed via a command like :doc:`pair_style body <pair_body>`.
-
-
-----------
-
-
-.. _howto_15:
-
-Output from LAMMPS (thermo, dumps, computes, fixes, variables)
---------------------------------------------------------------
-
-There are four basic kinds of LAMMPS output:
-
-* :doc:`Thermodynamic output <thermo_style>`, which is a list
- of quantities printed every few timesteps to the screen and logfile.
-* :doc:`Dump files <dump>`, which contain snapshots of atoms and various
- per-atom values and are written at a specified frequency.
-* Certain fixes can output user-specified quantities to files: :doc:`fix ave/time <fix_ave_time>` for time averaging, :doc:`fix ave/chunk <fix_ave_chunk>` for spatial or other averaging, and :doc:`fix print <fix_print>` for single-line output of
- :doc:`variables <variable>`. Fix print can also output to the
- screen.
-* :doc:`Restart files <restart>`.
-A simulation prints one set of thermodynamic output and (optionally)
-restart files. It can generate any number of dump files and fix
-output files, depending on what :doc:`dump <dump>` and :doc:`fix <fix>`
-commands you specify.
-
-As discussed below, LAMMPS gives you a variety of ways to determine
-what quantities are computed and printed when the thermodynamics,
-dump, or fix commands listed above perform output. Throughout this
-discussion, note that users can also :doc:`add their own computes and fixes to LAMMPS <Section_modify>` which can then generate values that can
-then be output with these commands.
-
-The following sub-sections discuss different LAMMPS command related
-to output and the kind of data they operate on and produce:
-
-* :ref:`Global/per-atom/local data <global>`
-* :ref:`Scalar/vector/array data <scalar>`
-* :ref:`Thermodynamic output <thermo>`
-* :ref:`Dump file output <dump>`
-* :ref:`Fixes that write output files <fixoutput>`
-* :ref:`Computes that process output quantities <computeoutput>`
-* :ref:`Fixes that process output quantities <fixoutput>`
-* :ref:`Computes that generate values to output <compute>`
-* :ref:`Fixes that generate values to output <fix>`
-* :ref:`Variables that generate values to output <variable>`
-* :ref:`Summary table of output options and data flow between commands <table>`
-
-.. _global:
-
-Global/per-atom/local data
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Various output-related commands work with three different styles of
-data: global, per-atom, or local. A global datum is one or more
-system-wide values, e.g. the temperature of the system. A per-atom
-datum is one or more values per atom, e.g. the kinetic energy of each
-atom. Local datums are calculated by each processor based on the
-atoms it owns, but there may be zero or more per atom, e.g. a list of
-bond distances.
-
-.. _scalar:
-
-Scalar/vector/array data
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Global, per-atom, and local datums can each come in three kinds: a
-single scalar value, a vector of values, or a 2d array of values. The
-doc page for a "compute" or "fix" or "variable" that generates data
-will specify both the style and kind of data it produces, e.g. a
-per-atom vector.
-
-When a quantity is accessed, as in many of the output commands
-discussed below, it can be referenced via the following bracket
-notation, where ID in this case is the ID of a compute. The leading
-"c_" would be replaced by "f_" for a fix, or "v_" for a variable:
-
-+------------+--------------------------------------------+
-| c_ID | entire scalar, vector, or array |
-+------------+--------------------------------------------+
-| c_ID[I] | one element of vector, one column of array |
-+------------+--------------------------------------------+
-| c_ID[I][J] | one element of array |
-+------------+--------------------------------------------+
-
-In other words, using one bracket reduces the dimension of the data
-once (vector -> scalar, array -> vector). Using two brackets reduces
-the dimension twice (array -> scalar). Thus a command that uses
-scalar values as input can typically also process elements of a vector
-or array.
-
-.. _thermo:
-
-Thermodynamic output
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The frequency and format of thermodynamic output is set by the
-:doc:`thermo <thermo>`, :doc:`thermo_style <thermo_style>`, and
-:doc:`thermo_modify <thermo_modify>` commands. The
-:doc:`thermo_style <thermo_style>` command also specifies what values
-are calculated and written out. Pre-defined keywords can be specified
-(e.g. press, etotal, etc). Three additional kinds of keywords can
-also be specified (c_ID, f_ID, v_name), where a :doc:`compute <compute>`
-or :doc:`fix <fix>` or :doc:`variable <variable>` provides the value to be
-output. In each case, the compute, fix, or variable must generate
-global values for input to the :doc:`thermo_style custom <dump>`
-command.
-
-Note that thermodynamic output values can be "extensive" or
-"intensive". The former scale with the number of atoms in the system
-(e.g. total energy), the latter do not (e.g. temperature). The
-setting for :doc:`thermo_modify norm <thermo_modify>` determines whether
-extensive quantities are normalized or not. Computes and fixes
-produce either extensive or intensive values; see their individual doc
-pages for details. :doc:`Equal-style variables <variable>` produce only
-intensive values; you can include a division by "natoms" in the
-formula if desired, to make an extensive calculation produce an
-intensive result.
-
-.. _dump:
-
-Dump file output
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Dump file output is specified by the :doc:`dump <dump>` and
-:doc:`dump_modify <dump_modify>` commands. There are several
-pre-defined formats (dump atom, dump xtc, etc).
-
-There is also a :doc:`dump custom <dump>` format where the user
-specifies what values are output with each atom. Pre-defined atom
-attributes can be specified (id, x, fx, etc). Three additional kinds
-of keywords can also be specified (c_ID, f_ID, v_name), where a
-:doc:`compute <compute>` or :doc:`fix <fix>` or :doc:`variable <variable>`
-provides the values to be output. In each case, the compute, fix, or
-variable must generate per-atom values for input to the :doc:`dump custom <dump>` command.
-
-There is also a :doc:`dump local <dump>` format where the user specifies
-what local values to output. A pre-defined index keyword can be
-specified to enumuerate the local values. Two additional kinds of
-keywords can also be specified (c_ID, f_ID), where a
-:doc:`compute <compute>` or :doc:`fix <fix>` or :doc:`variable <variable>`
-provides the values to be output. In each case, the compute or fix
-must generate local values for input to the :doc:`dump local <dump>`
-command.
-
-.. _fixoutput:
-
-Fixes that write output files
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Several fixes take various quantities as input and can write output
-files: :doc:`fix ave/time <fix_ave_time>`, :doc:`fix ave/chunk <fix_ave_chunk>`, :doc:`fix ave/histo <fix_ave_histo>`,
-:doc:`fix ave/correlate <fix_ave_correlate>`, and :doc:`fix print <fix_print>`.
-
-The :doc:`fix ave/time <fix_ave_time>` command enables direct output to
-a file and/or time-averaging of global scalars or vectors. The user
-specifies one or more quantities as input. These can be global
-:doc:`compute <compute>` values, global :doc:`fix <fix>` values, or
-:doc:`variables <variable>` of any style except the atom style which
-produces per-atom values. Since a variable can refer to keywords used
-by the :doc:`thermo_style custom <thermo_style>` command (like temp or
-press) and individual per-atom values, a wide variety of quantities
-can be time averaged and/or output in this way. If the inputs are one
-or more scalar values, then the fix generate a global scalar or vector
-of output. If the inputs are one or more vector values, then the fix
-generates a global vector or array of output. The time-averaged
-output of this fix can also be used as input to other output commands.
-
-The :doc:`fix ave/chunk <fix_ave_chunk>` command enables direct output
-to a file of chunk-averaged per-atom quantities like those output in
-dump files. Chunks can represent spatial bins or other collections of
-atoms, e.g. individual molecules. The per-atom quantities can be atom
-density (mass or number) or atom attributes such as position,
-velocity, force. They can also be per-atom quantities calculated by a
-:doc:`compute <compute>`, by a :doc:`fix <fix>`, or by an atom-style
-:doc:`variable <variable>`. The chunk-averaged output of this fix can
-also be used as input to other output commands.
-
-The :doc:`fix ave/histo <fix_ave_histo>` command enables direct output
-to a file of histogrammed quantities, which can be global or per-atom
-or local quantities. The histogram output of this fix can also be
-used as input to other output commands.
-
-The :doc:`fix ave/correlate <fix_ave_correlate>` command enables direct
-output to a file of time-correlated quantities, which can be global
-values. The correlation matrix output of this fix can also be used as
-input to other output commands.
-
-The :doc:`fix print <fix_print>` command can generate a line of output
-written to the screen and log file or to a separate file, periodically
-during a running simulation. The line can contain one or more
-:doc:`variable <variable>` values for any style variable except the
-vector or atom styles). As explained above, variables themselves can
-contain references to global values generated by :doc:`thermodynamic keywords <thermo_style>`, :doc:`computes <compute>`,
-:doc:`fixes <fix>`, or other :doc:`variables <variable>`, or to per-atom
-values for a specific atom. Thus the :doc:`fix print <fix_print>`
-command is a means to output a wide variety of quantities separate
-from normal thermodynamic or dump file output.
-
-.. _computeoutput:
-
-Computes that process output quantities
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The :doc:`compute reduce <compute_reduce>` and :doc:`compute reduce/region <compute_reduce>` commands take one or more per-atom
-or local vector quantities as inputs and "reduce" them (sum, min, max,
-ave) to scalar quantities. These are produced as output values which
-can be used as input to other output commands.
-
-The :doc:`compute slice <compute_slice>` command take one or more global
-vector or array quantities as inputs and extracts a subset of their
-values to create a new vector or array. These are produced as output
-values which can be used as input to other output commands.
-
-The :doc:`compute property/atom <compute_property_atom>` command takes a
-list of one or more pre-defined atom attributes (id, x, fx, etc) and
-stores the values in a per-atom vector or array. These are produced
-as output values which can be used as input to other output commands.
-The list of atom attributes is the same as for the :doc:`dump custom <dump>` command.
-
-The :doc:`compute property/local <compute_property_local>` command takes
-a list of one or more pre-defined local attributes (bond info, angle
-info, etc) and stores the values in a local vector or array. These
-are produced as output values which can be used as input to other
-output commands.
-
-.. _fixoutput:
-
-Fixes that process output quantities
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The :doc:`fix vector <fix_vector>` command can create global vectors as
-output from global scalars as input, accumulating them one element at
-a time.
-
-The :doc:`fix ave/atom <fix_ave_atom>` command performs time-averaging
-of per-atom vectors. The per-atom quantities can be atom attributes
-such as position, velocity, force. They can also be per-atom
-quantities calculated by a :doc:`compute <compute>`, by a
-:doc:`fix <fix>`, or by an atom-style :doc:`variable <variable>`. The
-time-averaged per-atom output of this fix can be used as input to
-other output commands.
-
-The :doc:`fix store/state <fix_store_state>` command can archive one or
-more per-atom attributes at a particular time, so that the old values
-can be used in a future calculation or output. The list of atom
-attributes is the same as for the :doc:`dump custom <dump>` command,
-including per-atom quantities calculated by a :doc:`compute <compute>`,
-by a :doc:`fix <fix>`, or by an atom-style :doc:`variable <variable>`.
-The output of this fix can be used as input to other output commands.
-
-.. _compute:
-
-Computes that generate values to output
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Every :doc:`compute <compute>` in LAMMPS produces either global or
-per-atom or local values. The values can be scalars or vectors or
-arrays of data. These values can be output using the other commands
-described in this section. The doc page for each compute command
-describes what it produces. Computes that produce per-atom or local
-values have the word "atom" or "local" in their style name. Computes
-without the word "atom" or "local" produce global values.
-
-.. _fix:
-
-Fixes that generate values to output
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Some :doc:`fixes <fix>` in LAMMPS produces either global or per-atom or
-local values which can be accessed by other commands. The values can
-be scalars or vectors or arrays of data. These values can be output
-using the other commands described in this section. The doc page for
-each fix command tells whether it produces any output quantities and
-describes them.
-
-.. _variable:
-
-Variables that generate values to output
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-:doc:`Variables <variable>` defined in an input script can store one or
-more strings. But equal-style, vector-style, and atom-style or
-atomfile-style variables generate a global scalar value, global vector
-or values, or a per-atom vector, resepctively, when accessed. The
-formulas used to define these variables can contain references to the
-thermodynamic keywords and to global and per-atom data generated by
-computes, fixes, and other variables. The values generated by
-variables can be used as input to and thus output by the other
-commands described in this section.
-
-.. _table:
-
-Summary table of output options and data flow between commands
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-This table summarizes the various commands that can be used for
-generating output from LAMMPS. Each command produces output data of
-some kind and/or writes data to a file. Most of the commands can take
-data from other commands as input. Thus you can link many of these
-commands together in pipeline form, where data produced by one command
-is used as input to another command and eventually written to the
-screen or to a file. Note that to hook two commands together the
-output and input data types must match, e.g. global/per-atom/local
-data and scalar/vector/array data.
-
-Also note that, as described above, when a command takes a scalar as
-input, that could be an element of a vector or array. Likewise a
-vector input could be a column of an array.
-
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| Command | Input | Output |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`thermo_style custom <thermo_style>` | global scalars | screen, log file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`dump custom <dump>` | per-atom vectors | dump file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`dump local <dump>` | local vectors | dump file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix print <fix_print>` | global scalar from variable | screen, file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`print <print>` | global scalar from variable | screen |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`computes <compute>` | N/A | global/per-atom/local scalar/vector/array |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fixes <fix>` | N/A | global/per-atom/local scalar/vector/array |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`variables <variable>` | global scalars and vectors, per-atom vectors | global scalar and vector, per-atom vector |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`compute reduce <compute_reduce>` | per-atom/local vectors | global scalar/vector |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`compute slice <compute_slice>` | global vectors/arrays | global vector/array |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`compute property/atom <compute_property_atom>` | per-atom vectors | per-atom vector/array |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`compute property/local <compute_property_local>` | local vectors | local vector/array |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix vector <fix_vector>` | global scalars | global vector |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix ave/atom <fix_ave_atom>` | per-atom vectors | per-atom vector/array |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix ave/time <fix_ave_time>` | global scalars/vectors | global scalar/vector/array, file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix ave/chunk <fix_ave_chunk>` | per-atom vectors | global array, file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix ave/histo <fix_ave_histo>` | global/per-atom/local scalars and vectors | global array, file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix ave/correlate <fix_ave_correlate>` | global scalars | global array, file |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-| :doc:`fix store/state <fix_store_state>` | per-atom vectors | per-atom vector/array |
-+--------------------------------------------------------+----------------------------------------------+-------------------------------------------+
-
-
-----------
-
-
-.. _howto_16:
-
-Thermostatting, barostatting, and computing temperature
--------------------------------------------------------
-
-Thermostatting means controlling the temperature of particles in an MD
-simulation. Barostatting means controlling the pressure. Since the
-pressure includes a kinetic component due to particle velocities, both
-these operations require calculation of the temperature. Typically a
-target temperature (T) and/or pressure (P) is specified by the user,
-and the thermostat or barostat attempts to equilibrate the system to
-the requested T and/or P.
-
-Temperature is computed as kinetic energy divided by some number of
-degrees of freedom (and the Boltzmann constant). Since kinetic energy
-is a function of particle velocity, there is often a need to
-distinguish between a particle's advection velocity (due to some
-aggregate motiion of particles) and its thermal velocity. The sum of
-the two is the particle's total velocity, but the latter is often what
-is wanted to compute a temperature.
-
-LAMMPS has several options for computing temperatures, any of which
-can be used in thermostatting and barostatting. These :doc:`compute commands <compute>` calculate temperature, and the :doc:`compute pressure <compute_pressure>` command calculates pressure.
-
-* :doc:`compute temp <compute_temp>`
-* :doc:`compute temp/sphere <compute_temp_sphere>`
-* :doc:`compute temp/asphere <compute_temp_asphere>`
-* :doc:`compute temp/com <compute_temp_com>`
-* :doc:`compute temp/deform <compute_temp_deform>`
-* :doc:`compute temp/partial <compute_temp_partial>`
-* :doc:`compute temp/profile <compute_temp_profile>`
-* :doc:`compute temp/ramp <compute_temp_ramp>`
-* :doc:`compute temp/region <compute_temp_region>`
-
-All but the first 3 calculate velocity biases directly (e.g. advection
-velocities) that are removed when computing the thermal temperature.
-:doc:`Compute temp/sphere <compute_temp_sphere>` and :doc:`compute temp/asphere <compute_temp_asphere>` compute kinetic energy for
-finite-size particles that includes rotational degrees of freedom.
-They both allow for velocity biases indirectly, via an optional extra
-argument, another temperature compute that subtracts a velocity bias.
-This allows the translational velocity of spherical or aspherical
-particles to be adjusted in prescribed ways.
-
-Thermostatting in LAMMPS is performed by :doc:`fixes <fix>`, or in one
-case by a pair style. Several thermostatting fixes are available:
-Nose-Hoover (nvt), Berendsen, CSVR, Langevin, and direct rescaling
-(temp/rescale). Dissipative particle dynamics (DPD) thermostatting
-can be invoked via the *dpd/tstat* pair style:
-
-* :doc:`fix nvt <fix_nh>`
-* :doc:`fix nvt/sphere <fix_nvt_sphere>`
-* :doc:`fix nvt/asphere <fix_nvt_asphere>`
-* :doc:`fix nvt/sllod <fix_nvt_sllod>`
-* :doc:`fix temp/berendsen <fix_temp_berendsen>`
-* :doc:`fix temp/csvr <fix_temp_csvr>`
-* :doc:`fix langevin <fix_langevin>`
-* :doc:`fix temp/rescale <fix_temp_rescale>`
-* :doc:`pair_style dpd/tstat <pair_dpd>`
-
-:doc:`Fix nvt <fix_nh>` only thermostats the translational velocity of
-particles. :doc:`Fix nvt/sllod <fix_nvt_sllod>` also does this, except
-that it subtracts out a velocity bias due to a deforming box and
-integrates the SLLOD equations of motion. See the :ref:`NEMD simulations <howto_13>` section of this page for further details. :doc:`Fix nvt/sphere <fix_nvt_sphere>` and :doc:`fix nvt/asphere <fix_nvt_asphere>` thermostat not only translation
-velocities but also rotational velocities for spherical and aspherical
-particles.
-
-DPD thermostatting alters pairwise interactions in a manner analagous
-to the per-particle thermostatting of :doc:`fix langevin <fix_langevin>`.
-
-Any of the thermostatting fixes can use temperature computes that
-remove bias which has two effects. First, the current calculated
-temperature, which is compared to the requested target temperature, is
-caluclated with the velocity bias removed. Second, the thermostat
-adjusts only the thermal temperature component of the particle's
-velocities, which are the velocities with the bias removed. The
-removed bias is then added back to the adjusted velocities. See the
-doc pages for the individual fixes and for the
-:doc:`fix_modify <fix_modify>` command for instructions on how to assign
-a temperature compute to a thermostatting fix. For example, you can
-apply a thermostat to only the x and z components of velocity by using
-it in conjunction with :doc:`compute temp/partial <compute_temp_partial>`. Of you could thermostat only
-the thermal temperature of a streaming flow of particles without
-affecting the streaming velocity, by using :doc:`compute temp/profile <compute_temp_profile>`.
-
-.. note::
-
- Only the nvt fixes perform time integration, meaning they update
- the velocities and positions of particles due to forces and velocities
- respectively. The other thermostat fixes only adjust velocities; they
- do NOT perform time integration updates. Thus they should be used in
- conjunction with a constant NVE integration fix such as these:
-
-* :doc:`fix nve <fix_nve>`
-* :doc:`fix nve/sphere <fix_nve_sphere>`
-* :doc:`fix nve/asphere <fix_nve_asphere>`
-
-Barostatting in LAMMPS is also performed by :doc:`fixes <fix>`. Two
-barosttating methods are currently available: Nose-Hoover (npt and
-nph) and Berendsen:
-
-* :doc:`fix npt <fix_nh>`
-* :doc:`fix npt/sphere <fix_npt_sphere>`
-* :doc:`fix npt/asphere <fix_npt_asphere>`
-* :doc:`fix nph <fix_nh>`
-* :doc:`fix press/berendsen <fix_press_berendsen>`
-
-The :doc:`fix npt <fix_nh>` commands include a Nose-Hoover thermostat
-and barostat. :doc:`Fix nph <fix_nh>` is just a Nose/Hoover barostat;
-it does no thermostatting. Both :doc:`fix nph <fix_nh>` and :doc:`fix press/bernendsen <fix_press_berendsen>` can be used in conjunction
-with any of the thermostatting fixes.
-
-As with the thermostats, :doc:`fix npt <fix_nh>` and :doc:`fix nph <fix_nh>` only use translational motion of the particles in
-computing T and P and performing thermo/barostatting. :doc:`Fix npt/sphere <fix_npt_sphere>` and :doc:`fix npt/asphere <fix_npt_asphere>` thermo/barostat using not only
-translation velocities but also rotational velocities for spherical
-and aspherical particles.
-
-All of the barostatting fixes use the :doc:`compute pressure <compute_pressure>` compute to calculate a current
-pressure. By default, this compute is created with a simple :doc:`compute temp <compute_temp>` (see the last argument of the :doc:`compute pressure <compute_pressure>` command), which is used to calculated
-the kinetic componenet of the pressure. The barostatting fixes can
-also use temperature computes that remove bias for the purpose of
-computing the kinetic componenet which contributes to the current
-pressure. See the doc pages for the individual fixes and for the
-:doc:`fix_modify <fix_modify>` command for instructions on how to assign
-a temperature or pressure compute to a barostatting fix.
-
-.. note::
-
- As with the thermostats, the Nose/Hoover methods (:doc:`fix npt <fix_nh>` and :doc:`fix nph <fix_nh>`) perform time integration.
- :doc:`Fix press/berendsen <fix_press_berendsen>` does NOT, so it should
- be used with one of the constant NVE fixes or with one of the NVT
- fixes.
-
-Finally, thermodynamic output, which can be setup via the
-:doc:`thermo_style <thermo_style>` command, often includes temperature
-and pressure values. As explained on the doc page for the
-:doc:`thermo_style <thermo_style>` command, the default T and P are
-setup by the thermo command itself. They are NOT the ones associated
-with any thermostatting or barostatting fix you have defined or with
-any compute that calculates a temperature or pressure. Thus if you
-want to view these values of T and P, you need to specify them
-explicitly via a :doc:`thermo_style custom <thermo_style>` command. Or
-you can use the :doc:`thermo_modify <thermo_modify>` command to
-re-define what temperature or pressure compute is used for default
-thermodynamic output.
-
-
-----------
-
-
-.. _howto_17:
-
-Walls
------
-
-Walls in an MD simulation are typically used to bound particle motion,
-i.e. to serve as a boundary condition.
-
-Walls in LAMMPS can be of rough (made of particles) or idealized
-surfaces. Ideal walls can be smooth, generating forces only in the
-normal direction, or frictional, generating forces also in the
-tangential direction.
-
-Rough walls, built of particles, can be created in various ways. The
-particles themselves can be generated like any other particle, via the
-:doc:`lattice <lattice>` and :doc:`create_atoms <create_atoms>` commands,
-or read in via the :doc:`read_data <read_data>` command.
-
-Their motion can be constrained by many different commands, so that
-they do not move at all, move together as a group at constant velocity
-or in response to a net force acting on them, move in a prescribed
-fashion (e.g. rotate around a point), etc. Note that if a time
-integration fix like :doc:`fix nve <fix_nve>` or :doc:`fix nvt <fix_nh>`
-is not used with the group that contains wall particles, their
-positions and velocities will not be updated.
-
-* :doc:`fix aveforce <fix_aveforce>` - set force on particles to average value, so they move together
-* :doc:`fix setforce <fix_setforce>` - set force on particles to a value, e.g. 0.0
-* :doc:`fix freeze <fix_freeze>` - freeze particles for use as granular walls
-* :doc:`fix nve/noforce <fix_nve_noforce>` - advect particles by their velocity, but without force
-* :doc:`fix move <fix_move>` - prescribe motion of particles by a linear velocity, oscillation, rotation, variable
-
-The :doc:`fix move <fix_move>` command offers the most generality, since
-the motion of individual particles can be specified with
-:doc:`variable <variable>` formula which depends on time and/or the
-particle position.
-
-For rough walls, it may be useful to turn off pairwise interactions
-between wall particles via the :doc:`neigh_modify exclude <neigh_modify>` command.
-
-Rough walls can also be created by specifying frozen particles that do
-not move and do not interact with mobile particles, and then tethering
-other particles to the fixed particles, via a :doc:`bond <bond_style>`.
-The bonded particles do interact with other mobile particles.
-
-Idealized walls can be specified via several fix commands. :doc:`Fix wall/gran <fix_wall_gran>` creates frictional walls for use with
-granular particles; all the other commands create smooth walls.
-
-* :doc:`fix wall/reflect <fix_wall_reflect>` - reflective flat walls
-* :doc:`fix wall/lj93 <fix_wall>` - flat walls, with Lennard-Jones 9/3 potential
-* :doc:`fix wall/lj126 <fix_wall>` - flat walls, with Lennard-Jones 12/6 potential
-* :doc:`fix wall/colloid <fix_wall>` - flat walls, with :doc:`pair_style colloid <pair_colloid>` potential
-* :doc:`fix wall/harmonic <fix_wall>` - flat walls, with repulsive harmonic spring potential
-* :doc:`fix wall/region <fix_wall_region>` - use region surface as wall
-* :doc:`fix wall/gran <fix_wall_gran>` - flat or curved walls with :doc:`pair_style granular <pair_gran>` potential
-
-The *lj93*, *lj126*, *colloid*, and *harmonic* styles all allow the
-flat walls to move with a constant velocity, or oscillate in time.
-The :doc:`fix wall/region <fix_wall_region>` command offers the most
-generality, since the region surface is treated as a wall, and the
-geometry of the region can be a simple primitive volume (e.g. a
-sphere, or cube, or plane), or a complex volume made from the union
-and intersection of primitive volumes. :doc:`Regions <region>` can also
-specify a volume "interior" or "exterior" to the specified primitive
-shape or *union* or *intersection*. :doc:`Regions <region>` can also be
-"dynamic" meaning they move with constant velocity, oscillate, or
-rotate.
-
-The only frictional idealized walls currently in LAMMPS are flat or
-curved surfaces specified by the :doc:`fix wall/gran <fix_wall_gran>`
-command. At some point we plan to allow regoin surfaces to be used as
-frictional walls, as well as triangulated surfaces.
-
-
-----------
-
-
-.. _howto_18:
-
-Elastic constants
------------------
-
-Elastic constants characterize the stiffness of a material. The formal
-definition is provided by the linear relation that holds between the
-stress and strain tensors in the limit of infinitesimal deformation.
-In tensor notation, this is expressed as s_ij = C_ijkl * e_kl, where
-the repeated indices imply summation. s_ij are the elements of the
-symmetric stress tensor. e_kl are the elements of the symmetric strain
-tensor. C_ijkl are the elements of the fourth rank tensor of elastic
-constants. In three dimensions, this tensor has 3^4=81 elements. Using
-Voigt notation, the tensor can be written as a 6x6 matrix, where C_ij
-is now the derivative of s_i w.r.t. e_j. Because s_i is itself a
-derivative w.r.t. e_i, it follows that C_ij is also symmetric, with at
-most 7*6/2 = 21 distinct elements.
-
-At zero temperature, it is easy to estimate these derivatives by
-deforming the simulation box in one of the six directions using the
-:doc:`change_box <change_box>` command and measuring the change in the
-stress tensor. A general-purpose script that does this is given in the
-examples/elastic directory described in :doc:`this section <Section_example>`.
-
-Calculating elastic constants at finite temperature is more
-challenging, because it is necessary to run a simulation that perfoms
-time averages of differential properties. One way to do this is to
-measure the change in average stress tensor in an NVT simulations when
-the cell volume undergoes a finite deformation. In order to balance
-the systematic and statistical errors in this method, the magnitude of
-the deformation must be chosen judiciously, and care must be taken to
-fully equilibrate the deformed cell before sampling the stress
-tensor. Another approach is to sample the triclinic cell fluctuations
-that occur in an NPT simulation. This method can also be slow to
-converge and requires careful post-processing :ref:`(Shinoda) <Shinoda>`
-
-
-----------
-
-
-.. _howto_19:
-
-Library interface to LAMMPS
----------------------------
-
-As described in :ref:`Section_start 5 <start_5>`, LAMMPS
-can be built as a library, so that it can be called by another code,
-used in a :ref:`coupled manner <howto_10>` with other
-codes, or driven through a :doc:`Python interface <Section_python>`.
-
-All of these methodologies use a C-style interface to LAMMPS that is
-provided in the files src/library.cpp and src/library.h. The
-functions therein have a C-style argument list, but contain C++ code
-you could write yourself in a C++ application that was invoking LAMMPS
-directly. The C++ code in the functions illustrates how to invoke
-internal LAMMPS operations. Note that LAMMPS classes are defined
-within a LAMMPS namespace (LAMMPS_NS) if you use them from another C++
-application.
-
-Library.cpp contains these 5 basic functions:
-
-.. parsed-literal::
-
- void lammps_open(int, char **, MPI_Comm, void **)
- void lammps_close(void *)
- int lammps_version(void *)
- void lammps_file(void *, char *)
- char *lammps_command(void *, char *)
-
-The lammps_open() function is used to initialize LAMMPS, passing in a
-list of strings as if they were :ref:`command-line arguments <start_7>` when LAMMPS is run in
-stand-alone mode from the command line, and a MPI communicator for
-LAMMPS to run under. It returns a ptr to the LAMMPS object that is
-created, and which is used in subsequent library calls. The
-lammps_open() function can be called multiple times, to create
-multiple instances of LAMMPS.
-
-LAMMPS will run on the set of processors in the communicator. This
-means the calling code can run LAMMPS on all or a subset of
-processors. For example, a wrapper script might decide to alternate
-between LAMMPS and another code, allowing them both to run on all the
-processors. Or it might allocate half the processors to LAMMPS and
-half to the other code and run both codes simultaneously before
-syncing them up periodically. Or it might instantiate multiple
-instances of LAMMPS to perform different calculations.
-
-The lammps_close() function is used to shut down an instance of LAMMPS
-and free all its memory.
-
-The lammps_version() function can be used to determined the specific
-version of the underlying LAMMPS code. This is particularly useful
-when loading LAMMPS as a shared library via dlopen(). The code using
-the library interface can than use this information to adapt to
-changes to the LAMMPS command syntax between versions. The returned
-LAMMPS version code is an integer (e.g. 2 Sep 2015 results in
-20150902) that grows with every new LAMMPS version.
-
-The lammps_file() and lammps_command() functions are used to pass a
-file or string to LAMMPS as if it were an input script or single
-command in an input script. Thus the calling code can read or
-generate a series of LAMMPS commands one line at a time and pass it
-thru the library interface to setup a problem and then run it,
-interleaving the lammps_command() calls with other calls to extract
-information from LAMMPS, perform its own operations, or call another
-code's library.
-
-Other useful functions are also included in library.cpp. For example:
-
-.. parsed-literal::
-
- void *lammps_extract_global(void *, char *)
- void *lammps_extract_atom(void *, char *)
- void *lammps_extract_compute(void *, char *, int, int)
- void *lammps_extract_fix(void *, char *, int, int, int, int)
- void *lammps_extract_variable(void *, char *, char *)
- int lammps_set_variable(void *, char *, char *)
- int lammps_get_natoms(void *)
- void lammps_get_coords(void *, double *)
- void lammps_put_coords(void *, double *)
-
-These can extract various global or per-atom quantities from LAMMPS as
-well as values calculated by a compute, fix, or variable. The
-"set_variable" function can set an existing string-style variable to a
-new value, so that subsequent LAMMPS commands can access the variable.
-The "get" and "put" operations can retrieve and reset atom
-coordinates. See the library.cpp file and its associated header file
-library.h for details.
-
-The key idea of the library interface is that you can write any
-functions you wish to define how your code talks to LAMMPS and add
-them to src/library.cpp and src/library.h, as well as to the :doc:`Python interface <Section_python>`. The routines you add can access or
-change any LAMMPS data you wish. The examples/COUPLE and python
-directories have example C++ and C and Python codes which show how a
-driver code can link to LAMMPS as a library, run LAMMPS on a subset of
-processors, grab data from LAMMPS, change it, and put it back into
-LAMMPS.
-
-
-----------
-
-
-.. _howto_20:
-
-Calculating thermal conductivity
---------------------------------
-
-The thermal conductivity kappa of a material can be measured in at
-least 4 ways using various options in LAMMPS. See the examples/KAPPA
-directory for scripts that implement the 4 methods discussed here for
-a simple Lennard-Jones fluid model. Also, see :ref:`this section <howto_21>` of the manual for an analogous
-discussion for viscosity.
-
-The thermal conducitivity tensor kappa is a measure of the propensity
-of a material to transmit heat energy in a diffusive manner as given
-by Fourier's law
-
-J = -kappa grad(T)
-
-where J is the heat flux in units of energy per area per time and
-grad(T) is the spatial gradient of temperature. The thermal
-conductivity thus has units of energy per distance per time per degree
-K and is often approximated as an isotropic quantity, i.e. as a
-scalar.
-
-The first method is to setup two thermostatted regions at opposite
-ends of a simulation box, or one in the middle and one at the end of a
-periodic box. By holding the two regions at different temperatures
-with a :ref:`thermostatting fix <howto_13>`, the energy
-added to the hot region should equal the energy subtracted from the
-cold region and be proportional to the heat flux moving between the
-regions. See the paper by :ref:`Ikeshoji and Hafskjold <Ikeshoji>` for
-details of this idea. Note that thermostatting fixes such as :doc:`fix nvt <fix_nh>`, :doc:`fix langevin <fix_langevin>`, and :doc:`fix temp/rescale <fix_temp_rescale>` store the cumulative energy they
-add/subtract.
-
-Alternatively, as a second method, the :doc:`fix heat <fix_heat>`
-command can used in place of thermostats on each of two regions to
-add/subtract specified amounts of energy to both regions. In both
-cases, the resulting temperatures of the two regions can be monitored
-with the "compute temp/region" command and the temperature profile of
-the intermediate region can be monitored with the :doc:`fix ave/spatial <fix_ave_spatial>` and :doc:`compute ke/atom <compute_ke_atom>` commands.
-
-The third method is to perform a reverse non-equilibrium MD simulation
-using the :doc:`fix thermal/conductivity <fix_thermal_conductivity>`
-command which implements the rNEMD algorithm of Muller-Plathe.
-Kinetic energy is swapped between atoms in two different layers of the
-simulation box. This induces a temperature gradient between the two
-layers which can be monitored with the :doc:`fix ave/spatial <fix_ave_spatial>` and :doc:`compute ke/atom <compute_ke_atom>` commands. The fix tallies the
-cumulative energy transfer that it performs. See the :doc:`fix thermal/conductivity <fix_thermal_conductivity>` command for
-details.
-
-The fourth method is based on the Green-Kubo (GK) formula which
-relates the ensemble average of the auto-correlation of the heat flux
-to kappa. The heat flux can be calculated from the fluctuations of
-per-atom potential and kinetic energies and per-atom stress tensor in
-a steady-state equilibrated simulation. This is in contrast to the
-two preceding non-equilibrium methods, where energy flows continuously
-between hot and cold regions of the simulation box.
-
-The :doc:`compute heat/flux <compute_heat_flux>` command can calculate
-the needed heat flux and describes how to implement the Green_Kubo
-formalism using additional LAMMPS commands, such as the :doc:`fix ave/correlate <fix_ave_correlate>` command to calculate the needed
-auto-correlation. See the doc page for the :doc:`compute heat/flux <compute_heat_flux>` command for an example input script
-that calculates the thermal conductivity of solid Ar via the GK
-formalism.
-
-
-----------
-
-
-.. _howto_21:
-
-Calculating viscosity
----------------------
-
-The shear viscosity eta of a fluid can be measured in at least 5 ways
-using various options in LAMMPS. See the examples/VISCOSITY directory
-for scripts that implement the 5 methods discussed here for a simple
-Lennard-Jones fluid model. Also, see :ref:`this section <howto_20>` of the manual for an analogous
-discussion for thermal conductivity.
-
-Eta is a measure of the propensity of a fluid to transmit momentum in
-a direction perpendicular to the direction of velocity or momentum
-flow. Alternatively it is the resistance the fluid has to being
-sheared. It is given by
-
-J = -eta grad(Vstream)
-
-where J is the momentum flux in units of momentum per area per time.
-and grad(Vstream) is the spatial gradient of the velocity of the fluid
-moving in another direction, normal to the area through which the
-momentum flows. Viscosity thus has units of pressure-time.
-
-The first method is to perform a non-equlibrium MD (NEMD) simulation
-by shearing the simulation box via the :doc:`fix deform <fix_deform>`
-command, and using the :doc:`fix nvt/sllod <fix_nvt_sllod>` command to
-thermostat the fluid via the SLLOD equations of motion.
-Alternatively, as a second method, one or more moving walls can be
-used to shear the fluid in between them, again with some kind of
-thermostat that modifies only the thermal (non-shearing) components of
-velocity to prevent the fluid from heating up.
-
-In both cases, the velocity profile setup in the fluid by this
-procedure can be monitored by the :doc:`fix ave/spatial <fix_ave_spatial>` command, which determines
-grad(Vstream) in the equation above. E.g. the derivative in the
-y-direction of the Vx component of fluid motion or grad(Vstream) =
-dVx/dy. The Pxy off-diagonal component of the pressure or stress
-tensor, as calculated by the :doc:`compute pressure <compute_pressure>`
-command, can also be monitored, which is the J term in the equation
-above. See :ref:`this section <howto_13>` of the manual
-for details on NEMD simulations.
-
-The third method is to perform a reverse non-equilibrium MD simulation
-using the :doc:`fix viscosity <fix_viscosity>` command which implements
-the rNEMD algorithm of Muller-Plathe. Momentum in one dimension is
-swapped between atoms in two different layers of the simulation box in
-a different dimension. This induces a velocity gradient which can be
-monitored with the :doc:`fix ave/spatial <fix_ave_spatial>` command.
-The fix tallies the cummulative momentum transfer that it performs.
-See the :doc:`fix viscosity <fix_viscosity>` command for details.
-
-The fourth method is based on the Green-Kubo (GK) formula which
-relates the ensemble average of the auto-correlation of the
-stress/pressure tensor to eta. This can be done in a fully
-equilibrated simulation which is in contrast to the two preceding
-non-equilibrium methods, where momentum flows continuously through the
-simulation box.
-
-Here is an example input script that calculates the viscosity of
-liquid Ar via the GK formalism:
-
-.. parsed-literal::
-
- # Sample LAMMPS input script for viscosity of liquid Ar
-
-.. parsed-literal::
-
- units real
- variable T equal 86.4956
- variable V equal vol
- variable dt equal 4.0
- variable p equal 400 # correlation length
- variable s equal 5 # sample interval
- variable d equal $p*$s # dump interval
-
-.. parsed-literal::
-
- # convert from LAMMPS real units to SI
-
-.. parsed-literal::
-
- variable kB equal 1.3806504e-23 # [J/K/** Boltzmann
- variable atm2Pa equal 101325.0
- variable A2m equal 1.0e-10
- variable fs2s equal 1.0e-15
- variable convert equal ${atm2Pa}*${atm2Pa}*${fs2s}*${A2m}*${A2m}*${A2m}
-
-.. parsed-literal::
-
- # setup problem
-
-.. parsed-literal::
-
- dimension 3
- boundary p p p
- lattice fcc 5.376 orient x 1 0 0 orient y 0 1 0 orient z 0 0 1
- region box block 0 4 0 4 0 4
- create_box 1 box
- create_atoms 1 box
- mass 1 39.948
- pair_style lj/cut 13.0
- pair_coeff * * 0.2381 3.405
- timestep ${dt}
- thermo $d
-
-.. parsed-literal::
-
- # equilibration and thermalization
-
-.. parsed-literal::
-
- velocity all create $T 102486 mom yes rot yes dist gaussian
- fix NVT all nvt temp $T $T 10 drag 0.2
- run 8000
-
-.. parsed-literal::
-
- # viscosity calculation, switch to NVE if desired
-
-.. parsed-literal::
-
- #unfix NVT
- #fix NVE all nve
-
-.. parsed-literal::
-
- reset_timestep 0
- variable pxy equal pxy
- variable pxz equal pxz
- variable pyz equal pyz
- fix SS all ave/correlate $s $p $d &
- v_pxy v_pxz v_pyz type auto file S0St.dat ave running
- variable scale equal ${convert}/(${kB}*$T)*$V*$s*${dt}
- variable v11 equal trap(f_SS[3])*${scale}
- variable v22 equal trap(f_SS[4])*${scale}
- variable v33 equal trap(f_SS[5])*${scale}
- thermo_style custom step temp press v_pxy v_pxz v_pyz v_v11 v_v22 v_v33
- run 100000
- variable v equal (v_v11+v_v22+v_v33)/3.0
- variable ndens equal count(all)/vol
- print "average viscosity: $v [Pa.s/** @ $T K, ${ndens} /A^3"
-
-The fifth method is related to the above Green-Kubo method,
-but uses the Einstein formulation, analogous to the Einstein
-mean-square-displacement formulation for self-diffusivity. The
-time-integrated momentum fluxes play the role of Cartesian
-coordinates, whose mean-square displacement increases linearly
-with time at sufficiently long times.
-
-
-----------
-
-
-.. _howto_22:
-
-Calculating a diffusion coefficient
------------------------------------
-
-The diffusion coefficient D of a material can be measured in at least
-2 ways using various options in LAMMPS. See the examples/DIFFUSE
-directory for scripts that implement the 2 methods discussed here for
-a simple Lennard-Jones fluid model.
-
-The first method is to measure the mean-squared displacement (MSD) of
-the system, via the :doc:`compute msd <compute_msd>` command. The slope
-of the MSD versus time is proportional to the diffusion coefficient.
-The instantaneous MSD values can be accumulated in a vector via the
-:doc:`fix vector <fix_vector>` command, and a line fit to the vector to
-compute its slope via the :doc:`variable slope <variable>` function, and
-thus extract D.
-
-The second method is to measure the velocity auto-correlation function
-(VACF) of the system, via the :doc:`compute vacf <compute_vacf>`
-command. The time-integral of the VACF is proportional to the
-diffusion coefficient. The instantaneous VACF values can be
-accumulated in a vector via the :doc:`fix vector <fix_vector>` command,
-and time integrated via the :doc:`variable trap <variable>` function,
-and thus extract D.
-
-
-----------
-
-
-.. _howto_23:
-
-Using chunks to calculate system properties
--------------------------------------------
-
-In LAMMS, "chunks" are collections of atoms, as defined by the
-:doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns
-each atom to a chunk ID (or to no chunk at all). The number of chunks
-and the assignment of chunk IDs to atoms can be static or change over
-time. Examples of "chunks" are molecules or spatial bins or atoms
-with similar values (e.g. coordination number or potential energy).
-
-The per-atom chunk IDs can be used as input to two other kinds of
-commands, to calculate various properties of a system:
-
-* :doc:`fix ave/chunk <fix_ave_chunk>`
-* any of the :doc:`compute */chunk <compute>` commands
-
-Here, each of the 3 kinds of chunk-related commands is briefly
-overviewed. Then some examples are given of how to compute different
-properties with chunk commands.
-
-Compute chunk/atom command:
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-This compute can assign atoms to chunks of various styles. Only atoms
-in the specified group and optional specified region are assigned to a
-chunk. Here are some possible chunk definitions:
-
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| atoms in same molecule | chunk ID = molecule ID |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| atoms of same atom type | chunk ID = atom type |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| all atoms with same atom property (charge, radius, etc) | chunk ID = output of compute property/atom |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| atoms in same cluster | chunk ID = output of :doc:`compute cluster/atom <compute_cluster_atom>` command |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| atoms in same spatial bin | chunk ID = bin ID |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| atoms in same rigid body | chunk ID = molecule ID used to define rigid bodies |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| atoms with similar potential energy | chunk ID = output of :doc:`compute pe/atom <compute_pe_atom>` |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-| atoms with same local defect structure | chunk ID = output of :doc:`compute centro/atom <compute_centro_atom>` or :doc:`compute coord/atom <compute_coord_atom>` command |
-+---------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
-
-Note that chunk IDs are integer values, so for atom properties or
-computes that produce a floating point value, they will be truncated
-to an integer. You could also use the compute in a variable that
-scales the floating point value to spread it across multiple intergers.
-
-Spatial bins can be of various kinds, e.g. 1d bins = slabs, 2d bins =
-pencils, 3d bins = boxes, spherical bins, cylindrical bins.
-
-This compute also calculates the number of chunks *Nchunk*, which is
-used by other commands to tally per-chunk data. *Nchunk* can be a
-static value or change over time (e.g. the number of clusters). The
-chunk ID for an individual atom can also be static (e.g. a molecule
-ID), or dynamic (e.g. what spatial bin an atom is in as it moves).
-
-Note that this compute allows the per-atom output of other
-:doc:`computes <compute>`, :doc:`fixes <fix>`, and
-:doc:`variables <variable>` to be used to define chunk IDs for each
-atom. This means you can write your own compute or fix to output a
-per-atom quantity to use as chunk ID. See
-:doc:`Section_modify <Section_modify>` of the documentation for how to
-do this. You can also define a :doc:`per-atom variable <variable>` in
-the input script that uses a formula to generate a chunk ID for each
-atom.
-
-Fix ave/chunk command:
-^^^^^^^^^^^^^^^^^^^^^^
-
-This fix takes the ID of a :doc:`compute chunk/atom <compute_chunk_atom>` command as input. For each chunk,
-it then sums one or more specified per-atom values over the atoms in
-each chunk. The per-atom values can be any atom property, such as
-velocity, force, charge, potential energy, kinetic energy, stress,
-etc. Additional keywords are defined for per-chunk properties like
-density and temperature. More generally any per-atom value generated
-by other :doc:`computes <compute>`, :doc:`fixes <fix>`, and :doc:`per-atom variables <variable>`, can be summed over atoms in each chunk.
-
-Similar to other averaging fixes, this fix allows the summed per-chunk
-values to be time-averaged in various ways, and output to a file. The
-fix produces a global array as output with one row of values per
-chunk.
-
-Compute */chunk commands:
-^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Currently the following computes operate on chunks of atoms to produce
-per-chunk values.
-
-* :doc:`compute com/chunk <compute_com_chunk>`
-* :doc:`compute gyration/chunk <compute_gyration_chunk>`
-* :doc:`compute inertia/chunk <compute_inertia_chunk>`
-* :doc:`compute msd/chunk <compute_msd_chunk>`
-* :doc:`compute property/chunk <compute_property_chunk>`
-* :doc:`compute temp/chunk <compute_temp_chunk>`
-* :doc:`compute torque/chunk <compute_vcm_chunk>`
-* :doc:`compute vcm/chunk <compute_vcm_chunk>`
-
-They each take the ID of a :doc:`compute chunk/atom <compute_chunk_atom>` command as input. As their names
-indicate, they calculate the center-of-mass, radius of gyration,
-moments of inertia, mean-squared displacement, temperature, torque,
-and velocity of center-of-mass for each chunk of atoms. The :doc:`compute property/chunk <compute_property_chunk>` command can tally the
-count of atoms in each chunk and extract other per-chunk properties.
-
-The reason these various calculations are not part of the :doc:`fix ave/chunk command <fix_ave_chunk>`, is that each requires a more
-complicated operation than simply summing and averaging over per-atom
-values in each chunk. For example, many of them require calculation
-of a center of mass, which requires summing mass*position over the
-atoms and then dividing by summed mass.
-
-All of these computes produce a global vector or global array as
-output, wih one or more values per chunk. They can be used
-in various ways:
-
-* As input to the :doc:`fix ave/time <fix_ave_time>` command, which can
- write the values to a file and optionally time average them.
-* As input to the :doc:`fix ave/histo <fix_ave_histo>` command to
- histogram values across chunks. E.g. a histogram of cluster sizes or
- molecule diffusion rates.
-* As input to special functions of :doc:`equal-style variables <variable>`, like sum() and max(). E.g. to find the
- largest cluster or fastest diffusing molecule.
-Example calculations with chunks
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Here are eaxmples using chunk commands to calculate various
-properties:
-
-(1) Average velocity in each of 1000 2d spatial bins:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom bin/2d x 0.0 0.1 y lower 0.01 units reduced
- fix 1 all ave/chunk 100 10 1000 cc1 vx vy file tmp.out
-
-(2) Temperature in each spatial bin, after subtracting a flow
-velocity:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom bin/2d x 0.0 0.1 y lower 0.1 units reduced
- compute vbias all temp/profile 1 0 0 y 10
- fix 1 all ave/chunk 100 10 1000 cc1 temp bias vbias file tmp.out
-
-(3) Center of mass of each molecule:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all com/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-(4) Total force on each molecule and ave/max across all molecules:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- fix 1 all ave/chunk 1000 1 1000 cc1 fx fy fz file tmp.out
- variable xave equal ave(f_1**2**)
- variable xmax equal max(f_1**2**)
- thermo 1000
- thermo_style custom step temp v_xave v_xmax
-
-(5) Histogram of cluster sizes:
-
-.. parsed-literal::
-
- compute cluster all cluster/atom 1.0
- compute cc1 all chunk/atom c_cluster compress yes
- compute size all property/chunk cc1 count
- fix 1 all ave/histo 100 1 100 0 20 20 c_size mode vector ave running beyond ignore file tmp.histo
-
-
-----------
-
-
-.. _howto_24:
-
-Setting parameters for the :doc:`kspace_style pppm/disp <kspace_style>` command
--------------------------------------------------------------------------------
-
-The PPPM method computes interactions by splitting the pair potential
-into two parts, one of which is computed in a normal pairwise fashion,
-the so-called real-space part, and one of which is computed using the
-Fourier transform, the so called reciprocal-space or kspace part. For
-both parts, the potential is not computed exactly but is approximated.
-Thus, there is an error in both parts of the computation, the
-real-space and the kspace error. The just mentioned facts are true
-both for the PPPM for Coulomb as well as dispersion interactions. The
-deciding difference - and also the reason why the parameters for
-pppm/disp have to be selected with more care - is the impact of the
-errors on the results: The kspace error of the PPPM for Coulomb and
-dispersion interaction and the real-space error of the PPPM for
-Coulomb interaction have the character of noise. In contrast, the
-real-space error of the PPPM for dispersion has a clear physical
-interpretation: the underprediction of cohesion. As a consequence, the
-real-space error has a much stronger effect than the kspace error on
-simulation results for pppm/disp. Parameters must thus be chosen in a
-way that this error is much smaller than the kspace error.
-
-When using pppm/disp and not making any specifications on the PPPM
-parameters via the kspace modify command, parameters will be tuned
-such that the real-space error and the kspace error are equal. This
-will result in simulations that are either inaccurate or slow, both of
-which is not desirable. For selecting parameters for the pppm/disp
-that provide fast and accurate simulations, there are two approaches,
-which both have their up- and downsides.
-
-The first approach is to set desired real-space an kspace accuracies
-via the *kspace_modify force/disp/real* and *kspace_modify
-force/disp/kspace* commands. Note that the accuracies have to be
-specified in force units and are thus dependend on the chosen unit
-settings. For real units, 0.0001 and 0.002 seem to provide reasonable
-accurate and efficient computations for the real-space and kspace
-accuracies. 0.002 and 0.05 work well for most systems using lj
-units. PPPM parameters will be generated based on the desired
-accuracies. The upside of this approach is that it usually provides a
-good set of parameters and will work for both the *kspace_modify diff
-ad* and *kspace_modify diff ik* options. The downside of the method
-is that setting the PPPM parameters will take some time during the
-initialization of the simulation.
-
-The second approach is to set the parameters for the pppm/disp
-explicitly using the *kspace_modify mesh/disp*, *kspace_modify
-order/disp*, and *kspace_modify gewald/disp* commands. This approach
-requires a more experienced user who understands well the impact of
-the choice of parameters on the simulation accuracy and
-performance. This approach provides a fast initialization of the
-simulation. However, it is sensitive to errors: A combination of
-parameters that will perform well for one system might result in
-far-from-optimal conditions for other simulations. For example,
-parametes that provide accurate and fast computations for
-all-atomistic force fields can provide insufficient accuracy or
-united-atomistic force fields (which is related to that the latter
-typically have larger dispersion coefficients).
-
-To avoid inaccurate or inefficient simulations, the pppm/disp stops
-simulations with an error message if no action is taken to control the
-PPPM parameters. If the automatic parameter generation is desired and
-real-space and kspace accuracies are desired to be equal, this error
-message can be suppressed using the *kspace_modify disp/auto yes*
-command.
-
-A reasonable approach that combines the upsides of both methods is to
-make the first run using the *kspace_modify force/disp/real* and
-*kspace_modify force/disp/kspace* commands, write down the PPPM
-parameters from the outut, and specify these parameters using the
-second approach in subsequent runs (which have the same composition,
-force field, and approximately the same volume).
-
-Concerning the performance of the pppm/disp there are two more things
-to consider. The first is that when using the pppm/disp, the cutoff
-parameter does no longer affect the accuracy of the simulation
-(subject to that gewald/disp is adjusted when changing the cutoff).
-The performance can thus be increased by examining different values
-for the cutoff parameter. A lower bound for the cutoff is only set by
-the truncation error of the repulsive term of pair potentials.
-
-The second is that the mixing rule of the pair style has an impact on
-the computation time when using the pppm/disp. Fastest computations
-are achieved when using the geometric mixing rule. Using the
-arithmetic mixing rule substantially increases the computational cost.
-The computational overhead can be reduced using the *kspace_modify
-mix/disp geom* and *kspace_modify splittol* commands. The first
-command simply enforces geometric mixing of the dispersion
-coeffiecients in kspace computations. This introduces some error in
-the computations but will also significantly speed-up the
-simulations. The second keyword sets the accuracy with which the
-dispersion coefficients are approximated using a matrix factorization
-approach. This may result in better accuracy then using the first
-command, but will usually also not provide an equally good increase of
-efficiency.
-
-Finally, pppm/disp can also be used when no mixing rules apply.
-This can be achieved using the *kspace_modify mix/disp none* command.
-Note that the code does not check automatically whether any mixing
-rule is fulfilled. If mixing rules do not apply, the user will have
-to specify this command explicitly.
-
-
-----------
-
-
-.. _howto_25:
-
-Polarizable models
-------------------
-
-In polarizable force fields the charge distributions in molecules and
-materials respond to their electrostatic environements. Polarizable
-systems can be simulated in LAMMPS using three methods:
-
-* the fluctuating charge method, implemented in the :doc:`QEQ <fix_qeq>`
- package,
-* the adiabatic core-shell method, implemented in the
- :ref:`CORESHELL <howto_26>` package,
-* the thermalized Drude dipole method, implemented in the
- :ref:`USER-DRUDE <howto_27>` package.
-The fluctuating charge method calculates instantaneous charges on
-interacting atoms based on the electronegativity equalization
-principle. It is implemented in the :doc:`fix qeq <fix_qeq>` which is
-available in several variants. It is a relatively efficient technique
-since no additional particles are introduced. This method allows for
-charge transfer between molecules or atom groups. However, because the
-charges are located at the interaction sites, off-plane components of
-polarization cannot be represented in planar molecules or atom groups.
-
-The two other methods share the same basic idea: polarizable atoms are
-split into one core atom and one satellite particle (called shell or
-Drude particle) attached to it by a harmonic spring. Both atoms bear
-a charge and they represent collectively an induced electric dipole.
-These techniques are computationally more expensive than the QEq
-method because of additional particles and bonds. These two
-charge-on-spring methods differ in certain features, with the
-core-shell model being normally used for ionic/crystalline materials,
-whereas the so-called Drude model is normally used for molecular
-systems and fluid states.
-
-The core-shell model is applicable to crystalline materials where the
-high symmetry around each site leads to stable trajectories of the
-core-shell pairs. However, bonded atoms in molecules can be so close
-that a core would interact too strongly or even capture the Drude
-particle of a neighbor. The Drude dipole model is relatively more
-complex in order to remediate this and other issues. Specifically, the
-Drude model includes specific thermostating of the core-Drude pairs
-and short-range damping of the induced dipoles.
-
-The three polarization methods can be implemented through a
-self-consistent calculation of charges or induced dipoles at each
-timestep. In the fluctuating charge scheme this is done by the matrix
-inversion method in :doc:`fix qeq/point <fix_qeq>`, but for core-shell
-or Drude-dipoles the relaxed-dipoles technique would require an slow
-iterative procedure. These self-consistent solutions yield accurate
-trajectories since the additional degrees of freedom representing
-polarization are massless. An alternative is to attribute a mass to
-the additional degrees of freedom and perform time integration using
-an extended Lagrangian technique. For the fluctuating charge scheme
-this is done by :doc:`fix qeq/dynamic <fix_qeq>`, and for the
-charge-on-spring models by the methods outlined in the next two
-sections. The assignment of masses to the additional degrees of
-freedom can lead to unphysical trajectories if care is not exerted in
-choosing the parameters of the poarizable models and the simulation
-conditions.
-
-In the core-shell model the vibration of the shells is kept faster
-than the ionic vibrations to mimic the fast response of the
-polarizable electrons. But in molecular systems thermalizing the
-core-Drude pairs at temperatures comparable to the rest of the
-simulation leads to several problems (kinetic energy transfer, too
-short a timestep, etc.) In order to avoid these problems the relative
-motion of the Drude particles with respect to their cores is kept
-"cold" so the vibration of the core-Drude pairs is very slow,
-approaching the self-consistent regime. In both models the
-temperature is regulated using the velocities of the center of mass of
-core+shell (or Drude) pairs, but in the Drude model the actual
-relative core-Drude particle motion is thermostated separately as
-well.
-
-
-----------
-
-
-.. _howto_26:
-
-Adiabatic core/shell model
---------------------------
-
-The adiabatic core-shell model by :ref:`Mitchell and Finchham <MitchellFinchham>` is a simple method for adding
-polarizability to a system. In order to mimic the electron shell of
-an ion, a satellite particle is attached to it. This way the ions are
-split into a core and a shell where the latter is meant to react to
-the electrostatic environment inducing polarizability.
-
-Technically, shells are attached to the cores by a spring force f =
-k*r where k is a parametrized spring constant and r is the distance
-between the core and the shell. The charges of the core and the shell
-add up to the ion charge, thus q(ion) = q(core) + q(shell). This
-setup introduces the ion polarizability (alpha) given by
-alpha = q(shell)^2 / k. In a
-similar fashion the mass of the ion is distributed on the core and the
-shell with the core having the larger mass.
-
-To run this model in LAMMPS, :doc:`atom_style <atom_style>` *full* can
-be used since atom charge and bonds are needed. Each kind of
-core/shell pair requires two atom types and a bond type. The core and
-shell of a core/shell pair should be bonded to each other with a
-harmonic bond that provides the spring force. For example, a data file
-for NaCl, as found in examples/coreshell, has this format:
-
-.. parsed-literal::
-
- 432 atoms # core and shell atoms
- 216 bonds # number of core/shell springs
-
-.. parsed-literal::
-
- 4 atom types # 2 cores and 2 shells for Na and Cl
- 2 bond types
-
-.. parsed-literal::
-
- 0.0 24.09597 xlo xhi
- 0.0 24.09597 ylo yhi
- 0.0 24.09597 zlo zhi
-
-.. parsed-literal::
-
- Masses # core/shell mass ratio = 0.1
-
-.. parsed-literal::
-
- 1 20.690784 # Na core
- 2 31.90500 # Cl core
- 3 2.298976 # Na shell
- 4 3.54500 # Cl shell
-
-.. parsed-literal::
-
- Atoms
-
-.. parsed-literal::
-
- 1 1 2 1.5005 0.00000000 0.00000000 0.00000000 # core of core/shell pair 1
- 2 1 4 -2.5005 0.00000000 0.00000000 0.00000000 # shell of core/shell pair 1
- 3 2 1 1.5056 4.01599500 4.01599500 4.01599500 # core of core/shell pair 2
- 4 2 3 -0.5056 4.01599500 4.01599500 4.01599500 # shell of core/shell pair 2
- (...)
-
-.. parsed-literal::
-
- Bonds # Bond topology for spring forces
-
-.. parsed-literal::
-
- 1 2 1 2 # spring for core/shell pair 1
- 2 2 3 4 # spring for core/shell pair 2
- (...)
-
-Non-Coulombic (e.g. Lennard-Jones) pairwise interactions are only
-defined between the shells. Coulombic interactions are defined
-between all cores and shells. If desired, additional bonds can be
-specified between cores.
-
-The :doc:`special_bonds <special_bonds>` command should be used to
-turn-off the Coulombic interaction within core/shell pairs, since that
-interaction is set by the bond spring. This is done using the
-:doc:`special_bonds <special_bonds>` command with a 1-2 weight = 0.0,
-which is the default value. It needs to be considered whether one has
-to adjust the :doc:`special_bonds <special_bonds>` weighting according
-to the molecular topology since the interactions of the shells are
-bypassed over an extra bond.
-
-Note that this core/shell implementation does not require all ions to
-be polarized. One can mix core/shell pairs and ions without a
-satellite particle if desired.
-
-Since the core/shell model permits distances of r = 0.0 between the
-core and shell, a pair style with a "cs" suffix needs to be used to
-implement a valid long-range Coulombic correction. Several such pair
-styles are provided in the CORESHELL package. See :doc:`this doc page <pair_cs>` for details. All of the core/shell enabled pair
-styles require the use of a long-range Coulombic solver, as specified
-by the :doc:`kspace_style <kspace_style>` command. Either the PPPM or
-Ewald solvers can be used.
-
-For the NaCL example problem, these pair style and bond style settings
-are used:
-
-.. parsed-literal::
-
- pair_style born/coul/long/cs 20.0 20.0
- pair_coeff * * 0.0 1.000 0.00 0.00 0.00
- pair_coeff 3 3 487.0 0.23768 0.00 1.05 0.50 #Na-Na
- pair_coeff 3 4 145134.0 0.23768 0.00 6.99 8.70 #Na-Cl
- pair_coeff 4 4 405774.0 0.23768 0.00 72.40 145.40 #Cl-Cl
-
-.. parsed-literal::
-
- bond_style harmonic
- bond_coeff 1 63.014 0.0
- bond_coeff 2 25.724 0.0
-
-When running dynamics with the adiabatic core/shell model, the
-following issues should be considered. Since the relative motion of
-the core and shell particles corresponds to the polarization, typical
-thermostats can alter the polarization behaviour, meaning the shell
-will not react freely to its electrostatic environment. This is
-critical during the equilibration of the system. Therefore
-it's typically desirable to decouple the relative motion of the
-core/shell pair, which is an imaginary degree of freedom, from the
-real physical system. To do that, the :doc:`compute temp/cs <compute_temp_cs>` command can be used, in conjunction with
-any of the thermostat fixes, such as :doc:`fix nvt <fix_nh>` or `fix langevin <fix_langevin>`_. This compute uses the center-of-mass velocity
-of the core/shell pairs to calculate a temperature, and insures that
-velocity is what is rescaled for thermostatting purposes. This
-compute also works for a system with both core/shell pairs and
-non-polarized ions (ions without an attached satellite particle). The
-:doc:`compute temp/cs <compute_temp_cs>` command requires input of two
-groups, one for the core atoms, another for the shell atoms.
-Non-polarized ions which might also be included in the treated system
-should not be included into either of these groups, they are taken
-into account by the *group-ID* (2nd argument) of the compute. The
-groups can be defined using the :doc:`group *type* <group>` command.
-Note that to perform thermostatting using this definition of
-temperature, the :doc:`fix modify temp <fix_modify>` command should be
-used to assign the compute to the thermostat fix. Likewise the
-:doc:`thermo_modify temp <thermo_modify>` command can be used to make
-this temperature be output for the overall system.
-
-For the NaCl example, this can be done as follows:
-
-.. parsed-literal::
-
- group cores type 1 2
- group shells type 3 4
- compute CSequ all temp/cs cores shells
- fix thermoberendsen all temp/berendsen 1427 1427 0.4 # thermostat for the true physical system
- fix thermostatequ all nve # integrator as needed for the berendsen thermostat
- fix_modify thermoberendsen temp CSequ
- thermo_modify temp CSequ # output of center-of-mass derived temperature
-
-If :doc:`compute temp/cs <compute_temp_cs>` is used, the decoupled
-relative motion of the core and the shell should in theory be
-stable. However numerical fluctuation can introduce a small
-momentum to the system, which is noticable over long trajectories.
-Therefore it is recomendable to use the :doc:`fix momentum <fix_momentum>` command in combination with :doc:`compute temp/cs <compute_temp_cs>` when equilibrating the system to
-prevent any drift.
-
-When intializing the velocities of a system with core/shell pairs, it
-is also desirable to not introduce energy into the relative motion of
-the core/shell particles, but only assign a center-of-mass velocity to
-the pairs. This can be done by using the *bias* keyword of the
-:doc:`velocity create <velocity>` command and assigning the :doc:`compute temp/cs <compute_temp_cs>` command to the *temp* keyword of the
-:doc:`velocity <velocity>` commmand, e.g.
-
-.. parsed-literal::
-
- velocity all create 1427 134 bias yes temp CSequ
- velocity all scale 1427 temp CSequ
-
-It is important to note that the polarizability of the core/shell
-pairs is based on their relative motion. Therefore the choice of
-spring force and mass ratio need to ensure much faster relative motion
-of the 2 atoms within the core/shell pair than their center-of-mass
-velocity. This allow the shells to effectively react instantaneously
-to the electrostatic environment. This fast movement also limits the
-timestep size that can be used.
-
-The primary literature of the adiabatic core/shell model suggests that
-the fast relative motion of the core/shell pairs only allows negligible
-energy transfer to the environment. Therefore it is not intended to
-decouple the core/shell degree of freedom from the physical system
-during production runs. In other words, the :doc:`compute temp/cs <compute_temp_cs>` command should not be used during
-production runs and is only required during equilibration. This way one
-is consistent with literature (based on the code packages DL_POLY or
-GULP for instance).
-
-The mentioned energy transfer will typically lead to a a small drift
-in total energy over time. This internal energy can be monitored
-using the :doc:`compute chunk/atom <compute_chunk_atom>` and :doc:`compute temp/chunk <compute_temp_chunk>` commands. The internal kinetic
-energies of each core/shell pair can then be summed using the sum()
-special function of the :doc:`variable <variable>` command. Or they can
-be time/averaged and output using the :doc:`fix ave/time <fix_ave_time>`
-command. To use these commands, each core/shell pair must be defined
-as a "chunk". If each core/shell pair is defined as its own molecule,
-the molecule ID can be used to define the chunks. If cores are bonded
-to each other to form larger molecules, the chunks can be identified
-by the :doc:`fix property/atom <fix_property_atom>` via assigning a
-core/shell ID to each atom using a special field in the data file read
-by the :doc:`read_data <read_data>` command. This field can then be
-accessed by the :doc:`compute property/atom <compute_property_atom>`
-command, to use as input to the :doc:`compute chunk/atom <compute_chunk_atom>` command to define the core/shell
-pairs as chunks.
-
-For example,
-
-.. parsed-literal::
-
- fix csinfo all property/atom i_CSID # property/atom command
- read_data NaCl_CS_x0.1_prop.data fix csinfo NULL CS-Info # atom property added in the data-file
- compute prop all property/atom i_CSID
- compute cs_chunk all chunk/atom c_prop
- compute cstherm all temp/chunk cs_chunk temp internal com yes cdof 3.0 # note the chosen degrees of freedom for the core/shell pairs
- fix ave_chunk all ave/time 10 1 10 c_cstherm file chunk.dump mode vector
-
-The additional section in the date file would be formatted like this:
-
-.. parsed-literal::
-
- CS-Info # header of additional section
-
-.. parsed-literal::
-
- 1 1 # column 1 = atom ID, column 2 = core/shell ID
- 2 1
- 3 2
- 4 2
- 5 3
- 6 3
- 7 4
- 8 4
- (...)
-
-
-----------
-
-
-.. _howto_27:
-
-Drude induced dipoles
----------------------
-
-The thermalized Drude model, similarly to the :ref:`core-shell <howto_26>`
-model, representes induced dipoles by a pair of charges (the core atom
-and the Drude particle) connected by a harmonic spring. The Drude
-model has a number of features aimed at its use in molecular systems
-(:ref:`Lamoureux and Roux <Lamoureux>`):
-
-* Thermostating of the additional degrees of freedom associated with the
- induced dipoles at very low temperature, in terms of the reduced
- coordinates of the Drude particles with respect to their cores. This
- makes the trajectory close to that of relaxed induced dipoles.
-* Consistent definition of 1-2 to 1-4 neighbors. A core-Drude particle
- pair represents a single (polarizable) atom, so the special screening
- factors in a covalent structure should be the same for the core and
- the Drude particle. Drude particles have to inherit the 1-2, 1-3, 1-4
- special neighbor relations from their respective cores.
-* Stabilization of the interactions between induced dipoles. Drude
- dipoles on covalently bonded atoms interact too strongly due to the
- short distances, so an atom may capture the Drude particle of a
- neighbor, or the induced dipoles within the same molecule may align
- too much. To avoid this, damping at short range can be done by Thole
- functions (for which there are physical grounds). This Thole damping
- is applied to the point charges composing the induced dipole (the
- charge of the Drude particle and the opposite charge on the core, not
- to the total charge of the core atom).
-A detailed tutorial covering the usage of Drude induced dipoles in
-LAMMPS is :doc:`available here <tutorial_drude>`.
-
-As with the core-shell model, the cores and Drude particles should
-appear in the data file as standard atoms. The same holds for the
-springs between them, which are described by standard harmonic bonds.
-The nature of the atoms (core, Drude particle or non-polarizable) is
-specified via the :doc:`fix drude <fix_drude>` command. The special
-list of neighbors is automatically refactored to account for the
-equivalence of core and Drude particles as regards special 1-2 to 1-4
-screening. It may be necessary to use the *extra* keyword of the
-:doc:`special_bonds <special_bonds>` command. If using :doc:`fix shake <fix_shake>`, make sure no Drude particle is in this fix
-group.
-
-There are two ways to thermostat the Drude particles at a low
-temperature: use either :doc:`fix langevin/drude <fix_langevin_drude>`
-for a Langevin thermostat, or :doc:`fix drude/transform/* <fix_drude_transform>` for a Nose-Hoover
-thermostat. The former requires use of the command :doc:`comm_modify vel yes <comm_modify>`. The latter requires two separate integration
-fixes like *nvt* or *npt*. The correct temperatures of the reduced
-degrees of freedom can be calculated using the :doc:`compute temp/drude <compute_temp_drude>`. This requires also to use the
-command *comm_modify vel yes*.
-
-Short-range damping of the induced dipole interactions can be achieved
-using Thole functions through the the :doc:`pair style thole <pair_thole>` in :doc:`pair_style hybrid/overlay <pair_hybrid>`
-with a Coulomb pair style. It may be useful to use *coul/long/cs* or
-similar from the CORESHELL package if the core and Drude particle come
-too close, which can cause numerical issues.
-
-
-
-
-
-.. _Berendsen:
-
-
-
-**(Berendsen)** Berendsen, Grigera, Straatsma, J Phys Chem, 91,
-6269-6271 (1987).
-
-.. _Cornell:
-
-
-
-**(Cornell)** Cornell, Cieplak, Bayly, Gould, Merz, Ferguson,
-Spellmeyer, Fox, Caldwell, Kollman, JACS 117, 5179-5197 (1995).
-
-.. _Horn:
-
-
-
-**(Horn)** Horn, Swope, Pitera, Madura, Dick, Hura, and Head-Gordon,
-J Chem Phys, 120, 9665 (2004).
-
-.. _Ikeshoji:
-
-
-
-**(Ikeshoji)** Ikeshoji and Hafskjold, Molecular Physics, 81, 251-261
-(1994).
-
-.. _MacKerell:
-
-
-
-**(MacKerell)** MacKerell, Bashford, Bellott, Dunbrack, Evanseck, Field,
-Fischer, Gao, Guo, Ha, et al, J Phys Chem, 102, 3586 (1998).
-
-.. _Mayo:
-
-
-
-**(Mayo)** Mayo, Olfason, Goddard III, J Phys Chem, 94, 8897-8909
-(1990).
-
-.. _Jorgensen:
-
-
-
-**(Jorgensen)** Jorgensen, Chandrasekhar, Madura, Impey, Klein, J Chem
-Phys, 79, 926 (1983).
-
-.. _Price:
-
-
-
-**(Price)** Price and Brooks, J Chem Phys, 121, 10096 (2004).
-
-.. _Shinoda:
-
-
-
-**(Shinoda)** Shinoda, Shiga, and Mikami, Phys Rev B, 69, 134103 (2004).
-
-.. _MitchellFinchham:
-
-
-
-**(Mitchell and Finchham)** Mitchell, Finchham, J Phys Condensed Matter,
-5, 1031-1038 (1993).
-
-.. _Lamoureux:
-
-
-
-**(Lamoureux and Roux)** G. Lamoureux, B. Roux, J. Chem. Phys 119, 3025 (2003)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_intro.txt b/doc/_sources/Section_intro.txt
deleted file mode 100644
index e91563b58..000000000
--- a/doc/_sources/Section_intro.txt
+++ /dev/null
@@ -1,593 +0,0 @@
-Introduction
-============
-
-This section provides an overview of what LAMMPS can and can't do,
-describes what it means for LAMMPS to be an open-source code, and
-acknowledges the funding and people who have contributed to LAMMPS
-over the years.
-
-| 1.1 :ref:`What is LAMMPS <intro_1>`
-| 1.2 :ref:`LAMMPS features <intro_2>`
-| 1.3 :ref:`LAMMPS non-features <intro_3>`
-| 1.4 :ref:`Open source distribution <intro_4>`
-| 1.5 :ref:`Acknowledgments and citations <intro_5>`
-|
-
-
-
-
-
-.. _intro_1:
-
-What is LAMMPS
---------------
-
-LAMMPS is a classical molecular dynamics code that models an ensemble
-of particles in a liquid, solid, or gaseous state. It can model
-atomic, polymeric, biological, metallic, granular, and coarse-grained
-systems using a variety of force fields and boundary conditions.
-
-For examples of LAMMPS simulations, see the Publications page of the
-`LAMMPS WWW Site <lws_>`_.
-
-LAMMPS runs efficiently on single-processor desktop or laptop
-machines, but is designed for parallel computers. It will run on any
-parallel machine that compiles C++ and supports the `MPI <mpi_>`_
-message-passing library. This includes distributed- or shared-memory
-parallel machines and Beowulf-style clusters.
-
-.. _mpi: http://www-unix.mcs.anl.gov/mpi
-
-
-
-LAMMPS can model systems with only a few particles up to millions or
-billions. See :doc:`Section_perf <Section_perf>` for information on
-LAMMPS performance and scalability, or the Benchmarks section of the
-`LAMMPS WWW Site <lws_>`_.
-
-LAMMPS is a freely-available open-source code, distributed under the
-terms of the `GNU Public License <gnu_>`_, which means you can use or
-modify the code however you wish. See :ref:`this section <intro_4>` for a
-brief discussion of the open-source philosophy.
-
-.. _gnu: http://www.gnu.org/copyleft/gpl.html
-
-
-
-LAMMPS is designed to be easy to modify or extend with new
-capabilities, such as new force fields, atom types, boundary
-conditions, or diagnostics. See :doc:`Section_modify <Section_modify>`
-for more details.
-
-The current version of LAMMPS is written in C++. Earlier versions
-were written in F77 and F90. See
-:doc:`Section_history <Section_history>` for more information on
-different versions. All versions can be downloaded from the `LAMMPS WWW Site <lws_>`_.
-
-LAMMPS was originally developed under a US Department of Energy CRADA
-(Cooperative Research and Development Agreement) between two DOE labs
-and 3 companies. It is distributed by `Sandia National Labs <snl_>`_.
-See :ref:`this section <intro_5>` for more information on LAMMPS funding and
-individuals who have contributed to LAMMPS.
-
-.. _snl: http://www.sandia.gov
-
-
-
-In the most general sense, LAMMPS integrates Newton's equations of
-motion for collections of atoms, molecules, or macroscopic particles
-that interact via short- or long-range forces with a variety of
-initial and/or boundary conditions. For computational efficiency
-LAMMPS uses neighbor lists to keep track of nearby particles. The
-lists are optimized for systems with particles that are repulsive at
-short distances, so that the local density of particles never becomes
-too large. On parallel machines, LAMMPS uses spatial-decomposition
-techniques to partition the simulation domain into small 3d
-sub-domains, one of which is assigned to each processor. Processors
-communicate and store "ghost" atom information for atoms that border
-their sub-domain. LAMMPS is most efficient (in a parallel sense) for
-systems whose particles fill a 3d rectangular box with roughly uniform
-density. Papers with technical details of the algorithms used in
-LAMMPS are listed in :ref:`this section <intro_5>`.
-
-
-----------
-
-
-.. _intro_2:
-
-LAMMPS features
----------------
-
-This section highlights LAMMPS features, with pointers to specific
-commands which give more details. If LAMMPS doesn't have your
-favorite interatomic potential, boundary condition, or atom type, see
-:doc:`Section_modify <Section_modify>`, which describes how you can add
-it to LAMMPS.
-
-General features
-^^^^^^^^^^^^^^^^
-
-* runs on a single processor or in parallel
-* distributed-memory message-passing parallelism (MPI)
-* spatial-decomposition of simulation domain for parallelism
-* open-source distribution
-* highly portable C++
-* optional libraries used: MPI and single-processor FFT
-* GPU (CUDA and OpenCL), Intel(R) Xeon Phi(TM) coprocessors, and OpenMP support for many code features
-* easy to extend with new features and functionality
-* runs from an input script
-* syntax for defining and using variables and formulas
-* syntax for looping over runs and breaking out of loops
-* run one or multiple simulations simultaneously (in parallel) from one script
-* build as library, invoke LAMMPS thru library interface or provided Python wrapper
-* couple with other codes: LAMMPS calls other code, other code calls LAMMPS, umbrella code calls both
-
-Particle and model types
-^^^^^^^^^^^^^^^^^^^^^^^^
-
-(:doc:`atom style <atom_style>` command)
-
-* atoms
-* coarse-grained particles (e.g. bead-spring polymers)
-* united-atom polymers or organic molecules
-* all-atom polymers, organic molecules, proteins, DNA
-* metals
-* granular materials
-* coarse-grained mesoscale models
-* finite-size spherical and ellipsoidal particles
-* finite-size line segment (2d) and triangle (3d) particles
-* point dipole particles
-* rigid collections of particles
-* hybrid combinations of these
-
-Force fields
-^^^^^^^^^^^^
-
-(:doc:`pair style <pair_style>`, :doc:`bond style <bond_style>`,
-:doc:`angle style <angle_style>`, :doc:`dihedral style <dihedral_style>`,
-:doc:`improper style <improper_style>`, :doc:`kspace style <kspace_style>`
-commands)
-
-* pairwise potentials: Lennard-Jones, Buckingham, Morse, Born-Mayer-Huggins, Yukawa, soft, class 2 (COMPASS), hydrogen bond, tabulated
-* charged pairwise potentials: Coulombic, point-dipole
-* manybody potentials: EAM, Finnis/Sinclair EAM, modified EAM (MEAM), embedded ion method (EIM), EDIP, ADP, Stillinger-Weber, Tersoff, REBO, AIREBO, ReaxFF, COMB, SNAP, Streitz-Mintmire, 3-body polymorphic
-* long-range interactions for charge, point-dipoles, and LJ dispersion: Ewald, Wolf, PPPM (similar to particle-mesh Ewald)
-* polarization models: :doc:`QEq <fix_qeq>`, :ref:`core/shell model <howto_26>`, :ref:`Drude dipole model <howto_27>`
-* charge equilibration (QEq via dynamic, point, shielded, Slater methods)
-* coarse-grained potentials: DPD, GayBerne, REsquared, colloidal, DLVO
-* mesoscopic potentials: granular, Peridynamics, SPH
-* electron force field (eFF, AWPMD)
-* bond potentials: harmonic, FENE, Morse, nonlinear, class 2, quartic (breakable)
-* angle potentials: harmonic, CHARMM, cosine, cosine/squared, cosine/periodic, class 2 (COMPASS)
-* dihedral potentials: harmonic, CHARMM, multi-harmonic, helix, class 2 (COMPASS), OPLS
-* improper potentials: harmonic, cvff, umbrella, class 2 (COMPASS)
-* polymer potentials: all-atom, united-atom, bead-spring, breakable
-* water potentials: TIP3P, TIP4P, SPC
-* implicit solvent potentials: hydrodynamic lubrication, Debye
-* force-field compatibility with common CHARMM, AMBER, DREIDING, OPLS, GROMACS, COMPASS options
-* access to `KIM archive <http://openkim.org>`_ of potentials via :doc:`pair kim <pair_kim>`
-* hybrid potentials: multiple pair, bond, angle, dihedral, improper potentials can be used in one simulation
-* overlaid potentials: superposition of multiple pair potentials
-
-Atom creation
-^^^^^^^^^^^^^
-
-(:doc:`read_data <read_data>`, :doc:`lattice <lattice>`,
-:doc:`create_atoms <create_atoms>`, :doc:`delete_atoms <delete_atoms>`,
-:doc:`displace_atoms <displace_atoms>`, :doc:`replicate <replicate>` commands)
-
-* read in atom coords from files
-* create atoms on one or more lattices (e.g. grain boundaries)
-* delete geometric or logical groups of atoms (e.g. voids)
-* replicate existing atoms multiple times
-* displace atoms
-
-Ensembles, constraints, and boundary conditions
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-(:doc:`fix <fix>` command)
-
-* 2d or 3d systems
-* orthogonal or non-orthogonal (triclinic symmetry) simulation domains
-* constant NVE, NVT, NPT, NPH, Parinello/Rahman integrators
-* thermostatting options for groups and geometric regions of atoms
-* pressure control via Nose/Hoover or Berendsen barostatting in 1 to 3 dimensions
-* simulation box deformation (tensile and shear)
-* harmonic (umbrella) constraint forces
-* rigid body constraints
-* SHAKE bond and angle constraints
-* Monte Carlo bond breaking, formation, swapping
-* atom/molecule insertion and deletion
-* walls of various kinds
-* non-equilibrium molecular dynamics (NEMD)
-* variety of additional boundary conditions and constraints
-
-Integrators
-^^^^^^^^^^^
-
-(:doc:`run <run>`, :doc:`run_style <run_style>`, :doc:`minimize <minimize>` commands)
-
-* velocity-Verlet integrator
-* Brownian dynamics
-* rigid body integration
-* energy minimization via conjugate gradient or steepest descent relaxation
-* rRESPA hierarchical timestepping
-* rerun command for post-processing of dump files
-
-Diagnostics
-^^^^^^^^^^^
-
-* see the various flavors of the :doc:`fix <fix>` and :doc:`compute <compute>` commands
-
-Output
-^^^^^^
-
-(:doc:`dump <dump>`, :doc:`restart <restart>` commands)
-
-* log file of thermodynamic info
-* text dump files of atom coords, velocities, other per-atom quantities
-* binary restart files
-* parallel I/O of dump and restart files
-* per-atom quantities (energy, stress, centro-symmetry parameter, CNA, etc)
-* user-defined system-wide (log file) or per-atom (dump file) calculations
-* spatial and time averaging of per-atom quantities
-* time averaging of system-wide quantities
-* atom snapshots in native, XYZ, XTC, DCD, CFG formats
-
-Multi-replica models
-^^^^^^^^^^^^^^^^^^^^
-
-:doc:`nudged elastic band <neb>`
-:doc:`parallel replica dynamics <prd>`
-:doc:`temperature accelerated dynamics <tad>`
-:doc:`parallel tempering <temper>`
-
-Pre- and post-processing
-^^^^^^^^^^^^^^^^^^^^^^^^
-
-* Various pre- and post-processing serial tools are packaged
- with LAMMPS; see these :doc:`doc pages <Section_tools>`.
-* Our group has also written and released a separate toolkit called
- `Pizza.py <pizza_>`_ which provides tools for doing setup, analysis,
- plotting, and visualization for LAMMPS simulations. Pizza.py is
- written in `Python <python_>`_ and is available for download from `the Pizza.py WWW site <pizza_>`_.
-.. _pizza: http://www.sandia.gov/~sjplimp/pizza.html
-
-
-
-.. _python: http://www.python.org
-
-
-
-Specialized features
-^^^^^^^^^^^^^^^^^^^^
-
-These are LAMMPS capabilities which you may not think of as typical
-molecular dynamics options:
-
-* :doc:`static <balance>` and :doc:`dynamic load-balancing <fix_balance>`
-* :doc:`generalized aspherical particles <body>`
-* :doc:`stochastic rotation dynamics (SRD) <fix_srd>`
-* :doc:`real-time visualization and interactive MD <fix_imd>`
-* calculate :doc:`virtual diffraction patterns <compute_xrd>`
-* :doc:`atom-to-continuum coupling <fix_atc>` with finite elements
-* coupled rigid body integration via the :doc:`POEMS <fix_poems>` library
-* :doc:`QM/MM coupling <fix_qmmm>`
-* :doc:`path-integral molecular dynamics (PIMD) <fix_ipi>` and :doc:`this as well <fix_pimd>`
-* Monte Carlo via :doc:`GCMC <fix_gcmc>` and :doc:`tfMC <fix_tfmc>` and :doc:`atom swapping <fix_swap>`
-* :doc:`Direct Simulation Monte Carlo <pair_dsmc>` for low-density fluids
-* :doc:`Peridynamics mesoscale modeling <pair_peri>`
-* :doc:`Lattice Boltzmann fluid <fix_lb_fluid>`
-* :doc:`targeted <fix_tmd>` and :doc:`steered <fix_smd>` molecular dynamics
-* :doc:`two-temperature electron model <fix_ttm>`
-
-
-----------
-
-
-.. _intro_3:
-
-LAMMPS non-features
--------------------
-
-LAMMPS is designed to efficiently compute Newton's equations of motion
-for a system of interacting particles. Many of the tools needed to
-pre- and post-process the data for such simulations are not included
-in the LAMMPS kernel for several reasons:
-
-* the desire to keep LAMMPS simple
-* they are not parallel operations
-* other codes already do them
-* limited development resources
-
-Specifically, LAMMPS itself does not:
-
-* run thru a GUI
-* build molecular systems
-* assign force-field coefficients automagically
-* perform sophisticated analyses of your MD simulation
-* visualize your MD simulation
-* plot your output data
-
-A few tools for pre- and post-processing tasks are provided as part of
-the LAMMPS package; they are described in :doc:`this section <Section_tools>`. However, many people use other codes or
-write their own tools for these tasks.
-
-As noted above, our group has also written and released a separate
-toolkit called `Pizza.py <pizza_>`_ which addresses some of the listed
-bullets. It provides tools for doing setup, analysis, plotting, and
-visualization for LAMMPS simulations. Pizza.py is written in
-`Python <python_>`_ and is available for download from `the Pizza.py WWW site <pizza_>`_.
-
-LAMMPS requires as input a list of initial atom coordinates and types,
-molecular topology information, and force-field coefficients assigned
-to all atoms and bonds. LAMMPS will not build molecular systems and
-assign force-field parameters for you.
-
-For atomic systems LAMMPS provides a :doc:`create_atoms <create_atoms>`
-command which places atoms on solid-state lattices (fcc, bcc,
-user-defined, etc). Assigning small numbers of force field
-coefficients can be done via the :doc:`pair coeff <pair_coeff>`, :doc:`bond coeff <bond_coeff>`, :doc:`angle coeff <angle_coeff>`, etc commands.
-For molecular systems or more complicated simulation geometries, users
-typically use another code as a builder and convert its output to
-LAMMPS input format, or write their own code to generate atom
-coordinate and molecular topology for LAMMPS to read in.
-
-For complicated molecular systems (e.g. a protein), a multitude of
-topology information and hundreds of force-field coefficients must
-typically be specified. We suggest you use a program like
-`CHARMM <charmm_>`_ or `AMBER <amber_>`_ or other molecular builders to setup
-such problems and dump its information to a file. You can then
-reformat the file as LAMMPS input. Some of the tools in :doc:`this section <Section_tools>` can assist in this process.
-
-Similarly, LAMMPS creates output files in a simple format. Most users
-post-process these files with their own analysis tools or re-format
-them for input into other programs, including visualization packages.
-If you are convinced you need to compute something on-the-fly as
-LAMMPS runs, see :doc:`Section_modify <Section_modify>` for a discussion
-of how you can use the :doc:`dump <dump>` and :doc:`compute <compute>` and
-:doc:`fix <fix>` commands to print out data of your choosing. Keep in
-mind that complicated computations can slow down the molecular
-dynamics timestepping, particularly if the computations are not
-parallel, so it is often better to leave such analysis to
-post-processing codes.
-
-A very simple (yet fast) visualizer is provided with the LAMMPS
-package - see the :ref:`xmovie <xmovie>` tool in :doc:`this section <Section_tools>`. It creates xyz projection views of
-atomic coordinates and animates them. We find it very useful for
-debugging purposes. For high-quality visualization we recommend the
-following packages:
-
-* `VMD <http://www.ks.uiuc.edu/Research/vmd>`_
-* `AtomEye <http://mt.seas.upenn.edu/Archive/Graphics/A>`_
-* `PyMol <http://pymol.sourceforge.net>`_
-* `Raster3d <http://www.bmsc.washington.edu/raster3d/raster3d.html>`_
-* `RasMol <http://www.openrasmol.org>`_
-
-Other features that LAMMPS does not yet (and may never) support are
-discussed in :doc:`Section_history <Section_history>`.
-
-Finally, these are freely-available molecular dynamics codes, most of
-them parallel, which may be well-suited to the problems you want to
-model. They can also be used in conjunction with LAMMPS to perform
-complementary modeling tasks.
-
-* `CHARMM <charmm_>`_
-* `AMBER <amber_>`_
-* `NAMD <namd_>`_
-* `NWCHEM <nwchem_>`_
-* `DL_POLY <dlpoly_>`_
-* `Tinker <tinker_>`_
-
-.. _charmm: http://www.scripps.edu/brooks
-
-
-
-.. _amber: http://amber.scripps.edu
-
-
-
-.. _namd: http://www.ks.uiuc.edu/Research/namd/
-
-
-
-.. _nwchem: http://www.emsl.pnl.gov/docs/nwchem/nwchem.html
-
-
-
-.. _dlpoly: http://www.cse.clrc.ac.uk/msi/software/DL_POLY
-
-
-
-.. _tinker: http://dasher.wustl.edu/tinker
-
-
-
-CHARMM, AMBER, NAMD, NWCHEM, and Tinker are designed primarily for
-modeling biological molecules. CHARMM and AMBER use
-atom-decomposition (replicated-data) strategies for parallelism; NAMD
-and NWCHEM use spatial-decomposition approaches, similar to LAMMPS.
-Tinker is a serial code. DL_POLY includes potentials for a variety of
-biological and non-biological materials; both a replicated-data and
-spatial-decomposition version exist.
-
-
-----------
-
-
-.. _intro_4:
-
-Open source distribution
-------------------------
-
-LAMMPS comes with no warranty of any kind. As each source file states
-in its header, it is a copyrighted code that is distributed free-of-
-charge, under the terms of the `GNU Public License <gnu_>`_ (GPL). This
-is often referred to as open-source distribution - see
-`www.gnu.org <gnuorg_>`_ or `www.opensource.org <opensource_>`_ for more
-details. The legal text of the GPL is in the LICENSE file that is
-included in the LAMMPS distribution.
-
-.. _gnuorg: http://www.gnu.org
-
-
-
-.. _opensource: http://www.opensource.org
-
-
-
-Here is a summary of what the GPL means for LAMMPS users:
-
-(1) Anyone is free to use, modify, or extend LAMMPS in any way they
-choose, including for commercial purposes.
-
-(2) If you distribute a modified version of LAMMPS, it must remain
-open-source, meaning you distribute it under the terms of the GPL.
-You should clearly annotate such a code as a derivative version of
-LAMMPS.
-
-(3) If you release any code that includes LAMMPS source code, then it
-must also be open-sourced, meaning you distribute it under the terms
-of the GPL.
-
-(4) If you give LAMMPS files to someone else, the GPL LICENSE file and
-source file headers (including the copyright and GPL notices) should
-remain part of the code.
-
-In the spirit of an open-source code, these are various ways you can
-contribute to making LAMMPS better. You can send email to the
-`developers <http://lammps.sandia.gov/authors.html>`_ on any of these
-items.
-
-* Point prospective users to the `LAMMPS WWW Site <lws_>`_. Mention it in
- talks or link to it from your WWW site.
-* If you find an error or omission in this manual or on the `LAMMPS WWW Site <lws_>`_, or have a suggestion for something to clarify or include,
- send an email to the
- `developers <http://lammps.sandia.gov/authors.html>`_.
-* If you find a bug, :ref:`Section_errors 2 <err_2>`
- describes how to report it.
-* If you publish a paper using LAMMPS results, send the citation (and
- any cool pictures or movies if you like) to add to the Publications,
- Pictures, and Movies pages of the `LAMMPS WWW Site <lws_>`_, with links
- and attributions back to you.
-* Create a new Makefile.machine that can be added to the src/MAKE
- directory.
-* The tools sub-directory of the LAMMPS distribution has various
- stand-alone codes for pre- and post-processing of LAMMPS data. More
- details are given in :doc:`Section_tools <Section_tools>`. If you write
- a new tool that users will find useful, it can be added to the LAMMPS
- distribution.
-* LAMMPS is designed to be easy to extend with new code for features
- like potentials, boundary conditions, diagnostic computations, etc.
- :doc:`This section <Section_modify>` gives details. If you add a
- feature of general interest, it can be added to the LAMMPS
- distribution.
-* The Benchmark page of the `LAMMPS WWW Site <lws_>`_ lists LAMMPS
- performance on various platforms. The files needed to run the
- benchmarks are part of the LAMMPS distribution. If your machine is
- sufficiently different from those listed, your timing data can be
- added to the page.
-* You can send feedback for the User Comments page of the `LAMMPS WWW Site <lws_>`_. It might be added to the page. No promises.
-* Cash. Small denominations, unmarked bills preferred. Paper sack OK.
- Leave on desk. VISA also accepted. Chocolate chip cookies
- encouraged.
-
-----------
-
-
-.. _intro_5:
-
-Acknowledgments and citations
--------------------------------------------
-
-LAMMPS development has been funded by the `US Department of Energy <doe_>`_ (DOE), through its CRADA, LDRD, ASCI, and Genomes-to-Life
-programs and its `OASCR <oascr_>`_ and `OBER <ober_>`_ offices.
-
-Specifically, work on the latest version was funded in part by the US
-Department of Energy's Genomics:GTL program
-(`www.doegenomestolife.org <gtl_>`_) under the `project <ourgtl_>`_, "Carbon
-Sequestration in Synechococcus Sp.: From Molecular Machines to
-Hierarchical Modeling".
-
-.. _doe: http://www.doe.gov
-
-
-
-.. _gtl: http://www.doegenomestolife.org
-
-
-
-.. _ourgtl: http://www.genomes2life.org
-
-
-
-.. _oascr: http://www.sc.doe.gov/ascr/home.html
-
-
-
-.. _ober: http://www.er.doe.gov/production/ober/ober_top.html
-
-
-
-The following paper describe the basic parallel algorithms used in
-LAMMPS. If you use LAMMPS results in your published work, please cite
-this paper and include a pointer to the `LAMMPS WWW Site <lws_>`_
-(http://lammps.sandia.gov):
-
-S. J. Plimpton, **Fast Parallel Algorithms for Short-Range Molecular
-Dynamics**, J Comp Phys, 117, 1-19 (1995).
-
-Other papers describing specific algorithms used in LAMMPS are listed
-under the `Citing LAMMPS link <http://lammps.sandia.gov/cite.html>`_ of
-the LAMMPS WWW page.
-
-The `Publications link <http://lammps.sandia.gov/papers.html>`_ on the
-LAMMPS WWW page lists papers that have cited LAMMPS. If your paper is
-not listed there for some reason, feel free to send us the info. If
-the simulations in your paper produced cool pictures or animations,
-we'll be pleased to add them to the
-`Pictures <http://lammps.sandia.gov/pictures.html>`_ or
-`Movies <http://lammps.sandia.gov/movies.html>`_ pages of the LAMMPS WWW
-site.
-
-The core group of LAMMPS developers is at Sandia National Labs:
-
-* Steve Plimpton, sjplimp at sandia.gov
-* Aidan Thompson, athomps at sandia.gov
-* Paul Crozier, pscrozi at sandia.gov
-
-The following folks are responsible for significant contributions to
-the code, or other aspects of the LAMMPS development effort. Many of
-the packages they have written are somewhat unique to LAMMPS and the
-code would not be as general-purpose as it is without their expertise
-and efforts.
-
-* Axel Kohlmeyer (Temple U), akohlmey at gmail.com, SVN and Git repositories, indefatigable mail list responder, USER-CG-CMM and USER-OMP packages
-* Roy Pollock (LLNL), Ewald and PPPM solvers
-* Mike Brown (ORNL), brownw at ornl.gov, GPU package
-* Greg Wagner (Sandia), gjwagne at sandia.gov, MEAM package for MEAM potential
-* Mike Parks (Sandia), mlparks at sandia.gov, PERI package for Peridynamics
-* Rudra Mukherjee (JPL), Rudranarayan.M.Mukherjee at jpl.nasa.gov, POEMS package for articulated rigid body motion
-* Reese Jones (Sandia) and collaborators, rjones at sandia.gov, USER-ATC package for atom/continuum coupling
-* Ilya Valuev (JIHT), valuev at physik.hu-berlin.de, USER-AWPMD package for wave-packet MD
-* Christian Trott (U Tech Ilmenau), christian.trott at tu-ilmenau.de, USER-CUDA package
-* Andres Jaramillo-Botero (Caltech), ajaramil at wag.caltech.edu, USER-EFF package for electron force field
-* Christoph Kloss (JKU), Christoph.Kloss at jku.at, USER-LIGGGHTS package for granular models and granular/fluid coupling
-* Metin Aktulga (LBL), hmaktulga at lbl.gov, USER-REAXC package for C version of ReaxFF
-* Georg Gunzenmuller (EMI), georg.ganzenmueller at emi.fhg.de, USER-SPH package
-
-As discussed in :doc:`Section_history <Section_history>`, LAMMPS
-originated as a cooperative project between DOE labs and industrial
-partners. Folks involved in the design and testing of the original
-version of LAMMPS were the following:
-
-* John Carpenter (Mayo Clinic, formerly at Cray Research)
-* Terry Stouch (Lexicon Pharmaceuticals, formerly at Bristol Myers Squibb)
-* Steve Lustig (Dupont)
-* Jim Belak (LLNL)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_modify.txt b/doc/_sources/Section_modify.txt
deleted file mode 100644
index 5f129e19d..000000000
--- a/doc/_sources/Section_modify.txt
+++ /dev/null
@@ -1,993 +0,0 @@
-Modifying & extending LAMMPS
-============================
-
-This section describes how to customize LAMMPS by modifying
-and extending its source code.
-
-| 10.1 :ref:`Atom styles <mod_1>`
-| 10.2 :ref:`Bond, angle, dihedral, improper potentials <mod_2>`
-| 10.3 :ref:`Compute styles <mod_3>`
-| 10.4 :ref:`Dump styles <mod_4>`
-| 10.5 :ref:`Dump custom output options <mod_5>`
-| 10.6 :ref:`Fix styles <mod_6>` which include integrators, temperature and pressure control, force constraints, boundary conditions, diagnostic output, etc
-| 10.7 :ref:`Input script commands <mod_7>`
-| 10.8 :ref:`Kspace computations <mod_8>`
-| 10.9 :ref:`Minimization styles <mod_9>`
-| 10.10 :ref:`Pairwise potentials <mod_10>`
-| 10.11 :ref:`Region styles <mod_11>`
-| 10.12 :ref:`Body styles <mod_12>`
-| 10.13 :ref:`Thermodynamic output options <mod_13>`
-| 10.14 :ref:`Variable options <mod_14>`
-| 10.15 :ref:`Submitting new features for inclusion in LAMMPS <mod_15>`
-|
-
-LAMMPS is designed in a modular fashion so as to be easy to modify and
-extend with new functionality. In fact, about 75% of its source code
-is files added in this fashion.
-
-In this section, changes and additions users can make are listed along
-with minimal instructions. If you add a new feature to LAMMPS and
-think it will be of interest to general users, we encourage you to
-submit it to the developers for inclusion in the released version of
-LAMMPS. Information about how to do this is provided
-:ref:`below <mod_14>`.
-
-The best way to add a new feature is to find a similar feature in
-LAMMPS and look at the corresponding source and header files to figure
-out what it does. You will need some knowledge of C++ to be able to
-understand the hi-level structure of LAMMPS and its class
-organization, but functions (class methods) that do actual
-computations are written in vanilla C-style code and operate on simple
-C-style data structures (vectors and arrays).
-
-Most of the new features described in this section require you to
-write a new C++ derived class (except for exceptions described below,
-where you can make small edits to existing files). Creating a new
-class requires 2 files, a source code file (*.cpp) and a header file
-(*.h). The derived class must provide certain methods to work as a
-new option. Depending on how different your new feature is compared
-to existing features, you can either derive from the base class
-itself, or from a derived class that already exists. Enabling LAMMPS
-to invoke the new class is as simple as putting the two source
-files in the src dir and re-building LAMMPS.
-
-The advantage of C++ and its object-orientation is that all the code
-and variables needed to define the new feature are in the 2 files you
-write, and thus shouldn't make the rest of LAMMPS more complex or
-cause side-effect bugs.
-
-Here is a concrete example. Suppose you write 2 files pair_foo.cpp
-and pair_foo.h that define a new class PairFoo that computes pairwise
-potentials described in the classic 1997 :ref:`paper <Foo>` by Foo, et al.
-If you wish to invoke those potentials in a LAMMPS input script with a
-command like
-
-.. parsed-literal::
-
- pair_style foo 0.1 3.5
-
-then your pair_foo.h file should be structured as follows:
-
-.. parsed-literal::
-
- #ifdef PAIR_CLASS
- PairStyle(foo,PairFoo)
- #else
- ...
- (class definition for PairFoo)
- ...
- #endif
-
-where "foo" is the style keyword in the pair_style command, and
-PairFoo is the class name defined in your pair_foo.cpp and pair_foo.h
-files.
-
-When you re-build LAMMPS, your new pairwise potential becomes part of
-the executable and can be invoked with a pair_style command like the
-example above. Arguments like 0.1 and 3.5 can be defined and
-processed by your new class.
-
-As illustrated by this pairwise example, many kinds of options are
-referred to in the LAMMPS documentation as the "style" of a particular
-command.
-
-The instructions below give the header file for the base class that
-these styles are derived from. Public variables in that file are ones
-used and set by the derived classes which are also used by the base
-class. Sometimes they are also used by the rest of LAMMPS. Virtual
-functions in the base class header file which are set = 0 are ones you
-must define in your new derived class to give it the functionality
-LAMMPS expects. Virtual functions that are not set to 0 are functions
-you can optionally define.
-
-Additionally, new output options can be added directly to the
-thermo.cpp, dump_custom.cpp, and variable.cpp files as explained
-below.
-
-Here are additional guidelines for modifying LAMMPS and adding new
-functionality:
-
-* Think about whether what you want to do would be better as a pre- or
- post-processing step. Many computations are more easily and more
- quickly done that way.
-* Don't do anything within the timestepping of a run that isn't
- parallel. E.g. don't accumulate a bunch of data on a single processor
- and analyze it. You run the risk of seriously degrading the parallel
- efficiency.
-* If your new feature reads arguments or writes output, make sure you
- follow the unit conventions discussed by the :doc:`units <units>`
- command.
-* If you add something you think is truly useful and doesn't impact
- LAMMPS performance when it isn't used, send an email to the
- `developers <http://lammps.sandia.gov/authors.html>`_. We might be
- interested in adding it to the LAMMPS distribution. See further
- details on this at the bottom of this page.
-
-
-
-
-.. _mod_1:
-
-Atom styles
------------
-
-Classes that define an :doc:`atom style <atom_style>` are derived from
-the AtomVec class and managed by the Atom class. The atom style
-determines what attributes are associated with an atom. A new atom
-style can be created if one of the existing atom styles does not
-define all the attributes you need to store and communicate with
-atoms.
-
-Atom_vec_atomic.cpp is a simple example of an atom style.
-
-Here is a brief description of methods you define in your new derived
-class. See atom_vec.h for details.
-
-+-----------------------+--------------------------------------------------------------------------------+
-| init | one time setup (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| grow | re-allocate atom arrays to longer lengths (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| grow_reset | make array pointers in Atom and AtomVec classes consistent (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| copy | copy info for one atom to another atom's array locations (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_comm | store an atom's info in a buffer communicated every timestep (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_comm_vel | add velocity info to communication buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_comm_hybrid | store extra info unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_comm | retrieve an atom's info from the buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_comm_vel | also retrieve velocity info (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_comm_hybrid | retreive extra info unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_reverse | store an atom's info in a buffer communicating partial forces (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_reverse_hybrid | store extra info unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_reverse | retrieve an atom's info from the buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_reverse_hybrid | retreive extra info unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_border | store an atom's info in a buffer communicated on neighbor re-builds (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_border_vel | add velocity info to buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_border_hybrid | store extra info unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_border | retrieve an atom's info from the buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_border_vel | also retrieve velocity info (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_border_hybrid | retreive extra info unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_exchange | store all an atom's info to migrate to another processor (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_exchange | retrieve an atom's info from the buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| size_restart | number of restart quantities associated with proc's atoms (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| pack_restart | pack atom quantities into a buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| unpack_restart | unpack atom quantities from a buffer (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| create_atom | create an individual atom of this style (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| data_atom | parse an atom line from the data file (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-| data_atom_hybrid | parse additional atom info unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| data_vel | parse one line of velocity information from data file (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| data_vel_hybrid | parse additional velocity data unique to this atom style (optional) |
-+-----------------------+--------------------------------------------------------------------------------+
-| memory_usage | tally memory allocated by atom arrays (required) |
-+-----------------------+--------------------------------------------------------------------------------+
-
-The constructor of the derived class sets values for several variables
-that you must set when defining a new atom style, which are documented
-in atom_vec.h. New atom arrays are defined in atom.cpp. Search for
-the word "customize" and you will find locations you will need to
-modify.
-
-.. note::
-
- It is possible to add some attributes, such as a molecule ID, to
- atom styles that do not have them via the :doc:`fix property/atom <fix_property_atom>` command. This command also
- allows new custom attributes consisting of extra integer or
- floating-point values to be added to atoms. See the :doc:`fix property/atom <fix_property_atom>` doc page for examples of cases
- where this is useful and details on how to initialize, access, and
- output the custom values.
-
-New :doc:`pair styles <pair_style>`, :doc:`fixes <fix>`, or
-:doc:`computes <compute>` can be added to LAMMPS, as discussed below.
-The code for these classes can use the per-atom properties defined by
-fix property/atom. The Atom class has a find_custom() method that is
-useful in this context:
-
-.. parsed-literal::
-
- int index = atom->find_custom(char *name, int &flag);
-
-The "name" of a custom attribute, as specified in the :doc:`fix property/atom <fix_property_atom>` command, is checked to verify
-that it exists and its index is returned. The method also sets flag =
-0/1 depending on whether it is an integer or floating-point attribute.
-The vector of values associated with the attribute can then be
-accessed using the returned index as
-
-.. parsed-literal::
-
- int *ivector = atom->ivector[index];
- double *dvector = atom->dvector[index];
-
-Ivector or dvector are vectors of length Nlocal = # of owned atoms,
-which store the attributes of individual atoms.
-
-
-----------
-
-
-.. _mod_2:
-
-Bond, angle, dihedral, improper potentials
-------------------------------------------
-
-Classes that compute molecular interactions are derived from the Bond,
-Angle, Dihedral, and Improper classes. New styles can be created to
-add new potentials to LAMMPS.
-
-Bond_harmonic.cpp is the simplest example of a bond style. Ditto for
-the harmonic forms of the angle, dihedral, and improper style
-commands.
-
-Here is a brief description of common methods you define in your
-new derived class. See bond.h, angle.h, dihedral.h, and improper.h
-for details and specific additional methods.
-
-+----------------------+---------------------------------------------------------------------------+
-| init | check if all coefficients are set, calls *init_style* (optional) |
-+----------------------+---------------------------------------------------------------------------+
-| init_style | check if style specific conditions are met (optional) |
-+----------------------+---------------------------------------------------------------------------+
-| compute | compute the molecular interactions (required) |
-+----------------------+---------------------------------------------------------------------------+
-| settings | apply global settings for all types (optional) |
-+----------------------+---------------------------------------------------------------------------+
-| coeff | set coefficients for one type (required) |
-+----------------------+---------------------------------------------------------------------------+
-| equilibrium_distance | length of bond, used by SHAKE (required, bond only) |
-+----------------------+---------------------------------------------------------------------------+
-| equilibrium_angle | opening of angle, used by SHAKE (required, angle only) |
-+----------------------+---------------------------------------------------------------------------+
-| write & read_restart | writes/reads coeffs to restart files (required) |
-+----------------------+---------------------------------------------------------------------------+
-| single | force and energy of a single bond or angle (required, bond or angle only) |
-+----------------------+---------------------------------------------------------------------------+
-| memory_usage | tally memory allocated by the style (optional) |
-+----------------------+---------------------------------------------------------------------------+
-
-
-----------
-
-
-.. _mod_3:
-
-Compute styles
---------------
-
-Classes that compute scalar and vector quantities like temperature
-and the pressure tensor, as well as classes that compute per-atom
-quantities like kinetic energy and the centro-symmetry parameter
-are derived from the Compute class. New styles can be created
-to add new calculations to LAMMPS.
-
-Compute_temp.cpp is a simple example of computing a scalar
-temperature. Compute_ke_atom.cpp is a simple example of computing
-per-atom kinetic energy.
-
-Here is a brief description of methods you define in your new derived
-class. See compute.h for details.
-
-+---------------------+-----------------------------------------------------------------+
-| init | perform one time setup (required) |
-+---------------------+-----------------------------------------------------------------+
-| init_list | neighbor list setup, if needed (optional) |
-+---------------------+-----------------------------------------------------------------+
-| compute_scalar | compute a scalar quantity (optional) |
-+---------------------+-----------------------------------------------------------------+
-| compute_vector | compute a vector of quantities (optional) |
-+---------------------+-----------------------------------------------------------------+
-| compute_peratom | compute one or more quantities per atom (optional) |
-+---------------------+-----------------------------------------------------------------+
-| compute_local | compute one or more quantities per processor (optional) |
-+---------------------+-----------------------------------------------------------------+
-| pack_comm | pack a buffer with items to communicate (optional) |
-+---------------------+-----------------------------------------------------------------+
-| unpack_comm | unpack the buffer (optional) |
-+---------------------+-----------------------------------------------------------------+
-| pack_reverse | pack a buffer with items to reverse communicate (optional) |
-+---------------------+-----------------------------------------------------------------+
-| unpack_reverse | unpack the buffer (optional) |
-+---------------------+-----------------------------------------------------------------+
-| remove_bias | remove velocity bias from one atom (optional) |
-+---------------------+-----------------------------------------------------------------+
-| remove_bias_all | remove velocity bias from all atoms in group (optional) |
-+---------------------+-----------------------------------------------------------------+
-| restore_bias | restore velocity bias for one atom after remove_bias (optional) |
-+---------------------+-----------------------------------------------------------------+
-| restore_bias_all | same as before, but for all atoms in group (optional) |
-+---------------------+-----------------------------------------------------------------+
-| pair_tally_callback | callback function for *tally*-style computes (optional). |
-+---------------------+-----------------------------------------------------------------+
-| memory_usage | tally memory usage (optional) |
-+---------------------+-----------------------------------------------------------------+
-
-Tally-style computes are a special case, as their computation is done
-in two stages: the callback function is registered with the pair style
-and then called from the Pair::ev_tally() function, which is called for
-each pair after force and energy has been computed for this pair. Then
-the tallied values are retrieved with the standard compute_scalar or
-compute_vector or compute_peratom methods. The USER-TALLY package
-provides *examples*_compute_tally.html for utilizing this mechanism.
-
-
-----------
-
-
-.. _mod_4:
-
-Dump styles
------------
-
-.. _mod_5:
-
-Dump custom output options
---------------------------
-
-Classes that dump per-atom info to files are derived from the Dump
-class. To dump new quantities or in a new format, a new derived dump
-class can be added, but it is typically simpler to modify the
-DumpCustom class contained in the dump_custom.cpp file.
-
-Dump_atom.cpp is a simple example of a derived dump class.
-
-Here is a brief description of methods you define in your new derived
-class. See dump.h for details.
-
-+--------------+---------------------------------------------------+
-| write_header | write the header section of a snapshot of atoms |
-+--------------+---------------------------------------------------+
-| count | count the number of lines a processor will output |
-+--------------+---------------------------------------------------+
-| pack | pack a proc's output data into a buffer |
-+--------------+---------------------------------------------------+
-| write_data | write a proc's data to a file |
-+--------------+---------------------------------------------------+
-
-See the :doc:`dump <dump>` command and its *custom* style for a list of
-keywords for atom information that can already be dumped by
-DumpCustom. It includes options to dump per-atom info from Compute
-classes, so adding a new derived Compute class is one way to calculate
-new quantities to dump.
-
-Alternatively, you can add new keywords to the dump custom command.
-Search for the word "customize" in dump_custom.cpp to see the
-half-dozen or so locations where code will need to be added.
-
-
-----------
-
-
-.. _mod_6:
-
-Fix styles
-----------
-
-In LAMMPS, a "fix" is any operation that is computed during
-timestepping that alters some property of the system. Essentially
-everything that happens during a simulation besides force computation,
-neighbor list construction, and output, is a "fix". This includes
-time integration (update of coordinates and velocities), force
-constraints or boundary conditions (SHAKE or walls), and diagnostics
-(compute a diffusion coefficient). New styles can be created to add
-new options to LAMMPS.
-
-Fix_setforce.cpp is a simple example of setting forces on atoms to
-prescribed values. There are dozens of fix options already in LAMMPS;
-choose one as a template that is similar to what you want to
-implement.
-
-Here is a brief description of methods you can define in your new
-derived class. See fix.h for details.
-
-+-------------------------+-------------------------------------------------------------------------------------------+
-| setmask | determines when the fix is called during the timestep (required) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| init | initialization before a run (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| setup_pre_exchange | called before atom exchange in setup (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| setup_pre_force | called before force computation in setup (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| setup | called immediately before the 1st timestep and after forces are computed (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_setup_pre_force | like setup_pre_force, but for minimizations instead of MD runs (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_setup | like setup, but for minimizations instead of MD runs (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| initial_integrate | called at very beginning of each timestep (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pre_exchange | called before atom exchange on re-neighboring steps (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pre_neighbor | called before neighbor list build (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pre_force | called before pair & molecular forces are computed (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| post_force | called after pair & molecular forces are computed and communicated (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| final_integrate | called at end of each timestep (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| end_of_step | called at very end of timestep (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| write_restart | dumps fix info to restart file (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| restart | uses info from restart file to re-initialize the fix (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| grow_arrays | allocate memory for atom-based arrays used by fix (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| copy_arrays | copy atom info when an atom migrates to a new processor (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pack_exchange | store atom's data in a buffer (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| unpack_exchange | retrieve atom's data from a buffer (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pack_restart | store atom's data for writing to restart file (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| unpack_restart | retrieve atom's data from a restart file buffer (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| size_restart | size of atom's data (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| maxsize_restart | max size of atom's data (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| setup_pre_force_respa | same as setup_pre_force, but for rRESPA (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| initial_integrate_respa | same as initial_integrate, but for rRESPA (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| post_integrate_respa | called after the first half integration step is done in rRESPA (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pre_force_respa | same as pre_force, but for rRESPA (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| post_force_respa | same as post_force, but for rRESPA (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| final_integrate_respa | same as final_integrate, but for rRESPA (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_pre_force | called after pair & molecular forces are computed in minimizer (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_post_force | called after pair & molecular forces are computed and communicated in minmizer (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_store | store extra data for linesearch based minimization on a LIFO stack (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_pushstore | push the minimization LIFO stack one element down (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_popstore | pop the minimization LIFO stack one element up (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_clearstore | clear minimization LIFO stack (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_step | reset or move forward on line search minimization (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| min_dof | report number of degrees of freedom *added* by this fix in minimization (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| max_alpha | report maximum allowed step size during linesearch minimization (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pack_comm | pack a buffer to communicate a per-atom quantity (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| unpack_comm | unpack a buffer to communicate a per-atom quantity (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| pack_reverse_comm | pack a buffer to reverse communicate a per-atom quantity (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| unpack_reverse_comm | unpack a buffer to reverse communicate a per-atom quantity (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| dof | report number of degrees of freedom *removed* by this fix during MD (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| compute_scalar | return a global scalar property that the fix computes (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| compute_vector | return a component of a vector property that the fix computes (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| compute_array | return a component of an array property that the fix computes (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| deform | called when the box size is changed (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| reset_target | called when a change of the target temperature is requested during a run (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| reset_dt | is called when a change of the time step is requested during a run (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| modify_param | called when a fix_modify request is executed (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| memory_usage | report memory used by fix (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-| thermo | compute quantities for thermodynamic output (optional) |
-+-------------------------+-------------------------------------------------------------------------------------------+
-
-Typically, only a small fraction of these methods are defined for a
-particular fix. Setmask is mandatory, as it determines when the fix
-will be invoked during the timestep. Fixes that perform time
-integration (*nve*, *nvt*, *npt*) implement initial_integrate() and
-final_integrate() to perform velocity Verlet updates. Fixes that
-constrain forces implement post_force().
-
-Fixes that perform diagnostics typically implement end_of_step(). For
-an end_of_step fix, one of your fix arguments must be the variable
-"nevery" which is used to determine when to call the fix and you must
-set this variable in the constructor of your fix. By convention, this
-is the first argument the fix defines (after the ID, group-ID, style).
-
-If the fix needs to store information for each atom that persists from
-timestep to timestep, it can manage that memory and migrate the info
-with the atoms as they move from processors to processor by
-implementing the grow_arrays, copy_arrays, pack_exchange, and
-unpack_exchange methods. Similarly, the pack_restart and
-unpack_restart methods can be implemented to store information about
-the fix in restart files. If you wish an integrator or force
-constraint fix to work with rRESPA (see the :doc:`run_style <run_style>`
-command), the initial_integrate, post_force_integrate, and
-final_integrate_respa methods can be implemented. The thermo method
-enables a fix to contribute values to thermodynamic output, as printed
-quantities and/or to be summed to the potential energy of the system.
-
-
-----------
-
-
-.. _mod_7:
-
-Input script commands
----------------------
-
-New commands can be added to LAMMPS input scripts by adding new
-classes that have a "command" method. For example, the create_atoms,
-read_data, velocity, and run commands are all implemented in this
-fashion. When such a command is encountered in the LAMMPS input
-script, LAMMPS simply creates a class with the corresponding name,
-invokes the "command" method of the class, and passes it the arguments
-from the input script. The command method can perform whatever
-operations it wishes on LAMMPS data structures.
-
-The single method your new class must define is as follows:
-
-+---------+-----------------------------------------+
-| command | operations performed by the new command |
-+---------+-----------------------------------------+
-
-Of course, the new class can define other methods and variables as
-needed.
-
-
-----------
-
-
-.. _mod_8:
-
-Kspace computations
--------------------
-
-Classes that compute long-range Coulombic interactions via K-space
-representations (Ewald, PPPM) are derived from the KSpace class. New
-styles can be created to add new K-space options to LAMMPS.
-
-Ewald.cpp is an example of computing K-space interactions.
-
-Here is a brief description of methods you define in your new derived
-class. See kspace.h for details.
-
-+--------------+----------------------------------------------+
-| init | initialize the calculation before a run |
-+--------------+----------------------------------------------+
-| setup | computation before the 1st timestep of a run |
-+--------------+----------------------------------------------+
-| compute | every-timestep computation |
-+--------------+----------------------------------------------+
-| memory_usage | tally of memory usage |
-+--------------+----------------------------------------------+
-
-
-----------
-
-
-.. _mod_9:
-
-Minimization styles
--------------------
-
-Classes that perform energy minimization derived from the Min class.
-New styles can be created to add new minimization algorithms to
-LAMMPS.
-
-Min_cg.cpp is an example of conjugate gradient minimization.
-
-Here is a brief description of methods you define in your new derived
-class. See min.h for details.
-
-+--------------+------------------------------------------+
-| init | initialize the minimization before a run |
-+--------------+------------------------------------------+
-| run | perform the minimization |
-+--------------+------------------------------------------+
-| memory_usage | tally of memory usage |
-+--------------+------------------------------------------+
-
-
-----------
-
-
-.. _mod_10:
-
-Pairwise potentials
--------------------
-
-Classes that compute pairwise interactions are derived from the Pair
-class. In LAMMPS, pairwise calculation include manybody potentials
-such as EAM or Tersoff where particles interact without a static bond
-topology. New styles can be created to add new pair potentials to
-LAMMPS.
-
-Pair_lj_cut.cpp is a simple example of a Pair class, though it
-includes some optional methods to enable its use with rRESPA.
-
-Here is a brief description of the class methods in pair.h:
-
-+-------------------------------+-------------------------------------------------------------------+
-| compute | workhorse routine that computes pairwise interactions |
-+-------------------------------+-------------------------------------------------------------------+
-| settings | reads the input script line with arguments you define |
-+-------------------------------+-------------------------------------------------------------------+
-| coeff | set coefficients for one i,j type pair |
-+-------------------------------+-------------------------------------------------------------------+
-| init_one | perform initialization for one i,j type pair |
-+-------------------------------+-------------------------------------------------------------------+
-| init_style | initialization specific to this pair style |
-+-------------------------------+-------------------------------------------------------------------+
-| write & read_restart | write/read i,j pair coeffs to restart files |
-+-------------------------------+-------------------------------------------------------------------+
-| write & read_restart_settings | write/read global settings to restart files |
-+-------------------------------+-------------------------------------------------------------------+
-| single | force and energy of a single pairwise interaction between 2 atoms |
-+-------------------------------+-------------------------------------------------------------------+
-| compute_inner/middle/outer | versions of compute used by rRESPA |
-+-------------------------------+-------------------------------------------------------------------+
-
-The inner/middle/outer routines are optional.
-
-
-----------
-
-
-.. _mod_11:
-
-Region styles
--------------
-
-Classes that define geometric regions are derived from the Region
-class. Regions are used elsewhere in LAMMPS to group atoms, delete
-atoms to create a void, insert atoms in a specified region, etc. New
-styles can be created to add new region shapes to LAMMPS.
-
-Region_sphere.cpp is an example of a spherical region.
-
-Here is a brief description of methods you define in your new derived
-class. See region.h for details.
-
-+------------------+------------------------------------------------------------------+
-| inside | determine whether a point is in the region |
-+------------------+------------------------------------------------------------------+
-| surface_interior | determine if a point is within a cutoff distance inside of surc |
-+------------------+------------------------------------------------------------------+
-| surface_exterior | determine if a point is within a cutoff distance outside of surf |
-+------------------+------------------------------------------------------------------+
-| shape_update | change region shape if set by time-depedent variable |
-+------------------+------------------------------------------------------------------+
-
-
-----------
-
-
-.. _mod_12:
-
-Body styles
------------
-
-Classes that define body particles are derived from the Body class.
-Body particles can represent complex entities, such as surface meshes
-of discrete points, collections of sub-particles, deformable objects,
-etc.
-
-See :ref:`Section_howto 14 <howto_14>` of the manual for
-an overview of using body particles and the :doc:`body <body>` doc page
-for details on the various body styles LAMMPS supports. New styles
-can be created to add new kinds of body particles to LAMMPS.
-
-Body_nparticle.cpp is an example of a body particle that is treated as
-a rigid body containing N sub-particles.
-
-Here is a brief description of methods you define in your new derived
-class. See body.h for details.
-
-+--------------------+-----------------------------------------------------------+
-| data_body | process a line from the Bodies section of a data file |
-+--------------------+-----------------------------------------------------------+
-| noutrow | number of sub-particles output is generated for |
-+--------------------+-----------------------------------------------------------+
-| noutcol | number of values per-sub-particle output is generated for |
-+--------------------+-----------------------------------------------------------+
-| output | output values for the Mth sub-particle |
-+--------------------+-----------------------------------------------------------+
-| pack_comm_body | body attributes to communicate every timestep |
-+--------------------+-----------------------------------------------------------+
-| unpack_comm_body | unpacking of those attributes |
-+--------------------+-----------------------------------------------------------+
-| pack_border_body | body attributes to communicate when reneighboring is done |
-+--------------------+-----------------------------------------------------------+
-| unpack_border_body | unpacking of those attributes |
-+--------------------+-----------------------------------------------------------+
-
-
-----------
-
-
-.. _mod_13:
-
-Thermodynamic output options
-----------------------------
-
-There is one class that computes and prints thermodynamic information
-to the screen and log file; see the file thermo.cpp.
-
-There are two styles defined in thermo.cpp: "one" and "multi". There
-is also a flexible "custom" style which allows the user to explicitly
-list keywords for quantities to print when thermodynamic info is
-output. See the :doc:`thermo_style <thermo_style>` command for a list
-of defined quantities.
-
-The thermo styles (one, multi, etc) are simply lists of keywords.
-Adding a new style thus only requires defining a new list of keywords.
-Search for the word "customize" with references to "thermo style" in
-thermo.cpp to see the two locations where code will need to be added.
-
-New keywords can also be added to thermo.cpp to compute new quantities
-for output. Search for the word "customize" with references to
-"keyword" in thermo.cpp to see the several locations where code will
-need to be added.
-
-Note that the :doc:`thermo_style custom <thermo>` command already allows
-for thermo output of quantities calculated by :doc:`fixes <fix>`,
-:doc:`computes <compute>`, and :doc:`variables <variable>`. Thus, it may
-be simpler to compute what you wish via one of those constructs, than
-by adding a new keyword to the thermo command.
-
-
-----------
-
-
-.. _mod_14:
-
-Variable options
-----------------
-
-There is one class that computes and stores :doc:`variable <variable>`
-information in LAMMPS; see the file variable.cpp. The value
-associated with a variable can be periodically printed to the screen
-via the :doc:`print <print>`, :doc:`fix print <fix_print>`, or
-:doc:`thermo_style custom <thermo_style>` commands. Variables of style
-"equal" can compute complex equations that involve the following types
-of arguments:
-
-.. parsed-literal::
-
- thermo keywords = ke, vol, atoms, ...
- other variables = v_a, v_myvar, ...
- math functions = div(x,y), mult(x,y), add(x,y), ...
- group functions = mass(group), xcm(group,x), ...
- atom values = x[123], y[3], vx[34], ...
- compute values = c_mytemp[0], c_thermo_press[3], ...
-
-Adding keywords for the :doc:`thermo_style custom <thermo_style>` command
-(which can then be accessed by variables) was discussed
-:ref:`here <thermo>` on this page.
-
-Adding a new math function of one or two arguments can be done by
-editing one section of the Variable::evaulate() method. Search for
-the word "customize" to find the appropriate location.
-
-Adding a new group function can be done by editing one section of the
-Variable::evaulate() method. Search for the word "customize" to find
-the appropriate location. You may need to add a new method to the
-Group class as well (see the group.cpp file).
-
-Accessing a new atom-based vector can be done by editing one section
-of the Variable::evaulate() method. Search for the word "customize"
-to find the appropriate location.
-
-Adding new :doc:`compute styles <compute>` (whose calculated values can
-then be accessed by variables) was discussed
-:ref:`here <compute>` on this page.
-
-
-
-
-
-.. _mod_15:
-
-Submitting new features for inclusion in LAMMPS
------------------------------------------------
-
-We encourage users to submit new features to `the developers <http://lammps.sandia.gov/authors.html>`_ that they add to
-LAMMPS, especially if you think they will be of interest to other
-users. The preferred way to do this is via GitHub. Once you have
-prepared the content described below, see :doc:`this tutorial <tutorial_github>` for instructions on how to submit
-your changes or new files.
-
-If the new features/files are broadly useful we may add them as core
-files to LAMMPS or as part of a :ref:`standard package <start_3>`. Else we will add them as a
-user-contributed file or package. Examples of user packages are in
-src sub-directories that start with USER. The USER-MISC package is
-simply a collection of (mostly) unrelated single files, which is the
-simplest way to have your contribution quickly added to the LAMMPS
-distribution. You can see a list of the both standard and user
-packages by typing "make package" in the LAMMPS src directory.
-
-Note that by providing us files to release, you are agreeing to make
-them open-source, i.e. we can release them under the terms of the GPL,
-used as a license for the rest of LAMMPS. See :ref:`Section 1.4 <intro_4>` for details.
-
-With user packages and files, all we are really providing (aside from
-the fame and fortune that accompanies having your name in the source
-code and on the `Authors page <http://lammps.sandia.gov/authors.html>`_
-of the `LAMMPS WWW site <lws_>`_), is a means for you to distribute your
-work to the LAMMPS user community, and a mechanism for others to
-easily try out your new feature. This may help you find bugs or make
-contact with new collaborators. Note that you're also implicitly
-agreeing to support your code which means answer questions, fix bugs,
-and maintain it if LAMMPS changes in some way that breaks it (an
-unusual event).
-
-.. note::
-
- If you prefer to actively develop and support your add-on
- feature yourself, then you may wish to make it available for download
- from your own website, as a user package that LAMMPS users can add to
- their copy of LAMMPS. See the `Offsite LAMMPS packages and tools <http://lammps.sandia.gov/offsite.html>`_ page of the LAMMPS web
- site for examples of groups that do this. We are happy to advertise
- your package and web site from that page. Simply email the
- `developers <http://lammps.sandia.gov/authors.html>`_ with info about
- your package and we will post it there.
-
-The previous sections of this doc page describe how to add new "style"
-files of various kinds to LAMMPS. Packages are simply collections of
-one or more new class files which are invoked as a new style within a
-LAMMPS input script. If designed correctly, these additions typically
-do not require changes to the main core of LAMMPS; they are simply
-add-on files. If you think your new feature requires non-trivial
-changes in core LAMMPS files, you'll need to `communicate with the developers <http://lammps.sandia.gov/authors.html>`_, since we may or may
-not want to make those changes. An example of a trivial change is
-making a parent-class method "virtual" when you derive a new child
-class from it.
-
-Here are the steps you need to follow to submit a single file or user
-package for our consideration. Following these steps will save both
-you and us time. See existing files in packages in the src dir for
-examples.
-
-* All source files you provide must compile with the most current
- version of LAMMPS.
-* If you want your file(s) to be added to main LAMMPS or one of its
- standard packages, then it needs to be written in a style compatible
- with other LAMMPS source files. This is so the developers can
- understand it and hopefully maintain it. This basically means that
- the code accesses data structures, performs its operations, and is
- formatted similar to other LAMMPS source files, including the use of
- the error class for error and warning messages.
-* If you want your contribution to be added as a user-contributed
- feature, and it's a single file (actually a *.cpp and *.h file) it can
- rapidly be added to the USER-MISC directory. Send us the one-line
- entry to add to the USER-MISC/README file in that dir, along with the
- 2 source files. You can do this multiple times if you wish to
- contribute several individual features.
-* If you want your contribution to be added as a user-contribution and
- it is several related featues, it is probably best to make it a user
- package directory with a name like USER-FOO. In addition to your new
- files, the directory should contain a README text file. The README
- should contain your name and contact information and a brief
- description of what your new package does. If your files depend on
- other LAMMPS style files also being installed (e.g. because your file
- is a derived class from the other LAMMPS class), then an Install.sh
- file is also needed to check for those dependencies. See other README
- and Install.sh files in other USER directories as examples. Send us a
- tarball of this USER-FOO directory.
-* Your new source files need to have the LAMMPS copyright, GPL notice,
- and your name and email address at the top, like other
- user-contributed LAMMPS source files. They need to create a class
- that is inside the LAMMPS namespace. If the file is for one of the
- USER packages, including USER-MISC, then we are not as picky about the
- coding style (see above). I.e. the files do not need to be in the
- same stylistic format and syntax as other LAMMPS files, though that
- would be nice for developers as well as users who try to read your
- code.
-* You must also create a documentation file for each new command or
- style you are adding to LAMMPS. This will be one file for a
- single-file feature. For a package, it might be several files. These
- are simple text files which we auto-convert to HTML. Thus they must
- be in the same format as other *.txt files in the lammps/doc directory
- for similar commands and styles; use one or more of them as a starting
- point. As appropriate, the text files can include links to equations
- (see doc/Eqs/*.tex for examples, we auto-create the associated JPG
- files), or figures (see doc/JPG for examples), or even additional PDF
- files with further details (see doc/PDF for examples). The doc page
- should also include literature citations as appropriate; see the
- bottom of doc/fix_nh.txt for examples and the earlier part of the same
- file for how to format the cite itself. The "Restrictions" section of
- the doc page should indicate that your command is only available if
- LAMMPS is built with the appropriate USER-MISC or USER-FOO package.
- See other user package doc files for examples of how to do this. The
- txt2html tool we use to convert to HTML can be downloaded from `this site <http://www.sandia.gov/~sjplimp/download.html>`_, so you can perform
- the HTML conversion yourself to proofread your doc page.
-* For a new package (or even a single command) you can include one or
- more example scripts. These should run in no more than 1 minute, even
- on a single processor, and not require large data files as input. See
- directories under examples/USER for examples of input scripts other
- users provided for their packages.
-* If there is a paper of yours describing your feature (either the
- algorithm/science behind the feature itself, or its initial usage, or
- its implementation in LAMMPS), you can add the citation to the *.cpp
- source file. See src/USER-EFF/atom_vec_electron.cpp for an example.
- A LaTeX citation is stored in a variable at the top of the file and a
- single line of code that references the variable is added to the
- constructor of the class. Whenever a user invokes your feature from
- their input script, this will cause LAMMPS to output the citation to a
- log.cite file and prompt the user to examine the file. Note that you
- should only use this for a paper you or your group authored.
- E.g. adding a cite in the code for a paper by Nose and Hoover if you
- write a fix that implements their integrator is not the intended
- usage. That kind of citation should just be in the doc page you
- provide.
-Finally, as a general rule-of-thumb, the more clear and
-self-explanatory you make your doc and README files, and the easier
-you make it for people to get started, e.g. by providing example
-scripts, the more likely it is that users will try out your new
-feature.
-
-
-
-
-
-.. _Foo:
-
-
-
-**(Foo)** Foo, Morefoo, and Maxfoo, J of Classic Potentials, 75, 345 (1997).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_packages.txt b/doc/_sources/Section_packages.txt
deleted file mode 100644
index d309962e3..000000000
--- a/doc/_sources/Section_packages.txt
+++ /dev/null
@@ -1,2405 +0,0 @@
-Packages
-========
-
-This section gives an overview of the add-on optional packages that
-extend LAMMPS functionality. Packages are groups of files that enable
-a specific set of features. For example, force fields for molecular
-systems or granular systems are in packages. You can see the list of
-all packages by typing "make package" from within the src directory of
-the LAMMPS distribution.
-
-Here are links for two tables below, which list standard and user
-packages.
-
-| 4.1 :ref:`Standard packages <pkg_1>`
-| 4.2 :ref:`User packages <pkg_2>`
-|
-
-:ref:`Section_start 3 <start_3>` of the manual describes
-the difference between standard packages and user packages. It also
-has general details on how to include/exclude specific packages as
-part of the LAMMPS build process, and on how to build auxiliary
-libraries or modify a machine Makefile if a package requires it.
-
-Following the two tables below, is a sub-section for each package. It
-has a summary of what the package contains. It has specific
-instructions on how to install it, build or obtain any auxiliary
-library it requires, and any Makefile.machine changes it requires. It
-also lists pointers to examples of its use or documentation provided
-in the LAMMPS distribution. If you want to know the complete list of
-commands that a package adds to LAMMPS, simply list the files in its
-directory, e.g. "ls src/GRANULAR". Source files with names that start
-with compute, fix, pair, bond, etc correspond to command styles with
-the same names.
-
-.. note::
-
- The USER package sub-sections below are still being filled in,
- as of March 2016.
-
-Unless otherwise noted below, every package is independent of all the
-others. I.e. any package can be included or excluded in a LAMMPS
-build, independent of all other packages. However, note that some
-packages include commands derived from commands in other packages. If
-the other package is not installed, the derived command from the new
-package will also not be installed when you include the new one.
-E.g. the pair lj/cut/coul/long/omp command from the USER-OMP package
-will not be installed as part of the USER-OMP package if the KSPACE
-package is not also installed, since it contains the pair
-lj/cut/coul/long command. If you later install the KSPACE package and
-the USER-OMP package is already installed, both the pair
-lj/cut/coul/long and lj/cut/coul/long/omp commands will be installed.
-
-
-----------
-
-
-.. _pkg_1:
-
-Standard packages
------------------------------
-
-The current list of standard packages is as follows. Each package
-name links to a sub-section below with more details.
-
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| Package | Description | Author(s) | Doc page | Example | Library |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`ASPHERE <ASPHERE>` | aspherical particles | - | :ref:`Section_howto 6.14 <howto_14>` | ellipse | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`BODY <BODY>` | body-style particles | - | :doc:`body <body>` | body | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`CLASS2 <CLASS2>` | class 2 force fields | - | :doc:`pair_style lj/class2 <pair_class2>` | - | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`COLLOID <COLLOID>` | colloidal particles | Kumar (1) | :doc:`atom_style colloid <atom_style>` | colloid | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`COMPRESS <COMPRESS>` | I/O compression | Axel Kohlmeyer (Temple U) | :doc:`dump */gz <dump>` | - | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`CORESHELL <CORESHELL>` | adiabatic core/shell model | Hendrik Heenen (Technical U of Munich) | :ref:`Section_howto 6.25 <howto_25>` | coreshell | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`DIPOLE <DIPOLE>` | point dipole particles | - | :doc:`pair_style dipole/cut <pair_dipole>` | dipole | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`GPU <GPU>` | GPU-enabled styles | Mike Brown (ORNL) | :doc:`Section accelerate <accelerate_gpu>` | gpu | lib/gpu |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`GRANULAR <GRANULAR>` | granular systems | - | :ref:`Section_howto 6.6 <howto_6>` | pour | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`KIM <KIM>` | openKIM potentials | Smirichinski & Elliot & Tadmor (3) | :doc:`pair_style kim <pair_kim>` | kim | KIM |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`KOKKOS <KOKKOS>` | Kokkos-enabled styles | Trott & Moore (4) | :doc:`Section_accelerate <accelerate_kokkos>` | kokkos | lib/kokkos |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`KSPACE <KSPACE>` | long-range Coulombic solvers | - | :doc:`kspace_style <kspace_style>` | peptide | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`MANYBODY <MANYBODY>` | many-body potentials | - | :doc:`pair_style tersoff <pair_tersoff>` | shear | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`MEAM <MEAM>` | modified EAM potential | Greg Wagner (Sandia) | :doc:`pair_style meam <pair_meam>` | meam | lib/meam |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`MC <MC>` | Monte Carlo options | - | :doc:`fix gcmc <fix_gcmc>` | - | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`MOLECULE <MOLECULE>` | molecular system force fields | - | :ref:`Section_howto 6.3 <howto_3>` | peptide | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`OPT <OPT>` | optimized pair styles | Fischer & Richie & Natoli (2) | :doc:`Section accelerate <accelerate_opt>` | - | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`PERI <PERI>` | Peridynamics models | Mike Parks (Sandia) | :doc:`pair_style peri <pair_peri>` | peri | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`POEMS <POEMS>` | coupled rigid body motion | Rudra Mukherjee (JPL) | :doc:`fix poems <fix_poems>` | rigid | lib/poems |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`PYTHON <PYTHON>` | embed Python code in an input script | - | :doc:`python <python>` | python | lib/python |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`REAX <REAX>` | ReaxFF potential | Aidan Thompson (Sandia) | :doc:`pair_style reax <pair_reax>` | reax | lib/reax |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`REPLICA <REPLICA>` | multi-replica methods | - | :ref:`Section_howto 6.5 <howto_5>` | tad | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`RIGID <RIGID>` | rigid bodies | - | :doc:`fix rigid <fix_rigid>` | rigid | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`SHOCK <SHOCK>` | shock loading methods | - | :doc:`fix msst <fix_msst>` | - | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`SNAP <SNAP>` | quantum-fit potential | Aidan Thompson (Sandia) | :doc:`pair snap <pair_snap>` | snap | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`SRD <SRD>` | stochastic rotation dynamics | - | :doc:`fix srd <fix_srd>` | srd | - |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| :ref:`VORONOI <VORONOI>` | Voronoi tesselations | Daniel Schwen (LANL) | :doc:`compute voronoi/atom <compute_voronoi_atom>` | - | Voro++ |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-| | | | | | |
-+------------------------------+--------------------------------------+----------------------------------------+----------------------------------------------------+-----------+------------+
-
-The "Authors" column lists a name(s) if a specific person is
-responible for creating and maintaining the package.
-
-(1) The COLLOID package includes Fast Lubrication Dynamics pair styles
-which were created by Amit Kumar and Michael Bybee from Jonathan
-Higdon's group at UIUC.
-
-(2) The OPT package was created by James Fischer (High Performance
-Technologies), David Richie, and Vincent Natoli (Stone Ridge
-Technolgy).
-
-(3) The KIM package was created by Valeriu Smirichinski, Ryan Elliott,
-and Ellad Tadmor (U Minn).
-
-(4) The KOKKOS package was created primarily by Christian Trott and
-Stan Moore (Sandia). It uses the Kokkos library which was developed
-by Carter Edwards, Christian Trott, and others at Sandia.
-
-The "Doc page" column links to either a sub-section of the
-:doc:`Section_howto <Section_howto>` of the manual, or an input script
-command implemented as part of the package, or to additional
-documentation provided within the package.
-
-The "Example" column is a sub-directory in the examples directory of
-the distribution which has an input script that uses the package.
-E.g. "peptide" refers to the examples/peptide directory.
-
-The "Library" column lists an external library which must be built
-first and which LAMMPS links to when it is built. If it is listed as
-lib/package, then the code for the library is under the lib directory
-of the LAMMPS distribution. See the lib/package/README file for info
-on how to build the library. If it is not listed as lib/package, then
-it is a third-party library not included in the LAMMPS distribution.
-See details on all of this below for individual packages.
-p.s.: are we ever going to get commit messages from you? ;-)
-
-
-----------
-
-
-.. _ASPHERE:
-
-ASPHERE package
-^^^^^^^^^^^^^^^
-
-Contents: Several computes, time-integration fixes, and pair styles
-for aspherical particle models: ellipsoids, 2d lines, 3d triangles.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-asphere
- make machine
-
-.. parsed-literal::
-
- Make.py -p asphere -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-asphere
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^asphere -a machine
-
-Supporting info: :ref:`Section howto 6.14 <howto_14>`,
-:doc:`pair_style gayberne <pair_gayberne>`, :doc:`pair_style resquared <pair_resquared>`,
-`doc/PDF/pair_gayberne_extra.pdf <PDF/pair_gayberne_extra.pdf>`_,
-`doc/PDF/pair_resquared_extra.pdf <PDF/pair_resquared_extra.pdf>`_,
-examples/ASPHERE, examples/ellipse
-
-
-----------
-
-
-.. _BODY:
-
-BODY package
-^^^^^^^^^^^^
-
-Contents: Support for body-style particles. Computes,
-time-integration fixes, pair styles, as well as the body styles
-themselves. See the :doc:`body <body>` doc page for an overview.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-body
- make machine
-
-.. parsed-literal::
-
- Make.py -p body -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-body
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^body -a machine
-
-Supporting info: :doc:`atom_style body <atom_style>`, :doc:`body <body>`,
-:doc:`pair_style body <pair_body>`, examples/body
-
-
-----------
-
-
-.. _CLASS2:
-
-CLASS2 package
-^^^^^^^^^^^^^^
-
-Contents: Bond, angle, dihedral, improper, and pair styles for the
-COMPASS CLASS2 molecular force field.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-class2
- make machine
-
-.. parsed-literal::
-
- Make.py -p class2 -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-class2
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^class2 -a machine
-
-Supporting info: :doc:`bond_style class2 <bond_class2>`, :doc:`angle_style class2 <angle_class2>`, :doc:`dihedral_style class2 <dihedral_class2>`, :doc:`improper_style class2 <improper_class2>`, :doc:`pair_style lj/class2 <pair_class2>`
-
-
-----------
-
-
-.. _COLLOID:
-
-COLLOID package
-^^^^^^^^^^^^^^^
-
-Contents: Support for coarse-grained colloidal particles. Wall fix
-and pair styles that implement colloidal interaction models for
-finite-size particles. This includes the Fast Lubrication Dynamics
-method for hydrodynamic interactions, which is a simplified
-approximation to Stokesian dynamics.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-colloid
- make machine
-
-.. parsed-literal::
-
- Make.py -p colloid -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-colloid
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^colloid -a machine
-
-Supporting info: :doc:`fix wall/colloid <fix_wall>`, :doc:`pair_style colloid <pair_colloid>`, :doc:`pair_style yukawa/colloid <pair_yukawa_colloid>`, :doc:`pair_style brownian <pair_brownian>`, :doc:`pair_style lubricate <pair_lubricate>`, :doc:`pair_style lubricateU <pair_lubricateU>`, examples/colloid, examples/srd
-
-
-----------
-
-
-.. _COMPRESS:
-
-COMPRESS package
-^^^^^^^^^^^^^^^^
-
-Contents: Support for compressed output of dump files via the zlib
-compression library, using dump styles with a "gz" in their style
-name.
-
-Building with the COMPRESS package assumes you have the zlib
-compression library available on your system. The build uses the
-lib/compress/Makefile.lammps file in the compile/link process. You
-should only need to edit this file if the LAMMPS build cannot find the
-zlib info it specifies.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-compress
- make machine
-
-.. parsed-literal::
-
- Make.py -p compress -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-compress
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^compress -a machine
-
-Supporting info: src/COMPRESS/README, lib/compress/README, :doc:`dump atom/gz <dump>`, :doc:`dump cfg/gz <dump>`, :doc:`dump custom/gz <dump>`, :doc:`dump xyz/gz <dump>`
-
-
-----------
-
-
-.. _CORESHELL:
-
-CORESHELL package
-^^^^^^^^^^^^^^^^^
-
-Contents: Compute and pair styles that implement the adiabatic
-core/shell model for polarizability. The compute temp/cs command
-measures the temperature of a system with core/shell particles. The
-pair styles augment Born, Buckingham, and Lennard-Jones styles with
-core/shell capabilities. See :ref:`Section howto 6.26 <howto_26>` for an overview of how to use the
-package.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-coreshell
- make machine
-
-.. parsed-literal::
-
- Make.py -p coreshell -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-coreshell
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^coreshell -a machine
-
-Supporting info: :ref:`Section howto 6.26 <howto_26>`, :doc:`compute temp/cs <compute_temp_cs>`,
-:doc:`pair_style born/coul/long/cs <pair_cs>`, :doc:`pair_style buck/coul/long/cs <pair_cs>`, pair_style
-lj/cut/coul/long/cs"_pair_lj.html, examples/coreshell
-
-
-----------
-
-
-.. _DIPOLE:
-
-DIPOLE package
-^^^^^^^^^^^^^^
-
-Contents: An atom style and several pair styles to support point
-dipole models with short-range or long-range interactions.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-dipole
- make machine
-
-.. parsed-literal::
-
- Make.py -p dipole -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-dipole
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^dipole -a machine
-
-Supporting info: :doc:`atom_style dipole <atom_style>`, :doc:`pair_style lj/cut/dipole/cut <pair_dipole>`, :doc:`pair_style lj/cut/dipole/long <pair_dipole>`, :doc:`pair_style lj/long/dipole/long <pair_dipole>`, examples/dipole
-
-
-----------
-
-
-.. _GPU:
-
-GPU package
-^^^^^^^^^^^
-
-Contents: Dozens of pair styles and a version of the PPPM long-range
-Coulombic solver for NVIDIA GPUs. All of them have a "gpu" in their
-style name. :doc:`Section accelerate gpu <accelerate_gpu>` gives
-details of what hardware and Cuda software is required on your system,
-and how to build and use this package. See the KOKKOS and USER-CUDA
-packages, which also have GPU-enabled styles.
-
-Building LAMMPS with the GPU package requires first building the GPU
-library itself, which is a set of C and Cuda files in lib/gpu.
-Details of how to do this are in lib/gpu/README. As illustrated
-below, perform a "make" using one of the Makefile.machine files in
-lib/gpu which should create a lib/reax/libgpu.a file.
-Makefile.linux.* and Makefile.xk7 are examples for different
-platforms. There are 3 important settings in the Makefile.machine you
-use:
-
-* CUDA_HOME = where NVIDIA Cuda software is installed on your system
-* CUDA_ARCH = appropriate to your GPU hardware
-* CUDA_PREC = precision (double, mixed, single) you desire
-
-See example Makefile.machine files in lib/gpu for the syntax of these
-settings. See lib/gpu/Makefile.linux.double for ARCH settings for
-various NVIDIA GPUs. The "make" also creates a
-lib/gpu/Makefile.lammps file. This file has settings that enable
-LAMMPS to link with Cuda libraries. If the settings in
-Makefile.lammps for your machine are not correct, the LAMMPS link will
-fail. Note that the Make.py script has a "-gpu" option to allow the
-GPU library (with several of its options) and LAMMPS to be built in
-one step, with Type "python src/Make.py -h -gpu" to see the details.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- cd ~/lammps/lib/gpu
- make -f Makefile.linux.mixed # for example
- cd ~/lammps/src
- make yes-gpu
- make machine
-
-.. parsed-literal::
-
- Make.py -p gpu -gpu mode=mixed arch=35 -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-gpu
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^gpu -a machine
-
-Supporting info: src/GPU/README, lib/gpu/README, :doc:`Section acclerate <Section_accelerate>`, :doc:`Section accelerate gpu <accelerate_gpu>`, Pair Styles section of :ref:`Section commands 3.5 <cmd_5>` for any pair style listed with a (g),
-:doc:`kspace_style <kspace_style>`, :doc:`package gpu <package>`,
-examples/accelerate, bench/FERMI, bench/KEPLER
-
-
-----------
-
-
-.. _GRANULAR:
-
-GRANULAR package
-^^^^^^^^^^^^^^^^
-
-Contents: Fixes and pair styles that support models of finite-size
-granular particles, which interact with each other and boundaries via
-frictional and dissipative potentials.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-granular
- make machine
-
-.. parsed-literal::
-
- Make.py -p granular -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-granular
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^granular -a machine
-
-Supporting info: :ref:`Section howto 6.6 <howto_6>`, :doc:`fix pour <fix_pour>`, :doc:`fix wall/gran <fix_wall_gran>`, :doc:`pair_style gran/hooke <pair_gran>`, :doc:`pair_style gran/hertz/history <pair_gran>`, examples/pour, bench/in.chute
-
-
-----------
-
-
-.. _KIM:
-
-KIM package
-^^^^^^^^^^^
-
-Contents: A pair style that interfaces to the Knowledge Base for
-Interatomic Models (KIM) repository of interatomic potentials, so that
-KIM potentials can be used in a LAMMPS simulation.
-
-To build LAMMPS with the KIM package you must have previously
-installed the KIM API (library) on your system. The lib/kim/README
-file explains how to download and install KIM. Building with the KIM
-package also uses the lib/kim/Makefile.lammps file in the compile/link
-process. You should not need to edit this file.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-kim
- make machine
-
-.. parsed-literal::
-
- Make.py -p kim -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-kim
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^kim -a machine
-
-Supporting info: src/KIM/README, lib/kim/README, :doc:`pair_style kim <pair_kim>`, examples/kim
-
-
-----------
-
-
-.. _KOKKOS:
-
-KOKKOS package
-^^^^^^^^^^^^^^
-
-Contents: Dozens of atom, pair, bond, angle, dihedral, improper styles
-which run with the Kokkos library to provide optimization for
-multicore CPUs (via OpenMP), NVIDIA GPUs, or the Intel Xeon Phi (in
-native mode). All of them have a "kk" in their style name. :doc:`Section accelerate kokkos <accelerate_kokkos>` gives details of what
-hardware and software is required on your system, and how to build and
-use this package. See the GPU, OPT, USER-CUDA, USER-INTEL, USER-OMP
-packages, which also provide optimizations for the same range of
-hardware.
-
-Building with the KOKKOS package requires choosing which of 3 hardware
-options you are optimizing for: CPU acceleration via OpenMP, GPU
-acceleration, or Intel Xeon Phi. (You can build multiple times to
-create LAMMPS executables for different hardware.) It also requires a
-C++11 compatible compiler. For GPUs, the NVIDIA "nvcc" compiler is
-used, and an appopriate KOKKOS_ARCH setting should be made in your
-Makefile.machine for your GPU hardware and NVIDIA software.
-
-The simplest way to do this is to use Makefile.kokkos_cuda or
-Makefile.kokkos_omp or Makefile.kokkos_phi in src/MAKE/OPTIONS, via
-"make kokkos_cuda" or "make kokkos_omp" or "make kokkos_phi". (Check
-the KOKKOS_ARCH setting in Makefile.kokkos_cuda), Or, as illustrated
-below, you can use the Make.py script with its "-kokkos" option to
-choose which hardware to build for. Type "python src/Make.py -h
--kokkos" to see the details. If these methods do not work on your
-system, you will need to read the :doc:`Section accelerate kokkos <accelerate_kokkos>` doc page for details of what
-Makefile.machine settings are needed.
-
-To install via make or Make.py for each of 3 hardware options:
-
-.. parsed-literal::
-
- make yes-kokkos
- make kokkos_omp # for CPUs with OpenMP
- make kokkos_cuda # for GPUs, check the KOKKOS_ARCH setting in Makefile.kokkos_cuda
- make kokkos_phi # for Xeon Phis
-
-Make.py -p kokkos -kokkos omp -a machine # for CPUs with OpenMP
-Make.py -p kokkos -kokkos cuda arch=35 -a machine # for GPUs of style arch
-Make.py -p kokkos -kokkos phi -a machine # for Xeon Phis
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-kokkos
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^kokkos -a machine
-
-Supporting info: src/KOKKOS/README, lib/kokkos/README, :doc:`Section acclerate <Section_accelerate>`, :doc:`Section accelerate kokkos <accelerate_kokkos>`, Pair Styles section of :ref:`Section commands 3.5 <cmd_5>` for any pair style listed
-with a (k), :doc:`package kokkos <package>`,
-examples/accelerate, bench/FERMI, bench/KEPLER
-
-
-----------
-
-
-.. _KSPACE:
-
-KSPACE package
-^^^^^^^^^^^^^^
-
-Contents: A variety of long-range Coulombic solvers, and pair styles
-which compute the corresponding short-range portion of the pairwise
-Coulombic interactions. These include Ewald, particle-particle
-particle-mesh (PPPM), and multilevel summation method (MSM) solvers.
-
-Building with the KSPACE package requires a 1d FFT library be present
-on your system for use by the PPPM solvers. This can be the KISS FFT
-library provided with LAMMPS, or 3rd party libraries like FFTW or a
-vendor-supplied FFT library. See step 6 of :ref:`Section start 2.2.2 <start_2_2>` of the manual for details of how
-to select different FFT options in your machine Makefile. The Make.py
-tool has an "-fft" option which can insert these settings into your
-machine Makefile automatically. Type "python src/Make.py -h -fft" to
-see the details.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-kspace
- make machine
-
-.. parsed-literal::
-
- Make.py -p kspace -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-kspace
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^kspace -a machine
-
-Supporting info: :doc:`kspace_style <kspace_style>`,
-`doc/PDF/kspace.pdf <PDF/kspace.pdf>`_, :ref:`Section howto 6.7 <howto_7>`, :ref:`Section howto 6.8 <howto_8>`, :ref:`Section howto 6.9 <howto_9>`, :doc:`pair_style coul <pair_coul>`,
-other pair style command doc pages which have "long" or "msm" in their
-style name, examples/peptide, bench/in.rhodo
-
-
-----------
-
-
-.. _MANYBODY:
-
-MANYBODY package
-^^^^^^^^^^^^^^^^
-
-Contents: A variety of many-body and bond-order potentials. These
-include (AI)REBO, EAM, EIM, BOP, Stillinger-Weber, and Tersoff
-potentials. Do a directory listing, "ls src/MANYBODY", to see
-the full list.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-manybody
- make machine
-
-.. parsed-literal::
-
- Make.py -p manybody -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-manybody
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^manybody -a machine
-
-Supporting info:
-
-Examples: Pair Styles section of :ref:`Section commands 3.5 <cmd_5>`, examples/comb, examples/eim,
-examples/nb3d, examples/vashishta
-
-
-----------
-
-
-.. _MC:
-
-MC package
-^^^^^^^^^^
-
-Contents: Several fixes and a pair style that have Monte Carlo (MC) or
-MC-like attributes. These include fixes for creating, breaking, and
-swapping bonds, and for performing atomic swaps and grand-canonical MC
-in conjuction with dynamics.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-mc
- make machine
-
-.. parsed-literal::
-
- Make.py -p mc -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-mc
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^mc -a machine
-
-Supporting info: :doc:`fix atom/swap <fix_atom_swap>`, :doc:`fix bond/break <fix_bond_break>`, :doc:`fix bond/create <fix_bond_create>`, :doc:`fix bond/swap <fix_bond_swap>`,
-:doc:`fix gcmc <fix_gcmc>`, :doc:`pair_style dsmc <pair_dsmc>`
-
-
-----------
-
-
-.. _MEAM:
-
-MEAM package
-^^^^^^^^^^^^
-
-Contents: A pair style for the modified embedded atom (MEAM)
-potential.
-
-Building LAMMPS with the MEAM package requires first building the MEAM
-library itself, which is a set of Fortran 95 files in lib/meam.
-Details of how to do this are in lib/meam/README. As illustrated
-below, perform a "make" using one of the Makefile.machine files in
-lib/meam which should create a lib/meam/libmeam.a file.
-Makefile.gfortran and Makefile.ifort are examples for the GNU Fortran
-and Intel Fortran compilers. The "make" also copies a
-lib/meam/Makefile.lammps.machine file to lib/meam/Makefile.lammps.
-This file has settings that enable the C++ compiler used to build
-LAMMPS to link with a Fortran library (typically the 2 compilers to be
-consistent e.g. both Intel compilers, or both GNU compilers). If the
-settings in Makefile.lammps for your compilers and machine are not
-correct, the LAMMPS link will fail. Note that the Make.py script has
-a "-meam" option to allow the MEAM library and LAMMPS to be built in
-one step. Type "python src/Make.py -h -meam" to see the details.
-
-.. note::
-
- The MEAM potential can run dramatically faster if built with the
- Intel Fortran compiler, rather than the GNU Fortran compiler.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- cd ~/lammps/lib/meam
- make -f Makefile.gfortran # for example
- cd ~/lammps/src
- make yes-meam
- make machine
-
-.. parsed-literal::
-
- Make.py -p meam -meam make=gfortran -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-meam
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^meam -a machine
-
-Supporting info: lib/meam/README, :doc:`pair_style meam <pair_meam>`,
-examples/meam
-
-
-----------
-
-
-.. _MISC:
-
-MISC package
-^^^^^^^^^^^^
-
-Contents: A variety of computes, fixes, and pair styles that are not
-commonly used, but don't align with other packages. Do a directory
-listing, "ls src/MISC", to see the list of commands.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-misc
- make machine
-
-.. parsed-literal::
-
- Make.py -p misc -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-misc
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^misc -a machine
-
-Supporting info: :doc:`compute ti <compute_ti>`, :doc:`fix evaporate <fix_evaporate>`, :doc:`fix tmm <fix_ttm>`, :doc:`fix viscosity <fix_viscosity>`, examples/misc
-
-
-----------
-
-
-.. _MOLECULE:
-
-MOLECULE package
-^^^^^^^^^^^^^^^^
-
-Contents: A large number of atom, pair, bond, angle, dihedral,
-improper styles that are used to model molecular systems with fixed
-covalent bonds. The pair styles include terms for the Dreiding
-(hydrogen-bonding) and CHARMM force fields, and TIP4P water model.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-molecule
- make machine
-
-.. parsed-literal::
-
- Make.py -p molecule -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-molecule
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^molecule -a machine
-
-Supporting info::doc:`atom_style <atom_style>`,
-:doc:`bond_style <bond_style>`, :doc:`angle_style <angle_style>`,
-:doc:`dihedral_style <dihedral_style>`,
-:doc:`improper_style <improper_style>`, :doc:`pair_style hbond/dreiding/lj <pair_hbond_dreiding>`, :doc:`pair_style lj/charmm/coul/charmm <pair_charmm>`, :ref:`Section howto 6.3 <howto_3>`, examples/micelle, examples/peptide,
-bench/in.chain, bench/in.rhodo
-
-
-----------
-
-
-.. _MPIIO:
-
-MPIIO package
-^^^^^^^^^^^^^
-
-Contents: Support for parallel output/input of dump and restart files
-via the MPIIO library, which is part of the standard message-passing
-interface (MPI) library. It adds :doc:`dump styles <dump>` with a
-"mpiio" in their style name. Restart files with an ".mpiio" suffix
-are also written and read in parallel.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-mpiio
- make machine
-
-.. parsed-literal::
-
- Make.py -p mpiio -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-mpiio
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^mpiio -a machine
-
-Supporting info: :doc:`dump <dump>`, :doc:`restart <restart>`,
-:doc:`write_restart <write_restart>`, :doc:`read_restart <read_restart>`
-
-
-----------
-
-
-.. _OPT:
-
-OPT package
-^^^^^^^^^^^
-
-Contents: A handful of pair styles with an "opt" in their style name
-which are optimized for improved CPU performance on single or multiple
-cores. These include EAM, LJ, CHARMM, and Morse potentials. :doc:`Section accelerate opt <accelerate_opt>` gives details of how to build and
-use this package. See the KOKKOS, USER-INTEL, and USER-OMP packages,
-which also have styles optimized for CPU performance.
-
-Some C++ compilers, like the Intel compiler, require the compile flag
-"-restrict" to build LAMMPS with the OPT package. It should be added
-to the CCFLAGS line of your Makefile.machine. Or use Makefile.opt in
-src/MAKE/OPTIONS, via "make opt". For compilers that use the flag,
-the Make.py command adds it automatically to the Makefile.auto file it
-creates and uses.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-opt
- make machine
-
-.. parsed-literal::
-
- Make.py -p opt -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-opt
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^opt -a machine
-
-Supporting info: :doc:`Section acclerate <Section_accelerate>`, :doc:`Section accelerate opt <accelerate_opt>`, Pair Styles section of :ref:`Section commands 3.5 <cmd_5>` for any pair style listed
-with an (o), examples/accelerate, bench/KEPLER
-
-
-----------
-
-
-.. _PERI:
-
-PERI package
-^^^^^^^^^^^^
-
-Contents: Support for the Peridynamics method, a particle-based
-meshless continuum model. The package includes an atom style, several
-computes which calculate diagnostics, and several Peridynamic pair
-styles which implement different materials models.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-peri
- make machine
-
-.. parsed-literal::
-
- Make.py -p peri -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-peri
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^peri -a machine
-
-Supporting info:
-`doc/PDF/PDLammps_overview.pdf <PDF/PDLammps_overview.pdf>`_,
-`doc/PDF/PDLammps_EPS.pdf <PDF/PDLammps_EPS.pdf>`_,
-`doc/PDF/PDLammps_VES.pdf <PDF/PDLammps_VES.pdf>`_, :doc:`atom_style peri <atom_style>`, :doc:`compute damage <compute_damage>`,
-:doc:`pair_style peri/pmb <pair_peri>`, examples/peri
-
-
-----------
-
-
-.. _POEMS:
-
-POEMS package
-^^^^^^^^^^^^^
-
-Contents: A fix that wraps the Parallelizable Open source Efficient
-Multibody Software (POEMS) librar, which is able to simulate the
-dynamics of articulated body systems. These are systems with multiple
-rigid bodies (collections of atoms or particles) whose motion is
-coupled by connections at hinge points.
-
-Building LAMMPS with the POEMS package requires first building the
-POEMS library itself, which is a set of C++ files in lib/poems.
-Details of how to do this are in lib/poems/README. As illustrated
-below, perform a "make" using one of the Makefile.machine files in
-lib/poems which should create a lib/meam/libpoems.a file.
-Makefile.g++ and Makefile.icc are examples for the GNU and Intel C++
-compilers. The "make" also creates a lib/poems/Makefile.lammps file
-which you should not need to change. Note the Make.py script has a
-"-poems" option to allow the POEMS library and LAMMPS to be built in
-one step. Type "python src/Make.py -h -poems" to see the details.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- cd ~/lammps/lib/poems
- make -f Makefile.g++ # for example
- cd ~/lammps/src
- make yes-poems
- make machine
-
-.. parsed-literal::
-
- Make.py -p poems -poems make=g++ -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-meam
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^meam -a machine
-
-Supporting info: src/POEMS/README, lib/poems/README,
-:doc:`fix poems <fix_poems>`, examples/rigid
-
-
-----------
-
-
-.. _PYTHON:
-
-PYTHON package
-^^^^^^^^^^^^^^
-
-Contents: A :doc:`python <python>` command which allow you to execute
-Python code from a LAMMPS input script. The code can be in a separate
-file or embedded in the input script itself. See :ref:`Section python 11.2 <py_2">` for an overview of using Python from
-LAMMPS and `Section python <Section_python.html">`_ for other ways to use
-LAMMPS and Python together.
-
-Building with the PYTHON package assumes you have a Python shared
-library available on your system, which needs to be a Python 2
-version, 2.6 or later. Python 3 is not supported. The build uses the
-contents of the lib/python/Makefile.lammps file to find all the Python
-files required in the build/link process. See the lib/python/README
-file if the settings in that file do not work on your system. Note
-that the Make.py script has a "-python" option to allow an alternate
-lib/python/Makefile.lammps file to be specified and LAMMPS to be built
-in one step. Type "python src/Make.py -h -python" to see the details.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-python
- make machine
-
-.. parsed-literal::
-
- Make.py -p python -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-python
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^python -a machine
-
-Supporting info: examples/python
-
-
-----------
-
-
-.. _QEQ:
-
-QEQ package
-^^^^^^^^^^^
-
-Contents: Several fixes for performing charge equilibration (QEq) via
-severeal different algorithms. These can be used with pair styles
-that use QEq as part of their formulation.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-qeq
- make machine
-
-.. parsed-literal::
-
- Make.py -p qeq -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-qeq
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^qeq -a machine
-
-Supporting info: :doc:`fix qeq/* <fix_qeq>`, examples/qeq
-
-
-----------
-
-
-.. _REAX:
-
-REAX package
-^^^^^^^^^^^^
-
-Contents: A pair style for the ReaxFF potential, a universal reactive
-force field, as well as a :doc:`fix reax/bonds <fix_reax_bonds>` command
-for monitoring molecules as bonds are created and destroyed.
-
-Building LAMMPS with the REAX package requires first building the REAX
-library itself, which is a set of Fortran 95 files in lib/reax.
-Details of how to do this are in lib/reax/README. As illustrated
-below, perform a "make" using one of the Makefile.machine files in
-lib/reax which should create a lib/reax/libreax.a file.
-Makefile.gfortran and Makefile.ifort are examples for the GNU Fortran
-and Intel Fortran compilers. The "make" also copies a
-lib/reax/Makefile.lammps.machine file to lib/reax/Makefile.lammps.
-This file has settings that enable the C++ compiler used to build
-LAMMPS to link with a Fortran library (typically the 2 compilers to be
-consistent e.g. both Intel compilers, or both GNU compilers). If the
-settings in Makefile.lammps for your compilers and machine are not
-correct, the LAMMPS link will fail. Note that the Make.py script has
-a "-reax" option to allow the REAX library and LAMMPS to be built in
-one step. Type "python src/Make.py -h -reax" to see the details.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- cd ~/lammps/lib/reax
- make -f Makefile.gfortran # for example
- cd ~/lammps/src
- make yes-reax
- make machine
-
-.. parsed-literal::
-
- Make.py -p reax -reax make=gfortran -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-reax
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^reax -a machine
-
-Supporting info: lib/reax/README, :doc:`pair_style reax <pair_reax>`,
-:doc:`fix reax/bonds <fix_reax_bonds>`, examples/reax
-
-
-----------
-
-
-.. _REPLICA:
-
-REPLICA package
-^^^^^^^^^^^^^^^
-
-Contents: A collection of multi-replica methods that are used by
-invoking multiple instances (replicas) of LAMMPS
-simulations. Communication between individual replicas is performed in
-different ways by the different methods. See :ref:`Section howto 6.5 <howto_5>` for an overview of how to run
-multi-replica simulations in LAMMPS. Multi-replica methods included
-in the package are nudged elastic band (NEB), parallel replica
-dynamics (PRD), temperature accelerated dynamics (TAD), parallel
-tempering, and a verlet/split algorithm for performing long-range
-Coulombics on one set of processors, and the remainded of the force
-field calcalation on another set.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-replica
- make machine
-
-.. parsed-literal::
-
- Make.py -p replica -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-replica
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^replica -a machine
-
-Supporting info: :ref:`Section howto 6.5 <howto_5>`,
-:doc:`neb <neb>`, :doc:`prd <prd>`, :doc:`tad <tad>`, :doc:`temper <temper>`,
-:doc:`run_style verlet/split <run_style>`, examples/neb, examples/prd,
-examples/tad
-
-
-----------
-
-
-.. _RIGID:
-
-RIGID package
-^^^^^^^^^^^^^
-
-Contents: A collection of computes and fixes which enforce rigid
-constraints on collections of atoms or particles. This includes SHAKE
-and RATTLE, as well as variants of rigid-body time integrators for a
-few large bodies or many small bodies.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-rigid
- make machine
-
-.. parsed-literal::
-
- Make.py -p rigid -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-rigid
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^rigid -a machine
-
-Supporting info: :doc:`compute erotate/rigid <compute_erotate_rigid>`,
-:doc:`fix shake <fix_shake>`, :doc:`fix rattle <fix_rattle>`, :doc:`fix rigid/* <fix_rigid>`, examples/ASPHERE, examples/rigid
-
-
-----------
-
-
-.. _SHOCK:
-
-SHOCK package
-^^^^^^^^^^^^^
-
-Contents: A small number of fixes useful for running impact
-simulations where a shock-wave passes through a material.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-shock
- make machine
-
-.. parsed-literal::
-
- Make.py -p shock -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-shock
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^shock -a machine
-
-Supporting info: :doc:`fix append/atoms <fix_append_atoms>`, :doc:`fix msst <fix_msst>`, :doc:`fix nphug <fix_nphug>`, :doc:`fix wall/piston <fix_wall_piston>`, examples/hugoniostat, examples/msst
-
-
-----------
-
-
-.. _SNAP:
-
-SNAP package
-^^^^^^^^^^^^
-
-Contents: A pair style for the spectral neighbor analysis potential
-(SNAP), which is an empirical potential which can be quantum accurate
-when fit to an archive of DFT data. Computes useful for analyzing
-properties of the potential are also included.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-snap
- make machine
-
-.. parsed-literal::
-
- Make.py -p snap -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-snap
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^snap -a machine
-
-Supporting info: :doc:`pair snap <pair_snap>`, :doc:`compute sna/atom <compute_sna_atom>`, :doc:`compute snad/atom <compute_sna>`,
-:doc:`compute snav/atom <compute_sna>`, examples/snap
-
-
-----------
-
-
-.. _SRD:
-
-SRD package
-^^^^^^^^^^^
-
-Contents: Two fixes which implement the Stochastic Rotation Dynamics
-(SRD) method for coarse-graining of a solvent, typically around large
-colloidal-scale particles.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-srd
- make machine
-
-.. parsed-literal::
-
- Make.py -p srd -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-srd
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^srd -a machine
-
-Supporting info: :doc:`fix srd <fix_srd>`, :doc:`fix wall/srd <fix_wall_srd>`, examples/srd, examples/ASPHERE
-
-
-----------
-
-
-.. _VORONOI:
-
-VORONOI package
-^^^^^^^^^^^^^^^
-
-Contents: A :doc:`compute voronoi/atom <compute_voronoi_atom>` command
-which computes the Voronoi tesselation of a collection of atoms or
-particles by wrapping the Voro++ lib
-
-To build LAMMPS with the KIM package you must have previously
-installed the KIM API (library) on your system. The lib/kim/README
-file explains how to download and install KIM. Building with the KIM
-package also uses the lib/kim/Makefile.lammps file in the compile/link
-process. You should not need to edit this file.
-
-To build LAMMPS with the VORONOI package you must have previously
-installed the Voro++ library on your system. The lib/voronoi/README
-file explains how to download and install Voro++. There is a
-lib/voronoi/install.py script which automates the process. Type
-"python install.py" to see instructions. The final step is to create
-soft links in the lib/voronoi directory for "includelink" and
-"liblink" which point to installed Voro++ directories. Building with
-the VORONOI package uses the contents of the
-lib/voronoi/Makefile.lammps file in the compile/link process. You
-should not need to edit this file. Note that the Make.py script has a
-"-voronoi" option to allow the Voro++ library to be downloaded and/or
-installed and LAMMPS to be built in one step. Type "python
-src/Make.py -h -voronoi" to see the details.
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- cd ~/lammps/lib/voronoi
- python install.py -g -b -l # download Voro++, build in lib/voronoi, create links
- cd ~/lammps/src
- make yes-voronoi
- make machine
-
-.. parsed-literal::
-
- Make.py -p voronoi -voronoi install="-g -b -l" -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-voronoi
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^voronoi -a machine
-
-Supporting info: src/VORONOI/README, lib/voronoi/README, :doc:`compute voronoi/atom <compute_voronoi_atom>`, examples/voronoi
-
-
-----------
-
-
-.. _pkg_2:
-
-User packages
--------------------------
-
-The current list of user-contributed packages is as follows:
-
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| Package | Description | Author(s) | Doc page | Example | Pic/movie | Library |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-ATC <USER-ATC>` | atom-to-continuum coupling | Jones & Templeton & Zimmerman (1) | :doc:`fix atc <fix_atc>` | USER/atc | `atc <atc_>`_ | lib/atc |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-AWPMD <USER-AWPMD>` | wave-packet MD | Ilya Valuev (JIHT) | :doc:`pair_style awpmd/cut <pair_awpmd>` | USER/awpmd | - | lib/awpmd |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-CG-CMM <USER-CG-CMM>` | coarse-graining model | Axel Kohlmeyer (Temple U) | :doc:`pair_style lj/sdk <pair_sdk>` | USER/cg-cmm | `cg <cg_>`_ | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-COLVARS <USER-COLVARS>` | collective variables | Fiorin & Henin & Kohlmeyer (2) | :doc:`fix colvars <fix_colvars>` | USER/colvars | `colvars <colvars>`_ | lib/colvars |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-CUDA <USER-CUDA>` | NVIDIA GPU styles | Christian Trott (U Tech Ilmenau) | :doc:`Section accelerate <accelerate_cuda>` | USER/cuda | - | lib/cuda |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-DIFFRACTION <USER-DIFFRACTION>` | virutal x-ray and electron diffraction | Shawn Coleman (ARL) | :doc:`compute xrd <compute_xrd>` | USER/diffraction | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-DPD <USER-DPD>` | dissipative particle dynamics (DPD) | Larentzos & Mattox & Brennan (5) | src/USER-DPD/README | USER/dpd | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-DRUDE <USER-DRUDE>` | Drude oscillators | Dequidt & Devemy & Padua (3) | :doc:`tutorial <tutorial_drude>` | USER/drude | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-EFF <USER-EFF>` | electron force field | Andres Jaramillo-Botero (Caltech) | :doc:`pair_style eff/cut <pair_eff>` | USER/eff | `eff <eff_>`_ | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-FEP <USER-FEP>` | free energy perturbation | Agilio Padua (U Blaise Pascal Clermont-Ferrand) | :doc:`compute fep <compute_fep>` | USER/fep | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-H5MD <USER-H5MD>` | dump output via HDF5 | Pierre de Buyl (KU Leuven) | :doc:`dump h5md <dump_h5md>` | - | - | lib/h5md |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-INTEL <USER-INTEL>` | Vectorized CPU and Intel(R) coprocessor styles | W. Michael Brown (Intel) | :doc:`Section accelerate <accelerate_intel>` | examples/intel | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-LB <USER-LB>` | Lattice Boltzmann fluid | Colin Denniston (U Western Ontario) | :doc:`fix lb/fluid <fix_lb_fluid>` | USER/lb | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-MGPT <USER-MGPT>` | fast MGPT multi-ion potentials | Tomas Oppelstrup & John Moriarty (LLNL) | :doc:`pair_style mgpt <pair_mgpt>` | USER/mgpt | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-MISC <USER-MISC>` | single-file contributions | USER-MISC/README | USER-MISC/README | - | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-MOLFILE <USER-MOLFILE>` | `VMD <VMD_>`_ molfile plug-ins | Axel Kohlmeyer (Temple U) | :doc:`dump molfile <dump_molfile>` | - | - | VMD-MOLFILE |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-OMP <USER-OMP>` | OpenMP threaded styles | Axel Kohlmeyer (Temple U) | :doc:`Section accelerate <accelerate_omp>` | - | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-PHONON <USER-PHONON>` | phonon dynamical matrix | Ling-Ti Kong (Shanghai Jiao Tong U) | :doc:`fix phonon <fix_phonon>` | USER/phonon | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-QMMM <USER-QMMM>` | QM/MM coupling | Axel Kohlmeyer (Temple U) | :doc:`fix qmmm <fix_qmmm>` | USER/qmmm | - | lib/qmmm |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-QTB <USER-QTB>` | quantum nuclear effects | Yuan Shen (Stanford) | :doc:`fix qtb <fix_qtb>` :doc:`fix qbmsst <fix_qbmsst>` | qtb | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-QUIP <USER-QUIP>` | QUIP/libatoms interface | Albert Bartok-Partay (U Cambridge) | :doc:`pair_style quip <pair_quip>` | USER/quip | - | lib/quip |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-REAXC <USER-REAXC>` | C version of ReaxFF | Metin Aktulga (LBNL) | :doc:`pair_style reaxc <pair_reax_c>` | reax | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-SMD <USER-SMD>` | smoothed Mach dynamics | Georg Ganzenmuller (EMI) | `userguide.pdf <PDF/SMD_LAMMPS_userguide.pdf>`_ | USER/smd | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-SMTBQ <USER-SMTBQ>` | Second Moment Tight Binding - QEq potential | Salles & Maras & Politano & Tetot (4) | :doc:`pair_style smtbq <pair_smtbq>` | USER/smtbq | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-SPH <USER-SPH>` | smoothed particle hydrodynamics | Georg Ganzenmuller (EMI) | `userguide.pdf <PDF/SPH_LAMMPS_userguide.pdf>`_ | USER/sph | `sph <sph_>`_ | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-TALLY <USER-TALLY>` | Pairwise tallied computes | Axel Kohlmeyer (Temple U) | :doc:`compute <...>/tally <compute_tally>` | USER/tally | - | - |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| :ref:`USER-VTK <USER-VTK>` | VTK-style dumps | Berger and Queteschiner (6) | :doc:`compute custom/vtk <compute_custom_vtk>` | - | - | lib/vtk |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-| | | | | | | |
-+--------------------------------------------+------------------------------------------------+-------------------------------------------------+---------------------------------------------------------+------------------+----------------------+-------------+
-
-.. _atc: http://lammps.sandia.gov/pictures.html#atc
-
-
-
-.. _cg: http://lammps.sandia.gov/pictures.html#cg
-
-
-
-.. _eff: http://lammps.sandia.gov/movies.html#eff
-
-
-
-.. _sph: http://lammps.sandia.gov/movies.html#sph
-
-
-
-.. _VMD: http://www.ks.uiuc.edu/Research/vmd
-
-
-
-The "Authors" column lists a name(s) if a specific person is
-responible for creating and maintaining the package.
-
-(1) The ATC package was created by Reese Jones, Jeremy Templeton, and
-Jon Zimmerman (Sandia).
-
-(2) The COLVARS package was created by Axel Kohlmeyer (Temple U) using
-the colvars module library written by Giacomo Fiorin (Temple U) and
-Jerome Henin (LISM, Marseille, France).
-
-(3) The DRUDE package was created by Alain Dequidt (U Blaise Pascal
-Clermont-Ferrand) and co-authors Julien Devemy (CNRS) and Agilio Padua
-(U Blaise Pascal).
-
-(4) The SMTBQ package was created by Nicolas Salles, Emile Maras,
-Olivier Politano, and Robert Tetot (LAAS-CNRS, France).
-
-(5) The USER-DPD package was created by James Larentzos (ARL), Timothy
-Mattox (Engility), and John Brennan (ARL).
-
-(6) The USER-VTK package was created by Richard Berger (JKU) and
-Daniel Queteschiner (DCS Computing).
-
-The "Doc page" column links to either a sub-section of the
-:doc:`Section_howto <Section_howto>` of the manual, or an input script
-command implemented as part of the package, or to additional
-documentation provided within the package.
-
-The "Example" column is a sub-directory in the examples directory of
-the distribution which has an input script that uses the package.
-E.g. "peptide" refers to the examples/peptide directory. USER/cuda
-refers to the examples/USER/cuda directory.
-
-The "Library" column lists an external library which must be built
-first and which LAMMPS links to when it is built. If it is listed as
-lib/package, then the code for the library is under the lib directory
-of the LAMMPS distribution. See the lib/package/README file for info
-on how to build the library. If it is not listed as lib/package, then
-it is a third-party library not included in the LAMMPS distribution.
-See details on all of this below for individual packages.
-
-
-----------
-
-
-.. _USER-ATC:
-
-USER-ATC package
-^^^^^^^^^^^^^^^^
-
-Contents: ATC stands for atoms-to-continuum. This package implements
-a :doc:`fix atc <fix_atc>` command to either couple MD with continuum
-finite element equations or perform on-the-fly post-processing of
-atomic information to continuum fields. See src/USER-ATC/README for
-more details.
-
-To build LAMMPS with this package ...
-
-To install via make or Make.py:
-
-.. parsed-literal::
-
- make yes-user-atc
- make machine
-
-.. parsed-literal::
-
- Make.py -p atc -a machine
-
-To un-install via make or Make.py:
-
-.. parsed-literal::
-
- make no-user-atc
- make machine
-
-.. parsed-literal::
-
- Make.py -p ^atc -a machine
-
-Supporting info:src/USER-ATC/README, :doc:`fix atc <fix_atc>`,
-examples/USER/atc
-
-Authors: Reese Jones (rjones at sandia.gov), Jeremy Templeton (jatempl
-at sandia.gov) and Jon Zimmerman (jzimmer at sandia.gov) at Sandia.
-Contact them directly if you have questions.
-
-
-----------
-
-
-.. _USER-AWPMD:
-
-USER-AWPMD package
-^^^^^^^^^^^^^^^^^^
-
-Contents: AWPMD stands for Antisymmetrized Wave Packet Molecular
-Dynamics. This package implements an atom, pair, and fix style which
-allows electrons to be treated as explicit particles in an MD
-calculation. See src/USER-AWPMD/README for more details.
-
-To build LAMMPS with this package ...
-
-Supporting info: src/USER-AWPMD/README, :doc:`fix awpmd/cut <pair_awpmd_cut>`, examples/USER/awpmd
-
-Author: Ilya Valuev at the JIHT in Russia (valuev at
-physik.hu-berlin.de). Contact him directly if you have questions.
-
-
-----------
-
-
-.. _USER-CG-CMM:
-
-USER-CG-CMM package
-^^^^^^^^^^^^^^^^^^^
-
-Contents: CG-CMM stands for coarse-grained ??. This package
-implements several pair styles and an angle style using the coarse
-grained parametrization of Shinoda, DeVane, Klein, Mol Sim, 33, 27
-(2007) (SDK), with extensions to simulate ionic liquids, electrolytes,
-lipids and charged amino acids. See src/USER-CG-CMM/README for more
-details.
-
-Supporting info: src/USER-CG-CMM/README, :doc:`pair lj/sdk <pair_sdk>`,
-:doc:`pair lj/sdk/coul/long <pair_sdk>`, :doc:`angle sdk <angle_sdk>`,
-examples/USER/cg-cmm
-
-Author: Axel Kohlmeyer at Temple U (akohlmey at gmail.com). Contact
-him directly if you have questions.
-
-
-----------
-
-
-.. _USER-COLVARS:
-
-USER-COLVARS package
-^^^^^^^^^^^^^^^^^^^^
-
-Contents: COLVARS stands for collective variables which can be used to
-implement Adaptive Biasing Force, Metadynamics, Steered MD, Umbrella
-Sampling and Restraints. This package implements a :doc:`fix colvars <fix_colvars>` command which wraps a COLVARS library which
-can perform those kinds of simulations. See src/USER-COLVARS/README
-for more details.
-
-Supporting info:
-`doc/PDF/colvars-refman-lammps.pdf <PDF/colvars-refman-lammps.pdf>`_,
-src/USER-COLVARS/README, lib/colvars/README, :doc:`fix colvars <fix_colvars>`, examples/USER/colvars
-
-Authors: Axel Kohlmeyer at Temple U (akohlmey at gmail.com) wrote the
-fix. The COLVARS library itself is written and maintained by Giacomo
-Fiorin (ICMS, Temple University, Philadelphia, PA, USA) and Jerome
-Henin (LISM, CNRS, Marseille, France). Contact them directly if you
-have questions.
-
-
-----------
-
-
-.. _USER-CUDA:
-
-USER-CUDA package
-^^^^^^^^^^^^^^^^^
-
-This package provides acceleration of various LAMMPS pair styles, fix
-styles, compute styles, and long-range Coulombics via PPPM for NVIDIA
-GPUs.
-
-See this section of the manual to get started:
-
-:ref:`Section_accelerate <acc_7>`
-
-There are example scripts for using this package in
-examples/USER/cuda.
-
-This package uses an external library in lib/cuda which must be
-compiled before making LAMMPS. See the lib/cuda/README file and the
-LAMMPS manual for information on building LAMMPS with external
-libraries.
-
-The person who created this package is Christian Trott at the
-University of Technology Ilmenau, Germany (christian.trott at
-tu-ilmenau.de). Contact him directly if you have questions.
-
-Examples: examples/accelerate, bench/FERMI, bench/KEPLER
-
-
-----------
-
-
-.. _USER-DIFFRACTION:
-
-USER-DIFFRACTION package
-^^^^^^^^^^^^^^^^^^^^^^^^
-
-Contents: This packages implements two computes and a fix for
-calculating x-ray and electron diffraction intensities based on
-kinematic diffraction theory. See src/USER-DIFFRACTION/README for
-more details.
-
-Supporting info: :doc:`compute saed <compute_saed>`, :doc:`compute xrd <compute_xrd>`, :doc:`fix saed.vtk <fix_saed_vtk>`,
-examples/USER/diffraction
-
-Author: Shawn P. Coleman (shawn.p.coleman8.ctr at mail.mil) while at
-the University of Arkansas. Contact him directly if you have
-questions.
-
-
-----------
-
-
-.. _USER-DPD:
-
-USER-DPD package
-^^^^^^^^^^^^^^^^
-
-Contents: DPD stands for dissipative particle dynamics, This package
-implements DPD for isothermal, isoenergetic, isobaric and isenthalpic
-conditions. The DPD equations of motion are integrated efficiently
-through the Shardlow splitting algorithm. See src/USER-DPD/README for
-more details.
-
-Supporting info: /src/USER-DPD/README, :doc:`compute dpd <compute_dpd>`
-:doc:`compute dpd/atom <compute_dpd_atom>`
-:doc:`fix eos/cv <fix_eos_table>` :doc:`fix eos/table <fix_eos_table>`
-:doc:`fix shardlow <fix_shardlow>`
-:doc:`pair_dpd/conservative <pair_dpd_conservative>`
-:doc:`pair_dpd/fdt <pair_dpd_fdt>`
-:doc:`pair_dpd/fdt/energy <pair_dpd_fdt>`, examples/USER/dpd
-
-Authors: James Larentzos (ARL) (james.p.larentzos.civ at mail.mil),
-Timothy Mattox (Engility Corp) (Timothy.Mattox at engilitycorp.com)
-and John Brennan (ARL) (john.k.brennan.civ at mail.mil). Contact them
-directly if you have questions.
-
-
-----------
-
-
-.. _USER-DRUDE:
-
-USER-DRUDE package
-^^^^^^^^^^^^^^^^^^
-
-Contents: This package contains methods for simulating polarizable
-systems using thermalized Drude oscillators. It has computes, fixes,
-and pair styles for this purpose. See :ref:`Section howto 6.27 <howto_27>` for an overview of how to use the
-package. See src/USER-DRUDE/README for additional details. There are
-auxiliary tools for using this package in tools/drude.
-
-Supporting info: :ref:`Section howto 6.27 <howto_27>`,
-src/USER-DRUDE/README, :doc:`fix drude <fix_drude>`, :doc:`fix drude/transform/* <fix_drude_transform>`, :doc:`compute temp/drude <compute_temp_drude>`, :doc:`pair thole <pair_thole>`,
-:doc:`pair lj/cut/thole/long <pair_thole>`, examples/USER/drude,
-tools/drude
-
-Authors: Alain Dequidt at Universite Blaise Pascal Clermont-Ferrand
-(alain.dequidt at univ-bpclermont.fr); co-authors: Julien Devemy,
-Agilio Padua. Contact them directly if you have questions.
-
-
-----------
-
-
-.. _USER-EFF:
-
-USER-EFF package
-^^^^^^^^^^^^^^^^
-
-Contents: EFF stands for electron force field. This package contains
-atom, pair, fix and compute styles which implement the eFF as
-described in A. Jaramillo-Botero, J. Su, Q. An, and W.A. Goddard III,
-JCC, 2010. The eFF potential was first introduced by Su and Goddard,
-in 2007. See src/USER-EFF/README for more details. There are
-auxiliary tools for using this package in tools/eff; see its README
-file.
-
-Supporting info:
-
-Author: Andres Jaramillo-Botero at CalTech (ajaramil at
-wag.caltech.edu). Contact him directly if you have questions.
-
-
-----------
-
-
-.. _USER-FEP:
-
-USER-FEP package
-^^^^^^^^^^^^^^^^
-
-Contents: FEP stands for free energy perturbation. This package
-provides methods for performing FEP simulations by using a :doc:`fix adapt/fep <fix_adapt_fep>` command with soft-core pair potentials,
-which have a "soft" in their style name. See src/USER-FEP/README for
-more details. There are auxiliary tools for using this package in
-tools/fep; see its README file.
-
-Supporting info: src/USER-FEP/README, :doc:`fix adapt/fep <fix_adapt_fep>`, :doc:`compute fep <compute_fep>`,
-:doc:`pair_style */soft <pair_lj_soft>`, examples/USER/fep
-
-Author: Agilio Padua at Universite Blaise Pascal Clermont-Ferrand
-(agilio.padua at univ-bpclermont.fr). Contact him directly if you have
-questions.
-
-
-----------
-
-
-.. _USER-H5MD:
-
-USER-H5MD package
-^^^^^^^^^^^^^^^^^
-
-Contents: H5MD stands for HDF5 for MD. `HDF5 <HDF5_>`_ is a binary,
-portable, self-describing file format, used by many scientific
-simulations. H5MD is a format for molecular simulations, built on top
-of HDF5. This package implements a :doc:`dump h5md <dump_h5md>` command
-to output LAMMPS snapshots in this format. See src/USER-H5MD/README
-for more details.
-
-.. _HDF5: http://www.hdfgroup.org/HDF5/
-
-
-
-Supporting info: src/USER-H5MD/README, lib/h5md/README, :doc:`dump h5md <dump_h5md>`
-
-Author: Pierre de Buyl at KU Leuven (see http://pdebuyl.be) created
-this package as well as the H5MD format and library. Contact him
-directly if you have questions.
-
-
-----------
-
-
-.. _USER-INTEL:
-
-USER-INTEL package
-^^^^^^^^^^^^^^^^^^
-
-Contents: Dozens of pair, bond, angle, dihedral, and improper styles
-that are optimized for Intel CPUs and the Intel Xeon Phi (in offload
-mode). All of them have an "intel" in their style name. :doc:`Section accelerate intel <accelerate_intel>` gives details of what hardware
-and compilers are required on your system, and how to build and use
-this package. Also see src/USER-INTEL/README for more details. See
-the KOKKOS, OPT, and USER-OMP packages, which also have CPU and
-Phi-enabled styles.
-
-Supporting info: examples/accelerate, src/USER-INTEL/TEST
-
-:ref:`Section_accelerate <acc_9>`
-
-Author: Mike Brown at Intel (michael.w.brown at intel.com). Contact
-him directly if you have questions.
-
-For the USER-INTEL package, you have 2 choices when building. You can
-build with CPU or Phi support. The latter uses Xeon Phi chips in
-"offload" mode. Each of these modes requires additional settings in
-your Makefile.machine for CCFLAGS and LINKFLAGS.
-
-For CPU mode (if using an Intel compiler):
-
-* CCFLAGS: add -fopenmp, -DLAMMPS_MEMALIGN=64, -restrict, -xHost, -fno-alias, -ansi-alias, -override-limits
-* LINKFLAGS: add -fopenmp
-
-For Phi mode add the following in addition to the CPU mode flags:
-
-* CCFLAGS: add -DLMP_INTEL_OFFLOAD and
-* LINKFLAGS: add -offload
-
-And also add this to CCFLAGS:
-
-.. parsed-literal::
-
- -offload-option,mic,compiler,"-fp-model fast=2 -mGLOB_default_function_attrs=\"gather_scatter_loop_unroll=4\""
-
-Examples:
-
-
-----------
-
-
-.. _USER-LB:
-
-USER-LB package
-^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package contains a LAMMPS implementation of a background
-Lattice-Boltzmann fluid, which can be used to model MD particles
-influenced by hydrodynamic forces.
-
-See this doc page and its related commands to get started:
-
-:doc:`fix lb/fluid <fix_lb_fluid>`
-
-The people who created this package are Frances Mackay (fmackay at
-uwo.ca) and Colin (cdennist at uwo.ca) Denniston, University of
-Western Ontario. Contact them directly if you have questions.
-
-Examples: examples/USER/lb
-
-
-----------
-
-
-.. _USER-MGPT:
-
-USER-MGPT package
-^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package contains a fast implementation for LAMMPS of
-quantum-based MGPT multi-ion potentials. The MGPT or model GPT method
-derives from first-principles DFT-based generalized pseudopotential
-theory (GPT) through a series of systematic approximations valid for
-mid-period transition metals with nearly half-filled d bands. The
-MGPT method was originally developed by John Moriarty at Lawrence
-Livermore National Lab (LLNL).
-
-In the general matrix representation of MGPT, which can also be
-applied to f-band actinide metals, the multi-ion potentials are
-evaluated on the fly during a simulation through d- or f-state matrix
-multiplication, and the forces that move the ions are determined
-analytically. The *mgpt* pair style in this package calculates forces
-and energies using an optimized matrix-MGPT algorithm due to Tomas
-Oppelstrup at LLNL.
-
-See this doc page to get started:
-
-:doc:`pair_style mgpt <pair_mgpt>`
-
-The persons who created the USER-MGPT package are Tomas Oppelstrup
-(oppelstrup2@llnl.gov) and John Moriarty (moriarty2@llnl.gov)
-Contact them directly if you have any questions.
-
-Examples: examples/USER/mgpt
-
-
-----------
-
-
-.. _USER-MISC:
-
-USER-MISC package
-^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-The files in this package are a potpourri of (mostly) unrelated
-features contributed to LAMMPS by users. Each feature is a single
-pair of files (*.cpp and *.h).
-
-More information about each feature can be found by reading its doc
-page in the LAMMPS doc directory. The doc page which lists all LAMMPS
-input script commands is as follows:
-
-:ref:`Section_commands <cmd_5>`
-
-User-contributed features are listed at the bottom of the fix,
-compute, pair, etc sections.
-
-The list of features and author of each is given in the
-src/USER-MISC/README file.
-
-You should contact the author directly if you have specific questions
-about the feature or its coding.
-
-Examples: examples/USER/misc
-
-
-----------
-
-
-.. _USER-MOLFILE:
-
-USER-MOLFILE package
-^^^^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package contains a dump molfile command which uses molfile
-plugins that are bundled with the
-`VMD <http://www.ks.uiuc.edu/Research/vmd>`_ molecular visualization and
-analysis program, to enable LAMMPS to dump its information in formats
-compatible with various molecular simulation tools.
-
-The package only provides the interface code, not the plugins. These
-can be obtained from a VMD installation which has to match the
-platform that you are using to compile LAMMPS for. By adding plugins
-to VMD, support for new file formats can be added to LAMMPS (or VMD or
-other programs that use them) without having to recompile the
-application itself.
-
-See this doc page to get started:
-
-:ref:`dump molfile <acc_5>`
-
-The person who created this package is Axel Kohlmeyer at Temple U
-(akohlmey at gmail.com). Contact him directly if you have questions.
-
-
-----------
-
-
-.. _USER-OMP:
-
-USER-OMP package
-^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package provides OpenMP multi-threading support and
-other optimizations of various LAMMPS pair styles, dihedral
-styles, and fix styles.
-
-See this section of the manual to get started:
-
-:ref:`Section_accelerate <acc_5>`
-
-The person who created this package is Axel Kohlmeyer at Temple U
-(akohlmey at gmail.com). Contact him directly if you have questions.
-
-For the USER-OMP package, your Makefile.machine needs additional
-settings for CCFLAGS and LINKFLAGS.
-
-* CCFLAGS: add -fopenmp and -restrict
-* LINKFLAGS: add -fopenmp
-
-Examples: examples/accelerate, bench/KEPLER
-
-
-----------
-
-
-.. _USER-PHONON:
-
-USER-PHONON package
-^^^^^^^^^^^^^^^^^^^
-
-This package contains a fix phonon command that calculates dynamical
-matrices, which can then be used to compute phonon dispersion
-relations, directly from molecular dynamics simulations.
-
-See this doc page to get started:
-
-:doc:`fix phonon <fix_phonon>`
-
-The person who created this package is Ling-Ti Kong (konglt at
-sjtu.edu.cn) at Shanghai Jiao Tong University. Contact him directly
-if you have questions.
-
-Examples: examples/USER/phonon
-
-
-----------
-
-
-.. _USER-QMMM:
-
-USER-QMMM package
-^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package provides a fix qmmm command which allows LAMMPS to be
-used in a QM/MM simulation, currently only in combination with pw.x
-code from the `Quantum ESPRESSO <espresso_>`_ package.
-
-.. _espresso: http://www.quantum-espresso.org
-
-
-
-The current implementation only supports an ONIOM style mechanical
-coupling to the Quantum ESPRESSO plane wave DFT package.
-Electrostatic coupling is in preparation and the interface has been
-written in a manner that coupling to other QM codes should be possible
-without changes to LAMMPS itself.
-
-See this doc page to get started:
-
-:doc:`fix qmmm <fix_qmmm>`
-
-as well as the lib/qmmm/README file.
-
-The person who created this package is Axel Kohlmeyer at Temple U
-(akohlmey at gmail.com). Contact him directly if you have questions.
-
-
-----------
-
-
-.. _USER-QTB:
-
-USER-QTB package
-^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package provides a self-consistent quantum treatment of the
-vibrational modes in a classical molecular dynamics simulation. By
-coupling the MD simulation to a colored thermostat, it introduces zero
-point energy into the system, alter the energy power spectrum and the
-heat capacity towards their quantum nature. This package could be of
-interest if one wants to model systems at temperatures lower than
-their classical limits or when temperatures ramp up across the
-classical limits in the simulation.
-
-See these two doc pages to get started:
-
-:doc:`fix qtb <fix_qtb>` provides quantum nulcear correction through a
-colored thermostat and can be used with other time integration schemes
-like :doc:`fix nve <fix_nve>` or :doc:`fix nph <fix_nh>`.
-
-:doc:`fix qbmsst <fix_qbmsst>` enables quantum nuclear correction of a
-multi-scale shock technique simulation by coupling the quantum thermal
-bath with the shocked system.
-
-The person who created this package is Yuan Shen (sy0302 at
-stanford.edu) at Stanford University. Contact him directly if you
-have questions.
-
-Examples: examples/USER/qtb
-
-
-----------
-
-
-.. _USER-QUIP:
-
-USER-QUIP package
-^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-Examples: examples/USER/quip
-
-
-----------
-
-
-.. _USER-REAXC:
-
-USER-REAXC package
-^^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package contains a implementation for LAMMPS of the ReaxFF force
-field. ReaxFF uses distance-dependent bond-order functions to
-represent the contributions of chemical bonding to the potential
-energy. It was originally developed by Adri van Duin and the Goddard
-group at CalTech.
-
-The USER-REAXC version of ReaxFF (pair_style reax/c), implemented in
-C, should give identical or very similar results to pair_style reax,
-which is a ReaxFF implementation on top of a Fortran library, a
-version of which library was originally authored by Adri van Duin.
-
-The reax/c version should be somewhat faster and more scalable,
-particularly with respect to the charge equilibration calculation. It
-should also be easier to build and use since there are no complicating
-issues with Fortran memory allocation or linking to a Fortran library.
-
-For technical details about this implemention of ReaxFF, see
-this paper:
-
-Parallel and Scalable Reactive Molecular Dynamics: Numerical Methods
-and Algorithmic Techniques, H. M. Aktulga, J. C. Fogarty,
-S. A. Pandit, A. Y. Grama, Parallel Computing, in press (2011).
-
-See the doc page for the pair_style reax/c command for details
-of how to use it in LAMMPS.
-
-The person who created this package is Hasan Metin Aktulga (hmaktulga
-at lbl.gov), while at Purdue University. Contact him directly, or
-Aidan Thompson at Sandia (athomps at sandia.gov), if you have
-questions.
-
-Examples: examples/reax
-
-
-----------
-
-
-.. _USER-SMD:
-
-USER-SMD package
-^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package implements smoothed Mach dynamics (SMD) in
-LAMMPS. Currently, the package has the following features:
-
-* Does liquids via traditional Smooth Particle Hydrodynamics (SPH)
-
-* Also solves solids mechanics problems via a state of the art
- stabilized meshless method with hourglass control.
-
-* Can specify hydrostatic interactions independently from material
- strength models, i.e. pressure and deviatoric stresses are separated.
-
-* Many material models available (Johnson-Cook, plasticity with
- hardening, Mie-Grueneisen, Polynomial EOS). Easy to add new
- material models.
-
-* Rigid boundary conditions (walls) can be loaded as surface geometries
- from *.STL files.
-
-See the file doc/PDF/SMD_LAMMPS_userguide.pdf to get started.
-
-There are example scripts for using this package in examples/USER/smd.
-
-The person who created this package is Georg Ganzenmuller at the
-Fraunhofer-Institute for High-Speed Dynamics, Ernst Mach Institute in
-Germany (georg.ganzenmueller at emi.fhg.de). Contact him directly if
-you have questions.
-
-Examples: examples/USER/smd
-
-
-----------
-
-
-.. _USER-SMTBQ:
-
-USER-SMTBQ package
-^^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package implements the Second Moment Tight Binding - QEq (SMTB-Q)
-potential for the description of ionocovalent bonds in oxides.
-
-There are example scripts for using this package in
-examples/USER/smtbq.
-
-See this doc page to get started:
-
-:doc:`pair_style smtbq <pair_smtbq>`
-
-The persons who created the USER-SMTBQ package are Nicolas Salles,
-Emile Maras, Olivier Politano, Robert Tetot, who can be contacted at
-these email addreses: lammps@u-bourgogne.fr, nsalles@laas.fr. Contact
-them directly if you have any questions.
-
-Examples: examples/USER/smtbq
-
-
-----------
-
-
-.. _USER-SPH:
-
-USER-SPH package
-^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-This package implements smoothed particle hydrodynamics (SPH) in
-LAMMPS. Currently, the package has the following features:
-
-* Tait, ideal gas, Lennard-Jones equation of states, full support for
- complete (i.e. internal-energy dependent) equations of state
-
-* Plain or Monaghans XSPH integration of the equations of motion
-
-* Density continuity or density summation to propagate the density field
-
-* Commands to set internal energy and density of particles from the
- input script
-
-* Output commands to access internal energy and density for dumping and
- thermo output
-
-See the file doc/PDF/SPH_LAMMPS_userguide.pdf to get started.
-
-There are example scripts for using this package in examples/USER/sph.
-
-The person who created this package is Georg Ganzenmuller at the
-Fraunhofer-Institute for High-Speed Dynamics, Ernst Mach Institute in
-Germany (georg.ganzenmueller at emi.fhg.de). Contact him directly if
-you have questions.
-
-Examples: examples/USER/sph
-
-
-----------
-
-
-.. _USER-TALLY:
-
-USER-TALLY package
-^^^^^^^^^^^^^^^^^^
-
-Supporting info:
-
-Examples: examples/USER/tally
-
-
-----------
-
-
-.. _USER-VTK:
-
-USER-VTK package
-^^^^^^^^^^^^^^^^
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_perf.txt b/doc/_sources/Section_perf.txt
deleted file mode 100644
index fa44adb3b..000000000
--- a/doc/_sources/Section_perf.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-Performance & scalability
-=========================
-
-Current LAMMPS performance is discussed on the Benchmarks page of the
-`LAMMPS WWW Site <lws_>`_ where CPU timings and parallel efficiencies are
-listed. The page has several sections, which are briefly described
-below:
-
-* CPU performance on 5 standard problems, strong and weak scaling
-* GPU and Xeon Phi performance on same and related problems
-* Comparison of cost of interatomic potentials
-* Performance of huge, billion-atom problems
-
-The 5 standard problems are as follow:
-
-#. LJ = atomic fluid, Lennard-Jones potential with 2.5 sigma cutoff (55
- neighbors per atom), NVE integration
-#. Chain = bead-spring polymer melt of 100-mer chains, FENE bonds and LJ
- pairwise interactions with a 2^(1/6) sigma cutoff (5 neighbors per
- atom), NVE integration
-#. EAM = metallic solid, Cu EAM potential with 4.95 Angstrom cutoff (45
- neighbors per atom), NVE integration
-#. Chute = granular chute flow, frictional history potential with 1.1
- sigma cutoff (7 neighbors per atom), NVE integration
-#. Rhodo = rhodopsin protein in solvated lipid bilayer, CHARMM force
- field with a 10 Angstrom LJ cutoff (440 neighbors per atom),
- particle-particle particle-mesh (PPPM) for long-range Coulombics, NPT
- integration
-Input files for these 5 problems are provided in the bench directory
-of the LAMMPS distribution. Each has 32,000 atoms and runs for 100
-timesteps. The size of the problem (number of atoms) can be varied
-using command-line switches as described in the bench/README file.
-This is an easy way to test performance and either strong or weak
-scalability on your machine.
-
-The bench directory includes a few log.* files that show performance
-of these 5 problems on 1 or 4 cores of Linux desktop. The bench/FERMI
-and bench/KEPLER dirs have input files and scripts and instructions
-for running the same (or similar) problems using OpenMP or GPU or Xeon
-Phi acceleration options. See the README files in those dirs and the
-:doc:`Section accelerate <Section_accelerate>` doc pages for
-instructions on how to build LAMMPS and run on that kind of hardware.
-
-The bench/POTENTIALS directory has input files which correspond to the
-table of results on the
-:ref:`Potentials <potentials>` section of
-the Benchmarks web page. So you can also run those test problems on
-your machine.
-
-The :ref:`billion-atom <billion>` section
-of the Benchmarks web page has performance data for very large
-benchmark runs of simple Lennard-Jones (LJ) models, which use the
-bench/in.lj input script.
-
-
-----------
-
-
-For all the benchmarks, a useful metric is the CPU cost per atom per
-timestep. Since performance scales roughly linearly with problem size
-and timesteps for all LAMMPS models (i.e. inteatomic or coarse-grained
-potentials), the run time of any problem using the same model (atom
-style, force field, cutoff, etc) can then be estimated.
-
-Performance on a parallel machine can also be predicted from one-core
-or one-node timings if the parallel efficiency can be estimated. The
-communication bandwidth and latency of a particular parallel machine
-affects the efficiency. On most machines LAMMPS will give parallel
-efficiencies on these benchmarks above 50% so long as the number of
-atoms/core is a few 100 or greater, and closer to 100% for large
-numbers of atoms/core. This is for all-MPI mode with one MPI task per
-core. For nodes with accelerator options or hardware (OpenMP, GPU,
-Phi), you should first measure single node performance. Then you can
-estimate parallel performance for multi-node runs using the same logic
-as for all-MPI mode, except that now you will typically need many more
-atoms/node to achieve good scalability.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_python.txt b/doc/_sources/Section_python.txt
deleted file mode 100644
index 11d62abef..000000000
--- a/doc/_sources/Section_python.txt
+++ /dev/null
@@ -1,1003 +0,0 @@
-Python interface to LAMMPS
-==========================
-
-LAMMPS can work together with Python in two ways. First, Python can
-wrap LAMMPS through the :ref:`LAMMPS library interface <howto_19>`, so that a Python script can
-create one or more instances of LAMMPS and launch one or more
-simulations. In Python lingo, this is "extending" Python with LAMMPS.
-
-Second, LAMMPS can use the Python interpreter, so that a LAMMPS input
-script can invoke Python code, and pass information back-and-forth
-between the input script and Python functions you write. The Python
-code can also callback to LAMMPS to query or change its attributes.
-In Python lingo, this is "embedding" Python in LAMMPS.
-
-This section describes how to do both.
-
-* 11.1 :ref:`Overview of running LAMMPS from Python <py_1>`
-* 11.2 :ref:`Overview of using Python from a LAMMPS script <py_2>`
-* 11.3 :ref:`Building LAMMPS as a shared library <py_3>`
-* 11.4 :ref:`Installing the Python wrapper into Python <py_4>`
-* 11.5 :ref:`Extending Python with MPI to run in parallel <py_5>`
-* 11.6 :ref:`Testing the Python-LAMMPS interface <py_6>`
-* 11.7 :ref:`Using LAMMPS from Python <py_7>`
-* 11.8 :ref:`Example Python scripts that use LAMMPS <py_8>`
-
-If you are not familiar with it, `Python <http://www.python.org>`_ is a
-powerful scripting and programming language which can essentially do
-anything that faster, lower-level languages like C or C++ can do, but
-typically with much fewer lines of code. When used in embedded mode,
-Python can perform operations that the simplistic LAMMPS input script
-syntax cannot. Python can be also be used as a "glue" language to
-drive a program through its library interface, or to hook multiple
-pieces of software together, such as a simulation package plus a
-visualization package, or to run a coupled multiscale or multiphysics
-model.
-
-See :ref:`Section_howto 10 <howto_10>` of the manual and
-the couple directory of the distribution for more ideas about coupling
-LAMMPS to other codes. See :ref:`Section_howto 19 <howto_19>` for a description of the LAMMPS
-library interface provided in src/library.cpp and src/library.h, and
-how to extend it for your needs. As described below, that interface
-is what is exposed to Python either when calling LAMMPS from Python or
-when calling Python from a LAMMPS input script and then calling back
-to LAMMPS from Python code. The library interface is designed to be
-easy to add functions to. Thus the Python interface to LAMMPS is also
-easy to extend as well.
-
-If you create interesting Python scripts that run LAMMPS or
-interesting Python functions that can be called from a LAMMPS input
-script, that you think would be useful to other users, please `email them to the developers <http://lammps.sandia.gov/authors.html>`_. We can
-include them in the LAMMPS distribution.
-
-
-
-
-
-.. _py_1:
-
-Overview of running LAMMPS from Python
---------------------------------------
-
-The LAMMPS distribution includes a python directory with all you need
-to run LAMMPS from Python. The python/lammps.py file wraps the LAMMPS
-library interface, with one wrapper function per LAMMPS library
-function. This file makes it is possible to do the following either
-from a Python script, or interactively from a Python prompt: create
-one or more instances of LAMMPS, invoke LAMMPS commands or give it an
-input script, run LAMMPS incrementally, extract LAMMPS results, an
-modify internal LAMMPS variables. From a Python script you can do
-this in serial or parallel. Running Python interactively in parallel
-does not generally work, unless you have a version of Python that
-extends standard Python to enable multiple instances of Python to read
-what you type.
-
-To do all of this, you must first build LAMMPS as a shared library,
-then insure that your Python can find the python/lammps.py file and
-the shared library. These steps are explained in subsequent sections
-11.3 and 11.4. Sections 11.5 and 11.6 discuss using MPI from a
-parallel Python program and how to test that you are ready to use
-LAMMPS from Python. Section 11.7 lists all the functions in the
-current LAMMPS library interface and how to call them from Python.
-
-Section 11.8 gives some examples of coupling LAMMPS to other tools via
-Python. For example, LAMMPS can easily be coupled to a GUI or other
-visualization tools that display graphs or animations in real time as
-LAMMPS runs. Examples of such scripts are inlcluded in the python
-directory.
-
-Two advantages of using Python to run LAMMPS are how concise the
-language is, and that it can be run interactively, enabling rapid
-development and debugging of programs. If you use it to mostly invoke
-costly operations within LAMMPS, such as running a simulation for a
-reasonable number of timesteps, then the overhead cost of invoking
-LAMMPS thru Python will be negligible.
-
-The Python wrapper for LAMMPS uses the amazing and magical (to me)
-"ctypes" package in Python, which auto-generates the interface code
-needed between Python and a set of C interface routines for a library.
-Ctypes is part of standard Python for versions 2.5 and later. You can
-check which version of Python you have installed, by simply typing
-"python" at a shell prompt.
-
-
-----------
-
-
-.. _py_2:
-
-Overview of using Python from a LAMMPS script
----------------------------------------------
-
-.. note::
-
- It is not currently possible to use the :doc:`python <python>`
- command described in this section with Python 3, only with Python 2.
- The C API changed from Python 2 to 3 and the LAMMPS code is not
- compatible with both.
-
-LAMMPS has a :doc:`python <python>` command which can be used in an
-input script to define and execute a Python function that you write
-the code for. The Python function can also be assigned to a LAMMPS
-python-style variable via the :doc:`variable <variable>` command. Each
-time the variable is evaluated, either in the LAMMPS input script
-itself, or by another LAMMPS command that uses the variable, this will
-trigger the Python function to be invoked.
-
-The Python code for the function can be included directly in the input
-script or in an auxiliary file. The function can have arguments which
-are mapped to LAMMPS variables (also defined in the input script) and
-it can return a value to a LAMMPS variable. This is thus a mechanism
-for your input script to pass information to a piece of Python code,
-ask Python to execute the code, and return information to your input
-script.
-
-Note that a Python function can be arbitrarily complex. It can import
-other Python modules, instantiate Python classes, call other Python
-functions, etc. The Python code that you provide can contain more
-code than the single function. It can contain other functions or
-Python classes, as well as global variables or other mechanisms for
-storing state between calls from LAMMPS to the function.
-
-The Python function you provide can consist of "pure" Python code that
-only performs operations provided by standard Python. However, the
-Python function can also "call back" to LAMMPS through its
-Python-wrapped library interface, in the manner described in the
-previous section 11.1. This means it can issue LAMMPS input script
-commands or query and set internal LAMMPS state. As an example, this
-can be useful in an input script to create a more complex loop with
-branching logic, than can be created using the simple looping and
-branching logic enabled by the :doc:`next <next>` and :doc:`if <if>`
-commands.
-
-See the :doc:`python <python>` doc page and the :doc:`variable <variable>`
-doc page for its python-style variables for more info, including
-examples of Python code you can write for both pure Python operations
-and callbacks to LAMMPS.
-
-To run pure Python code from LAMMPS, you only need to build LAMMPS
-with the PYTHON package installed:
-
-.. parsed-literal::
-
- make yes-python
- make machine
-
-Note that this will link LAMMPS with the Python library on your
-system, which typically requires several auxiliary system libraries to
-also be linked. The list of these libraries and the paths to find
-them are specified in the lib/python/Makefile.lammps file. You need
-to insure that file contains the correct information for your version
-of Python and your machine to successfully build LAMMPS. See the
-lib/python/README file for more info.
-
-If you want to write Python code with callbacks to LAMMPS, then you
-must also follow the steps overviewed in the preceeding section (11.1)
-for running LAMMPS from Python. I.e. you must build LAMMPS as a
-shared library and insure that Python can find the python/lammps.py
-file and the shared library.
-
-
-----------
-
-
-.. _py_3:
-
-Building LAMMPS as a shared library
------------------------------------
-
-Instructions on how to build LAMMPS as a shared library are given in
-:ref:`Section_start 5 <start_5>`. A shared library is one
-that is dynamically loadable, which is what Python requires to wrap
-LAMMPS. On Linux this is a library file that ends in ".so", not ".a".
-
-From the src directory, type
-
-.. parsed-literal::
-
- make foo mode=shlib
-
-where foo is the machine target name, such as linux or g++ or serial.
-This should create the file liblammps_foo.so in the src directory, as
-well as a soft link liblammps.so, which is what the Python wrapper will
-load by default. Note that if you are building multiple machine
-versions of the shared library, the soft link is always set to the
-most recently built version.
-
-.. note::
-
- If you are building LAMMPS with an MPI or FFT library or other
- auxiliary libraries (used by various packages), then all of these
- extra libraries must also be shared libraries. If the LAMMPS
- shared-library build fails with an error complaining about this, see
- :ref:`Section_start 5 <start_5>` for more details.
-
-
-----------
-
-
-.. _py_4:
-
-Installing the Python wrapper into Python
------------------------------------------
-
-For Python to invoke LAMMPS, there are 2 files it needs to know about:
-
-* python/lammps.py
-* src/liblammps.so
-
-Lammps.py is the Python wrapper on the LAMMPS library interface.
-Liblammps.so is the shared LAMMPS library that Python loads, as
-described above.
-
-You can insure Python can find these files in one of two ways:
-
-* set two environment variables
-* run the python/install.py script
-
-If you set the paths to these files as environment variables, you only
-have to do it once. For the csh or tcsh shells, add something like
-this to your ~/.cshrc file, one line for each of the two files:
-
-.. parsed-literal::
-
- setenv PYTHONPATH ${PYTHONPATH}:/home/sjplimp/lammps/python
- setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/home/sjplimp/lammps/src
-
-If you use the python/install.py script, you need to invoke it every
-time you rebuild LAMMPS (as a shared library) or make changes to the
-python/lammps.py file.
-
-You can invoke install.py from the python directory as
-
-.. parsed-literal::
-
- % python install.py [libdir] [pydir]
-
-The optional libdir is where to copy the LAMMPS shared library to; the
-default is /usr/local/lib. The optional pydir is where to copy the
-lammps.py file to; the default is the site-packages directory of the
-version of Python that is running the install script.
-
-Note that libdir must be a location that is in your default
-LD_LIBRARY_PATH, like /usr/local/lib or /usr/lib. And pydir must be a
-location that Python looks in by default for imported modules, like
-its site-packages dir. If you want to copy these files to
-non-standard locations, such as within your own user space, you will
-need to set your PYTHONPATH and LD_LIBRARY_PATH environment variables
-accordingly, as above.
-
-If the install.py script does not allow you to copy files into system
-directories, prefix the python command with "sudo". If you do this,
-make sure that the Python that root runs is the same as the Python you
-run. E.g. you may need to do something like
-
-.. parsed-literal::
-
- % sudo /usr/local/bin/python install.py [libdir] [pydir]
-
-You can also invoke install.py from the make command in the src
-directory as
-
-.. parsed-literal::
-
- % make install-python
-
-In this mode you cannot append optional arguments. Again, you may
-need to prefix this with "sudo". In this mode you cannot control
-which Python is invoked by root.
-
-Note that if you want Python to be able to load different versions of
-the LAMMPS shared library (see :ref:`this section <py_5>` below), you will
-need to manually copy files like liblammps_g++.so into the appropriate
-system directory. This is not needed if you set the LD_LIBRARY_PATH
-environment variable as described above.
-
-
-----------
-
-
-.. _py_5:
-
-Extending Python with MPI to run in parallel
---------------------------------------------
-
-If you wish to run LAMMPS in parallel from Python, you need to extend
-your Python with an interface to MPI. This also allows you to
-make MPI calls directly from Python in your script, if you desire.
-
-There are several Python packages available that purport to wrap MPI
-as a library and allow MPI functions to be called from Python.
-
-These include
-
-* `pyMPI <http://pympi.sourceforge.net/>`_
-* `maroonmpi <http://code.google.com/p/maroonmpi/>`_
-* `mpi4py <http://code.google.com/p/mpi4py/>`_
-* `myMPI <http://nbcr.sdsc.edu/forum/viewtopic.php?t=89&sid=c997fefc3933bd66204875b436940f16>`_
-* `Pypar <http://code.google.com/p/pypar>`_
-
-All of these except pyMPI work by wrapping the MPI library and
-exposing (some portion of) its interface to your Python script. This
-means Python cannot be used interactively in parallel, since they do
-not address the issue of interactive input to multiple instances of
-Python running on different processors. The one exception is pyMPI,
-which alters the Python interpreter to address this issue, and (I
-believe) creates a new alternate executable (in place of "python"
-itself) as a result.
-
-In principle any of these Python/MPI packages should work to invoke
-LAMMPS in parallel and to make MPI calls themselves from a Python
-script which is itself running in parallel. However, when I
-downloaded and looked at a few of them, their documentation was
-incomplete and I had trouble with their installation. It's not clear
-if some of the packages are still being actively developed and
-supported.
-
-The packages Pypar and mpi4py have both been successfully tested with
-LAMMPS. Pypar is simpler and easy to set up and use, but supports
-only a subset of MPI. Mpi4py is more MPI-feature complete, but also a
-bit more complex to use. As of version 2.0.0, mpi4py is the only
-python MPI wrapper that allows passing a custom MPI communicator to
-the LAMMPS constructor, which means one can easily run one or more
-LAMMPS instances on subsets of the total MPI ranks.
-
-
-----------
-
-
-Pypar requires the ubiquitous `Numpy package <http://numpy.scipy.org>`_
-be installed in your Python. After launching Python, type
-
-.. parsed-literal::
-
- import numpy
-
-to see if it is installed. If not, here is how to install it (version
-1.3.0b1 as of April 2009). Unpack the numpy tarball and from its
-top-level directory, type
-
-.. parsed-literal::
-
- python setup.py build
- sudo python setup.py install
-
-The "sudo" is only needed if required to copy Numpy files into your
-Python distribution's site-packages directory.
-
-To install Pypar (version pypar-2.1.4_94 as of Aug 2012), unpack it
-and from its "source" directory, type
-
-.. parsed-literal::
-
- python setup.py build
- sudo python setup.py install
-
-Again, the "sudo" is only needed if required to copy Pypar files into
-your Python distribution's site-packages directory.
-
-If you have successully installed Pypar, you should be able to run
-Python and type
-
-.. parsed-literal::
-
- import pypar
-
-without error. You should also be able to run python in parallel
-on a simple test script
-
-.. parsed-literal::
-
- % mpirun -np 4 python test.py
-
-where test.py contains the lines
-
-.. parsed-literal::
-
- import pypar
- print "Proc %d out of %d procs" % (pypar.rank(),pypar.size())
-
-and see one line of output for each processor you run on.
-
-.. note::
-
- To use Pypar and LAMMPS in parallel from Python, you must insure
- both are using the same version of MPI. If you only have one MPI
- installed on your system, this is not an issue, but it can be if you
- have multiple MPIs. Your LAMMPS build is explicit about which MPI it
- is using, since you specify the details in your lo-level
- src/MAKE/Makefile.foo file. Pypar uses the "mpicc" command to find
- information about the MPI it uses to build against. And it tries to
- load "libmpi.so" from the LD_LIBRARY_PATH. This may or may not find
- the MPI library that LAMMPS is using. If you have problems running
- both Pypar and LAMMPS together, this is an issue you may need to
- address, e.g. by moving other MPI installations so that Pypar finds
- the right one.
-
-
-----------
-
-
-To install mpi4py (version mpi4py-2.0.0 as of Oct 2015), unpack it
-and from its main directory, type
-
-.. parsed-literal::
-
- python setup.py build
- sudo python setup.py install
-
-Again, the "sudo" is only needed if required to copy mpi4py files into
-your Python distribution's site-packages directory. To install with
-user privilege into the user local directory type
-
-.. parsed-literal::
-
- python setup.py install --user
-
-If you have successully installed mpi4py, you should be able to run
-Python and type
-
-.. parsed-literal::
-
- from mpi4py import MPI
-
-without error. You should also be able to run python in parallel
-on a simple test script
-
-.. parsed-literal::
-
- % mpirun -np 4 python test.py
-
-where test.py contains the lines
-
-.. parsed-literal::
-
- from mpi4py import MPI
- comm = MPI.COMM_WORLD
- print "Proc %d out of %d procs" % (comm.Get_rank(),comm.Get_size())
-
-and see one line of output for each processor you run on.
-
-.. note::
-
- To use mpi4py and LAMMPS in parallel from Python, you must
- insure both are using the same version of MPI. If you only have one
- MPI installed on your system, this is not an issue, but it can be if
- you have multiple MPIs. Your LAMMPS build is explicit about which MPI
- it is using, since you specify the details in your lo-level
- src/MAKE/Makefile.foo file. Mpi4py uses the "mpicc" command to find
- information about the MPI it uses to build against. And it tries to
- load "libmpi.so" from the LD_LIBRARY_PATH. This may or may not find
- the MPI library that LAMMPS is using. If you have problems running
- both mpi4py and LAMMPS together, this is an issue you may need to
- address, e.g. by moving other MPI installations so that mpi4py finds
- the right one.
-
-
-----------
-
-
-.. _py_6:
-
-Testing the Python-LAMMPS interface
------------------------------------
-
-To test if LAMMPS is callable from Python, launch Python interactively
-and type:
-
-.. parsed-literal::
-
- >>> from lammps import lammps
- >>> lmp = lammps()
-
-If you get no errors, you're ready to use LAMMPS from Python. If the
-2nd command fails, the most common error to see is
-
-.. parsed-literal::
-
- OSError: Could not load LAMMPS dynamic library
-
-which means Python was unable to load the LAMMPS shared library. This
-typically occurs if the system can't find the LAMMPS shared library or
-one of the auxiliary shared libraries it depends on, or if something
-about the library is incompatible with your Python. The error message
-should give you an indication of what went wrong.
-
-You can also test the load directly in Python as follows, without
-first importing from the lammps.py file:
-
-.. parsed-literal::
-
- >>> from ctypes import CDLL
- >>> CDLL("liblammps.so")
-
-If an error occurs, carefully go thru the steps in :ref:`Section_start 5 <start_5>` and above about building a shared
-library and about insuring Python can find the necessary two files
-it needs.
-
-**Test LAMMPS and Python in serial:**
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-To run a LAMMPS test in serial, type these lines into Python
-interactively from the bench directory:
-
-.. parsed-literal::
-
- >>> from lammps import lammps
- >>> lmp = lammps()
- >>> lmp.file("in.lj")
-
-Or put the same lines in the file test.py and run it as
-
-.. parsed-literal::
-
- % python test.py
-
-Either way, you should see the results of running the in.lj benchmark
-on a single processor appear on the screen, the same as if you had
-typed something like:
-
-.. parsed-literal::
-
- lmp_g++ -in in.lj
-
-**Test LAMMPS and Python in parallel:**
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-To run LAMMPS in parallel, assuming you have installed the
-`Pypar <Pypar>`_ package as discussed above, create a test.py file
-containing these lines:
-
-.. parsed-literal::
-
- import pypar
- from lammps import lammps
- lmp = lammps()
- lmp.file("in.lj")
- print "Proc %d out of %d procs has" % (pypar.rank(),pypar.size()),lmp
- pypar.finalize()
-
-To run LAMMPS in parallel, assuming you have installed the
-`mpi4py <mpi4py>`_ package as discussed above, create a test.py file
-containing these lines:
-
-.. parsed-literal::
-
- from mpi4py import MPI
- from lammps import lammps
- lmp = lammps()
- lmp.file("in.lj")
- me = MPI.COMM_WORLD.Get_rank()
- nprocs = MPI.COMM_WORLD.Get_size()
- print "Proc %d out of %d procs has" % (me,nprocs),lmp
- MPI.Finalize()
-
-You can either script in parallel as:
-
-.. parsed-literal::
-
- % mpirun -np 4 python test.py
-
-and you should see the same output as if you had typed
-
-.. parsed-literal::
-
- % mpirun -np 4 lmp_g++ -in in.lj
-
-Note that if you leave out the 3 lines from test.py that specify Pypar
-commands you will instantiate and run LAMMPS independently on each of
-the P processors specified in the mpirun command. In this case you
-should get 4 sets of output, each showing that a LAMMPS run was made
-on a single processor, instead of one set of output showing that
-LAMMPS ran on 4 processors. If the 1-processor outputs occur, it
-means that Pypar is not working correctly.
-
-Also note that once you import the PyPar module, Pypar initializes MPI
-for you, and you can use MPI calls directly in your Python script, as
-described in the Pypar documentation. The last line of your Python
-script should be pypar.finalize(), to insure MPI is shut down
-correctly.
-
-**Running Python scripts:**
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Note that any Python script (not just for LAMMPS) can be invoked in
-one of several ways:
-
-.. parsed-literal::
-
- % python foo.script
- % python -i foo.script
- % foo.script
-
-The last command requires that the first line of the script be
-something like this:
-
-.. parsed-literal::
-
- #!/usr/local/bin/python
- #!/usr/local/bin/python -i
-
-where the path points to where you have Python installed, and that you
-have made the script file executable:
-
-.. parsed-literal::
-
- % chmod +x foo.script
-
-Without the "-i" flag, Python will exit when the script finishes.
-With the "-i" flag, you will be left in the Python interpreter when
-the script finishes, so you can type subsequent commands. As
-mentioned above, you can only run Python interactively when running
-Python on a single processor, not in parallel.
-
-
-
-
-
-.. _py_7:
-
-Using LAMMPS from Python
-------------------------
-
-As described above, the Python interface to LAMMPS consists of a
-Python "lammps" module, the source code for which is in
-python/lammps.py, which creates a "lammps" object, with a set of
-methods that can be invoked on that object. The sample Python code
-below assumes you have first imported the "lammps" module in your
-Python script, as follows:
-
-.. parsed-literal::
-
- from lammps import lammps
-
-These are the methods defined by the lammps module. If you look at
-the files src/library.cpp and src/library.h you will see that they
-correspond one-to-one with calls you can make to the LAMMPS library
-from a C++ or C or Fortran program.
-
-.. parsed-literal::
-
- lmp = lammps() # create a LAMMPS object using the default liblammps.so library
- 4 optional args are allowed: name, cmdargs, ptr, comm
- lmp = lammps(ptr=lmpptr) # use lmpptr as previously created LAMMPS object
- lmp = lammps(comm=split) # create a LAMMPS object with a custom communicator, requires mpi4py 2.0.0 or later
- lmp = lammps(name="g++") # create a LAMMPS object using the liblammps_g++.so library
- lmp = lammps(name="g++",cmdargs=list) # add LAMMPS command-line args, e.g. list = ["-echo","screen"]
-
-.. parsed-literal::
-
- lmp.close() # destroy a LAMMPS object
-
-version = lmp.version() # return the numerical version id, e.g. LAMMPS 2 Sep 2015 -> 20150902
-
-.. parsed-literal::
-
- lmp.file(file) # run an entire input script, file = "in.lj"
- lmp.command(cmd) # invoke a single LAMMPS command, cmd = "run 100"
-
-.. parsed-literal::
-
- xlo = lmp.extract_global(name,type) # extract a global quantity
- # name = "boxxlo", "nlocal", etc
- # type = 0 = int
- # 1 = double
-
-.. parsed-literal::
-
- coords = lmp.extract_atom(name,type) # extract a per-atom quantity
- # name = "x", "type", etc
- # type = 0 = vector of ints
- # 1 = array of ints
- # 2 = vector of doubles
- # 3 = array of doubles
-
-.. parsed-literal::
-
- eng = lmp.extract_compute(id,style,type) # extract value(s) from a compute
- v3 = lmp.extract_fix(id,style,type,i,j) # extract value(s) from a fix
- # id = ID of compute or fix
- # style = 0 = global data
- # 1 = per-atom data
- # 2 = local data
- # type = 0 = scalar
- # 1 = vector
- # 2 = array
- # i,j = indices of value in global vector or array
-
-.. parsed-literal::
-
- var = lmp.extract_variable(name,group,flag) # extract value(s) from a variable
- # name = name of variable
- # group = group ID (ignored for equal-style variables)
- # flag = 0 = equal-style variable
- # 1 = atom-style variable
-
-.. parsed-literal::
-
- flag = lmp.set_variable(name,value) # set existing named string-style variable to value, flag = 0 if successful
- natoms = lmp.get_natoms() # total # of atoms as int
- data = lmp.gather_atoms(name,type,count) # return atom attribute of all atoms gathered into data, ordered by atom ID
- # name = "x", "charge", "type", etc
- # count = # of per-atom values, 1 or 3, etc
- lmp.scatter_atoms(name,type,count,data) # scatter atom attribute of all atoms from data, ordered by atom ID
- # name = "x", "charge", "type", etc
- # count = # of per-atom values, 1 or 3, etc
-
-
-----------
-
-
-The lines
-
-.. parsed-literal::
-
- from lammps import lammps
- lmp = lammps()
-
-create an instance of LAMMPS, wrapped in a Python class by the lammps
-Python module, and return an instance of the Python class as lmp. It
-is used to make all subequent calls to the LAMMPS library.
-
-Additional arguments can be used to tell Python the name of the shared
-library to load or to pass arguments to the LAMMPS instance, the same
-as if LAMMPS were launched from a command-line prompt.
-
-If the ptr argument is set like this:
-
-.. parsed-literal::
-
- lmp = lammps(ptr=lmpptr)
-
-then lmpptr must be an argument passed to Python via the LAMMPS
-:doc:`python <python>` command, when it is used to define a Python
-function that is invoked by the LAMMPS input script. This mode of
-using Python with LAMMPS is described above in 11.2. The variable
-lmpptr refers to the instance of LAMMPS that called the embedded
-Python interpreter. Using it as an argument to lammps() allows the
-returned Python class instance "lmp" to make calls to that instance of
-LAMMPS. See the :doc:`python <python>` command doc page for examples
-using this syntax.
-
-Note that you can create multiple LAMMPS objects in your Python
-script, and coordinate and run multiple simulations, e.g.
-
-.. parsed-literal::
-
- from lammps import lammps
- lmp1 = lammps()
- lmp2 = lammps()
- lmp1.file("in.file1")
- lmp2.file("in.file2")
-
-The file() and command() methods allow an input script or single
-commands to be invoked.
-
-The extract_global(), extract_atom(), extract_compute(),
-extract_fix(), and extract_variable() methods return values or
-pointers to data structures internal to LAMMPS.
-
-For extract_global() see the src/library.cpp file for the list of
-valid names. New names could easily be added. A double or integer is
-returned. You need to specify the appropriate data type via the type
-argument.
-
-For extract_atom(), a pointer to internal LAMMPS atom-based data is
-returned, which you can use via normal Python subscripting. See the
-extract() method in the src/atom.cpp file for a list of valid names.
-Again, new names could easily be added. A pointer to a vector of
-doubles or integers, or a pointer to an array of doubles (double **)
-or integers (int **) is returned. You need to specify the appropriate
-data type via the type argument.
-
-For extract_compute() and extract_fix(), the global, per-atom, or
-local data calulated by the compute or fix can be accessed. What is
-returned depends on whether the compute or fix calculates a scalar or
-vector or array. For a scalar, a single double value is returned. If
-the compute or fix calculates a vector or array, a pointer to the
-internal LAMMPS data is returned, which you can use via normal Python
-subscripting. The one exception is that for a fix that calculates a
-global vector or array, a single double value from the vector or array
-is returned, indexed by I (vector) or I and J (array). I,J are
-zero-based indices. The I,J arguments can be left out if not needed.
-See :ref:`Section_howto 15 <howto_15>` of the manual for a
-discussion of global, per-atom, and local data, and of scalar, vector,
-and array data types. See the doc pages for individual
-:doc:`computes <compute>` and :doc:`fixes <fix>` for a description of what
-they calculate and store.
-
-For extract_variable(), an :doc:`equal-style or atom-style variable <variable>` is evaluated and its result returned.
-
-For equal-style variables a single double value is returned and the
-group argument is ignored. For atom-style variables, a vector of
-doubles is returned, one value per atom, which you can use via normal
-Python subscripting. The values will be zero for atoms not in the
-specified group.
-
-The get_natoms() method returns the total number of atoms in the
-simulation, as an int.
-
-The gather_atoms() method returns a ctypes vector of ints or doubles
-as specified by type, of length count*natoms, for the property of all
-the atoms in the simulation specified by name, ordered by count and
-then by atom ID. The vector can be used via normal Python
-subscripting. If atom IDs are not consecutively ordered within
-LAMMPS, a None is returned as indication of an error.
-
-Note that the data structure gather_atoms("x") returns is different
-from the data structure returned by extract_atom("x") in four ways.
-(1) Gather_atoms() returns a vector which you index as x[i];
-extract_atom() returns an array which you index as x[i][j]. (2)
-Gather_atoms() orders the atoms by atom ID while extract_atom() does
-not. (3) Gathert_atoms() returns a list of all atoms in the
-simulation; extract_atoms() returns just the atoms local to each
-processor. (4) Finally, the gather_atoms() data structure is a copy
-of the atom coords stored internally in LAMMPS, whereas extract_atom()
-returns an array that effectively points directly to the internal
-data. This means you can change values inside LAMMPS from Python by
-assigning a new values to the extract_atom() array. To do this with
-the gather_atoms() vector, you need to change values in the vector,
-then invoke the scatter_atoms() method.
-
-The scatter_atoms() method takes a vector of ints or doubles as
-specified by type, of length count*natoms, for the property of all the
-atoms in the simulation specified by name, ordered by bount and then
-by atom ID. It uses the vector of data to overwrite the corresponding
-properties for each atom inside LAMMPS. This requires LAMMPS to have
-its "map" option enabled; see the :doc:`atom_modify <atom_modify>`
-command for details. If it is not, or if atom IDs are not
-consecutively ordered, no coordinates are reset.
-
-The array of coordinates passed to scatter_atoms() must be a ctypes
-vector of ints or doubles, allocated and initialized something like
-this:
-
-.. parsed-literal::
-
- from ctypes import *
- natoms = lmp.get_natoms()
- n3 = 3*natoms
- x = (n3*c_double)()
- x[0] = x coord of atom with ID 1
- x[1] = y coord of atom with ID 1
- x[2] = z coord of atom with ID 1
- x[3] = x coord of atom with ID 2
- ...
- x[n3-1] = z coord of atom with ID natoms
- lmp.scatter_coords("x",1,3,x)
-
-Alternatively, you can just change values in the vector returned by
-gather_atoms("x",1,3), since it is a ctypes vector of doubles.
-
-
-----------
-
-
-As noted above, these Python class methods correspond one-to-one with
-the functions in the LAMMPS library interface in src/library.cpp and
-library.h. This means you can extend the Python wrapper via the
-following steps:
-
-* Add a new interface function to src/library.cpp and
- src/library.h.
-* Rebuild LAMMPS as a shared library.
-* Add a wrapper method to python/lammps.py for this interface
- function.
-* You should now be able to invoke the new interface function from a
- Python script. Isn't ctypes amazing?
-
-
-
-
-.. _py_8:
-
-Example Python scripts that use LAMMPS
---------------------------------------
-
-These are the Python scripts included as demos in the python/examples
-directory of the LAMMPS distribution, to illustrate the kinds of
-things that are possible when Python wraps LAMMPS. If you create your
-own scripts, send them to us and we can include them in the LAMMPS
-distribution.
-
-+----------------------------------------------------------------+--------------------------------------------------+
-| trivial.py | read/run a LAMMPS input script thru Python |
-+----------------------------------------------------------------+--------------------------------------------------+
-| demo.py | invoke various LAMMPS library interface routines |
-+----------------------------------------------------------------+--------------------------------------------------+
-| simple.py | run in parallel |
-+----------------------------------------------------------------+--------------------------------------------------+
-| similar to examples/COUPLE/simple/simple.cpp | split.py |
-+----------------------------------------------------------------+--------------------------------------------------+
-| same as simple.py but running in parallel on a subset of procs | gui.py |
-+----------------------------------------------------------------+--------------------------------------------------+
-| GUI go/stop/temperature-slider to control LAMMPS | plot.py |
-+----------------------------------------------------------------+--------------------------------------------------+
-| real-time temeperature plot with GnuPlot via Pizza.py | viz_tool.py |
-+----------------------------------------------------------------+--------------------------------------------------+
-| real-time viz via some viz package | vizplotgui_tool.py |
-+----------------------------------------------------------------+--------------------------------------------------+
-| combination of viz_tool.py and plot.py and gui.py | |
-+----------------------------------------------------------------+--------------------------------------------------+
-
-
-----------
-
-
-For the viz_tool.py and vizplotgui_tool.py commands, replace "tool"
-with "gl" or "atomeye" or "pymol" or "vmd", depending on what
-visualization package you have installed.
-
-Note that for GL, you need to be able to run the Pizza.py GL tool,
-which is included in the pizza sub-directory. See the `Pizza.py doc pages <pizza_>`_ for more info:
-
-.. _pizza: http://www.sandia.gov/~sjplimp/pizza.html
-
-
-
-Note that for AtomEye, you need version 3, and there is a line in the
-scripts that specifies the path and name of the executable. See the
-AtomEye WWW pages `here <atomeye_>`_ or `here <atomeye3_>`_ for more details:
-
-.. parsed-literal::
-
- http://mt.seas.upenn.edu/Archive/Graphics/A
- http://mt.seas.upenn.edu/Archive/Graphics/A3/A3.html
-
-.. _atomeye: http://mt.seas.upenn.edu/Archive/Graphics/A
-
-
-
-.. _atomeye3: http://mt.seas.upenn.edu/Archive/Graphics/A3/A3.html
-
-
-
-The latter link is to AtomEye 3 which has the scriping
-capability needed by these Python scripts.
-
-Note that for PyMol, you need to have built and installed the
-open-source version of PyMol in your Python, so that you can import it
-from a Python script. See the PyMol WWW pages `here <pymol_>`_ or
-`here <pymolopen_>`_ for more details:
-
-.. parsed-literal::
-
- http://www.pymol.org
- http://sourceforge.net/scm/?type=svn&group_id=4546
-
-.. _pymol: http://www.pymol.org
-
-
-
-.. _pymolopen: http://sourceforge.net/scm/?type=svn&group_id=4546
-
-
-
-The latter link is to the open-source version.
-
-Note that for VMD, you need a fairly current version (1.8.7 works for
-me) and there are some lines in the pizza/vmd.py script for 4 PIZZA
-variables that have to match the VMD installation on your system.
-
-
-----------
-
-
-See the python/README file for instructions on how to run them and the
-source code for individual scripts for comments about what they do.
-
-Here are screenshots of the vizplotgui_tool.py script in action for
-different visualization package options. Click to see larger images:
-
-.. thumbnail:: JPG/screenshot_gl.jpg
-
-.. thumbnail:: JPG/screenshot_atomeye.jpg
-
-.. thumbnail:: JPG/screenshot_pymol.jpg
-
-.. thumbnail:: JPG/screenshot_vmd.jpg
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_start.txt b/doc/_sources/Section_start.txt
deleted file mode 100644
index d49176ae9..000000000
--- a/doc/_sources/Section_start.txt
+++ /dev/null
@@ -1,2155 +0,0 @@
-Getting Started
-===============
-
-This section describes how to build and run LAMMPS, for both new and
-experienced users.
-
-| 2.1 :ref:`What's in the LAMMPS distribution <start_1>`
-| 2.2 :ref:`Making LAMMPS <start_2>`
-| 2.3 :ref:`Making LAMMPS with optional packages <start_3>`
-| 2.4 :ref:`Building LAMMPS via the Make.py script <start_4>`
-| 2.5 :ref:`Building LAMMPS as a library <start_5>`
-| 2.6 :ref:`Running LAMMPS <start_6>`
-| 2.7 :ref:`Command-line options <start_7>`
-| 2.8 :ref:`Screen output <start_8>`
-| 2.9 :ref:`Tips for users of previous versions <start_9>`
-|
-
-
-
-
-
-.. _start_1:
-
-What's in the LAMMPS distribution
------------------------------------------------
-
-When you download a LAMMPS tarball you will need to unzip and untar
-the downloaded file with the following commands, after placing the
-tarball in an appropriate directory.
-
-.. parsed-literal::
-
- gunzip lammps*.tar.gz
- tar xvf lammps*.tar
-
-This will create a LAMMPS directory containing two files and several
-sub-directories:
-
-+------------+--------------------------------------------+
-| README | text file |
-+------------+--------------------------------------------+
-| LICENSE | the GNU General Public License (GPL) |
-+------------+--------------------------------------------+
-| bench | benchmark problems |
-+------------+--------------------------------------------+
-| doc | documentation |
-+------------+--------------------------------------------+
-| examples | simple test problems |
-+------------+--------------------------------------------+
-| potentials | embedded atom method (EAM) potential files |
-+------------+--------------------------------------------+
-| src | source files |
-+------------+--------------------------------------------+
-| tools | pre- and post-processing tools |
-+------------+--------------------------------------------+
-
-Note that the `download page <http://lammps.sandia.gov/download.html>`_
-also has links to download
-Windows exectubles and installers, as well as pre-built executables
-for a few specific Linux distributions. It also has instructions for
-how to download/install LAMMPS for Macs (via Homebrew), and to
-download and update LAMMPS from SVN and Git repositories, which gives
-you the same files that are in the download tarball.
-
-.. _download: http://lammps.sandia.gov/download.html
-
-
-
-The Windows and Linux executables for serial or parallel only include
-certain packages and bug-fixes/upgrades listed on `this page <http://lammps.sandia.gov/bug.html>`_ up to a certain date, as
-stated on the download page. If you want an executable with
-non-included packages or that is more current, then you'll need to
-build LAMMPS yourself, as discussed in the next section.
-
-Skip to the :ref:`Running LAMMPS <start_6>` sections for info on how to
-launch a LAMMPS Windows executable on a Windows box.
-
-
-----------
-
-
-.. _start_2:
-
-Making LAMMPS
----------------------------
-
-This section has the following sub-sections:
-
-* :ref:`Read this first <start_2_1>`
-* :ref:`Steps to build a LAMMPS executable <start_2_2>`
-* :ref:`Common errors that can occur when making LAMMPS <start_2_3>`
-* :ref:`Additional build tips <start_2_4>`
-* :ref:`Building for a Mac <start_2_5>`
-* :ref:`Building for Windows <start_2_6>`
-
-
-----------
-
-
-.. _start_2_1:
-
-***Read this first:***
-
-If you want to avoid building LAMMPS yourself, read the preceeding
-section about options available for downloading and installing
-executables. Details are discussed on the `download <download_>`_ page.
-
-Building LAMMPS can be simple or not-so-simple. If all you need are
-the default packages installed in LAMMPS, and MPI is already installed
-on your machine, or you just want to run LAMMPS in serial, then you
-can typically use the Makefile.mpi or Makefile.serial files in
-src/MAKE by typing one of these lines (from the src dir):
-
-.. parsed-literal::
-
- make mpi
- make serial
-
-Note that on a facility supercomputer, there are often "modules"
-loaded in your environment that provide the compilers and MPI you
-should use. In this case, the "mpicxx" compile/link command in
-Makefile.mpi should just work by accessing those modules.
-
-It may be the case that one of the other Makefile.machine files in the
-src/MAKE sub-directories is a better match to your system (type "make"
-to see a list), you can use it as-is by typing (for example):
-
-.. parsed-literal::
-
- make stampede
-
-If any of these builds (with an existing Makefile.machine) works on
-your system, then you're done!
-
-If you want to do one of the following:
-
-* use optional LAMMPS features that require additional libraries
-* use optional packages that require additional libraries
-* use optional accelerator packages that require special compiler/linker settings
-* run on a specialized platform that has its own compilers, settings, or other libs to use
-
-then building LAMMPS is more complicated. You may need to find where
-auxiliary libraries exist on your machine or install them if they
-don't. You may need to build additional libraries that are part of
-the LAMMPS package, before building LAMMPS. You may need to edit a
-Makefile.machine file to make it compatible with your system.
-
-Note that there is a Make.py tool in the src directory that automates
-several of these steps, but you still have to know what you are doing.
-:ref:`Section 2.4 <start_4>` below describes the tool. It is a convenient
-way to work with installing/un-installing various packages, the
-Makefile.machine changes required by some packages, and the auxiliary
-libraries some of them use.
-
-Please read the following sections carefully. If you are not
-comfortable with makefiles, or building codes on a Unix platform, or
-running an MPI job on your machine, please find a local expert to help
-you. Many compilation, linking, and run problems that users have are
-often not really LAMMPS issues - they are peculiar to the user's
-system, compilers, libraries, etc. Such questions are better answered
-by a local expert.
-
-If you have a build problem that you are convinced is a LAMMPS issue
-(e.g. the compiler complains about a line of LAMMPS source code), then
-please post the issue to the `LAMMPS mail list <http://lammps.sandia.gov/mail.html>`_.
-
-If you succeed in building LAMMPS on a new kind of machine, for which
-there isn't a similar machine Makefile included in the
-src/MAKE/MACHINES directory, then send it to the developers and we can
-include it in the LAMMPS distribution.
-
-
-----------
-
-
-.. _start_2_2:
-
-***Steps to build a LAMMPS executable:***
-
-**Step 0**
-
-The src directory contains the C++ source and header files for LAMMPS.
-It also contains a top-level Makefile and a MAKE sub-directory with
-low-level Makefile.* files for many systems and machines. See the
-src/MAKE/README file for a quick overview of what files are available
-and what sub-directories they are in.
-
-The src/MAKE dir has a few files that should work as-is on many
-platforms. The src/MAKE/OPTIONS dir has more that invoke additional
-compiler, MPI, and other setting options commonly used by LAMMPS, to
-illustrate their syntax. The src/MAKE/MACHINES dir has many more that
-have been tweaked or optimized for specific machines. These files are
-all good starting points if you find you need to change them for your
-machine. Put any file you edit into the src/MAKE/MINE directory and
-it will be never be touched by any LAMMPS updates.
-
->From within the src directory, type "make" or "gmake". You should see
-a list of available choices from src/MAKE and all of its
-sub-directories. If one of those has the options you want or is the
-machine you want, you can type a command like:
-
-.. parsed-literal::
-
- make mpi
- or
- make serial_icc
- or
- gmake mac
-
-Note that the corresponding Makefile.machine can exist in src/MAKE or
-any of its sub-directories. If a file with the same name appears in
-multiple places (not a good idea), the order they are used is as
-follows: src/MAKE/MINE, src/MAKE, src/MAKE/OPTIONS, src/MAKE/MACHINES.
-This gives preference to a file you have created/edited and put in
-src/MAKE/MINE.
-
-Note that on a multi-processor or multi-core platform you can launch a
-parallel make, by using the "-j" switch with the make command, which
-will build LAMMPS more quickly.
-
-If you get no errors and an executable like lmp_mpi or lmp_g++_serial
-or lmp_mac is produced, then you're done; it's your lucky day.
-
-Note that by default only a few of LAMMPS optional packages are
-installed. To build LAMMPS with optional packages, see :ref:`this section <start_3>` below.
-
-**Step 1**
-
-If Step 0 did not work, you will need to create a low-level Makefile
-for your machine, like Makefile.foo. You should make a copy of an
-existing Makefile.* in src/MAKE or one of its sub-directories as a
-starting point. The only portions of the file you need to edit are
-the first line, the "compiler/linker settings" section, and the
-"LAMMPS-specific settings" section. When it works, put the edited
-file in src/MAKE/MINE and it will not be altered by any future LAMMPS
-updates.
-
-**Step 2**
-
-Change the first line of Makefile.foo to list the word "foo" after the
-"#", and whatever other options it will set. This is the line you
-will see if you just type "make".
-
-**Step 3**
-
-The "compiler/linker settings" section lists compiler and linker
-settings for your C++ compiler, including optimization flags. You can
-use g++, the open-source GNU compiler, which is available on all Unix
-systems. You can also use mpicxx which will typically be available if
-MPI is installed on your system, though you should check which actual
-compiler it wraps. Vendor compilers often produce faster code. On
-boxes with Intel CPUs, we suggest using the Intel icc compiler, which
-can be downloaded from `Intel's compiler site <intel_>`_.
-
-.. _intel: http://www.intel.com/software/products/noncom
-
-
-
-If building a C++ code on your machine requires additional libraries,
-then you should list them as part of the LIB variable. You should
-not need to do this if you use mpicxx.
-
-The DEPFLAGS setting is what triggers the C++ compiler to create a
-dependency list for a source file. This speeds re-compilation when
-source (*.cpp) or header (*.h) files are edited. Some compilers do
-not support dependency file creation, or may use a different switch
-than -D. GNU g++ and Intel icc works with -D. If your compiler can't
-create dependency files, then you'll need to create a Makefile.foo
-patterned after Makefile.storm, which uses different rules that do not
-involve dependency files. Note that when you build LAMMPS for the
-first time on a new platform, a long list of *.d files will be printed
-out rapidly. This is not an error; it is the Makefile doing its
-normal creation of dependencies.
-
-**Step 4**
-
-The "system-specific settings" section has several parts. Note that
-if you change any -D setting in this section, you should do a full
-re-compile, after typing "make clean" (which will describe different
-clean options).
-
-The LMP_INC variable is used to include options that turn on ifdefs
-within the LAMMPS code. The options that are currently recogized are:
-
-* -DLAMMPS_GZIP
-* -DLAMMPS_JPEG
-* -DLAMMPS_PNG
-* -DLAMMPS_FFMPEG
-* -DLAMMPS_MEMALIGN
-* -DLAMMPS_XDR
-* -DLAMMPS_SMALLBIG
-* -DLAMMPS_BIGBIG
-* -DLAMMPS_SMALLSMALL
-* -DLAMMPS_LONGLONG_TO_LONG
-* -DPACK_ARRAY
-* -DPACK_POINTER
-* -DPACK_MEMCPY
-
-The read_data and dump commands will read/write gzipped files if you
-compile with -DLAMMPS_GZIP. It requires that your machine supports
-the "popen()" function in the standard runtime library and that a gzip
-executable can be found by LAMMPS during a run.
-
-.. note::
-
- on some clusters with high-speed networks, using the fork()
- library calls (required by popen()) can interfere with the fast
- communication library and lead to simulations using compressed output
- or input to hang or crash. For selected operations, compressed file
- I/O is also available using a compression library instead, which are
- provided in the COMPRESS package. From more details about compiling
- LAMMPS with packages, please see below.
-
-If you use -DLAMMPS_JPEG, the :doc:`dump image <dump_image>` command
-will be able to write out JPEG image files. For JPEG files, you must
-also link LAMMPS with a JPEG library, as described below. If you use
--DLAMMPS_PNG, the :doc:`dump image <dump>` command will be able to write
-out PNG image files. For PNG files, you must also link LAMMPS with a
-PNG library, as described below. If neither of those two defines are
-used, LAMMPS will only be able to write out uncompressed PPM image
-files.
-
-If you use -DLAMMPS_FFMPEG, the :doc:`dump movie <dump_image>` command
-will be available to support on-the-fly generation of rendered movies
-the need to store intermediate image files. It requires that your
-machines supports the "popen" function in the standard runtime library
-and that an FFmpeg executable can be found by LAMMPS during the run.
-
-.. note::
-
- Similar to the note above, this option can conflict with
- high-speed networks, because it uses popen().
-
-Using -DLAMMPS_MEMALIGN=<bytes> enables the use of the
-posix_memalign() call instead of malloc() when large chunks or memory
-are allocated by LAMMPS. This can help to make more efficient use of
-vector instructions of modern CPUS, since dynamically allocated memory
-has to be aligned on larger than default byte boundaries (e.g. 16
-bytes instead of 8 bytes on x86 type platforms) for optimal
-performance.
-
-If you use -DLAMMPS_XDR, the build will include XDR compatibility
-files for doing particle dumps in XTC format. This is only necessary
-if your platform does have its own XDR files available. See the
-Restrictions section of the :doc:`dump <dump>` command for details.
-
-Use at most one of the -DLAMMPS_SMALLBIG, -DLAMMPS_BIGBIG,
--DLAMMPS_SMALLSMALL settings. The default is -DLAMMPS_SMALLBIG. These
-settings refer to use of 4-byte (small) vs 8-byte (big) integers
-within LAMMPS, as specified in src/lmptype.h. The only reason to use
-the BIGBIG setting is to enable simulation of huge molecular systems
-(which store bond topology info) with more than 2 billion atoms, or to
-track the image flags of moving atoms that wrap around a periodic box
-more than 512 times. Normally, the only reason to use SMALLSMALL is
-if your machine does not support 64-bit integers, though you can use
-SMALLSMALL setting if you are running in serial or on a desktop
-machine or small cluster where you will never run large systems or for
-long time (more than 2 billion atoms, more than 2 billion timesteps).
-See the :ref:`Additional build tips <start_2_4>` section below for more
-details on these settings.
-
-Note that two packages, USER-ATC and USER-CUDA are not currently
-compatible with -DLAMMPS_BIGBIG. Also the GPU package requires the
-lib/gpu library to be compiled with the same setting, or the link will
-fail.
-
-The -DLAMMPS_LONGLONG_TO_LONG setting may be needed if your system or
-MPI version does not recognize "long long" data types. In this case a
-"long" data type is likely already 64-bits, in which case this setting
-will convert to that data type.
-
-Using one of the -DPACK_ARRAY, -DPACK_POINTER, and -DPACK_MEMCPY
-options can make for faster parallel FFTs (in the PPPM solver) on some
-platforms. The -DPACK_ARRAY setting is the default. See the
-:doc:`kspace_style <kspace_style>` command for info about PPPM. See
-Step 6 below for info about building LAMMPS with an FFT library.
-
-**Step 5**
-
-The 3 MPI variables are used to specify an MPI library to build LAMMPS
-with. Note that you do not need to set these if you use the MPI
-compiler mpicxx for your CC and LINK setting in the section above.
-The MPI wrapper knows where to find the needed files.
-
-If you want LAMMPS to run in parallel, you must have an MPI library
-installed on your platform. If MPI is installed on your system in the
-usual place (under /usr/local), you also may not need to specify these
-3 variables, assuming /usr/local is in your path. On some large
-parallel machines which use "modules" for their compile/link
-environements, you may simply need to include the correct module in
-your build environment, before building LAMMPS. Or the parallel
-machine may have a vendor-provided MPI which the compiler has no
-trouble finding.
-
-Failing this, these 3 variables can be used to specify where the mpi.h
-file (MPI_INC) and the MPI library file (MPI_PATH) are found and the
-name of the library file (MPI_LIB).
-
-If you are installing MPI yourself, we recommend Argonne's MPICH2
-or OpenMPI. MPICH can be downloaded from the `Argonne MPI site <http://www.mcs.anl.gov/research/projects/mpich2/>`_. OpenMPI can
-be downloaded from the `OpenMPI site <http://www.open-mpi.org>`_.
-Other MPI packages should also work. If you are running on a big
-parallel platform, your system people or the vendor should have
-already installed a version of MPI, which is likely to be faster
-than a self-installed MPICH or OpenMPI, so find out how to build
-and link with it. If you use MPICH or OpenMPI, you will have to
-configure and build it for your platform. The MPI configure script
-should have compiler options to enable you to use the same compiler
-you are using for the LAMMPS build, which can avoid problems that can
-arise when linking LAMMPS to the MPI library.
-
-If you just want to run LAMMPS on a single processor, you can use the
-dummy MPI library provided in src/STUBS, since you don't need a true
-MPI library installed on your system. See src/MAKE/Makefile.serial
-for how to specify the 3 MPI variables in this case. You will also
-need to build the STUBS library for your platform before making LAMMPS
-itself. Note that if you are building with src/MAKE/Makefile.serial,
-e.g. by typing "make serial", then the STUBS library is built for you.
-
-To build the STUBS library from the src directory, type "make
-mpi-stubs", or from the src/STUBS dir, type "make". This should
-create a libmpi_stubs.a file suitable for linking to LAMMPS. If the
-build fails, you will need to edit the STUBS/Makefile for your
-platform.
-
-The file STUBS/mpi.c provides a CPU timer function called MPI_Wtime()
-that calls gettimeofday() . If your system doesn't support
-gettimeofday() , you'll need to insert code to call another timer.
-Note that the ANSI-standard function clock() rolls over after an hour
-or so, and is therefore insufficient for timing long LAMMPS
-simulations.
-
-**Step 6**
-
-The 3 FFT variables allow you to specify an FFT library which LAMMPS
-uses (for performing 1d FFTs) when running the particle-particle
-particle-mesh (PPPM) option for long-range Coulombics via the
-:doc:`kspace_style <kspace_style>` command.
-
-LAMMPS supports various open-source or vendor-supplied FFT libraries
-for this purpose. If you leave these 3 variables blank, LAMMPS will
-use the open-source `KISS FFT library <http://kissfft.sf.net>`_, which is
-included in the LAMMPS distribution. This library is portable to all
-platforms and for typical LAMMPS simulations is almost as fast as FFTW
-or vendor optimized libraries. If you are not including the KSPACE
-package in your build, you can also leave the 3 variables blank.
-
-Otherwise, select which kinds of FFTs to use as part of the FFT_INC
-setting by a switch of the form -DFFT_XXX. Recommended values for XXX
-are: MKL, SCSL, FFTW2, and FFTW3. Legacy options are: INTEL, SGI,
-ACML, and T3E. For backward compatability, using -DFFT_FFTW will use
-the FFTW2 library. Using -DFFT_NONE will use the KISS library
-described above.
-
-You may also need to set the FFT_INC, FFT_PATH, and FFT_LIB variables,
-so the compiler and linker can find the needed FFT header and library
-files. Note that on some large parallel machines which use "modules"
-for their compile/link environements, you may simply need to include
-the correct module in your build environment. Or the parallel machine
-may have a vendor-provided FFT library which the compiler has no
-trouble finding.
-
-FFTW is a fast, portable library that should also work on any
-platform. You can download it from
-`www.fftw.org <http://www.fftw.org>`_. Both the legacy version 2.1.X and
-the newer 3.X versions are supported as -DFFT_FFTW2 or -DFFT_FFTW3.
-Building FFTW for your box should be as simple as ./configure; make.
-Note that on some platforms FFTW2 has been pre-installed, and uses
-renamed files indicating the precision it was compiled with,
-e.g. sfftw.h, or dfftw.h instead of fftw.h. In this case, you can
-specify an additional define variable for FFT_INC called -DFFTW_SIZE,
-which will select the correct include file. In this case, for FFT_LIB
-you must also manually specify the correct library, namely -lsfftw or
--ldfftw.
-
-The FFT_INC variable also allows for a -DFFT_SINGLE setting that will
-use single-precision FFTs with PPPM, which can speed-up long-range
-calulations, particularly in parallel or on GPUs. Fourier transform
-and related PPPM operations are somewhat insensitive to floating point
-truncation errors and thus do not always need to be performed in
-double precision. Using the -DFFT_SINGLE setting trades off a little
-accuracy for reduced memory use and parallel communication costs for
-transposing 3d FFT data. Note that single precision FFTs have only
-been tested with the FFTW3, FFTW2, MKL, and KISS FFT options.
-
-**Step 7**
-
-The 3 JPG variables allow you to specify a JPEG and/or PNG library
-which LAMMPS uses when writing out JPEG or PNG files via the :doc:`dump image <dump_image>` command. These can be left blank if you do not
-use the -DLAMMPS_JPEG or -DLAMMPS_PNG switches discussed above in Step
-4, since in that case JPEG/PNG output will be disabled.
-
-A standard JPEG library usually goes by the name libjpeg.a or
-libjpeg.so and has an associated header file jpeglib.h. Whichever
-JPEG library you have on your platform, you'll need to set the
-appropriate JPG_INC, JPG_PATH, and JPG_LIB variables, so that the
-compiler and linker can find it.
-
-A standard PNG library usually goes by the name libpng.a or libpng.so
-and has an associated header file png.h. Whichever PNG library you
-have on your platform, you'll need to set the appropriate JPG_INC,
-JPG_PATH, and JPG_LIB variables, so that the compiler and linker can
-find it.
-
-As before, if these header and library files are in the usual place on
-your machine, you may not need to set these variables.
-
-**Step 8**
-
-Note that by default only a few of LAMMPS optional packages are
-installed. To build LAMMPS with optional packages, see :ref:`this section <start_3>` below, before proceeding to Step 9.
-
-**Step 9**
-
-That's it. Once you have a correct Makefile.foo, and you have
-pre-built any other needed libraries (e.g. MPI, FFT, etc) all you need
-to do from the src directory is type something like this:
-
-.. parsed-literal::
-
- make foo
- or
- gmake foo
-
-You should get the executable lmp_foo when the build is complete.
-
-
-----------
-
-
-.. _start_2_3:
-
-***Errors that can occur when making LAMMPS:***
-
-.. note::
-
- If an error occurs when building LAMMPS, the compiler or linker
- will state very explicitly what the problem is. The error message
- should give you a hint as to which of the steps above has failed, and
- what you need to do in order to fix it. Building a code with a
- Makefile is a very logical process. The compiler and linker need to
- find the appropriate files and those files need to be compatible with
- LAMMPS source files. When a make fails, there is usually a very
- simple reason, which you or a local expert will need to fix.
-
-Here are two non-obvious errors that can occur:
-
-(1) If the make command breaks immediately with errors that indicate
-it can't find files with a "*" in their names, this can be because
-your machine's native make doesn't support wildcard expansion in a
-makefile. Try gmake instead of make. If that doesn't work, try using
-a -f switch with your make command to use a pre-generated
-Makefile.list which explicitly lists all the needed files, e.g.
-
-.. parsed-literal::
-
- make makelist
- make -f Makefile.list linux
- gmake -f Makefile.list mac
-
-The first "make" command will create a current Makefile.list with all
-the file names in your src dir. The 2nd "make" command (make or
-gmake) will use it to build LAMMPS. Note that you should
-include/exclude any desired optional packages before using the "make
-makelist" command.
-
-(2) If you get an error that says something like 'identifier "atoll"
-is undefined', then your machine does not support "long long"
-integers. Try using the -DLAMMPS_LONGLONG_TO_LONG setting described
-above in Step 4.
-
-
-----------
-
-
-.. _start_2_4:
-
-***Additional build tips:***
-
-(1) Building LAMMPS for multiple platforms.
-
-You can make LAMMPS for multiple platforms from the same src
-directory. Each target creates its own object sub-directory called
-Obj_target where it stores the system-specific *.o files.
-
-(2) Cleaning up.
-
-Typing "make clean-all" or "make clean-machine" will delete *.o object
-files created when LAMMPS is built, for either all builds or for a
-particular machine.
-
-(3) Changing the LAMMPS size limits via -DLAMMPS_SMALLBIG or
--DLAMMPS_BIGBIG or -DLAMMPS_SMALLSMALL
-
-As explained above, any of these 3 settings can be specified on the
-LMP_INC line in your low-level src/MAKE/Makefile.foo.
-
-The default is -DLAMMPS_SMALLBIG which allows for systems with up to
-2^63 atoms and 2^63 timesteps (about 9e18). The atom limit is for
-atomic systems which do not store bond topology info and thus do not
-require atom IDs. If you use atom IDs for atomic systems (which is
-the default) or if you use a molecular model, which stores bond
-topology info and thus requires atom IDs, the limit is 2^31 atoms
-(about 2 billion). This is because the IDs are stored in 32-bit
-integers.
-
-Likewise, with this setting, the 3 image flags for each atom (see the
-:doc:`dump <dump>` doc page for a discussion) are stored in a 32-bit
-integer, which means the atoms can only wrap around a periodic box (in
-each dimension) at most 512 times. If atoms move through the periodic
-box more than this many times, the image flags will "roll over",
-e.g. from 511 to -512, which can cause diagnostics like the
-mean-squared displacement, as calculated by the :doc:`compute msd <compute_msd>` command, to be faulty.
-
-To allow for larger atomic systems with atom IDs or larger molecular
-systems or larger image flags, compile with -DLAMMPS_BIGBIG. This
-stores atom IDs and image flags in 64-bit integers. This enables
-atomic or molecular systems with atom IDS of up to 2^63 atoms (about
-9e18). And image flags will not "roll over" until they reach 2^20 =
-1048576.
-
-If your system does not support 8-byte integers, you will need to
-compile with the -DLAMMPS_SMALLSMALL setting. This will restrict the
-total number of atoms (for atomic or molecular systems) and timesteps
-to 2^31 (about 2 billion). Image flags will roll over at 2^9 = 512.
-
-Note that in src/lmptype.h there are definitions of all these data
-types as well as the MPI data types associated with them. The MPI
-types need to be consistent with the associated C data types, or else
-LAMMPS will generate a run-time error. As far as we know, the
-settings defined in src/lmptype.h are portable and work on every
-current system.
-
-In all cases, the size of problem that can be run on a per-processor
-basis is limited by 4-byte integer storage to 2^31 atoms per processor
-(about 2 billion). This should not normally be a limitation since such
-a problem would have a huge per-processor memory footprint due to
-neighbor lists and would run very slowly in terms of CPU secs/timestep.
-
-
-----------
-
-
-.. _start_2_5:
-
-***Building for a Mac:***
-
-OS X is BSD Unix, so it should just work. See the
-src/MAKE/MACHINES/Makefile.mac and Makefile.mac_mpi files.
-
-
-----------
-
-
-.. _start_2_6:
-
-***Building for Windows:***
-
-The LAMMPS download page has an option to download both a serial and
-parallel pre-built Windows executable. See the :ref:`Running LAMMPS <start_6>` section for instructions on running these executables
-on a Windows box.
-
-The pre-built executables hosted on the `LAMMPS download page <http://lammps.sandia.gov/download.html>`_ are built with a subset
-of the available packages; see the download page for the list. These
-are single executable files. No examples or documentation in
-included. You will need to download the full source code package to
-obtain those.
-
-As an alternative, you can download "daily builds" (and some older
-versions) of the installer packages from
-`rpm.lammps.org/windows.html <http://rpm.lammps.org/windows.html>`_.
-These executables are built with most optional packages and the
-download includes documentation, some tools and most examples.
-
-If you want a Windows version with specific packages included and
-excluded, you can build it yourself.
-
-One way to do this is install and use cygwin to build LAMMPS with a
-standard unix style make program, just as you would on a Linux box;
-see src/MAKE/MACHINES/Makefile.cygwin.
-
-
-----------
-
-
-.. _start_3:
-
-Making LAMMPS with optional packages
---------------------------------------------------
-
-This section has the following sub-sections:
-
-* :ref:`Package basics <start_3_1>`
-* :ref:`Including/excluding packages <start_3_2>`
-* :ref:`Packages that require extra libraries <start_3_3>`
-* :ref:`Packages that require Makefile.machine settings <start_3_4>`
-
-Note that the following :ref:`Section 2.4 <start_4>` describes the Make.py
-tool which can be used to install/un-install packages and build the
-auxiliary libraries which some of them use. It can also auto-edit a
-Makefile.machine to add settings needed by some packages.
-
-
-----------
-
-
-.. _start_3_1:
-
-***Package basics:***
-
-The source code for LAMMPS is structured as a set of core files which
-are always included, plus optional packages. Packages are groups of
-files that enable a specific set of features. For example, force
-fields for molecular systems or granular systems are in packages.
-
-You can see the list of all packages by typing "make package" from
-within the src directory of the LAMMPS distribution. This also lists
-various make commands that can be used to manipulate packages.
-
-If you use a command in a LAMMPS input script that is specific to a
-particular package, you must have built LAMMPS with that package, else
-you will get an error that the style is invalid or the command is
-unknown. Every command's doc page specfies if it is part of a
-package. You can also type
-
-.. parsed-literal::
-
- lmp_machine -h
-
-to run your executable with the optional :ref:`-h command-line switch <start_7>` for "help", which will simply list the styles and
-commands known to your executable, and immediately exit.
-
-There are two kinds of packages in LAMMPS, standard and user packages.
-More information about the contents of standard and user packages is
-given in :doc:`Section_packages <Section_packages>` of the manual. The
-difference between standard and user packages is as follows:
-
-Standard packages, such as molecule or kspace, are supported by the
-LAMMPS developers and are written in a syntax and style consistent
-with the rest of LAMMPS. This means we will answer questions about
-them, debug and fix them if necessary, and keep them compatible with
-future changes to LAMMPS.
-
-User packages, such as user-atc or user-omp, have been contributed by
-users, and always begin with the user prefix. If they are a single
-command (single file), they are typically in the user-misc package.
-Otherwise, they are a a set of files grouped together which add a
-specific functionality to the code.
-
-User packages don't necessarily meet the requirements of the standard
-packages. If you have problems using a feature provided in a user
-package, you may need to contact the contributor directly to get help.
-Information on how to submit additions you make to LAMMPS as single
-files or either a standard or user-contributed package are given in
-:ref:`this section <mod_15>` of the documentation.
-
-Some packages (both standard and user) require additional auxiliary
-libraries when building LAMMPS. See more details below.
-
-
-----------
-
-
-.. _start_3_2:
-
-***Including/excluding packages:***
-
-To use (or not use) a package you must include it (or exclude it)
-before building LAMMPS. From the src directory, this is typically as
-simple as:
-
-.. parsed-literal::
-
- make yes-colloid
- make g++
-
-or
-
-.. parsed-literal::
-
- make no-manybody
- make g++
-
-.. note::
-
- You should NOT include/exclude packages and build LAMMPS in a
- single make command using multiple targets, e.g. make yes-colloid g++.
- This is because the make procedure creates a list of source files that
- will be out-of-date for the build if the package configuration changes
- within the same command.
-
-Some packages have individual files that depend on other packages
-being included. LAMMPS checks for this and does the right thing.
-I.e. individual files are only included if their dependencies are
-already included. Likewise, if a package is excluded, other files
-dependent on that package are also excluded.
-
-If you will never run simulations that use the features in a
-particular packages, there is no reason to include it in your build.
-For some packages, this will keep you from having to build auxiliary
-libraries (see below), and will also produce a smaller executable
-which may run a bit faster.
-
-When you download a LAMMPS tarball, these packages are pre-installed
-in the src directory: KSPACE, MANYBODY,MOLECULE. When you download
-LAMMPS source files from the SVN or Git repositories, no packages are
-pre-installed.
-
-Packages are included or excluded by typing "make yes-name" or "make
-no-name", where "name" is the name of the package in lower-case, e.g.
-name = kspace for the KSPACE package or name = user-atc for the
-USER-ATC package. You can also type "make yes-standard", "make
-no-standard", "make yes-std", "make no-std", "make yes-user", "make
-no-user", "make yes-all" or "make no-all" to include/exclude various
-sets of packages. Type "make package" to see the all of the
-package-related make options.
-
-.. note::
-
- Inclusion/exclusion of a package works by simply moving files
- back and forth between the main src directory and sub-directories with
- the package name (e.g. src/KSPACE, src/USER-ATC), so that the files
- are seen or not seen when LAMMPS is built. After you have included or
- excluded a package, you must re-build LAMMPS.
-
-Additional package-related make options exist to help manage LAMMPS
-files that exist in both the src directory and in package
-sub-directories. You do not normally need to use these commands
-unless you are editing LAMMPS files or have downloaded a patch from
-the LAMMPS WWW site.
-
-Typing "make package-update" or "make pu" will overwrite src files
-with files from the package sub-directories if the package has been
-included. It should be used after a patch is installed, since patches
-only update the files in the package sub-directory, but not the src
-files. Typing "make package-overwrite" will overwrite files in the
-package sub-directories with src files.
-
-Typing "make package-status" or "make ps" will show which packages are
-currently included. Of those that are included, it will list files
-that are different in the src directory and package sub-directory.
-Typing "make package-diff" lists all differences between these files.
-Again, type "make package" to see all of the package-related make
-options.
-
-
-----------
-
-
-.. _start_3_3:
-
-***Packages that require extra libraries:***
-
-A few of the standard and user packages require additional auxiliary
-libraries. Many of them are provided with LAMMPS, in which case they
-must be compiled first, before LAMMPS is built, if you wish to include
-that package. If you get a LAMMPS build error about a missing
-library, this is likely the reason. See the
-:doc:`Section_packages <Section_packages>` doc page for a list of
-packages that have these kinds of auxiliary libraries.
-
-The lib directory in the distribution has sub-directories with package
-names that correspond to the needed auxiliary libs, e.g. lib/gpu.
-Each sub-directory has a README file that gives more details. Code
-for most of the auxiliary libraries is included in that directory.
-Examples are the USER-ATC and MEAM packages.
-
-A few of the lib sub-directories do not include code, but do include
-instructions (and sometimes scripts) that automate the process of
-downloading the auxiliary library and installing it so LAMMPS can link
-to it. Examples are the KIM, VORONOI, USER-MOLFILE, and USER-SMD
-packages.
-
-The lib/python directory (for the PYTHON package) contains only a
-choice of Makefile.lammps.* files. This is because no auxiliary code
-or libraries are needed, only the Python library and other system libs
-that should already available on your system. However, the
-Makefile.lammps file is needed to tell LAMMPS which libs to use and
-where to find them.
-
-For libraries with provided code, the sub-directory README file
-(e.g. lib/atc/README) has instructions on how to build that library.
-Typically this is done by typing something like:
-
-.. parsed-literal::
-
- make -f Makefile.g++
-
-If one of the provided Makefiles is not appropriate for your system
-you will need to edit or add one. Note that all the Makefiles have a
-setting for EXTRAMAKE at the top that specifies a Makefile.lammps.*
-file.
-
-If the library build is successful, it will produce 2 files in the lib
-directory:
-
-.. parsed-literal::
-
- libpackage.a
- Makefile.lammps
-
-The Makefile.lammps file will be a copy of the EXTRAMAKE file setting
-specified in the library Makefile.* you used.
-
-Note that you must insure that the settings in Makefile.lammps are
-appropriate for your system. If they are not, the LAMMPS build will
-fail.
-
-As explained in the lib/package/README files, the settings in
-Makefile.lammps are used to specify additional system libraries and
-their locations so that LAMMPS can build with the auxiliary library.
-For example, if the MEAM package is used, the auxiliary library
-consists of F90 code, built with a Fortran complier. To link that
-library with LAMMPS (a C++ code) via whatever C++ compiler LAMMPS is
-built with, typically requires additional Fortran-to-C libraries be
-included in the link. Another example are the BLAS and LAPACK
-libraries needed to use the USER-ATC or USER-AWPMD packages.
-
-For libraries without provided code, the sub-directory README file has
-information on where to download the library and how to build it,
-e.g. lib/voronoi/README and lib/smd/README. The README files also
-describe how you must either (a) create soft links, via the "ln"
-command, in those directories to point to where you built or installed
-the packages, or (b) check or edit the Makefile.lammps file in the
-same directory to provide that information.
-
-Some of the sub-directories, e.g. lib/voronoi, also have an install.py
-script which can be used to automate the process of
-downloading/building/installing the auxiliary library, and setting the
-needed soft links. Type "python install.py" for further instructions.
-
-As with the sub-directories containing library code, if the soft links
-or settings in the lib/package/Makefile.lammps files are not correct,
-the LAMMPS build will typically fail.
-
-
-----------
-
-
-.. _start_3_4:
-
-***Packages that require Makefile.machine settings***
-
-A few packages require specific settings in Makefile.machine, to
-either build or use the package effectively. These are the
-USER-INTEL, KOKKOS, USER-OMP, and OPT packages. The details of what
-flags to add or what variables to define are given on the doc pages
-that describe each of these accelerator packages in detail:
-
-* :doc:`USER-INTEL package <accelerate_intel>`
-* :doc:`KOKKOS package <accelerate_kokkos>`
-* :doc:`USER-OMP package <accelerate_omp>`
-* :doc:`OPT package <accelerate_opt>`
-
-Here is a brief summary of what Makefile.machine changes are needed.
-Note that the Make.py tool, described in the next :ref:`Section 2.4 <start_4>` can automatically add the needed info to an existing
-machine Makefile, using simple command-line arguments.
-
-In src/MAKE/OPTIONS see the following Makefiles for examples of the
-changes described below:
-
-* Makefile.intel_cpu
-* Makefile.intel_phi
-* Makefile.kokkos_omp
-* Makefile.kokkos_cuda
-* Makefile.kokkos_phi
-* Makefile.omp
-
-For the USER-INTEL package, you have 2 choices when building. You can
-build with CPU or Phi support. The latter uses Xeon Phi chips in
-"offload" mode. Each of these modes requires additional settings in
-your Makefile.machine for CCFLAGS and LINKFLAGS.
-
-For CPU mode (if using an Intel compiler):
-
-* CCFLAGS: add -fopenmp, -DLAMMPS_MEMALIGN=64, -restrict, -xHost, -fno-alias, -ansi-alias, -override-limits
-* LINKFLAGS: add -fopenmp
-
-For Phi mode add the following in addition to the CPU mode flags:
-
-* CCFLAGS: add -DLMP_INTEL_OFFLOAD and
-* LINKFLAGS: add -offload
-
-And also add this to CCFLAGS:
-
-.. parsed-literal::
-
- -offload-option,mic,compiler,"-fp-model fast=2 -mGLOB_default_function_attrs=\"gather_scatter_loop_unroll=4\""
-
-For the KOKKOS package, you have 3 choices when building. You can
-build with OMP or Cuda or Phi support. Phi support uses Xeon Phi
-chips in "native" mode. This can be done by setting the following
-variables in your Makefile.machine:
-
-* for OMP support, set OMP = yes
-* for Cuda support, set OMP = yes and CUDA = yes
-* for Phi support, set OMP = yes and MIC = yes
-
-These can also be set as additional arguments to the make command, e.g.
-
-.. parsed-literal::
-
- make g++ OMP=yes MIC=yes
-
-Building the KOKKOS package with CUDA support requires a Makefile
-machine that uses the NVIDIA "nvcc" compiler, as well as an
-appropriate "arch" setting appropriate to the GPU hardware and NVIDIA
-software you have on your machine. See
-src/MAKE/OPTIONS/Makefile.kokkos_cuda for an example of such a machine
-Makefile.
-
-For the USER-OMP package, your Makefile.machine needs additional
-settings for CCFLAGS and LINKFLAGS.
-
-* CCFLAGS: add -fopenmp and -restrict
-* LINKFLAGS: add -fopenmp
-
-For the OPT package, your Makefile.machine needs an additional
-settings for CCFLAGS.
-
-* CCFLAGS: add -restrict
-
-
-----------
-
-
-.. _start_4:
-
-Building LAMMPS via the Make.py tool
---------------------------------------------------
-
-The src directory includes a Make.py script, written in Python, which
-can be used to automate various steps of the build process. It is
-particularly useful for working with the accelerator packages, as well
-as other packages which require auxiliary libraries to be built.
-
-The goal of the Make.py tool is to allow any complex multi-step LAMMPS
-build to be performed as a single Make.py command. And you can
-archive the commands, so they can be re-invoked later via the -r
-(redo) switch. If you find some LAMMPS build procedure that can't be
-done in a single Make.py command, let the developers know, and we'll
-see if we can augment the tool.
-
-You can run Make.py from the src directory by typing either:
-
-.. parsed-literal::
-
- Make.py -h
- python Make.py -h
-
-which will give you help info about the tool. For the former to work,
-you may need to edit the first line of Make.py to point to your local
-Python. And you may need to insure the script is executable:
-
-.. parsed-literal::
-
- chmod +x Make.py
-
-Here are examples of build tasks you can perform with Make.py:
-
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Install/uninstall packages | Make.py -p no-lib kokkos omp intel |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Build specific auxiliary libs | Make.py -a lib-atc lib-meam |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Build libs for all installed packages | Make.py -p cuda gpu -gpu mode=double arch=31 -a lib-all |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Create a Makefile from scratch with compiler and MPI settings | Make.py -m none -cc g++ -mpi mpich -a file |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Augment Makefile.serial with settings for installed packages | Make.py -p intel -intel cpu -m serial -a file |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Add JPG and FFTW support to Makefile.mpi | Make.py -m mpi -jpg -fft fftw -a file |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Build LAMMPS with a parallel make using Makefile.mpi | Make.py -j 16 -m mpi -a exe |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-| Build LAMMPS and libs it needs using Makefile.serial with accelerator settings | Make.py -p gpu intel -intel cpu -a lib-all file serial |
-+--------------------------------------------------------------------------------+---------------------------------------------------------+
-
-The bench and examples directories give Make.py commands that can be
-used to build LAMMPS with the various packages and options needed to
-run all the benchmark and example input scripts. See these files for
-more details:
-
-* bench/README
-* bench/FERMI/README
-* bench/KEPLER/README
-* bench/PHI/README
-* examples/README
-* examples/accelerate/README
-* examples/accelerate/make.list
-
-All of the Make.py options and syntax help can be accessed by using
-the "-h" switch.
-
-E.g. typing "Make.py -h" gives
-
-.. parsed-literal::
-
- Syntax: Make.py switch args ...
- switches can be listed in any order
- help switch:
- -h prints help and syntax for all other specified switches
- switch for actions:
- -a lib-all, lib-dir, clean, file, exe or machine
- list one or more actions, in any order
- machine is a Makefile.machine suffix, must be last if used
- one-letter switches:
- -d (dir), -j (jmake), -m (makefile), -o (output),
- -p (packages), -r (redo), -s (settings), -v (verbose)
- switches for libs:
- -atc, -awpmd, -colvars, -cuda
- -gpu, -meam, -poems, -qmmm, -reax
- switches for build and makefile options:
- -intel, -kokkos, -cc, -mpi, -fft, -jpg, -png
-
-Using the "-h" switch with other switches and actions gives additional
-info on all the other specified switches or actions. The "-h" can be
-anywhere in the command-line and the other switches do not need their
-arguments. E.g. type "Make.py -h -d -atc -intel" will print:
-
-.. parsed-literal::
-
- -d dir
- dir = LAMMPS home dir
- if -d not specified, working dir must be lammps/src
-
-.. parsed-literal::
-
- -atc make=suffix lammps=suffix2
- all args are optional and can be in any order
- make = use Makefile.suffix (def = g++)
- lammps = use Makefile.lammps.suffix2 (def = EXTRAMAKE in makefile)
-
-.. parsed-literal::
-
- -intel mode
- mode = cpu or phi (def = cpu)
- build Intel package for CPU or Xeon Phi
-
-Note that Make.py never overwrites an existing Makefile.machine.
-Instead, it creates src/MAKE/MINE/Makefile.auto, which you can save or
-rename if desired. Likewise it creates an executable named
-src/lmp_auto, which you can rename using the -o switch if desired.
-
-The most recently executed Make.py commmand is saved in
-src/Make.py.last. You can use the "-r" switch (for redo) to re-invoke
-the last command, or you can save a sequence of one or more Make.py
-commands to a file and invoke the file of commands using "-r". You
-can also label the commands in the file and invoke one or more of them
-by name.
-
-A typical use of Make.py is to start with a valid Makefile.machine for
-your system, that works for a vanilla LAMMPS build, i.e. when optional
-packages are not installed. You can then use Make.py to add various
-settings (FFT, JPG, PNG) to the Makefile.machine as well as change its
-compiler and MPI options. You can also add additional packages to the
-build, as well as build the needed supporting libraries.
-
-You can also use Make.py to create a new Makefile.machine from
-scratch, using the "-m none" switch, if you also specify what compiler
-and MPI options to use, via the "-cc" and "-mpi" switches.
-
-
-----------
-
-
-.. _start_5:
-
-Building LAMMPS as a library
-------------------------------------------
-
-LAMMPS can be built as either a static or shared library, which can
-then be called from another application or a scripting language. See
-:ref:`this section <howto_10>` for more info on coupling
-LAMMPS to other codes. See :doc:`this section <Section_python>` for
-more info on wrapping and running LAMMPS from Python.
-
-**Static library:**
-^^^^^^^^^^^^^^^^^^^
-
-To build LAMMPS as a static library (*.a file on Linux), type
-
-.. parsed-literal::
-
- make foo mode=lib
-
-where foo is the machine name. This kind of library is typically used
-to statically link a driver application to LAMMPS, so that you can
-insure all dependencies are satisfied at compile time. This will use
-the ARCHIVE and ARFLAGS settings in src/MAKE/Makefile.foo. The build
-will create the file liblammps_foo.a which another application can
-link to. It will also create a soft link liblammps.a, which will
-point to the most recently built static library.
-
-**Shared library:**
-^^^^^^^^^^^^^^^^^^^
-
-To build LAMMPS as a shared library (*.so file on Linux), which can be
-dynamically loaded, e.g. from Python, type
-
-.. parsed-literal::
-
- make foo mode=shlib
-
-where foo is the machine name. This kind of library is required when
-wrapping LAMMPS with Python; see :doc:`Section_python <Section_python>`
-for details. This will use the SHFLAGS and SHLIBFLAGS settings in
-src/MAKE/Makefile.foo and perform the build in the directory
-Obj_shared_foo. This is so that each file can be compiled with the
--fPIC flag which is required for inclusion in a shared library. The
-build will create the file liblammps_foo.so which another application
-can link to dyamically. It will also create a soft link liblammps.so,
-which will point to the most recently built shared library. This is
-the file the Python wrapper loads by default.
-
-Note that for a shared library to be usable by a calling program, all
-the auxiliary libraries it depends on must also exist as shared
-libraries. This will be the case for libraries included with LAMMPS,
-such as the dummy MPI library in src/STUBS or any package libraries in
-lib/packages, since they are always built as shared libraries using
-the -fPIC switch. However, if a library like MPI or FFTW does not
-exist as a shared library, the shared library build will generate an
-error. This means you will need to install a shared library version
-of the auxiliary library. The build instructions for the library
-should tell you how to do this.
-
-Here is an example of such errors when the system FFTW or provided
-lib/colvars library have not been built as shared libraries:
-
-.. parsed-literal::
-
- /usr/bin/ld: /usr/local/lib/libfftw3.a(mapflags.o): relocation
- R_X86_64_32 against `.rodata' can not be used when making a shared
- object; recompile with -fPIC
- /usr/local/lib/libfftw3.a: could not read symbols: Bad value
-
-.. parsed-literal::
-
- /usr/bin/ld: ../../lib/colvars/libcolvars.a(colvarmodule.o):
- relocation R_X86_64_32 against `__pthread_key_create' can not be used
- when making a shared object; recompile with -fPIC
- ../../lib/colvars/libcolvars.a: error adding symbols: Bad value
-
-As an example, here is how to build and install the `MPICH library <mpich_>`_, a popular open-source version of MPI, distributed by
-Argonne National Labs, as a shared library in the default
-/usr/local/lib location:
-
-.. _mpich: http://www-unix.mcs.anl.gov/mpi
-
-
-
-.. parsed-literal::
-
- ./configure --enable-shared
- make
- make install
-
-You may need to use "sudo make install" in place of the last line if
-you do not have write privileges for /usr/local/lib. The end result
-should be the file /usr/local/lib/libmpich.so.
-
-**Additional requirement for using a shared library:**
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The operating system finds shared libraries to load at run-time using
-the environment variable LD_LIBRARY_PATH. So you may wish to copy the
-file src/liblammps.so or src/liblammps_g++.so (for example) to a place
-the system can find it by default, such as /usr/local/lib, or you may
-wish to add the LAMMPS src directory to LD_LIBRARY_PATH, so that the
-current version of the shared library is always available to programs
-that use it.
-
-For the csh or tcsh shells, you would add something like this to your
-~/.cshrc file:
-
-.. parsed-literal::
-
- setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/home/sjplimp/lammps/src
-
-**Calling the LAMMPS library:**
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Either flavor of library (static or shared) allows one or more LAMMPS
-objects to be instantiated from the calling program.
-
-When used from a C++ program, all of LAMMPS is wrapped in a LAMMPS_NS
-namespace; you can safely use any of its classes and methods from
-within the calling code, as needed.
-
-When used from a C or Fortran program or a scripting language like
-Python, the library has a simple function-style interface, provided in
-src/library.cpp and src/library.h.
-
-See the sample codes in examples/COUPLE/simple for examples of C++ and
-C and Fortran codes that invoke LAMMPS thru its library interface.
-There are other examples as well in the COUPLE directory which are
-discussed in :ref:`Section_howto 10 <howto_10>` of the
-manual. See :doc:`Section_python <Section_python>` of the manual for a
-description of the Python wrapper provided with LAMMPS that operates
-through the LAMMPS library interface.
-
-The files src/library.cpp and library.h define the C-style API for
-using LAMMPS as a library. See :ref:`Section_howto 19 <howto_19>` of the manual for a description of the
-interface and how to extend it for your needs.
-
-
-----------
-
-
-.. _start_6:
-
-Running LAMMPS
-----------------------------
-
-By default, LAMMPS runs by reading commands from standard input. Thus
-if you run the LAMMPS executable by itself, e.g.
-
-.. parsed-literal::
-
- lmp_linux
-
-it will simply wait, expecting commands from the keyboard. Typically
-you should put commands in an input script and use I/O redirection,
-e.g.
-
-.. parsed-literal::
-
- lmp_linux < in.file
-
-For parallel environments this should also work. If it does not, use
-the '-in' command-line switch, e.g.
-
-.. parsed-literal::
-
- lmp_linux -in in.file
-
-:doc:`This section <Section_commands>` describes how input scripts are
-structured and what commands they contain.
-
-You can test LAMMPS on any of the sample inputs provided in the
-examples or bench directory. Input scripts are named in.* and sample
-outputs are named log.*.name.P where name is a machine and P is the
-number of processors it was run on.
-
-Here is how you might run a standard Lennard-Jones benchmark on a
-Linux box, using mpirun to launch a parallel job:
-
-.. parsed-literal::
-
- cd src
- make linux
- cp lmp_linux ../bench
- cd ../bench
- mpirun -np 4 lmp_linux -in in.lj
-
-See `this page <bench_>`_ for timings for this and the other benchmarks on
-various platforms. Note that some of the example scripts require
-LAMMPS to be built with one or more of its optional packages.
-
-.. _bench: http://lammps.sandia.gov/bench.html
-
-
-
-
-----------
-
-
-On a Windows box, you can skip making LAMMPS and simply download an
-executable, as described above, though the pre-packaged executables
-include only certain packages.
-
-To run a LAMMPS executable on a Windows machine, first decide whether
-you want to download the non-MPI (serial) or the MPI (parallel)
-version of the executable. Download and save the version you have
-chosen.
-
-For the non-MPI version, follow these steps:
-
-* Get a command prompt by going to Start->Run... ,
- then typing "cmd".
-* Move to the directory where you have saved lmp_win_no-mpi.exe
- (e.g. by typing: cd "Documents").
-* At the command prompt, type "lmp_win_no-mpi -in in.lj", replacing in.lj
- with the name of your LAMMPS input script.
-For the MPI version, which allows you to run LAMMPS under Windows on
-multiple processors, follow these steps:
-
-* Download and install
- `MPICH2 <http://www.mcs.anl.gov/research/projects/mpich2/downloads/index.php?s=downloads>`_
- for Windows.
-* You'll need to use the mpiexec.exe and smpd.exe files from the MPICH2
- package. Put them in same directory (or path) as the LAMMPS Windows
- executable.
-* Get a command prompt by going to Start->Run... ,
- then typing "cmd".
-* Move to the directory where you have saved lmp_win_mpi.exe
- (e.g. by typing: cd "Documents").
-* Then type something like this: "mpiexec -localonly 4 lmp_win_mpi -in
- in.lj", replacing in.lj with the name of your LAMMPS input script.
-* Note that you may need to provide smpd with a passphrase (it doesn't
- matter what you type).
-* In this mode, output may not immediately show up on the screen, so if
- your input script takes a long time to execute, you may need to be
- patient before the output shows up. :l Alternatively, you can still
- use this executable to run on a single processor by typing something
- like: "lmp_win_mpi -in in.lj".
-
-----------
-
-
-The screen output from LAMMPS is described in a section below. As it
-runs, LAMMPS also writes a log.lammps file with the same information.
-
-Note that this sequence of commands copies the LAMMPS executable
-(lmp_linux) to the directory with the input files. This may not be
-necessary, but some versions of MPI reset the working directory to
-where the executable is, rather than leave it as the directory where
-you launch mpirun from (if you launch lmp_linux on its own and not
-under mpirun). If that happens, LAMMPS will look for additional input
-files and write its output files to the executable directory, rather
-than your working directory, which is probably not what you want.
-
-If LAMMPS encounters errors in the input script or while running a
-simulation it will print an ERROR message and stop or a WARNING
-message and continue. See :doc:`Section_errors <Section_errors>` for a
-discussion of the various kinds of errors LAMMPS can or can't detect,
-a list of all ERROR and WARNING messages, and what to do about them.
-
-LAMMPS can run a problem on any number of processors, including a
-single processor. In theory you should get identical answers on any
-number of processors and on any machine. In practice, numerical
-round-off can cause slight differences and eventual divergence of
-molecular dynamics phase space trajectories.
-
-LAMMPS can run as large a problem as will fit in the physical memory
-of one or more processors. If you run out of memory, you must run on
-more processors or setup a smaller problem.
-
-
-----------
-
-
-.. _start_7:
-
-Command-line options
-----------------------------------
-
-At run time, LAMMPS recognizes several optional command-line switches
-which may be used in any order. Either the full word or a one-or-two
-letter abbreviation can be used:
-
-* -c or -cuda
-* -e or -echo
-* -h or -help
-* -i or -in
-* -k or -kokkos
-* -l or -log
-* -nc or -nocite
-* -pk or -package
-* -p or -partition
-* -pl or -plog
-* -ps or -pscreen
-* -r or -restart
-* -ro or -reorder
-* -sc or -screen
-* -sf or -suffix
-* -v or -var
-
-For example, lmp_ibm might be launched as follows:
-
-.. parsed-literal::
-
- mpirun -np 16 lmp_ibm -v f tmp.out -l my.log -sc none -in in.alloy
- mpirun -np 16 lmp_ibm -var f tmp.out -log my.log -screen none -in in.alloy
-
-Here are the details on the options:
-
-.. parsed-literal::
-
- -cuda on/off
-
-Explicitly enable or disable CUDA support, as provided by the
-USER-CUDA package. Even if LAMMPS is built with this package, as
-described above in :ref:`Section 2.3 <start_3>`, this switch must be set to
-enable running with the CUDA-enabled styles the package provides. If
-the switch is not set (the default), LAMMPS will operate as if the
-USER-CUDA package were not installed; i.e. you can run standard LAMMPS
-or with the GPU package, for testing or benchmarking purposes.
-
-.. parsed-literal::
-
- -echo style
-
-Set the style of command echoing. The style can be *none* or *screen*
-or *log* or *both*. Depending on the style, each command read from
-the input script will be echoed to the screen and/or logfile. This
-can be useful to figure out which line of your script is causing an
-input error. The default value is *log*. The echo style can also be
-set by using the :doc:`echo <echo>` command in the input script itself.
-
-.. parsed-literal::
-
- -help
-
-Print a brief help summary and a list of options compiled into this
-executable for each LAMMPS style (atom_style, fix, compute,
-pair_style, bond_style, etc). This can tell you if the command you
-want to use was included via the appropriate package at compile time.
-LAMMPS will print the info and immediately exit if this switch is
-used.
-
-.. parsed-literal::
-
- -in file
-
-Specify a file to use as an input script. This is an optional switch
-when running LAMMPS in one-partition mode. If it is not specified,
-LAMMPS reads its script from standard input, typically from a script
-via I/O redirection; e.g. lmp_linux < in.run. I/O redirection should
-also work in parallel, but if it does not (in the unlikely case that
-an MPI implementation does not support it), then use the -in flag.
-Note that this is a required switch when running LAMMPS in
-multi-partition mode, since multiple processors cannot all read from
-stdin.
-
-.. parsed-literal::
-
- -kokkos on/off keyword/value ...
-
-Explicitly enable or disable KOKKOS support, as provided by the KOKKOS
-package. Even if LAMMPS is built with this package, as described
-above in :ref:`Section 2.3 <start_3>`, this switch must be set to enable
-running with the KOKKOS-enabled styles the package provides. If the
-switch is not set (the default), LAMMPS will operate as if the KOKKOS
-package were not installed; i.e. you can run standard LAMMPS or with
-the GPU or USER-CUDA or USER-OMP packages, for testing or benchmarking
-purposes.
-
-Additional optional keyword/value pairs can be specified which
-determine how Kokkos will use the underlying hardware on your
-platform. These settings apply to each MPI task you launch via the
-"mpirun" or "mpiexec" command. You may choose to run one or more MPI
-tasks per physical node. Note that if you are running on a desktop
-machine, you typically have one physical node. On a cluster or
-supercomputer there may be dozens or 1000s of physical nodes.
-
-Either the full word or an abbreviation can be used for the keywords.
-Note that the keywords do not use a leading minus sign. I.e. the
-keyword is "t", not "-t". Also note that each of the keywords has a
-default setting. Example of when to use these options and what
-settings to use on different platforms is given in :ref:`Section 5.8 <acc_8>`.
-
-* d or device
-* g or gpus
-* t or threads
-* n or numa
-
-.. parsed-literal::
-
- device Nd
-
-This option is only relevant if you built LAMMPS with CUDA=yes, you
-have more than one GPU per node, and if you are running with only one
-MPI task per node. The Nd setting is the ID of the GPU on the node to
-run on. By default Nd = 0. If you have multiple GPUs per node, they
-have consecutive IDs numbered as 0,1,2,etc. This setting allows you
-to launch multiple independent jobs on the node, each with a single
-MPI task per node, and assign each job to run on a different GPU.
-
-.. parsed-literal::
-
- gpus Ng Ns
-
-This option is only relevant if you built LAMMPS with CUDA=yes, you
-have more than one GPU per node, and you are running with multiple MPI
-tasks per node (up to one per GPU). The Ng setting is how many GPUs
-you will use. The Ns setting is optional. If set, it is the ID of a
-GPU to skip when assigning MPI tasks to GPUs. This may be useful if
-your desktop system reserves one GPU to drive the screen and the rest
-are intended for computational work like running LAMMPS. By default
-Ng = 1 and Ns is not set.
-
-Depending on which flavor of MPI you are running, LAMMPS will look for
-one of these 3 environment variables
-
-.. parsed-literal::
-
- SLURM_LOCALID (various MPI variants compiled with SLURM support)
- MV2_COMM_WORLD_LOCAL_RANK (Mvapich)
- OMPI_COMM_WORLD_LOCAL_RANK (OpenMPI)
-
-which are initialized by the "srun", "mpirun" or "mpiexec" commands.
-The environment variable setting for each MPI rank is used to assign a
-unique GPU ID to the MPI task.
-
-.. parsed-literal::
-
- threads Nt
-
-This option assigns Nt number of threads to each MPI task for
-performing work when Kokkos is executing in OpenMP or pthreads mode.
-The default is Nt = 1, which essentially runs in MPI-only mode. If
-there are Np MPI tasks per physical node, you generally want Np*Nt =
-the number of physical cores per node, to use your available hardware
-optimally. This also sets the number of threads used by the host when
-LAMMPS is compiled with CUDA=yes.
-
-.. parsed-literal::
-
- numa Nm
-
-This option is only relevant when using pthreads with hwloc support.
-In this case Nm defines the number of NUMA regions (typicaly sockets)
-on a node which will be utilizied by a single MPI rank. By default Nm
-= 1. If this option is used the total number of worker-threads per
-MPI rank is threads*numa. Currently it is always almost better to
-assign at least one MPI rank per NUMA region, and leave numa set to
-its default value of 1. This is because letting a single process span
-multiple NUMA regions induces a significant amount of cross NUMA data
-traffic which is slow.
-
-.. parsed-literal::
-
- -log file
-
-Specify a log file for LAMMPS to write status information to. In
-one-partition mode, if the switch is not used, LAMMPS writes to the
-file log.lammps. If this switch is used, LAMMPS writes to the
-specified file. In multi-partition mode, if the switch is not used, a
-log.lammps file is created with hi-level status information. Each
-partition also writes to a log.lammps.N file where N is the partition
-ID. If the switch is specified in multi-partition mode, the hi-level
-logfile is named "file" and each partition also logs information to a
-file.N. For both one-partition and multi-partition mode, if the
-specified file is "none", then no log files are created. Using a
-:doc:`log <log>` command in the input script will override this setting.
-Option -plog will override the name of the partition log files file.N.
-
-.. parsed-literal::
-
- -nocite
-
-Disable writing the log.cite file which is normally written to list
-references for specific cite-able features used during a LAMMPS run.
-See the `citation page <http://lammps.sandia.gov/cite.html>`_ for more
-details.
-
-.. parsed-literal::
-
- -package style args ....
-
-Invoke the :doc:`package <package>` command with style and args. The
-syntax is the same as if the command appeared at the top of the input
-script. For example "-package gpu 2" or "-pk gpu 2" is the same as
-:doc:`package gpu 2 <package>` in the input script. The possible styles
-and args are documented on the :doc:`package <package>` doc page. This
-switch can be used multiple times, e.g. to set options for the
-USER-INTEL and USER-OMP packages which can be used together.
-
-Along with the "-suffix" command-line switch, this is a convenient
-mechanism for invoking accelerator packages and their options without
-having to edit an input script.
-
-.. parsed-literal::
-
- -partition 8x2 4 5 ...
-
-Invoke LAMMPS in multi-partition mode. When LAMMPS is run on P
-processors and this switch is not used, LAMMPS runs in one partition,
-i.e. all P processors run a single simulation. If this switch is
-used, the P processors are split into separate partitions and each
-partition runs its own simulation. The arguments to the switch
-specify the number of processors in each partition. Arguments of the
-form MxN mean M partitions, each with N processors. Arguments of the
-form N mean a single partition with N processors. The sum of
-processors in all partitions must equal P. Thus the command
-"-partition 8x2 4 5" has 10 partitions and runs on a total of 25
-processors.
-
-Running with multiple partitions can e useful for running
-:ref:`multi-replica simulations <howto_5>`, where each
-replica runs on on one or a few processors. Note that with MPI
-installed on a machine (e.g. your desktop), you can run on more
-(virtual) processors than you have physical processors.
-
-To run multiple independent simulatoins from one input script, using
-multiple partitions, see :ref:`Section_howto 4 <howto_4>`
-of the manual. World- and universe-style :doc:`variables <variable>`
-are useful in this context.
-
-.. parsed-literal::
-
- -plog file
-
-Specify the base name for the partition log files, so partition N
-writes log information to file.N. If file is none, then no partition
-log files are created. This overrides the filename specified in the
--log command-line option. This option is useful when working with
-large numbers of partitions, allowing the partition log files to be
-suppressed (-plog none) or placed in a sub-directory (-plog
-replica_files/log.lammps) If this option is not used the log file for
-partition N is log.lammps.N or whatever is specified by the -log
-command-line option.
-
-.. parsed-literal::
-
- -pscreen file
-
-Specify the base name for the partition screen file, so partition N
-writes screen information to file.N. If file is none, then no
-partition screen files are created. This overrides the filename
-specified in the -screen command-line option. This option is useful
-when working with large numbers of partitions, allowing the partition
-screen files to be suppressed (-pscreen none) or placed in a
-sub-directory (-pscreen replica_files/screen). If this option is not
-used the screen file for partition N is screen.N or whatever is
-specified by the -screen command-line option.
-
-.. parsed-literal::
-
- -restart restartfile *remap* datafile keyword value ...
-
-Convert the restart file into a data file and immediately exit. This
-is the same operation as if the following 2-line input script were
-run:
-
-.. parsed-literal::
-
- read_restart restartfile *remap*
- write_data datafile keyword value ...
-
-Note that the specified restartfile and datafile can have wild-card
-characters ("*",%") as described by the
-:doc:`read_restart <read_restart>` and :doc:`write_data <write_data>`
-commands. But a filename such as file.* will need to be enclosed in
-quotes to avoid shell expansion of the "*" character.
-
-Note that following restartfile, the optional flag *remap* can be
-used. This has the same effect as adding it to the
-:doc:`read_restart <read_restart>` command, as explained on its doc
-page. This is only useful if the reading of the restart file triggers
-an error that atoms have been lost. In that case, use of the remap
-flag should allow the data file to still be produced.
-
-Also note that following datafile, the same optional keyword/value
-pairs can be listed as used by the :doc:`write_data <write_data>`
-command.
-
-.. parsed-literal::
-
- -reorder nth N
- -reorder custom filename
-
-Reorder the processors in the MPI communicator used to instantiate
-LAMMPS, in one of several ways. The original MPI communicator ranks
-all P processors from 0 to P-1. The mapping of these ranks to
-physical processors is done by MPI before LAMMPS begins. It may be
-useful in some cases to alter the rank order. E.g. to insure that
-cores within each node are ranked in a desired order. Or when using
-the :doc:`run_style verlet/split <run_style>` command with 2 partitions
-to insure that a specific Kspace processor (in the 2nd partition) is
-matched up with a specific set of processors in the 1st partition.
-See the :doc:`Section_accelerate <Section_accelerate>` doc pages for
-more details.
-
-If the keyword *nth* is used with a setting *N*, then it means every
-Nth processor will be moved to the end of the ranking. This is useful
-when using the :doc:`run_style verlet/split <run_style>` command with 2
-partitions via the -partition command-line switch. The first set of
-processors will be in the first partition, the 2nd set in the 2nd
-partition. The -reorder command-line switch can alter this so that
-the 1st N procs in the 1st partition and one proc in the 2nd partition
-will be ordered consecutively, e.g. as the cores on one physical node.
-This can boost performance. For example, if you use "-reorder nth 4"
-and "-partition 9 3" and you are running on 12 processors, the
-processors will be reordered from
-
-.. parsed-literal::
-
- 0 1 2 3 4 5 6 7 8 9 10 11
-
-to
-
-.. parsed-literal::
-
- 0 1 2 4 5 6 8 9 10 3 7 11
-
-so that the processors in each partition will be
-
-.. parsed-literal::
-
- 0 1 2 4 5 6 8 9 10
- 3 7 11
-
-See the "processors" command for how to insure processors from each
-partition could then be grouped optimally for quad-core nodes.
-
-If the keyword is *custom*, then a file that specifies a permutation
-of the processor ranks is also specified. The format of the reorder
-file is as follows. Any number of initial blank or comment lines
-(starting with a "#" character) can be present. These should be
-followed by P lines of the form:
-
-.. parsed-literal::
-
- I J
-
-where P is the number of processors LAMMPS was launched with. Note
-that if running in multi-partition mode (see the -partition switch
-above) P is the total number of processors in all partitions. The I
-and J values describe a permutation of the P processors. Every I and
-J should be values from 0 to P-1 inclusive. In the set of P I values,
-every proc ID should appear exactly once. Ditto for the set of P J
-values. A single I,J pairing means that the physical processor with
-rank I in the original MPI communicator will have rank J in the
-reordered communicator.
-
-Note that rank ordering can also be specified by many MPI
-implementations, either by environment variables that specify how to
-order physical processors, or by config files that specify what
-physical processors to assign to each MPI rank. The -reorder switch
-simply gives you a portable way to do this without relying on MPI
-itself. See the `processors out <processors>`_ command for how to output
-info on the final assignment of physical processors to the LAMMPS
-simulation domain.
-
-.. parsed-literal::
-
- -screen file
-
-Specify a file for LAMMPS to write its screen information to. In
-one-partition mode, if the switch is not used, LAMMPS writes to the
-screen. If this switch is used, LAMMPS writes to the specified file
-instead and you will see no screen output. In multi-partition mode,
-if the switch is not used, hi-level status information is written to
-the screen. Each partition also writes to a screen.N file where N is
-the partition ID. If the switch is specified in multi-partition mode,
-the hi-level screen dump is named "file" and each partition also
-writes screen information to a file.N. For both one-partition and
-multi-partition mode, if the specified file is "none", then no screen
-output is performed. Option -pscreen will override the name of the
-partition screen files file.N.
-
-.. parsed-literal::
-
- -suffix style args
-
-Use variants of various styles if they exist. The specified style can
-be *cuda*, *gpu*, *intel*, *kk*, *omp*, *opt*, or *hybrid*. These refer
-to optional packages that LAMMPS can be built with, as described above in
-:ref:`Section 2.3 <start_3>`. The "cuda" style corresponds to the USER-CUDA
-package, the "gpu" style to the GPU package, the "intel" style to the
-USER-INTEL package, the "kk" style to the KOKKOS package, the "opt"
-style to the OPT package, and the "omp" style to the USER-OMP package. The
-hybrid style is the only style that accepts arguments. It allows for two
-packages to be specified. The first package specified is the default and
-will be used if it is available. If no style is available for the first
-package, the style for the second package will be used if available. For
-example, "-suffix hybrid intel omp" will use styles from the USER-INTEL
-package if they are installed and available, but styles for the USER-OMP
-package otherwise.
-
-Along with the "-package" command-line switch, this is a convenient
-mechanism for invoking accelerator packages and their options without
-having to edit an input script.
-
-As an example, all of the packages provide a :doc:`pair_style lj/cut <pair_lj>` variant, with style names lj/cut/cuda,
-lj/cut/gpu, lj/cut/intel, lj/cut/kk, lj/cut/omp, and lj/cut/opt. A
-variant style can be specified explicitly in your input script,
-e.g. pair_style lj/cut/gpu. If the -suffix switch is used the
-specified suffix (cuda,gpu,intel,kk,omp,opt) is automatically appended
-whenever your input script command creates a new
-:doc:`atom <atom_style>`, :doc:`pair <pair_style>`, :doc:`fix <fix>`,
-:doc:`compute <compute>`, or :doc:`run <run_style>` style. If the variant
-version does not exist, the standard version is created.
-
-For the GPU package, using this command-line switch also invokes the
-default GPU settings, as if the command "package gpu 1" were used at
-the top of your input script. These settings can be changed by using
-the "-package gpu" command-line switch or the :doc:`package gpu <package>` command in your script.
-
-For the USER-INTEL package, using this command-line switch also
-invokes the default USER-INTEL settings, as if the command "package
-intel 1" were used at the top of your input script. These settings
-can be changed by using the "-package intel" command-line switch or
-the :doc:`package intel <package>` command in your script. If the
-USER-OMP package is also installed, the hybrid style with "intel omp"
-arguments can be used to make the omp suffix a second choice, if a
-requested style is not available in the USER-INTEL package. It will
-also invoke the default USER-OMP settings, as if the command "package
-omp 0" were used at the top of your input script. These settings can
-be changed by using the "-package omp" command-line switch or the
-:doc:`package omp <package>` command in your script.
-
-For the KOKKOS package, using this command-line switch also invokes
-the default KOKKOS settings, as if the command "package kokkos" were
-used at the top of your input script. These settings can be changed
-by using the "-package kokkos" command-line switch or the :doc:`package kokkos <package>` command in your script.
-
-For the OMP package, using this command-line switch also invokes the
-default OMP settings, as if the command "package omp 0" were used at
-the top of your input script. These settings can be changed by using
-the "-package omp" command-line switch or the :doc:`package omp <package>` command in your script.
-
-The :doc:`suffix <suffix>` command can also be used within an input
-script to set a suffix, or to turn off or back on any suffix setting
-made via the command line.
-
-.. parsed-literal::
-
- -var name value1 value2 ...
-
-Specify a variable that will be defined for substitution purposes when
-the input script is read. This switch can be used multiple times to
-define multiple variables. "Name" is the variable name which can be a
-single character (referenced as $x in the input script) or a full
-string (referenced as ${abc}). An :doc:`index-style variable <variable>` will be created and populated with the
-subsequent values, e.g. a set of filenames. Using this command-line
-option is equivalent to putting the line "variable name index value1
-value2 ..." at the beginning of the input script. Defining an index
-variable as a command-line argument overrides any setting for the same
-index variable in the input script, since index variables cannot be
-re-defined. See the :doc:`variable <variable>` command for more info on
-defining index and other kinds of variables and :ref:`this section <cmd_2>` for more info on using variables
-in input scripts.
-
-.. note::
-
- Currently, the command-line parser looks for arguments that
- start with "-" to indicate new switches. Thus you cannot specify
- multiple variable values if any of they start with a "-", e.g. a
- negative numeric value. It is OK if the first value1 starts with a
- "-", since it is automatically skipped.
-
-
-----------
-
-
-.. _start_8:
-
-LAMMPS screen output
-----------------------------------
-
-As LAMMPS reads an input script, it prints information to both the
-screen and a log file about significant actions it takes to setup a
-simulation. When the simulation is ready to begin, LAMMPS performs
-various initializations and prints the amount of memory (in MBytes per
-processor) that the simulation requires. It also prints details of
-the initial thermodynamic state of the system. During the run itself,
-thermodynamic information is printed periodically, every few
-timesteps. When the run concludes, LAMMPS prints the final
-thermodynamic state and a total run time for the simulation. It then
-appends statistics about the CPU time and storage requirements for the
-simulation. An example set of statistics is shown here:
-
-Loop time of 2.81192 on 4 procs for 300 steps with 2004 atoms
-
-.. parsed-literal::
-
- Performance: 18.436 ns/day 1.302 hours/ns 106.689 timesteps/s
- 97.0% CPU use with 4 MPI tasks x no OpenMP threads
-
-.. parsed-literal::
-
- MPI task timings breakdown:
- Section | min time | avg time | max time |%varavg| %total
- ---------------------------------------------------------------
- Pair | 1.9808 | 2.0134 | 2.0318 | 1.4 | 71.60
- Bond | 0.0021894 | 0.0060319 | 0.010058 | 4.7 | 0.21
- Kspace | 0.3207 | 0.3366 | 0.36616 | 3.1 | 11.97
- Neigh | 0.28411 | 0.28464 | 0.28516 | 0.1 | 10.12
- Comm | 0.075732 | 0.077018 | 0.07883 | 0.4 | 2.74
- Output | 0.00030518 | 0.00042665 | 0.00078821 | 1.0 | 0.02
- Modify | 0.086606 | 0.086631 | 0.086668 | 0.0 | 3.08
- Other | | 0.007178 | | | 0.26
-
-.. parsed-literal::
-
- Nlocal: 501 ave 508 max 490 min
- Histogram: 1 0 0 0 0 0 1 1 0 1
- Nghost: 6586.25 ave 6628 max 6548 min
- Histogram: 1 0 1 0 0 0 1 0 0 1
- Neighs: 177007 ave 180562 max 170212 min
- Histogram: 1 0 0 0 0 0 0 1 1 1
-
-.. parsed-literal::
-
- Total # of neighbors = 708028
- Ave neighs/atom = 353.307
- Ave special neighs/atom = 2.34032
- Neighbor list builds = 26
- Dangerous builds = 0
-
-The first section provides a global loop timing summary. The loop time
-is the total wall time for the section. The *Performance* line is
-provided for convenience to help predicting the number of loop
-continuations required and for comparing performance with other
-similar MD codes. The CPU use line provides the CPU utilzation per
-MPI task; it should be close to 100% times the number of OpenMP
-threads (or 1). Lower numbers correspond to delays due to file I/O or
-insufficient thread utilization.
-
-The MPI task section gives the breakdown of the CPU run time (in
-seconds) into major categories:
-
-* *Pair* stands for all non-bonded force computation
-* *Bond* stands for bonded interactions: bonds, angles, dihedrals, impropers
-* *Kspace* stands for reciprocal space interactions: Ewald, PPPM, MSM
-* *Neigh* stands for neighbor list construction
-* *Comm* stands for communicating atoms and their properties
-* *Output* stands for writing dumps and thermo output
-* *Modify* stands for fixes and computes called by them
-* *Other* is the remaining time
-
-For each category, there is a breakdown of the least, average and most
-amount of wall time a processor spent on this section. Also you have the
-variation from the average time. Together these numbers allow to gauge
-the amount of load imbalance in this segment of the calculation. Ideally
-the difference between minimum, maximum and average is small and thus
-the variation from the average close to zero. The final column shows
-the percentage of the total loop time is spent in this section.
-
-When using the :doc:`timer full <timer>` setting, an additional column
-is present that also prints the CPU utilization in percent. In
-addition, when using *timer full* and the :doc:`package omp <package>`
-command are active, a similar timing summary of time spent in threaded
-regions to monitor thread utilization and load balance is provided. A
-new entry is the *Reduce* section, which lists the time spend in
-reducing the per-thread data elements to the storage for non-threaded
-computation. These thread timings are taking from the first MPI rank
-only and and thus, as the breakdown for MPI tasks can change from MPI
-rank to MPI rank, this breakdown can be very different for individual
-ranks. Here is an example output for this section:
-
-Thread timings breakdown (MPI rank 0):
-Total threaded time 0.6846 / 90.6%
-Section | min time | avg time | max time |%varavg| %total
----------------------------------------------------------------
-Pair | 0.5127 | 0.5147 | 0.5167 | 0.3 | 75.18
-Bond | 0.0043139 | 0.0046779 | 0.0050418 | 0.5 | 0.68
-Kspace | 0.070572 | 0.074541 | 0.07851 | 1.5 | 10.89
-Neigh | 0.084778 | 0.086969 | 0.089161 | 0.7 | 12.70
-Reduce | 0.0036485 | 0.003737 | 0.0038254 | 0.1 | 0.55
-
-The third section lists the number of owned atoms (Nlocal), ghost atoms
-(Nghost), and pair-wise neighbors stored per processor. The max and min
-values give the spread of these values across processors with a 10-bin
-histogram showing the distribution. The total number of histogram counts
-is equal to the number of processors.
-
-The last section gives aggregate statistics for pair-wise neighbors
-and special neighbors that LAMMPS keeps track of (see the
-:doc:`special_bonds <special_bonds>` command). The number of times
-neighbor lists were rebuilt during the run is given as well as the
-number of potentially "dangerous" rebuilds. If atom movement
-triggered neighbor list rebuilding (see the
-:doc:`neigh_modify <neigh_modify>` command), then dangerous
-reneighborings are those that were triggered on the first timestep
-atom movement was checked for. If this count is non-zero you may wish
-to reduce the delay factor to insure no force interactions are missed
-by atoms moving beyond the neighbor skin distance before a rebuild
-takes place.
-
-If an energy minimization was performed via the
-:doc:`minimize <minimize>` command, additional information is printed,
-e.g.
-
-.. parsed-literal::
-
- Minimization stats:
- Stopping criterion = linesearch alpha is zero
- Energy initial, next-to-last, final =
- -6372.3765206 -8328.46998942 -8328.46998942
- Force two-norm initial, final = 1059.36 5.36874
- Force max component initial, final = 58.6026 1.46872
- Final line search alpha, max atom move = 2.7842e-10 4.0892e-10
- Iterations, force evaluations = 701 1516
-
-The first line prints the criterion that determined the minimization
-to be completed. The third line lists the initial and final energy,
-as well as the energy on the next-to-last iteration. The next 2 lines
-give a measure of the gradient of the energy (force on all atoms).
-The 2-norm is the "length" of this force vector; the inf-norm is the
-largest component. Then some information about the line search and
-statistics on how many iterations and force-evaluations the minimizer
-required. Multiple force evaluations are typically done at each
-iteration to perform a 1d line minimization in the search direction.
-
-If a :doc:`kspace_style <kspace_style>` long-range Coulombics solve was
-performed during the run (PPPM, Ewald), then additional information is
-printed, e.g.
-
-.. parsed-literal::
-
- FFT time (% of Kspce) = 0.200313 (8.34477)
- FFT Gflps 3d 1d-only = 2.31074 9.19989
-
-The first line gives the time spent doing 3d FFTs (4 per timestep) and
-the fraction it represents of the total KSpace time (listed above).
-Each 3d FFT requires computation (3 sets of 1d FFTs) and communication
-(transposes). The total flops performed is 5Nlog_2(N), where N is the
-number of points in the 3d grid. The FFTs are timed with and without
-the communication and a Gflop rate is computed. The 3d rate is with
-communication; the 1d rate is without (just the 1d FFTs). Thus you
-can estimate what fraction of your FFT time was spent in
-communication, roughly 75% in the example above.
-
-
-----------
-
-
-.. _start_9:
-
-Tips for users of previous LAMMPS versions
---------------------------------------------------------
-
-The current C++ began with a complete rewrite of LAMMPS 2001, which
-was written in F90. Features of earlier versions of LAMMPS are listed
-in :doc:`Section_history <Section_history>`. The F90 and F77 versions
-(2001 and 99) are also freely distributed as open-source codes; check
-the `LAMMPS WWW Site <lws_>`_ for distribution information if you prefer
-those versions. The 99 and 2001 versions are no longer under active
-development; they do not have all the features of C++ LAMMPS.
-
-If you are a previous user of LAMMPS 2001, these are the most
-significant changes you will notice in C++ LAMMPS:
-
-(1) The names and arguments of many input script commands have
-changed. All commands are now a single word (e.g. read_data instead
-of read data).
-
-(2) All the functionality of LAMMPS 2001 is included in C++ LAMMPS,
-but you may need to specify the relevant commands in different ways.
-
-(3) The format of the data file can be streamlined for some problems.
-See the :doc:`read_data <read_data>` command for details. The data file
-section "Nonbond Coeff" has been renamed to "Pair Coeff" in C++ LAMMPS.
-
-(4) Binary restart files written by LAMMPS 2001 cannot be read by C++
-LAMMPS with a :doc:`read_restart <read_restart>` command. This is
-because they were output by F90 which writes in a different binary
-format than C or C++ writes or reads. Use the *restart2data* tool
-provided with LAMMPS 2001 to convert the 2001 restart file to a text
-data file. Then edit the data file as necessary before using the C++
-LAMMPS :doc:`read_data <read_data>` command to read it in.
-
-(5) There are numerous small numerical changes in C++ LAMMPS that mean
-you will not get identical answers when comparing to a 2001 run.
-However, your initial thermodynamic energy and MD trajectory should be
-close if you have setup the problem for both codes the same.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/Section_tools.txt b/doc/_sources/Section_tools.txt
deleted file mode 100644
index 7d96e007f..000000000
--- a/doc/_sources/Section_tools.txt
+++ /dev/null
@@ -1,737 +0,0 @@
-Additional tools
-================
-
-LAMMPS is designed to be a computational kernel for performing
-molecular dynamics computations. Additional pre- and post-processing
-steps are often necessary to setup and analyze a simulation. A few
-additional tools are provided with the LAMMPS distribution and are
-described in this section.
-
-Our group has also written and released a separate toolkit called
-`Pizza.py <pizza_>`_ which provides tools for doing setup, analysis,
-plotting, and visualization for LAMMPS simulations. Pizza.py is
-written in `Python <python_>`_ and is available for download from `the Pizza.py WWW site <pizza_>`_.
-
-.. _pizza: http://www.sandia.gov/~sjplimp/pizza.html
-
-
-
-.. _python: http://www.python.org
-
-
-
-Note that many users write their own setup or analysis tools or use
-other existing codes and convert their output to a LAMMPS input format
-or vice versa. The tools listed here are included in the LAMMPS
-distribution as examples of auxiliary tools. Some of them are not
-actively supported by Sandia, as they were contributed by LAMMPS
-users. If you have problems using them, we can direct you to the
-authors.
-
-The source code for each of these codes is in the tools sub-directory
-of the LAMMPS distribution. There is a Makefile (which you may need
-to edit for your platform) which will build several of the tools which
-reside in that directory. Some of them are larger packages in their
-own sub-directories with their own Makefiles.
-
-* :ref:`amber2lmp <amber>`
-* :ref:`binary2txt <binary>`
-* :ref:`ch2lmp <charmm>`
-* :ref:`chain <chain>`
-* :ref:`colvars <colvars>`
-* :ref:`createatoms <create>`
-* :ref:`data2xmovie <data>`
-* :ref:`eam database <eamdb>`
-* :ref:`eam generate <eamgn>`
-* :ref:`eff <eff>`
-* :ref:`emacs <emacs>`
-* :ref:`fep <fep>`
-* :ref:`i-pi <ipi>`
-* :ref:`ipp <ipp>`
-* :ref:`kate <kate>`
-* :ref:`lmp2arc <arc>`
-* :ref:`lmp2cfg <cfg>`
-* :ref:`lmp2vmd <vmd>`
-* :ref:`matlab <matlab>`
-* :ref:`micelle2d <micelle>`
-* :ref:`moltemplate <moltemplate>`
-* :ref:`msi2lmp <msi>`
-* :ref:`phonon <phonon>`
-* :ref:`polymer bonding <polybond>`
-* :ref:`pymol_asphere <pymol>`
-* :ref:`python <pythontools>`
-* :ref:`reax <reax>`
-* :ref:`restart2data <restart>`
-* :ref:`vim <vim>`
-* :ref:`xmgrace <xmgrace>`
-* :ref:`xmovie <xmovie>`
-
-
-----------
-
-
-.. _amber:
-
-amber2lmp tool
---------------------------
-
-The amber2lmp sub-directory contains two Python scripts for converting
-files back-and-forth between the AMBER MD code and LAMMPS. See the
-README file in amber2lmp for more information.
-
-These tools were written by Keir Novik while he was at Queen Mary
-University of London. Keir is no longer there and cannot support
-these tools which are out-of-date with respect to the current LAMMPS
-version (and maybe with respect to AMBER as well). Since we don't use
-these tools at Sandia, you'll need to experiment with them and make
-necessary modifications yourself.
-
-
-----------
-
-
-.. _binary:
-
-binary2txt tool
-----------------------------
-
-The file binary2txt.cpp converts one or more binary LAMMPS dump file
-into ASCII text files. The syntax for running the tool is
-
-.. parsed-literal::
-
- binary2txt file1 file2 ...
-
-which creates file1.txt, file2.txt, etc. This tool must be compiled
-on a platform that can read the binary file created by a LAMMPS run,
-since binary files are not compatible across all platforms.
-
-
-----------
-
-
-.. _charmm:
-
-ch2lmp tool
-------------------------
-
-The ch2lmp sub-directory contains tools for converting files
-back-and-forth between the CHARMM MD code and LAMMPS.
-
-They are intended to make it easy to use CHARMM as a builder and as a
-post-processor for LAMMPS. Using charmm2lammps.pl, you can convert an
-ensemble built in CHARMM into its LAMMPS equivalent. Using
-lammps2pdb.pl you can convert LAMMPS atom dumps into pdb files.
-
-See the README file in the ch2lmp sub-directory for more information.
-
-These tools were created by Pieter in't Veld (pjintve at sandia.gov)
-and Paul Crozier (pscrozi at sandia.gov) at Sandia.
-
-
-----------
-
-
-.. _chain:
-
-chain tool
-----------------------
-
-The file chain.f creates a LAMMPS data file containing bead-spring
-polymer chains and/or monomer solvent atoms. It uses a text file
-containing chain definition parameters as an input. The created
-chains and solvent atoms can strongly overlap, so LAMMPS needs to run
-the system initially with a "soft" pair potential to un-overlap it.
-The syntax for running the tool is
-
-.. parsed-literal::
-
- chain < def.chain > data.file
-
-See the def.chain or def.chain.ab files in the tools directory for
-examples of definition files. This tool was used to create the
-system for the :doc:`chain benchmark <Section_perf>`.
-
-
-----------
-
-
-.. _colvars:
-
-colvars tools
----------------------------
-
-The colvars directory contains a collection of tools for postprocessing
-data produced by the colvars collective variable library.
-To compile the tools, edit the makefile for your system and run "make".
-
-Please report problems and issues the colvars library and its tools
-at: https://github.com/colvars/colvars/issues
-
-abf_integrate:
-
-MC-based integration of multidimensional free energy gradient
-Version 20110511
-
-.. parsed-literal::
-
- Syntax: ./abf_integrate < filename > [-n < nsteps >] [-t < temp >] [-m [0|1] (metadynamics)] [-h < hill_height >] [-f < variable_hill_factor >]
-
-The LAMMPS interface to the colvars collective variable library, as
-well as these tools, were created by Axel Kohlmeyer (akohlmey at
-gmail.com) at ICTP, Italy.
-
-
-----------
-
-
-.. _create:
-
-createatoms tool
------------------------------
-
-The tools/createatoms directory contains a Fortran program called
-createAtoms.f which can generate a variety of interesting crystal
-structures and geometries and output the resulting list of atom
-coordinates in LAMMPS or other formats.
-
-See the included Manual.pdf for details.
-
-The tool is authored by Xiaowang Zhou (Sandia), xzhou at sandia.gov.
-
-
-----------
-
-
-.. _data:
-
-data2xmovie tool
----------------------------
-
-The file data2xmovie.c converts a LAMMPS data file into a snapshot
-suitable for visualizing with the :ref:`xmovie <xmovie>` tool, as if it had
-been output with a dump command from LAMMPS itself. The syntax for
-running the tool is
-
-.. parsed-literal::
-
- data2xmovie [options] < infile > outfile
-
-See the top of the data2xmovie.c file for a discussion of the options.
-
-
-----------
-
-
-.. _eamdb:
-
-eam database tool
------------------------------
-
-The tools/eam_database directory contains a Fortran program that will
-generate EAM alloy setfl potential files for any combination of 16
-elements: Cu, Ag, Au, Ni, Pd, Pt, Al, Pb, Fe, Mo, Ta, W, Mg, Co, Ti,
-Zr. The files can then be used with the :doc:`pair_style eam/alloy <pair_eam>` command.
-
-The tool is authored by Xiaowang Zhou (Sandia), xzhou at sandia.gov,
-and is based on his paper:
-
-X. W. Zhou, R. A. Johnson, and H. N. G. Wadley, Phys. Rev. B, 69,
-144113 (2004).
-
-
-----------
-
-
-.. _eamgn:
-
-eam generate tool
------------------------------
-
-The tools/eam_generate directory contains several one-file C programs
-that convert an analytic formula into a tabulated :doc:`embedded atom method (EAM) <pair_eam>` setfl potential file. The potentials they
-produce are in the potentials directory, and can be used with the
-:doc:`pair_style eam/alloy <pair_eam>` command.
-
-The source files and potentials were provided by Gerolf Ziegenhain
-(gerolf at ziegenhain.com).
-
-
-----------
-
-
-.. _eff:
-
-eff tool
-------------------
-
-The tools/eff directory contains various scripts for generating
-structures and post-processing output for simulations using the
-electron force field (eFF).
-
-These tools were provided by Andres Jaramillo-Botero at CalTech
-(ajaramil at wag.caltech.edu).
-
-
-----------
-
-
-.. _emacs:
-
-emacs tool
-----------------------
-
-The tools/emacs directory contains a Lips add-on file for Emacs that
-enables a lammps-mode for editing of input scripts when using Emacs,
-with various highlighting options setup.
-
-These tools were provided by Aidan Thompson at Sandia
-(athomps at sandia.gov).
-
-
-----------
-
-
-.. _fep:
-
-fep tool
-------------------
-
-The tools/fep directory contains Python scripts useful for
-post-processing results from performing free-energy perturbation
-simulations using the USER-FEP package.
-
-The scripts were contributed by Agilio Padua (Universite Blaise
-Pascal Clermont-Ferrand), agilio.padua at univ-bpclermont.fr.
-
-See README file in the tools/fep directory.
-
-
-----------
-
-
-.. _ipi:
-
-i-pi tool
--------------------
-
-The tools/i-pi directory contains a version of the i-PI package, with
-all the LAMMPS-unrelated files removed. It is provided so that it can
-be used with the :doc:`fix ipi <fix_ipi>` command to perform
-path-integral molecular dynamics (PIMD).
-
-The i-PI package was created and is maintained by Michele Ceriotti,
-michele.ceriotti at gmail.com, to interface to a variety of molecular
-dynamics codes.
-
-See the tools/i-pi/manual.pdf file for an overview of i-PI, and the
-:doc:`fix ipi <fix_ipi>` doc page for further details on running PIMD
-calculations with LAMMPS.
-
-
-----------
-
-
-.. _ipp:
-
-ipp tool
-------------------
-
-The tools/ipp directory contains a Perl script ipp which can be used
-to facilitate the creation of a complicated file (say, a lammps input
-script or tools/createatoms input file) using a template file.
-
-ipp was created and is maintained by Reese Jones (Sandia), rjones at
-sandia.gov.
-
-See two examples in the tools/ipp directory. One of them is for the
-tools/createatoms tool's input file.
-
-
-----------
-
-
-.. _kate:
-
-kate tool
---------------------
-
-The file in the tools/kate directory is an add-on to the Kate editor
-in the KDE suite that allow syntax highlighting of LAMMPS input
-scripts. See the README.txt file for details.
-
-The file was provided by Alessandro Luigi Sellerio
-(alessandro.sellerio at ieni.cnr.it).
-
-
-----------
-
-
-.. _arc:
-
-lmp2arc tool
-----------------------
-
-The lmp2arc sub-directory contains a tool for converting LAMMPS output
-files to the format for Accelrys' Insight MD code (formerly
-MSI/Biosym and its Discover MD code). See the README file for more
-information.
-
-This tool was written by John Carpenter (Cray), Michael Peachey
-(Cray), and Steve Lustig (Dupont). John is now at the Mayo Clinic
-(jec at mayo.edu), but still fields questions about the tool.
-
-This tool was updated for the current LAMMPS C++ version by Jeff
-Greathouse at Sandia (jagreat at sandia.gov).
-
-
-----------
-
-
-.. _cfg:
-
-lmp2cfg tool
-----------------------
-
-The lmp2cfg sub-directory contains a tool for converting LAMMPS output
-files into a series of *.cfg files which can be read into the
-`AtomEye <http://mt.seas.upenn.edu/Archive/Graphics/A>`_ visualizer. See
-the README file for more information.
-
-This tool was written by Ara Kooser at Sandia (askoose at sandia.gov).
-
-
-----------
-
-
-.. _vmd:
-
-lmp2vmd tool
-----------------------
-
-The lmp2vmd sub-directory contains a README.txt file that describes
-details of scripts and plugin support within the `VMD package <http://www.ks.uiuc.edu/Research/vmd>`_ for visualizing LAMMPS
-dump files.
-
-The VMD plugins and other supporting scripts were written by Axel
-Kohlmeyer (akohlmey at cmm.chem.upenn.edu) at U Penn.
-
-
-----------
-
-
-.. _matlab:
-
-matlab tool
-------------------------
-
-The matlab sub-directory contains several :ref:`MATLAB <matlab>` scripts for
-post-processing LAMMPS output. The scripts include readers for log
-and dump files, a reader for EAM potential files, and a converter that
-reads LAMMPS dump files and produces CFG files that can be visualized
-with the `AtomEye <http://mt.seas.upenn.edu/Archive/Graphics/A>`_
-visualizer.
-
-See the README.pdf file for more information.
-
-These scripts were written by Arun Subramaniyan at Purdue Univ
-(asubrama at purdue.edu).
-
-.. _matlab: http://www.mathworks.com
-
-
-
-
-----------
-
-
-.. _micelle:
-
-micelle2d tool
-----------------------------
-
-The file micelle2d.f creates a LAMMPS data file containing short lipid
-chains in a monomer solution. It uses a text file containing lipid
-definition parameters as an input. The created molecules and solvent
-atoms can strongly overlap, so LAMMPS needs to run the system
-initially with a "soft" pair potential to un-overlap it. The syntax
-for running the tool is
-
-.. parsed-literal::
-
- micelle2d < def.micelle2d > data.file
-
-See the def.micelle2d file in the tools directory for an example of a
-definition file. This tool was used to create the system for the
-:doc:`micelle example <Section_example>`.
-
-
-----------
-
-
-.. _moltemplate:
-
-moltemplate tool
-----------------------------------
-
-The moltemplate sub-directory contains a Python-based tool for
-building molecular systems based on a text-file description, and
-creating LAMMPS data files that encode their molecular topology as
-lists of bonds, angles, dihedrals, etc. See the README.TXT file for
-more information.
-
-This tool was written by Andrew Jewett (jewett.aij at gmail.com), who
-supports it. It has its own WWW page at
-`http://moltemplate.org <http://moltemplate.org>`_.
-
-
-----------
-
-
-.. _msi:
-
-msi2lmp tool
-----------------------
-
-The msi2lmp sub-directory contains a tool for creating LAMMPS input
-data files from Accelrys' Insight MD code (formerly MSI/Biosym and
-its Discover MD code). See the README file for more information.
-
-This tool was written by John Carpenter (Cray), Michael Peachey
-(Cray), and Steve Lustig (Dupont). John is now at the Mayo Clinic
-(jec at mayo.edu), but still fields questions about the tool.
-
-This tool may be out-of-date with respect to the current LAMMPS and
-Insight versions. Since we don't use it at Sandia, you'll need to
-experiment with it yourself.
-
-
-----------
-
-
-.. _phonon:
-
-phonon tool
-------------------------
-
-The phonon sub-directory contains a post-processing tool useful for
-analyzing the output of the :doc:`fix phonon <fix_phonon>` command in
-the USER-PHONON package.
-
-See the README file for instruction on building the tool and what
-library it needs. And see the examples/USER/phonon directory
-for example problems that can be post-processed with this tool.
-
-This tool was written by Ling-Ti Kong at Shanghai Jiao Tong
-University.
-
-
-----------
-
-
-.. _polybond:
-
-polymer bonding tool
------------------------------------
-
-The polybond sub-directory contains a Python-based tool useful for
-performing "programmable polymer bonding". The Python file
-lmpsdata.py provides a "Lmpsdata" class with various methods which can
-be invoked by a user-written Python script to create data files with
-complex bonding topologies.
-
-See the Manual.pdf for details and example scripts.
-
-This tool was written by Zachary Kraus at Georgia Tech.
-
-
-----------
-
-
-.. _pymol:
-
-pymol_asphere tool
-------------------------------
-
-The pymol_asphere sub-directory contains a tool for converting a
-LAMMPS dump file that contains orientation info for ellipsoidal
-particles into an input file for the :ref:`PyMol visualization package <pymol>`.
-
-.. _pymol: http://pymol.sourceforge.net
-
-
-
-Specifically, the tool triangulates the ellipsoids so they can be
-viewed as true ellipsoidal particles within PyMol. See the README and
-examples directory within pymol_asphere for more information.
-
-This tool was written by Mike Brown at Sandia.
-
-
-----------
-
-
-.. _pythontools:
-
-python tool
------------------------------
-
-The python sub-directory contains several Python scripts
-that perform common LAMMPS post-processing tasks, such as:
-
-* extract thermodynamic info from a log file as columns of numbers
-* plot two columns of thermodynamic info from a log file using GnuPlot
-* sort the snapshots in a dump file by atom ID
-* convert multiple :doc:`NEB <neb>` dump files into one dump file for viz
-* convert dump files into XYZ, CFG, or PDB format for viz by other packages
-
-These are simple scripts built on `Pizza.py <pizza_>`_ modules. See the
-README for more info on Pizza.py and how to use these scripts.
-
-
-----------
-
-
-.. _reax:
-
-reax tool
---------------------
-
-The reax sub-directory contains stand-alond codes that can
-post-process the output of the :doc:`fix reax/bonds <fix_reax_bonds>`
-command from a LAMMPS simulation using :doc:`ReaxFF <pair_reax>`. See
-the README.txt file for more info.
-
-These tools were written by Aidan Thompson at Sandia.
-
-
-----------
-
-
-.. _restart:
-
-restart2data tool
--------------------------------
-
-.. note::
-
- This tool is now obsolete and is not included in the current
- LAMMPS distribution. This is becaues there is now a
- :doc:`write_data <write_data>` command, which can create a data file
- from within an input script. Running LAMMPS with the "-r"
- :ref:`command-line switch <start_7>` as follows:
-
-lmp_g++ -r restartfile datafile
-
-is the same as running a 2-line input script:
-
-read_restart restartfile
-write_data datafile
-
-which will produce the same data file that the restart2data tool used
-to create. The following information is included in case you have an
-older version of LAMMPS which still includes the restart2data tool.
-
-The file restart2data.cpp converts a binary LAMMPS restart file into
-an ASCII data file. The syntax for running the tool is
-
-.. parsed-literal::
-
- restart2data restart-file data-file (input-file)
-
-Input-file is optional and if specified will contain LAMMPS input
-commands for the masses and force field parameters, instead of putting
-those in the data-file. Only a few force field styles currently
-support this option.
-
-This tool must be compiled on a platform that can read the binary file
-created by a LAMMPS run, since binary files are not compatible across
-all platforms.
-
-Note that a text data file has less precision than a binary restart
-file. Hence, continuing a run from a converted data file will
-typically not conform as closely to a previous run as will restarting
-from a binary restart file.
-
-If a "%" appears in the specified restart-file, the tool expects a set
-of multiple files to exist. See the :doc:`restart <restart>` and
-:doc:`write_restart <write_restart>` commands for info on how such sets
-of files are written by LAMMPS, and how the files are named.
-
-
-----------
-
-
-.. _vim:
-
-vim tool
-------------------
-
-The files in the tools/vim directory are add-ons to the VIM editor
-that allow easier editing of LAMMPS input scripts. See the README.txt
-file for details.
-
-These files were provided by Gerolf Ziegenhain (gerolf at
-ziegenhain.com)
-
-
-----------
-
-
-.. _xmgrace:
-
-xmgrace tool
---------------------------
-
-The files in the tools/xmgrace directory can be used to plot the
-thermodynamic data in LAMMPS log files via the xmgrace plotting
-package. There are several tools in the directory that can be used in
-post-processing mode. The lammpsplot.cpp file can be compiled and
-used to create plots from the current state of a running LAMMPS
-simulation.
-
-See the README file for details.
-
-These files were provided by Vikas Varshney (vv0210 at gmail.com)
-
-
-----------
-
-
-.. _xmovie:
-
-xmovie tool
-------------------------
-
-The xmovie tool is an X-based visualization package that can read
-LAMMPS dump files and animate them. It is in its own sub-directory
-with the tools directory. You may need to modify its Makefile so that
-it can find the appropriate X libraries to link against.
-
-The syntax for running xmovie is
-
-.. parsed-literal::
-
- xmovie [options] dump.file1 dump.file2 ...
-
-If you just type "xmovie" you will see a list of options. Note that
-by default, LAMMPS dump files are in scaled coordinates, so you
-typically need to use the -scale option with xmovie. When xmovie runs
-it opens a visualization window and a control window. The control
-options are straightforward to use.
-
-Xmovie was mostly written by Mike Uttormark (U Wisconsin) while he
-spent a summer at Sandia. It displays 2d projections of a 3d domain.
-While simple in design, it is an amazingly fast program that can
-render large numbers of atoms very quickly. It's a useful tool for
-debugging LAMMPS input and output and making sure your simulation is
-doing what you think it should. The animations on the Examples page
-of the `LAMMPS WWW site <lws_>`_ were created with xmovie.
-
-I've lost contact with Mike, so I hope he's comfortable with us
-distributing his great tool!
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/accelerate_cuda.txt b/doc/_sources/accelerate_cuda.txt
deleted file mode 100644
index 857bd0449..000000000
--- a/doc/_sources/accelerate_cuda.txt
+++ /dev/null
@@ -1,223 +0,0 @@
-:doc:`Return to Section accelerate overview <Section_accelerate>`
-
-5.USER-CUDA package
--------------------
-
-The USER-CUDA package was developed by Christian Trott (Sandia) while
-at U Technology Ilmenau in Germany. It provides NVIDIA GPU versions
-of many pair styles, many fixes, a few computes, and for long-range
-Coulombics via the PPPM command. It has the following general
-features:
-
-* The package is designed to allow an entire LAMMPS calculation, for
- many timesteps, to run entirely on the GPU (except for inter-processor
- MPI communication), so that atom-based data (e.g. coordinates, forces)
- do not have to move back-and-forth between the CPU and GPU.
-* The speed-up advantage of this approach is typically better when the
- number of atoms per GPU is large
-* Data will stay on the GPU until a timestep where a non-USER-CUDA fix
- or compute is invoked. Whenever a non-GPU operation occurs (fix,
- compute, output), data automatically moves back to the CPU as needed.
- This may incur a performance penalty, but should otherwise work
- transparently.
-* Neighbor lists are constructed on the GPU.
-* The package only supports use of a single MPI task, running on a
- single CPU (core), assigned to each GPU.
-Here is a quick overview of how to use the USER-CUDA package:
-
-* build the library in lib/cuda for your GPU hardware with desired precision
-* include the USER-CUDA package and build LAMMPS
-* use the mpirun command to specify 1 MPI task per GPU (on each node)
-* enable the USER-CUDA package via the "-c on" command-line switch
-* specify the # of GPUs per node
-* use USER-CUDA styles in your input script
-
-The latter two steps can be done using the "-pk cuda" and "-sf cuda"
-:ref:`command-line switches <start_7>` respectively. Or
-the effect of the "-pk" or "-sf" switches can be duplicated by adding
-the :doc:`package cuda <package>` or :doc:`suffix cuda <suffix>` commands
-respectively to your input script.
-
-**Required hardware/software:**
-
-To use this package, you need to have one or more NVIDIA GPUs and
-install the NVIDIA Cuda software on your system:
-
-Your NVIDIA GPU needs to support Compute Capability 1.3. This list may
-help you to find out the Compute Capability of your card:
-
-http://en.wikipedia.org/wiki/Comparison_of_Nvidia_graphics_processing_units
-
-Install the Nvidia Cuda Toolkit (version 3.2 or higher) and the
-corresponding GPU drivers. The Nvidia Cuda SDK is not required, but
-we recommend it also be installed. You can then make sure its sample
-projects can be compiled without problems.
-
-**Building LAMMPS with the USER-CUDA package:**
-
-This requires two steps (a,b): build the USER-CUDA library, then build
-LAMMPS with the USER-CUDA package.
-
-You can do both these steps in one line, using the src/Make.py script,
-described in :ref:`Section 2.4 <start_4>` of the manual.
-Type "Make.py -h" for help. If run from the src directory, this
-command will create src/lmp_cuda using src/MAKE/Makefile.mpi as the
-starting Makefile.machine:
-
-.. parsed-literal::
-
- Make.py -p cuda -cuda mode=single arch=20 -o cuda -a lib-cuda file mpi
-
-Or you can follow these two (a,b) steps:
-
-(a) Build the USER-CUDA library
-
-The USER-CUDA library is in lammps/lib/cuda. If your *CUDA* toolkit
-is not installed in the default system directoy */usr/local/cuda* edit
-the file *lib/cuda/Makefile.common* accordingly.
-
-To build the library with the settings in lib/cuda/Makefile.default,
-simply type:
-
-.. parsed-literal::
-
- make
-
-To set options when the library is built, type "make OPTIONS", where
-*OPTIONS* are one or more of the following. The settings will be
-written to the *lib/cuda/Makefile.defaults* before the build.
-
-.. parsed-literal::
-
- *precision=N* to set the precision level
- N = 1 for single precision (default)
- N = 2 for double precision
- N = 3 for positions in double precision
- N = 4 for positions and velocities in double precision
- *arch=M* to set GPU compute capability
- M = 35 for Kepler GPUs
- M = 20 for CC2.0 (GF100/110, e.g. C2050,GTX580,GTX470) (default)
- M = 21 for CC2.1 (GF104/114, e.g. GTX560, GTX460, GTX450)
- M = 13 for CC1.3 (GF200, e.g. C1060, GTX285)
- *prec_timer=0/1* to use hi-precision timers
- 0 = do not use them (default)
- 1 = use them
- this is usually only useful for Mac machines
- *dbg=0/1* to activate debug mode
- 0 = no debug mode (default)
- 1 = yes debug mode
- this is only useful for developers
- *cufft=1* for use of the CUDA FFT library
- 0 = no CUFFT support (default)
- in the future other CUDA-enabled FFT libraries might be supported
-
-If the build is successful, it will produce the files liblammpscuda.a and
-Makefile.lammps.
-
-Note that if you change any of the options (like precision), you need
-to re-build the entire library. Do a "make clean" first, followed by
-"make".
-
-(b) Build LAMMPS with the USER-CUDA package
-
-.. parsed-literal::
-
- cd lammps/src
- make yes-user-cuda
- make machine
-
-No additional compile/link flags are needed in Makefile.machine.
-
-Note that if you change the USER-CUDA library precision (discussed
-above) and rebuild the USER-CUDA library, then you also need to
-re-install the USER-CUDA package and re-build LAMMPS, so that all
-affected files are re-compiled and linked to the new USER-CUDA
-library.
-
-**Run with the USER-CUDA package from the command line:**
-
-The mpirun or mpiexec command sets the total number of MPI tasks used
-by LAMMPS (one or multiple per compute node) and the number of MPI
-tasks used per node. E.g. the mpirun command in MPICH does this via
-its -np and -ppn switches. Ditto for OpenMPI via -np and -npernode.
-
-When using the USER-CUDA package, you must use exactly one MPI task
-per physical GPU.
-
-You must use the "-c on" :ref:`command-line switch <start_7>` to enable the USER-CUDA package.
-The "-c on" switch also issues a default :doc:`package cuda 1 <package>`
-command which sets various USER-CUDA options to default values, as
-discussed on the :doc:`package <package>` command doc page.
-
-Use the "-sf cuda" :ref:`command-line switch <start_7>`,
-which will automatically append "cuda" to styles that support it. Use
-the "-pk cuda Ng" :ref:`command-line switch <start_7>` to
-set Ng = # of GPUs per node to a different value than the default set
-by the "-c on" switch (1 GPU) or change other :doc:`package cuda <package>` options.
-
-.. parsed-literal::
-
- lmp_machine -c on -sf cuda -pk cuda 1 -in in.script # 1 MPI task uses 1 GPU
- mpirun -np 2 lmp_machine -c on -sf cuda -pk cuda 2 -in in.script # 2 MPI tasks use 2 GPUs on a single 16-core (or whatever) node
- mpirun -np 24 -ppn 2 lmp_machine -c on -sf cuda -pk cuda 2 -in in.script # ditto on 12 16-core nodes
-
-The syntax for the "-pk" switch is the same as same as the "package
-cuda" command. See the :doc:`package <package>` command doc page for
-details, including the default values used for all its options if it
-is not specified.
-
-Note that the default for the :doc:`package cuda <package>` command is
-to set the Newton flag to "off" for both pairwise and bonded
-interactions. This typically gives fastest performance. If the
-:doc:`newton <newton>` command is used in the input script, it can
-override these defaults.
-
-**Or run with the USER-CUDA package by editing an input script:**
-
-The discussion above for the mpirun/mpiexec command and the requirement
-of one MPI task per GPU is the same.
-
-You must still use the "-c on" :ref:`command-line switch <start_7>` to enable the USER-CUDA package.
-
-Use the :doc:`suffix cuda <suffix>` command, or you can explicitly add a
-"cuda" suffix to individual styles in your input script, e.g.
-
-.. parsed-literal::
-
- pair_style lj/cut/cuda 2.5
-
-You only need to use the :doc:`package cuda <package>` command if you
-wish to change any of its option defaults, including the number of
-GPUs/node (default = 1), as set by the "-c on" :ref:`command-line switch <start_7>`.
-
-**Speed-ups to expect:**
-
-The performance of a GPU versus a multi-core CPU is a function of your
-hardware, which pair style is used, the number of atoms/GPU, and the
-precision used on the GPU (double, single, mixed).
-
-See the `Benchmark page <http://lammps.sandia.gov/bench.html>`_ of the
-LAMMPS web site for performance of the USER-CUDA package on different
-hardware.
-
-**Guidelines for best performance:**
-
-* The USER-CUDA package offers more speed-up relative to CPU performance
- when the number of atoms per GPU is large, e.g. on the order of tens
- or hundreds of 1000s.
-* As noted above, this package will continue to run a simulation
- entirely on the GPU(s) (except for inter-processor MPI communication),
- for multiple timesteps, until a CPU calculation is required, either by
- a fix or compute that is non-GPU-ized, or until output is performed
- (thermo or dump snapshot or restart file). The less often this
- occurs, the faster your simulation will run.
-Restrictions
-""""""""""""
-
-
-None.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/accelerate_gpu.txt b/doc/_sources/accelerate_gpu.txt
deleted file mode 100644
index 924768ce5..000000000
--- a/doc/_sources/accelerate_gpu.txt
+++ /dev/null
@@ -1,249 +0,0 @@
-:doc:`Return to Section accelerate overview <Section_accelerate>`
-
-5.GPU package
--------------
-
-The GPU package was developed by Mike Brown at ORNL and his
-collaborators, particularly Trung Nguyen (ORNL). It provides GPU
-versions of many pair styles, including the 3-body Stillinger-Weber
-pair style, and for :doc:`kspace_style pppm <kspace_style>` for
-long-range Coulombics. It has the following general features:
-
-* It is designed to exploit common GPU hardware configurations where one
- or more GPUs are coupled to many cores of one or more multi-core CPUs,
- e.g. within a node of a parallel machine.
-* Atom-based data (e.g. coordinates, forces) moves back-and-forth
- between the CPU(s) and GPU every timestep.
-* Neighbor lists can be built on the CPU or on the GPU
-* The charge assignement and force interpolation portions of PPPM can be
- run on the GPU. The FFT portion, which requires MPI communication
- between processors, runs on the CPU.
-* Asynchronous force computations can be performed simultaneously on the
- CPU(s) and GPU.
-* It allows for GPU computations to be performed in single or double
- precision, or in mixed-mode precision, where pairwise forces are
- computed in single precision, but accumulated into double-precision
- force vectors.
-* LAMMPS-specific code is in the GPU package. It makes calls to a
- generic GPU library in the lib/gpu directory. This library provides
- NVIDIA support as well as more general OpenCL support, so that the
- same functionality can eventually be supported on a variety of GPU
- hardware.
-Here is a quick overview of how to use the GPU package:
-
-* build the library in lib/gpu for your GPU hardware wity desired precision
-* include the GPU package and build LAMMPS
-* use the mpirun command to set the number of MPI tasks/node which determines the number of MPI tasks/GPU
-* specify the # of GPUs per node
-* use GPU styles in your input script
-
-The latter two steps can be done using the "-pk gpu" and "-sf gpu"
-:ref:`command-line switches <start_7>` respectively. Or
-the effect of the "-pk" or "-sf" switches can be duplicated by adding
-the :doc:`package gpu <package>` or :doc:`suffix gpu <suffix>` commands
-respectively to your input script.
-
-**Required hardware/software:**
-
-To use this package, you currently need to have an NVIDIA GPU and
-install the NVIDIA Cuda software on your system:
-
-* Check if you have an NVIDIA GPU: cat /proc/driver/nvidia/gpus/0/information
-* Go to http://www.nvidia.com/object/cuda_get.html
-* Install a driver and toolkit appropriate for your system (SDK is not necessary)
-* Run lammps/lib/gpu/nvc_get_devices (after building the GPU library, see below) to list supported devices and properties
-
-**Building LAMMPS with the GPU package:**
-
-This requires two steps (a,b): build the GPU library, then build
-LAMMPS with the GPU package.
-
-You can do both these steps in one line, using the src/Make.py script,
-described in :ref:`Section 2.4 <start_4>` of the manual.
-Type "Make.py -h" for help. If run from the src directory, this
-command will create src/lmp_gpu using src/MAKE/Makefile.mpi as the
-starting Makefile.machine:
-
-.. parsed-literal::
-
- Make.py -p gpu -gpu mode=single arch=31 -o gpu -a lib-gpu file mpi
-
-Or you can follow these two (a,b) steps:
-
-(a) Build the GPU library
-
-The GPU library is in lammps/lib/gpu. Select a Makefile.machine (in
-lib/gpu) appropriate for your system. You should pay special
-attention to 3 settings in this makefile.
-
-* CUDA_HOME = needs to be where NVIDIA Cuda software is installed on your system
-* CUDA_ARCH = needs to be appropriate to your GPUs
-* CUDA_PREC = precision (double, mixed, single) you desire
-
-See lib/gpu/Makefile.linux.double for examples of the ARCH settings
-for different GPU choices, e.g. Fermi vs Kepler. It also lists the
-possible precision settings:
-
-.. parsed-literal::
-
- CUDA_PREC = -D_SINGLE_SINGLE # single precision for all calculations
- CUDA_PREC = -D_DOUBLE_DOUBLE # double precision for all calculations
- CUDA_PREC = -D_SINGLE_DOUBLE # accumulation of forces, etc, in double
-
-The last setting is the mixed mode referred to above. Note that your
-GPU must support double precision to use either the 2nd or 3rd of
-these settings.
-
-To build the library, type:
-
-.. parsed-literal::
-
- make -f Makefile.machine
-
-If successful, it will produce the files libgpu.a and Makefile.lammps.
-
-The latter file has 3 settings that need to be appropriate for the
-paths and settings for the CUDA system software on your machine.
-Makefile.lammps is a copy of the file specified by the EXTRAMAKE
-setting in Makefile.machine. You can change EXTRAMAKE or create your
-own Makefile.lammps.machine if needed.
-
-Note that to change the precision of the GPU library, you need to
-re-build the entire library. Do a "clean" first, e.g. "make -f
-Makefile.linux clean", followed by the make command above.
-
-(b) Build LAMMPS with the GPU package
-
-.. parsed-literal::
-
- cd lammps/src
- make yes-gpu
- make machine
-
-No additional compile/link flags are needed in Makefile.machine.
-
-Note that if you change the GPU library precision (discussed above)
-and rebuild the GPU library, then you also need to re-install the GPU
-package and re-build LAMMPS, so that all affected files are
-re-compiled and linked to the new GPU library.
-
-**Run with the GPU package from the command line:**
-
-The mpirun or mpiexec command sets the total number of MPI tasks used
-by LAMMPS (one or multiple per compute node) and the number of MPI
-tasks used per node. E.g. the mpirun command in MPICH does this via
-its -np and -ppn switches. Ditto for OpenMPI via -np and -npernode.
-
-When using the GPU package, you cannot assign more than one GPU to a
-single MPI task. However multiple MPI tasks can share the same GPU,
-and in many cases it will be more efficient to run this way. Likewise
-it may be more efficient to use less MPI tasks/node than the available
-# of CPU cores. Assignment of multiple MPI tasks to a GPU will happen
-automatically if you create more MPI tasks/node than there are
-GPUs/mode. E.g. with 8 MPI tasks/node and 2 GPUs, each GPU will be
-shared by 4 MPI tasks.
-
-Use the "-sf gpu" :ref:`command-line switch <start_7>`,
-which will automatically append "gpu" to styles that support it. Use
-the "-pk gpu Ng" :ref:`command-line switch <start_7>` to
-set Ng = # of GPUs/node to use.
-
-.. parsed-literal::
-
- lmp_machine -sf gpu -pk gpu 1 -in in.script # 1 MPI task uses 1 GPU
- mpirun -np 12 lmp_machine -sf gpu -pk gpu 2 -in in.script # 12 MPI tasks share 2 GPUs on a single 16-core (or whatever) node
- mpirun -np 48 -ppn 12 lmp_machine -sf gpu -pk gpu 2 -in in.script # ditto on 4 16-core nodes
-
-Note that if the "-sf gpu" switch is used, it also issues a default
-:doc:`package gpu 1 <package>` command, which sets the number of
-GPUs/node to 1.
-
-Using the "-pk" switch explicitly allows for setting of the number of
-GPUs/node to use and additional options. Its syntax is the same as
-same as the "package gpu" command. See the :doc:`package <package>`
-command doc page for details, including the default values used for
-all its options if it is not specified.
-
-Note that the default for the :doc:`package gpu <package>` command is to
-set the Newton flag to "off" pairwise interactions. It does not
-affect the setting for bonded interactions (LAMMPS default is "on").
-The "off" setting for pairwise interaction is currently required for
-GPU package pair styles.
-
-**Or run with the GPU package by editing an input script:**
-
-The discussion above for the mpirun/mpiexec command, MPI tasks/node,
-and use of multiple MPI tasks/GPU is the same.
-
-Use the :doc:`suffix gpu <suffix>` command, or you can explicitly add an
-"gpu" suffix to individual styles in your input script, e.g.
-
-.. parsed-literal::
-
- pair_style lj/cut/gpu 2.5
-
-You must also use the :doc:`package gpu <package>` command to enable the
-GPU package, unless the "-sf gpu" or "-pk gpu" :ref:`command-line switches <start_7>` were used. It specifies the
-number of GPUs/node to use, as well as other options.
-
-**Speed-ups to expect:**
-
-The performance of a GPU versus a multi-core CPU is a function of your
-hardware, which pair style is used, the number of atoms/GPU, and the
-precision used on the GPU (double, single, mixed).
-
-See the `Benchmark page <http://lammps.sandia.gov/bench.html>`_ of the
-LAMMPS web site for performance of the GPU package on various
-hardware, including the Titan HPC platform at ORNL.
-
-You should also experiment with how many MPI tasks per GPU to use to
-give the best performance for your problem and machine. This is also
-a function of the problem size and the pair style being using.
-Likewise, you should experiment with the precision setting for the GPU
-library to see if single or mixed precision will give accurate
-results, since they will typically be faster.
-
-**Guidelines for best performance:**
-
-* Using multiple MPI tasks per GPU will often give the best performance,
- as allowed my most multi-core CPU/GPU configurations.
-* If the number of particles per MPI task is small (e.g. 100s of
- particles), it can be more efficient to run with fewer MPI tasks per
- GPU, even if you do not use all the cores on the compute node.
-* The :doc:`package gpu <package>` command has several options for tuning
- performance. Neighbor lists can be built on the GPU or CPU. Force
- calculations can be dynamically balanced across the CPU cores and
- GPUs. GPU-specific settings can be made which can be optimized
- for different hardware. See the :doc:`packakge <package>` command
- doc page for details.
-* As described by the :doc:`package gpu <package>` command, GPU
- accelerated pair styles can perform computations asynchronously with
- CPU computations. The "Pair" time reported by LAMMPS will be the
- maximum of the time required to complete the CPU pair style
- computations and the time required to complete the GPU pair style
- computations. Any time spent for GPU-enabled pair styles for
- computations that run simultaneously with :doc:`bond <bond_style>`,
- :doc:`angle <angle_style>`, :doc:`dihedral <dihedral_style>`,
- :doc:`improper <improper_style>`, and :doc:`long-range <kspace_style>`
- calculations will not be included in the "Pair" time.
-* When the *mode* setting for the package gpu command is force/neigh,
- the time for neighbor list calculations on the GPU will be added into
- the "Pair" time, not the "Neigh" time. An additional breakdown of the
- times required for various tasks on the GPU (data copy, neighbor
- calculations, force computations, etc) are output only with the LAMMPS
- screen output (not in the log file) at the end of each run. These
- timings represent total time spent on the GPU for each routine,
- regardless of asynchronous CPU calculations.
-* The output section "GPU Time Info (average)" reports "Max Mem / Proc".
- This is the maximum memory used at one time on the GPU for data
- storage by a single MPI process.
-Restrictions
-""""""""""""
-
-
-None.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/accelerate_intel.txt b/doc/_sources/accelerate_intel.txt
deleted file mode 100644
index 680a1a4e9..000000000
--- a/doc/_sources/accelerate_intel.txt
+++ /dev/null
@@ -1,317 +0,0 @@
-:doc:`Return to Section accelerate overview <Section_accelerate>`
-
-5.USER-INTEL package
---------------------
-
-The USER-INTEL package was developed by Mike Brown at Intel
-Corporation. It provides two methods for accelerating simulations,
-depending on the hardware you have. The first is acceleration on
-Intel(R) CPUs by running in single, mixed, or double precision with
-vectorization. The second is acceleration on Intel(R) Xeon Phi(TM)
-coprocessors via offloading neighbor list and non-bonded force
-calculations to the Phi. The same C++ code is used in both cases.
-When offloading to a coprocessor from a CPU, the same routine is run
-twice, once on the CPU and once with an offload flag.
-
-Note that the USER-INTEL package supports use of the Phi in "offload"
-mode, not "native" mode like the :doc:`KOKKOS package <accelerate_kokkos>`.
-
-Also note that the USER-INTEL package can be used in tandem with the
-:doc:`USER-OMP package <accelerate_omp>`. This is useful when
-offloading pair style computations to the Phi, so that other styles
-not supported by the USER-INTEL package, e.g. bond, angle, dihedral,
-improper, and long-range electrostatics, can run simultaneously in
-threaded mode on the CPU cores. Since less MPI tasks than CPU cores
-will typically be invoked when running with coprocessors, this enables
-the extra CPU cores to be used for useful computation.
-
-As illustrated below, if LAMMPS is built with both the USER-INTEL and
-USER-OMP packages, this dual mode of operation is made easier to use,
-via the "-suffix hybrid intel omp" :ref:`command-line switch <start_7>` or the :doc:`suffix hybrid intel omp <suffix>` command. Both set a second-choice suffix to "omp" so
-that styles from the USER-INTEL package will be used if available,
-with styles from the USER-OMP package as a second choice.
-
-Here is a quick overview of how to use the USER-INTEL package for CPU
-acceleration, assuming one or more 16-core nodes. More details
-follow.
-
-.. parsed-literal::
-
- use an Intel compiler
- use these CCFLAGS settings in Makefile.machine: -fopenmp, -DLAMMPS_MEMALIGN=64, -restrict, -xHost, -fno-alias, -ansi-alias, -override-limits
- use these LINKFLAGS settings in Makefile.machine: -fopenmp, -xHost
- make yes-user-intel yes-user-omp # including user-omp is optional
- make mpi # build with the USER-INTEL package, if settings (including compiler) added to Makefile.mpi
- make intel_cpu # or Makefile.intel_cpu already has settings, uses Intel MPI wrapper
- Make.py -v -p intel omp -intel cpu -a file mpich_icc # or one-line build via Make.py for MPICH
- Make.py -v -p intel omp -intel cpu -a file ompi_icc # or for OpenMPI
- Make.py -v -p intel omp -intel cpu -a file intel_cpu # or for Intel MPI wrapper
-
-.. parsed-literal::
-
- lmp_machine -sf intel -pk intel 0 omp 16 -in in.script # 1 node, 1 MPI task/node, 16 threads/task, no USER-OMP
- mpirun -np 32 lmp_machine -sf intel -in in.script # 2 nodess, 16 MPI tasks/node, no threads, no USER-OMP
- lmp_machine -sf hybrid intel omp -pk intel 0 omp 16 -pk omp 16 -in in.script # 1 node, 1 MPI task/node, 16 threads/task, with USER-OMP
- mpirun -np 32 -ppn 4 lmp_machine -sf hybrid intel omp -pk omp 4 -pk omp 4 -in in.script # 8 nodes, 4 MPI tasks/node, 4 threads/task, with USER-OMP
-
-Here is a quick overview of how to use the USER-INTEL package for the
-same CPUs as above (16 cores/node), with an additional Xeon Phi(TM)
-coprocessor per node. More details follow.
-
-.. parsed-literal::
-
- Same as above for building, with these additions/changes:
- add the flag -DLMP_INTEL_OFFLOAD to CCFLAGS in Makefile.machine
- add the flag -offload to LINKFLAGS in Makefile.machine
- for Make.py change "-intel cpu" to "-intel phi", and "file intel_cpu" to "file intel_phi"
-
-.. parsed-literal::
-
- mpirun -np 32 lmp_machine -sf intel -pk intel 1 -in in.script # 2 nodes, 16 MPI tasks/node, 240 total threads on coprocessor, no USER-OMP
- mpirun -np 16 -ppn 8 lmp_machine -sf intel -pk intel 1 omp 2 -in in.script # 2 nodes, 8 MPI tasks/node, 2 threads/task, 240 total threads on coprocessor, no USER-OMP
- mpirun -np 32 -ppn 8 lmp_machine -sf hybrid intel omp -pk intel 1 omp 2 -pk omp 2 -in in.script # 4 nodes, 8 MPI tasks/node, 2 threads/task, 240 total threads on coprocessor, with USER-OMP
-
-**Required hardware/software:**
-
-Your compiler must support the OpenMP interface. Use of an Intel(R)
-C++ compiler is recommended, but not required. However, g++ will not
-recognize some of the settings listed above, so they cannot be used.
-Optimizations for vectorization have only been tested with the
-Intel(R) compiler. Use of other compilers may not result in
-vectorization, or give poor performance.
-
-The recommended version of the Intel(R) compiler is 14.0.1.106.
-Versions 15.0.1.133 and later are also supported. If using Intel(R)
-MPI, versions 15.0.2.044 and later are recommended.
-
-To use the offload option, you must have one or more Intel(R) Xeon
-Phi(TM) coprocessors and use an Intel(R) C++ compiler.
-
-**Building LAMMPS with the USER-INTEL package:**
-
-The lines above illustrate how to include/build with the USER-INTEL
-package, for either CPU or Phi support, in two steps, using the "make"
-command. Or how to do it with one command via the src/Make.py script,
-described in :ref:`Section 2.4 <start_4>` of the manual.
-Type "Make.py -h" for help. Because the mechanism for specifing what
-compiler to use (Intel in this case) is different for different MPI
-wrappers, 3 versions of the Make.py command are shown.
-
-Note that if you build with support for a Phi coprocessor, the same
-binary can be used on nodes with or without coprocessors installed.
-However, if you do not have coprocessors on your system, building
-without offload support will produce a smaller binary.
-
-If you also build with the USER-OMP package, you can use styles from
-both packages, as described below.
-
-Note that the CCFLAGS and LINKFLAGS settings in Makefile.machine must
-include "-fopenmp". Likewise, if you use an Intel compiler, the
-CCFLAGS setting must include "-restrict". For Phi support, the
-"-DLMP_INTEL_OFFLOAD" (CCFLAGS) and "-offload" (LINKFLAGS) settings
-are required. The other settings listed above are optional, but will
-typically improve performance. The Make.py command will add all of
-these automatically.
-
-If you are compiling on the same architecture that will be used for
-the runs, adding the flag *-xHost* to CCFLAGS enables vectorization
-with the Intel(R) compiler. Otherwise, you must provide the correct
-compute node architecture to the -x option (e.g. -xAVX).
-
-Example machines makefiles Makefile.intel_cpu and Makefile.intel_phi
-are included in the src/MAKE/OPTIONS directory with settings that
-perform well with the Intel(R) compiler. The latter has support for
-offload to Phi coprocessors; the former does not.
-
-**Run with the USER-INTEL package from the command line:**
-
-The mpirun or mpiexec command sets the total number of MPI tasks used
-by LAMMPS (one or multiple per compute node) and the number of MPI
-tasks used per node. E.g. the mpirun command in MPICH does this via
-its -np and -ppn switches. Ditto for OpenMPI via -np and -npernode.
-
-If you compute (any portion of) pairwise interactions using USER-INTEL
-pair styles on the CPU, or use USER-OMP styles on the CPU, you need to
-choose how many OpenMP threads per MPI task to use. If both packages
-are used, it must be done for both packages, and the same thread count
-value should be used for both. Note that the product of MPI tasks *
-threads/task should not exceed the physical number of cores (on a
-node), otherwise performance will suffer.
-
-When using the USER-INTEL package for the Phi, you also need to
-specify the number of coprocessor/node and optionally the number of
-coprocessor threads per MPI task to use. Note that coprocessor
-threads (which run on the coprocessor) are totally independent from
-OpenMP threads (which run on the CPU). The default values for the
-settings that affect coprocessor threads are typically fine, as
-discussed below.
-
-As in the lines above, use the "-sf intel" or "-sf hybrid intel omp"
-:ref:`command-line switch <start_7>`, which will
-automatically append "intel" to styles that support it. In the second
-case, "omp" will be appended if an "intel" style does not exist.
-
-Note that if either switch is used, it also invokes a default command:
-:doc:`package intel 1 <package>`. If the "-sf hybrid intel omp" switch
-is used, the default USER-OMP command :doc:`package omp 0 <package>` is
-also invoked (if LAMMPS was built with USER-OMP). Both set the number
-of OpenMP threads per MPI task via the OMP_NUM_THREADS environment
-variable. The first command sets the number of Xeon Phi(TM)
-coprocessors/node to 1 (ignored if USER-INTEL is built for CPU-only),
-and the precision mode to "mixed" (default value).
-
-You can also use the "-pk intel Nphi" :ref:`command-line switch <start_7>` to explicitly set Nphi = # of Xeon
-Phi(TM) coprocessors/node, as well as additional options. Nphi should
-be >= 1 if LAMMPS was built with coprocessor support, otherswise Nphi
-= 0 for a CPU-only build. All the available coprocessor threads on
-each Phi will be divided among MPI tasks, unless the *tptask* option
-of the "-pk intel" :ref:`command-line switch <start_7>` is
-used to limit the coprocessor threads per MPI task. See the :doc:`package intel <package>` command for details, including the default values
-used for all its options if not specified, and how to set the number
-of OpenMP threads via the OMP_NUM_THREADS environment variable if
-desired.
-
-If LAMMPS was built with the USER-OMP package, you can also use the
-"-pk omp Nt" :ref:`command-line switch <start_7>` to
-explicitly set Nt = # of OpenMP threads per MPI task to use, as well
-as additional options. Nt should be the same threads per MPI task as
-set for the USER-INTEL package, e.g. via the "-pk intel Nphi omp Nt"
-command. Again, see the :doc:`package omp <package>` command for
-details, including the default values used for all its options if not
-specified, and how to set the number of OpenMP threads via the
-OMP_NUM_THREADS environment variable if desired.
-
-**Or run with the USER-INTEL package by editing an input script:**
-
-The discussion above for the mpirun/mpiexec command, MPI tasks/node,
-OpenMP threads per MPI task, and coprocessor threads per MPI task is
-the same.
-
-Use the :doc:`suffix intel <suffix>` or :doc:`suffix hybrid intel omp <suffix>` commands, or you can explicitly add an "intel" or
-"omp" suffix to individual styles in your input script, e.g.
-
-.. parsed-literal::
-
- pair_style lj/cut/intel 2.5
-
-You must also use the :doc:`package intel <package>` command, unless the
-"-sf intel" or "-pk intel" :ref:`command-line switches <start_7>` were used. It specifies how many
-coprocessors/node to use, as well as other OpenMP threading and
-coprocessor options. The :doc:`package <package>` doc page explains how
-to set the number of OpenMP threads via an environment variable if
-desired.
-
-If LAMMPS was also built with the USER-OMP package, you must also use
-the :doc:`package omp <package>` command to enable that package, unless
-the "-sf hybrid intel omp" or "-pk omp" :ref:`command-line switches <start_7>` were used. It specifies how many
-OpenMP threads per MPI task to use (should be same as the setting for
-the USER-INTEL package), as well as other options. Its doc page
-explains how to set the number of OpenMP threads via an environment
-variable if desired.
-
-**Speed-ups to expect:**
-
-If LAMMPS was not built with coprocessor support (CPU only) when
-including the USER-INTEL package, then acclerated styles will run on
-the CPU using vectorization optimizations and the specified precision.
-This may give a substantial speed-up for a pair style, particularly if
-mixed or single precision is used.
-
-If LAMMPS was built with coproccesor support, the pair styles will run
-on one or more Intel(R) Xeon Phi(TM) coprocessors (per node). The
-performance of a Xeon Phi versus a multi-core CPU is a function of
-your hardware, which pair style is used, the number of
-atoms/coprocessor, and the precision used on the coprocessor (double,
-single, mixed).
-
-See the `Benchmark page <http://lammps.sandia.gov/bench.html>`_ of the
-LAMMPS web site for performance of the USER-INTEL package on different
-hardware.
-
-.. note::
-
- Setting core affinity is often used to pin MPI tasks and OpenMP
- threads to a core or group of cores so that memory access can be
- uniform. Unless disabled at build time, affinity for MPI tasks and
- OpenMP threads on the host (CPU) will be set by default on the host
- when using offload to a coprocessor. In this case, it is unnecessary
- to use other methods to control affinity (e.g. taskset, numactl,
- I_MPI_PIN_DOMAIN, etc.). This can be disabled in an input script with
- the *no_affinity* option to the :doc:`package intel <package>` command
- or by disabling the option at build time (by adding
- -DINTEL_OFFLOAD_NOAFFINITY to the CCFLAGS line of your Makefile).
- Disabling this option is not recommended, especially when running on a
- machine with hyperthreading disabled.
-
-**Guidelines for best performance on an Intel(R) Xeon Phi(TM)
-coprocessor:**
-
-* The default for the :doc:`package intel <package>` command is to have
- all the MPI tasks on a given compute node use a single Xeon Phi(TM)
- coprocessor. In general, running with a large number of MPI tasks on
- each node will perform best with offload. Each MPI task will
- automatically get affinity to a subset of the hardware threads
- available on the coprocessor. For example, if your card has 61 cores,
- with 60 cores available for offload and 4 hardware threads per core
- (240 total threads), running with 24 MPI tasks per node will cause
- each MPI task to use a subset of 10 threads on the coprocessor. Fine
- tuning of the number of threads to use per MPI task or the number of
- threads to use per core can be accomplished with keyword settings of
- the :doc:`package intel <package>` command.
-* If desired, only a fraction of the pair style computation can be
- offloaded to the coprocessors. This is accomplished by using the
- *balance* keyword in the :doc:`package intel <package>` command. A
- balance of 0 runs all calculations on the CPU. A balance of 1 runs
- all calculations on the coprocessor. A balance of 0.5 runs half of
- the calculations on the coprocessor. Setting the balance to -1 (the
- default) will enable dynamic load balancing that continously adjusts
- the fraction of offloaded work throughout the simulation. This option
- typically produces results within 5 to 10 percent of the optimal fixed
- balance.
-* When using offload with CPU hyperthreading disabled, it may help
- performance to use fewer MPI tasks and OpenMP threads than available
- cores. This is due to the fact that additional threads are generated
- internally to handle the asynchronous offload tasks.
-* If running short benchmark runs with dynamic load balancing, adding a
- short warm-up run (10-20 steps) will allow the load-balancer to find a
- near-optimal setting that will carry over to additional runs.
-* If pair computations are being offloaded to an Intel(R) Xeon Phi(TM)
- coprocessor, a diagnostic line is printed to the screen (not to the
- log file), during the setup phase of a run, indicating that offload
- mode is being used and indicating the number of coprocessor threads
- per MPI task. Additionally, an offload timing summary is printed at
- the end of each run. When offloading, the frequency for :doc:`atom sorting <atom_modify>` is changed to 1 so that the per-atom data is
- effectively sorted at every rebuild of the neighbor lists.
-* For simulations with long-range electrostatics or bond, angle,
- dihedral, improper calculations, computation and data transfer to the
- coprocessor will run concurrently with computations and MPI
- communications for these calculations on the host CPU. The USER-INTEL
- package has two modes for deciding which atoms will be handled by the
- coprocessor. This choice is controlled with the *ghost* keyword of
- the :doc:`package intel <package>` command. When set to 0, ghost atoms
- (atoms at the borders between MPI tasks) are not offloaded to the
- card. This allows for overlap of MPI communication of forces with
- computation on the coprocessor when the :doc:`newton <newton>` setting
- is "on". The default is dependent on the style being used, however,
- better performance may be achieved by setting this option
- explictly.
-Restrictions
-""""""""""""
-
-
-When offloading to a coprocessor, :doc:`hybrid <pair_hybrid>` styles
-that require skip lists for neighbor builds cannot be offloaded.
-Using :doc:`hybrid/overlay <pair_hybrid>` is allowed. Only one intel
-accelerated style may be used with hybrid styles.
-:doc:`Special_bonds <special_bonds>` exclusion lists are not currently
-supported with offload, however, the same effect can often be
-accomplished by setting cutoffs for excluded atom types to 0. None of
-the pair styles in the USER-INTEL package currently support the
-"inner", "middle", "outer" options for rRESPA integration via the
-:doc:`run_style respa <run_style>` command; only the "pair" option is
-supported.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/accelerate_kokkos.txt b/doc/_sources/accelerate_kokkos.txt
deleted file mode 100644
index 943d9c4e8..000000000
--- a/doc/_sources/accelerate_kokkos.txt
+++ /dev/null
@@ -1,533 +0,0 @@
-:doc:`Return to Section accelerate overview <Section_accelerate>`
-
-5.KOKKOS package
-----------------
-
-The KOKKOS package was developed primarily by Christian Trott (Sandia)
-with contributions of various styles by others, including Sikandar
-Mashayak (UIUC), Stan Moore (Sandia), and Ray Shan (Sandia). The
-underlying Kokkos library was written primarily by Carter Edwards,
-Christian Trott, and Dan Sunderland (all Sandia).
-
-The KOKKOS package contains versions of pair, fix, and atom styles
-that use data structures and macros provided by the Kokkos library,
-which is included with LAMMPS in lib/kokkos.
-
-The Kokkos library is part of
-`Trilinos <http://trilinos.sandia.gov/packages/kokkos>`_ and can also be
-downloaded from `Github <https://github.com/kokkos/kokkos>`_. Kokkos is a
-templated C++ library that provides two key abstractions for an
-application like LAMMPS. First, it allows a single implementation of
-an application kernel (e.g. a pair style) to run efficiently on
-different kinds of hardware, such as a GPU, Intel Phi, or many-core
-CPU.
-
-The Kokkos library also provides data abstractions to adjust (at
-compile time) the memory layout of basic data structures like 2d and
-3d arrays and allow the transparent utilization of special hardware
-load and store operations. Such data structures are used in LAMMPS to
-store atom coordinates or forces or neighbor lists. The layout is
-chosen to optimize performance on different platforms. Again this
-functionality is hidden from the developer, and does not affect how
-the kernel is coded.
-
-These abstractions are set at build time, when LAMMPS is compiled with
-the KOKKOS package installed. All Kokkos operations occur within the
-context of an individual MPI task running on a single node of the
-machine. The total number of MPI tasks used by LAMMPS (one or
-multiple per compute node) is set in the usual manner via the mpirun
-or mpiexec commands, and is independent of Kokkos.
-
-Kokkos currently provides support for 3 modes of execution (per MPI
-task). These are OpenMP (for many-core CPUs), Cuda (for NVIDIA GPUs),
-and OpenMP (for Intel Phi). Note that the KOKKOS package supports
-running on the Phi in native mode, not offload mode like the
-USER-INTEL package supports. You choose the mode at build time to
-produce an executable compatible with specific hardware.
-
-Here is a quick overview of how to use the KOKKOS package
-for CPU acceleration, assuming one or more 16-core nodes.
-More details follow.
-
-.. parsed-literal::
-
- use a C++11 compatible compiler
- make yes-kokkos
- make mpi KOKKOS_DEVICES=OpenMP # build with the KOKKOS package
- make kokkos_omp # or Makefile.kokkos_omp already has variable set
- Make.py -v -p kokkos -kokkos omp -o mpi -a file mpi # or one-line build via Make.py
-
-.. parsed-literal::
-
- mpirun -np 16 lmp_mpi -k on -sf kk -in in.lj # 1 node, 16 MPI tasks/node, no threads
- mpirun -np 2 -ppn 1 lmp_mpi -k on t 16 -sf kk -in in.lj # 2 nodes, 1 MPI task/node, 16 threads/task
- mpirun -np 2 lmp_mpi -k on t 8 -sf kk -in in.lj # 1 node, 2 MPI tasks/node, 8 threads/task
- mpirun -np 32 -ppn 4 lmp_mpi -k on t 4 -sf kk -in in.lj # 8 nodes, 4 MPI tasks/node, 4 threads/task
-
-* specify variables and settings in your Makefile.machine that enable OpenMP, GPU, or Phi support
-* include the KOKKOS package and build LAMMPS
-* enable the KOKKOS package and its hardware options via the "-k on" command-line switch use KOKKOS styles in your input script
-
-Here is a quick overview of how to use the KOKKOS package for GPUs,
-assuming one or more nodes, each with 16 cores and a GPU. More
-details follow.
-
-discuss use of NVCC, which Makefiles to examine
-
-.. parsed-literal::
-
- use a C++11 compatible compiler
- KOKKOS_DEVICES = Cuda, OpenMP
- KOKKOS_ARCH = Kepler35
- make yes-kokkos
- make machine
- Make.py -p kokkos -kokkos cuda arch=31 -o kokkos_cuda -a file kokkos_cuda
-
-.. parsed-literal::
-
- mpirun -np 1 lmp_cuda -k on t 6 -sf kk -in in.lj # one MPI task, 6 threads on CPU
- mpirun -np 4 -ppn 1 lmp_cuda -k on t 6 -sf kk -in in.lj # ditto on 4 nodes
-
-.. parsed-literal::
-
- mpirun -np 2 lmp_cuda -k on t 8 g 2 -sf kk -in in.lj # two MPI tasks, 8 threads per CPU
- mpirun -np 32 -ppn 2 lmp_cuda -k on t 8 g 2 -sf kk -in in.lj # ditto on 16 nodes
-
-Here is a quick overview of how to use the KOKKOS package
-for the Intel Phi:
-
-.. parsed-literal::
-
- use a C++11 compatible compiler
- KOKKOS_DEVICES = OpenMP
- KOKKOS_ARCH = KNC
- make yes-kokkos
- make machine
- Make.py -p kokkos -kokkos phi -o kokkos_phi -a file mpi
-
-.. parsed-literal::
-
- host=MIC, Intel Phi with 61 cores (240 threads/phi via 4x hardware threading):
- mpirun -np 1 lmp_g++ -k on t 240 -sf kk -in in.lj # 1 MPI task on 1 Phi, 1*240 = 240
- mpirun -np 30 lmp_g++ -k on t 8 -sf kk -in in.lj # 30 MPI tasks on 1 Phi, 30*8 = 240
- mpirun -np 12 lmp_g++ -k on t 20 -sf kk -in in.lj # 12 MPI tasks on 1 Phi, 12*20 = 240
- mpirun -np 96 -ppn 12 lmp_g++ -k on t 20 -sf kk -in in.lj # ditto on 8 Phis
-
-**Required hardware/software:**
-
-Kokkos support within LAMMPS must be built with a C++11 compatible
-compiler. If using gcc, version 4.8.1 or later is required.
-
-To build with Kokkos support for CPUs, your compiler must support the
-OpenMP interface. You should have one or more multi-core CPUs so that
-multiple threads can be launched by each MPI task running on a CPU.
-
-To build with Kokkos support for NVIDIA GPUs, NVIDIA Cuda software
-version 6.5 or later must be installed on your system. See the
-discussion for the :doc:`USER-CUDA <accelerate_cuda>` and
-:doc:`GPU <accelerate_gpu>` packages for details of how to check and do
-this.
-
-.. note::
-
- For good performance of the KOKKOS package on GPUs, you must
- have Kepler generation GPUs (or later). The Kokkos library exploits
- texture cache options not supported by Telsa generation GPUs (or
- older).
-
-To build with Kokkos support for Intel Xeon Phi coprocessors, your
-sysmte must be configured to use them in "native" mode, not "offload"
-mode like the USER-INTEL package supports.
-
-**Building LAMMPS with the KOKKOS package:**
-
-You must choose at build time whether to build for CPUs (OpenMP),
-GPUs, or Phi.
-
-You can do any of these in one line, using the src/Make.py script,
-described in :ref:`Section 2.4 <start_4>` of the manual.
-Type "Make.py -h" for help. If run from the src directory, these
-commands will create src/lmp_kokkos_omp, lmp_kokkos_cuda, and
-lmp_kokkos_phi. Note that the OMP and PHI options use
-src/MAKE/Makefile.mpi as the starting Makefile.machine. The CUDA
-option uses src/MAKE/OPTIONS/Makefile.kokkos_cuda.
-
-The latter two steps can be done using the "-k on", "-pk kokkos" and
-"-sf kk" :ref:`command-line switches <start_7>`
-respectively. Or the effect of the "-pk" or "-sf" switches can be
-duplicated by adding the :doc:`package kokkos <package>` or :doc:`suffix kk <suffix>` commands respectively to your input script.
-
-Or you can follow these steps:
-
-CPU-only (run all-MPI or with OpenMP threading):
-
-.. parsed-literal::
-
- cd lammps/src
- make yes-kokkos
- make g++ KOKKOS_DEVICES=OpenMP
-
-Intel Xeon Phi:
-
-.. parsed-literal::
-
- cd lammps/src
- make yes-kokkos
- make g++ KOKKOS_DEVICES=OpenMP KOKKOS_ARCH=KNC
-
-CPUs and GPUs:
-
-.. parsed-literal::
-
- cd lammps/src
- make yes-kokkos
- make cuda KOKKOS_DEVICES=Cuda
-
-These examples set the KOKKOS-specific OMP, MIC, CUDA variables on the
-make command line which requires a GNU-compatible make command. Try
-"gmake" if your system's standard make complains.
-
-.. note::
-
- If you build using make line variables and re-build LAMMPS twice
- with different KOKKOS options and the *same* target, e.g. g++ in the
- first two examples above, then you *must* perform a "make clean-all"
- or "make clean-machine" before each build. This is to force all the
- KOKKOS-dependent files to be re-compiled with the new options.
-
-You can also hardwire these make variables in the specified machine
-makefile, e.g. src/MAKE/Makefile.g++ in the first two examples above,
-with a line like:
-
-.. parsed-literal::
-
- KOKKOS_ARCH = KNC
-
-Note that if you build LAMMPS multiple times in this manner, using
-different KOKKOS options (defined in different machine makefiles), you
-do not have to worry about doing a "clean" in between. This is
-because the targets will be different.
-
-.. note::
-
- The 3rd example above for a GPU, uses a different machine
- makefile, in this case src/MAKE/Makefile.cuda, which is included in
- the LAMMPS distribution. To build the KOKKOS package for a GPU, this
- makefile must use the NVIDA "nvcc" compiler. And it must have a
- KOKKOS_ARCH setting that is appropriate for your NVIDIA hardware and
- installed software. Typical values for KOKKOS_ARCH are given below,
- as well as other settings that must be included in the machine
- makefile, if you create your own.
-
-.. note::
-
- Currently, there are no precision options with the KOKKOS
- package. All compilation and computation is performed in double
- precision.
-
-There are other allowed options when building with the KOKKOS package.
-As above, they can be set either as variables on the make command line
-or in Makefile.machine. This is the full list of options, including
-those discussed above, Each takes a value shown below. The
-default value is listed, which is set in the
-lib/kokkos/Makefile.kokkos file.
-
-#Default settings specific options
-#Options: force_uvm,use_ldg,rdc
-
-* KOKKOS_DEVICES, values = *OpenMP*, *Serial*, *Pthreads*, *Cuda*, default = *OpenMP*
-* KOKKOS_ARCH, values = *KNC*, *SNB*, *HSW*, *Kepler*, *Kepler30*, *Kepler32*, *Kepler35*, *Kepler37*, *Maxwell*, *Maxwell50*, *Maxwell52*, *Maxwell53*, *ARMv8*, *BGQ*, *Power7*, *Power8*, default = *none*
-* KOKKOS_DEBUG, values = *yes*, *no*, default = *no*
-* KOKKOS_USE_TPLS, values = *hwloc*, *librt*, default = *none*
-* KOKKOS_CUDA_OPTIONS, values = *force_uvm*, *use_ldg*, *rdc*
-
-KOKKOS_DEVICE sets the parallelization method used for Kokkos code
-(within LAMMPS). KOKKOS_DEVICES=OpenMP means that OpenMP will be
-used. KOKKOS_DEVICES=Pthreads means that pthreads will be used.
-KOKKOS_DEVICES=Cuda means an NVIDIA GPU running CUDA will be used.
-
-If KOKKOS_DEVICES=Cuda, then the lo-level Makefile in the src/MAKE
-directory must use "nvcc" as its compiler, via its CC setting. For
-best performance its CCFLAGS setting should use -O3 and have a
-KOKKOS_ARCH setting that matches the compute capability of your NVIDIA
-hardware and software installation, e.g. KOKKOS_ARCH=Kepler30. Note
-the minimal required compute capability is 2.0, but this will give
-signicantly reduced performance compared to Kepler generation GPUs
-with compute capability 3.x. For the LINK setting, "nvcc" should not
-be used; instead use g++ or another compiler suitable for linking C++
-applications. Often you will want to use your MPI compiler wrapper
-for this setting (i.e. mpicxx). Finally, the lo-level Makefile must
-also have a "Compilation rule" for creating *.o files from *.cu files.
-See src/Makefile.cuda for an example of a lo-level Makefile with all
-of these settings.
-
-KOKKOS_USE_TPLS=hwloc binds threads to hardware cores, so they do not
-migrate during a simulation. KOKKOS_USE_TPLS=hwloc should always be
-used if running with KOKKOS_DEVICES=Pthreads for pthreads. It is not
-necessary for KOKKOS_DEVICES=OpenMP for OpenMP, because OpenMP
-provides alternative methods via environment variables for binding
-threads to hardware cores. More info on binding threads to cores is
-given in :ref:`this section <acc_8>`.
-
-KOKKOS_ARCH=KNC enables compiler switches needed when compling for an
-Intel Phi processor.
-
-KOKKOS_USE_TPLS=librt enables use of a more accurate timer mechanism
-on most Unix platforms. This library is not available on all
-platforms.
-
-KOKKOS_DEBUG is only useful when developing a Kokkos-enabled style
-within LAMMPS. KOKKOS_DEBUG=yes enables printing of run-time
-debugging information that can be useful. It also enables runtime
-bounds checking on Kokkos data structures.
-
-KOKKOS_CUDA_OPTIONS are additional options for CUDA.
-
-For more information on Kokkos see the Kokkos programmers' guide here:
-/lib/kokkos/doc/Kokkos_PG.pdf.
-
-**Run with the KOKKOS package from the command line:**
-
-The mpirun or mpiexec command sets the total number of MPI tasks used
-by LAMMPS (one or multiple per compute node) and the number of MPI
-tasks used per node. E.g. the mpirun command in MPICH does this via
-its -np and -ppn switches. Ditto for OpenMPI via -np and -npernode.
-
-When using KOKKOS built with host=OMP, you need to choose how many
-OpenMP threads per MPI task will be used (via the "-k" command-line
-switch discussed below). Note that the product of MPI tasks * OpenMP
-threads/task should not exceed the physical number of cores (on a
-node), otherwise performance will suffer.
-
-When using the KOKKOS package built with device=CUDA, you must use
-exactly one MPI task per physical GPU.
-
-When using the KOKKOS package built with host=MIC for Intel Xeon Phi
-coprocessor support you need to insure there are one or more MPI tasks
-per coprocessor, and choose the number of coprocessor threads to use
-per MPI task (via the "-k" command-line switch discussed below). The
-product of MPI tasks * coprocessor threads/task should not exceed the
-maximum number of threads the coproprocessor is designed to run,
-otherwise performance will suffer. This value is 240 for current
-generation Xeon Phi(TM) chips, which is 60 physical cores * 4
-threads/core. Note that with the KOKKOS package you do not need to
-specify how many Phi coprocessors there are per node; each
-coprocessors is simply treated as running some number of MPI tasks.
-
-You must use the "-k on" :ref:`command-line switch <start_7>` to enable the KOKKOS package. It
-takes additional arguments for hardware settings appropriate to your
-system. Those arguments are :ref:`documented here <start_7>`. The two most commonly used
-options are:
-
-.. parsed-literal::
-
- -k on t Nt g Ng
-
-The "t Nt" option applies to host=OMP (even if device=CUDA) and
-host=MIC. For host=OMP, it specifies how many OpenMP threads per MPI
-task to use with a node. For host=MIC, it specifies how many Xeon Phi
-threads per MPI task to use within a node. The default is Nt = 1.
-Note that for host=OMP this is effectively MPI-only mode which may be
-fine. But for host=MIC you will typically end up using far less than
-all the 240 available threads, which could give very poor performance.
-
-The "g Ng" option applies to device=CUDA. It specifies how many GPUs
-per compute node to use. The default is 1, so this only needs to be
-specified is you have 2 or more GPUs per compute node.
-
-The "-k on" switch also issues a "package kokkos" command (with no
-additional arguments) which sets various KOKKOS options to default
-values, as discussed on the :doc:`package <package>` command doc page.
-
-Use the "-sf kk" :ref:`command-line switch <start_7>`,
-which will automatically append "kk" to styles that support it. Use
-the "-pk kokkos" :ref:`command-line switch <start_7>` if
-you wish to change any of the default :doc:`package kokkos <package>`
-optionns set by the "-k on" :ref:`command-line switch <start_7>`.
-
-Note that the default for the :doc:`package kokkos <package>` command is
-to use "full" neighbor lists and set the Newton flag to "off" for both
-pairwise and bonded interactions. This typically gives fastest
-performance. If the :doc:`newton <newton>` command is used in the input
-script, it can override the Newton flag defaults.
-
-However, when running in MPI-only mode with 1 thread per MPI task, it
-will typically be faster to use "half" neighbor lists and set the
-Newton flag to "on", just as is the case for non-accelerated pair
-styles. You can do this with the "-pk" :ref:`command-line switch <start_7>`.
-
-**Or run with the KOKKOS package by editing an input script:**
-
-The discussion above for the mpirun/mpiexec command and setting
-appropriate thread and GPU values for host=OMP or host=MIC or
-device=CUDA are the same.
-
-You must still use the "-k on" :ref:`command-line switch <start_7>` to enable the KOKKOS package, and
-specify its additional arguments for hardware options appopriate to
-your system, as documented above.
-
-Use the :doc:`suffix kk <suffix>` command, or you can explicitly add a
-"kk" suffix to individual styles in your input script, e.g.
-
-.. parsed-literal::
-
- pair_style lj/cut/kk 2.5
-
-You only need to use the :doc:`package kokkos <package>` command if you
-wish to change any of its option defaults, as set by the "-k on"
-:ref:`command-line switch <start_7>`.
-
-**Speed-ups to expect:**
-
-The performance of KOKKOS running in different modes is a function of
-your hardware, which KOKKOS-enable styles are used, and the problem
-size.
-
-Generally speaking, the following rules of thumb apply:
-
-* When running on CPUs only, with a single thread per MPI task,
- performance of a KOKKOS style is somewhere between the standard
- (un-accelerated) styles (MPI-only mode), and those provided by the
- USER-OMP package. However the difference between all 3 is small (less
- than 20%).
-* When running on CPUs only, with multiple threads per MPI task,
- performance of a KOKKOS style is a bit slower than the USER-OMP
- package.
-* When running on GPUs, KOKKOS is typically faster than the USER-CUDA
- and GPU packages.
-* When running on Intel Xeon Phi, KOKKOS is not as fast as
- the USER-INTEL package, which is optimized for that hardware.
-See the `Benchmark page <http://lammps.sandia.gov/bench.html>`_ of the
-LAMMPS web site for performance of the KOKKOS package on different
-hardware.
-
-**Guidelines for best performance:**
-
-Here are guidline for using the KOKKOS package on the different
-hardware configurations listed above.
-
-Many of the guidelines use the :doc:`package kokkos <package>` command
-See its doc page for details and default settings. Experimenting with
-its options can provide a speed-up for specific calculations.
-
-**Running on a multi-core CPU:**
-
-If N is the number of physical cores/node, then the number of MPI
-tasks/node * number of threads/task should not exceed N, and should
-typically equal N. Note that the default threads/task is 1, as set by
-the "t" keyword of the "-k" :ref:`command-line switch <start_7>`. If you do not change this, no
-additional parallelism (beyond MPI) will be invoked on the host
-CPU(s).
-
-You can compare the performance running in different modes:
-
-* run with 1 MPI task/node and N threads/task
-* run with N MPI tasks/node and 1 thread/task
-* run with settings in between these extremes
-
-Examples of mpirun commands in these modes are shown above.
-
-When using KOKKOS to perform multi-threading, it is important for
-performance to bind both MPI tasks to physical cores, and threads to
-physical cores, so they do not migrate during a simulation.
-
-If you are not certain MPI tasks are being bound (check the defaults
-for your MPI installation), binding can be forced with these flags:
-
-.. parsed-literal::
-
- OpenMPI 1.8: mpirun -np 2 -bind-to socket -map-by socket ./lmp_openmpi ...
- Mvapich2 2.0: mpiexec -np 2 -bind-to socket -map-by socket ./lmp_mvapich ...
-
-For binding threads with the KOKKOS OMP option, use thread affinity
-environment variables to force binding. With OpenMP 3.1 (gcc 4.7 or
-later, intel 12 or later) setting the environment variable
-OMP_PROC_BIND=true should be sufficient. For binding threads with the
-KOKKOS pthreads option, compile LAMMPS the KOKKOS HWLOC=yes option, as
-discussed in :ref:`Section 2.3.4 <start_3_4>` of the
-manual.
-
-**Running on GPUs:**
-
-Insure the -arch setting in the machine makefile you are using,
-e.g. src/MAKE/Makefile.cuda, is correct for your GPU hardware/software
-(see :ref:`this section <start_3_4>` of the manual for
-details).
-
-The -np setting of the mpirun command should set the number of MPI
-tasks/node to be equal to the # of physical GPUs on the node.
-
-Use the "-k" :ref:`command-line switch <start_7>` to
-specify the number of GPUs per node, and the number of threads per MPI
-task. As above for multi-core CPUs (and no GPU), if N is the number
-of physical cores/node, then the number of MPI tasks/node * number of
-threads/task should not exceed N. With one GPU (and one MPI task) it
-may be faster to use less than all the available cores, by setting
-threads/task to a smaller value. This is because using all the cores
-on a dual-socket node will incur extra cost to copy memory from the
-2nd socket to the GPU.
-
-Examples of mpirun commands that follow these rules are shown above.
-
-.. note::
-
- When using a GPU, you will achieve the best performance if your
- input script does not use any fix or compute styles which are not yet
- Kokkos-enabled. This allows data to stay on the GPU for multiple
- timesteps, without being copied back to the host CPU. Invoking a
- non-Kokkos fix or compute, or performing I/O for
- :doc:`thermo <thermo_style>` or :doc:`dump <dump>` output will cause data
- to be copied back to the CPU.
-
-You cannot yet assign multiple MPI tasks to the same GPU with the
-KOKKOS package. We plan to support this in the future, similar to the
-GPU package in LAMMPS.
-
-You cannot yet use both the host (multi-threaded) and device (GPU)
-together to compute pairwise interactions with the KOKKOS package. We
-hope to support this in the future, similar to the GPU package in
-LAMMPS.
-
-**Running on an Intel Phi:**
-
-Kokkos only uses Intel Phi processors in their "native" mode, i.e.
-not hosted by a CPU.
-
-As illustrated above, build LAMMPS with OMP=yes (the default) and
-MIC=yes. The latter insures code is correctly compiled for the Intel
-Phi. The OMP setting means OpenMP will be used for parallelization on
-the Phi, which is currently the best option within Kokkos. In the
-future, other options may be added.
-
-Current-generation Intel Phi chips have either 61 or 57 cores. One
-core should be excluded for running the OS, leaving 60 or 56 cores.
-Each core is hyperthreaded, so there are effectively N = 240 (4*60) or
-N = 224 (4*56) cores to run on.
-
-The -np setting of the mpirun command sets the number of MPI
-tasks/node. The "-k on t Nt" command-line switch sets the number of
-threads/task as Nt. The product of these 2 values should be N, i.e.
-240 or 224. Also, the number of threads/task should be a multiple of
-4 so that logical threads from more than one MPI task do not run on
-the same physical core.
-
-Examples of mpirun commands that follow these rules are shown above.
-
-Restrictions
-""""""""""""
-
-
-As noted above, if using GPUs, the number of MPI tasks per compute
-node should equal to the number of GPUs per compute node. In the
-future Kokkos will support assigning multiple MPI tasks to a single
-GPU.
-
-Currently Kokkos does not support AMD GPUs due to limits in the
-available backend programming models. Specifically, Kokkos requires
-extensive C++ support from the Kernel language. This is expected to
-change in the future.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/accelerate_omp.txt b/doc/_sources/accelerate_omp.txt
deleted file mode 100644
index 252b10b02..000000000
--- a/doc/_sources/accelerate_omp.txt
+++ /dev/null
@@ -1,178 +0,0 @@
-:doc:`Return to Section accelerate overview <Section_accelerate>`
-
-5.USER-OMP package
-------------------
-
-The USER-OMP package was developed by Axel Kohlmeyer at Temple
-University. It provides multi-threaded versions of most pair styles,
-nearly all bonded styles (bond, angle, dihedral, improper), several
-Kspace styles, and a few fix styles. The package currently uses the
-OpenMP interface for multi-threading.
-
-Here is a quick overview of how to use the USER-OMP package, assuming
-one or more 16-core nodes. More details follow.
-
-.. parsed-literal::
-
- use -fopenmp with CCFLAGS and LINKFLAGS in Makefile.machine
- make yes-user-omp
- make mpi # build with USER-OMP package, if settings added to Makefile.mpi
- make omp # or Makefile.omp already has settings
- Make.py -v -p omp -o mpi -a file mpi # or one-line build via Make.py
-
-.. parsed-literal::
-
- lmp_mpi -sf omp -pk omp 16 < in.script # 1 MPI task, 16 threads
- mpirun -np 4 lmp_mpi -sf omp -pk omp 4 -in in.script # 4 MPI tasks, 4 threads/task
- mpirun -np 32 -ppn 4 lmp_mpi -sf omp -pk omp 4 -in in.script # 8 nodes, 4 MPI tasks/node, 4 threads/task
-
-**Required hardware/software:**
-
-Your compiler must support the OpenMP interface. You should have one
-or more multi-core CPUs so that multiple threads can be launched by
-each MPI task running on a CPU.
-
-**Building LAMMPS with the USER-OMP package:**
-
-The lines above illustrate how to include/build with the USER-OMP
-package in two steps, using the "make" command. Or how to do it with
-one command via the src/Make.py script, described in :ref:`Section 2.4 <start_4>` of the manual. Type "Make.py -h" for
-help.
-
-Note that the CCFLAGS and LINKFLAGS settings in Makefile.machine must
-include "-fopenmp". Likewise, if you use an Intel compiler, the
-CCFLAGS setting must include "-restrict". The Make.py command will
-add these automatically.
-
-**Run with the USER-OMP package from the command line:**
-
-The mpirun or mpiexec command sets the total number of MPI tasks used
-by LAMMPS (one or multiple per compute node) and the number of MPI
-tasks used per node. E.g. the mpirun command in MPICH does this via
-its -np and -ppn switches. Ditto for OpenMPI via -np and -npernode.
-
-You need to choose how many OpenMP threads per MPI task will be used
-by the USER-OMP package. Note that the product of MPI tasks *
-threads/task should not exceed the physical number of cores (on a
-node), otherwise performance will suffer.
-
-As in the lines above, use the "-sf omp" :ref:`command-line switch <start_7>`, which will automatically append
-"omp" to styles that support it. The "-sf omp" switch also issues a
-default :doc:`package omp 0 <package>` command, which will set the
-number of threads per MPI task via the OMP_NUM_THREADS environment
-variable.
-
-You can also use the "-pk omp Nt" :ref:`command-line switch <start_7>`, to explicitly set Nt = # of OpenMP
-threads per MPI task to use, as well as additional options. Its
-syntax is the same as the :doc:`package omp <package>` command whose doc
-page gives details, including the default values used if it is not
-specified. It also gives more details on how to set the number of
-threads via the OMP_NUM_THREADS environment variable.
-
-**Or run with the USER-OMP package by editing an input script:**
-
-The discussion above for the mpirun/mpiexec command, MPI tasks/node,
-and threads/MPI task is the same.
-
-Use the :doc:`suffix omp <suffix>` command, or you can explicitly add an
-"omp" suffix to individual styles in your input script, e.g.
-
-.. parsed-literal::
-
- pair_style lj/cut/omp 2.5
-
-You must also use the :doc:`package omp <package>` command to enable the
-USER-OMP package. When you do this you also specify how many threads
-per MPI task to use. The command doc page explains other options and
-how to set the number of threads via the OMP_NUM_THREADS environment
-variable.
-
-**Speed-ups to expect:**
-
-Depending on which styles are accelerated, you should look for a
-reduction in the "Pair time", "Bond time", "KSpace time", and "Loop
-time" values printed at the end of a run.
-
-You may see a small performance advantage (5 to 20%) when running a
-USER-OMP style (in serial or parallel) with a single thread per MPI
-task, versus running standard LAMMPS with its standard un-accelerated
-styles (in serial or all-MPI parallelization with 1 task/core). This
-is because many of the USER-OMP styles contain similar optimizations
-to those used in the OPT package, described in :doc:`Section accelerate 5.3.6 <accelerate_opt>`.
-
-With multiple threads/task, the optimal choice of number of MPI
-tasks/node and OpenMP threads/task can vary a lot and should always be
-tested via benchmark runs for a specific simulation running on a
-specific machine, paying attention to guidelines discussed in the next
-sub-section.
-
-A description of the multi-threading strategy used in the USER-OMP
-package and some performance examples are `presented here <http://sites.google.com/site/akohlmey/software/lammps-icms/lammps-icms-tms2011-talk.pdf?attredirects=0&d=1>`_
-
-**Guidelines for best performance:**
-
-For many problems on current generation CPUs, running the USER-OMP
-package with a single thread/task is faster than running with multiple
-threads/task. This is because the MPI parallelization in LAMMPS is
-often more efficient than multi-threading as implemented in the
-USER-OMP package. The parallel efficiency (in a threaded sense) also
-varies for different USER-OMP styles.
-
-Using multiple threads/task can be more effective under the following
-circumstances:
-
-* Individual compute nodes have a significant number of CPU cores but
- the CPU itself has limited memory bandwidth, e.g. for Intel Xeon 53xx
- (Clovertown) and 54xx (Harpertown) quad-core processors. Running one
- MPI task per CPU core will result in significant performance
- degradation, so that running with 4 or even only 2 MPI tasks per node
- is faster. Running in hybrid MPI+OpenMP mode will reduce the
- inter-node communication bandwidth contention in the same way, but
- offers an additional speedup by utilizing the otherwise idle CPU
- cores.
-* The interconnect used for MPI communication does not provide
- sufficient bandwidth for a large number of MPI tasks per node. For
- example, this applies to running over gigabit ethernet or on Cray XT4
- or XT5 series supercomputers. As in the aforementioned case, this
- effect worsens when using an increasing number of nodes.
-* The system has a spatially inhomogeneous particle density which does
- not map well to the :doc:`domain decomposition scheme <processors>` or
- :doc:`load-balancing <balance>` options that LAMMPS provides. This is
- because multi-threading achives parallelism over the number of
- particles, not via their distribution in space.
-* A machine is being used in "capability mode", i.e. near the point
- where MPI parallelism is maxed out. For example, this can happen when
- using the :doc:`PPPM solver <kspace_style>` for long-range
- electrostatics on large numbers of nodes. The scaling of the KSpace
- calculation (see the :doc:`kspace_style <kspace_style>` command) becomes
- the performance-limiting factor. Using multi-threading allows less
- MPI tasks to be invoked and can speed-up the long-range solver, while
- increasing overall performance by parallelizing the pairwise and
- bonded calculations via OpenMP. Likewise additional speedup can be
- sometimes be achived by increasing the length of the Coulombic cutoff
- and thus reducing the work done by the long-range solver. Using the
- :doc:`run_style verlet/split <run_style>` command, which is compatible
- with the USER-OMP package, is an alternative way to reduce the number
- of MPI tasks assigned to the KSpace calculation.
-Additional performance tips are as follows:
-
-* The best parallel efficiency from *omp* styles is typically achieved
- when there is at least one MPI task per physical CPU chip, i.e. socket
- or die.
-* It is usually most efficient to restrict threading to a single
- socket, i.e. use one or more MPI task per socket.
-* NOTE: By default, several current MPI implementations use a processor
- affinity setting that restricts each MPI task to a single CPU core.
- Using multi-threading in this mode will force all threads to share the
- one core and thus is likely to be counterproductive. Instead, binding
- MPI tasks to a (multi-core) socket, should solve this issue.
-Restrictions
-""""""""""""
-
-
-None.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/accelerate_opt.txt b/doc/_sources/accelerate_opt.txt
deleted file mode 100644
index 8aebe5939..000000000
--- a/doc/_sources/accelerate_opt.txt
+++ /dev/null
@@ -1,74 +0,0 @@
-:doc:`Return to Section accelerate overview <Section_accelerate>`
-
-5.OPT package
--------------
-
-The OPT package was developed by James Fischer (High Performance
-Technologies), David Richie, and Vincent Natoli (Stone Ridge
-Technologies). It contains a handful of pair styles whose compute()
-methods were rewritten in C++ templated form to reduce the overhead
-due to if tests and other conditional code.
-
-Here is a quick overview of how to use the OPT package. More details
-follow.
-
-.. parsed-literal::
-
- make yes-opt
- make mpi # build with the OPT package
- Make.py -v -p opt -o mpi -a file mpi # or one-line build via Make.py
-
-.. parsed-literal::
-
- lmp_mpi -sf opt -in in.script # run in serial
- mpirun -np 4 lmp_mpi -sf opt -in in.script # run in parallel
-
-**Required hardware/software:**
-
-None.
-
-**Building LAMMPS with the OPT package:**
-
-The lines above illustrate how to build LAMMPS with the OPT package in
-two steps, using the "make" command. Or how to do it with one command
-via the src/Make.py script, described in :ref:`Section 2.4 <start_4>` of the manual. Type "Make.py -h" for
-help.
-
-Note that if you use an Intel compiler to build with the OPT package,
-the CCFLAGS setting in your Makefile.machine must include "-restrict".
-The Make.py command will add this automatically.
-
-**Run with the OPT package from the command line:**
-
-As in the lines above, use the "-sf opt" :ref:`command-line switch <start_7>`, which will automatically append
-"opt" to styles that support it.
-
-**Or run with the OPT package by editing an input script:**
-
-Use the :doc:`suffix opt <suffix>` command, or you can explicitly add an
-"opt" suffix to individual styles in your input script, e.g.
-
-.. parsed-literal::
-
- pair_style lj/cut/opt 2.5
-
-**Speed-ups to expect:**
-
-You should see a reduction in the "Pair time" value printed at the end
-of a run. On most machines for reasonable problem sizes, it will be a
-5 to 20% savings.
-
-**Guidelines for best performance:**
-
-Just try out an OPT pair style to see how it performs.
-
-Restrictions
-""""""""""""
-
-
-None.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_charmm.txt b/doc/_sources/angle_charmm.txt
deleted file mode 100644
index b4384a91d..000000000
--- a/doc/_sources/angle_charmm.txt
+++ /dev/null
@@ -1,113 +0,0 @@
-.. index:: angle_style charmm
-
-angle_style charmm command
-==========================
-
-angle_style charmm/intel command
-================================
-
-angle_style charmm/kk command
-=============================
-
-angle_style charmm/omp command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style charmm
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style charmm
- angle_coeff 1 300.0 107.0 50.0 3.0
-
-Description
-"""""""""""
-
-The *charmm* angle style uses the potential
-
-.. image:: Eqs/angle_charmm.jpg
- :align: center
-
-with an additional Urey_Bradley term based on the distance *r* between
-the 1st and 3rd atoms in the angle. K, theta0, Kub, and Rub are
-coefficients defined for each angle type.
-
-See :ref:`(MacKerell) <MacKerell>` for a description of the CHARMM force
-field.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy/radian^2)
-* theta0 (degrees)
-* K_ub (energy/distance^2)
-* r_ub (distance)
-
-Theta0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _MacKerell:
-
-
-
-**(MacKerell)** MacKerell, Bashford, Bellott, Dunbrack, Evanseck, Field,
-Fischer, Gao, Guo, Ha, et al, J Phys Chem, 102, 3586 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_class2.txt b/doc/_sources/angle_class2.txt
deleted file mode 100644
index 761543328..000000000
--- a/doc/_sources/angle_class2.txt
+++ /dev/null
@@ -1,139 +0,0 @@
-.. index:: angle_style class2
-
-angle_style class2 command
-==========================
-
-angle_style class2/omp command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style class2
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style class2
- angle_coeff * 75.0
- angle_coeff 1 bb 10.5872 1.0119 1.5228
- angle_coeff * ba 3.6551 24.895 1.0119 1.5228
-
-Description
-"""""""""""
-
-The *class2* angle style uses the potential
-
-.. image:: Eqs/angle_class2.jpg
- :align: center
-
-where Ea is the angle term, Ebb is a bond-bond term, and Eba is a
-bond-angle term. Theta0 is the equilibrium angle and r1 and r2 are
-the equilibrium bond lengths.
-
-See :ref:`(Sun) <Sun>` for a description of the COMPASS class2 force field.
-
-Coefficients for the Ea, Ebb, and Eba formulas must be defined for
-each angle type via the :doc:`angle_coeff <angle_coeff>` command as in
-the example above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands.
-
-These are the 4 coefficients for the Ea formula:
-
-* theta0 (degrees)
-* K2 (energy/radian^2)
-* K3 (energy/radian^3)
-* K4 (energy/radian^4)
-
-Theta0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of the various K are in per-radian.
-
-For the Ebb formula, each line in a :doc:`angle_coeff <angle_coeff>`
-command in the input script lists 4 coefficients, the first of which
-is "bb" to indicate they are BondBond coefficients. In a data file,
-these coefficients should be listed under a "BondBond Coeffs" heading
-and you must leave out the "bb", i.e. only list 3 coefficients after
-the angle type.
-
-* bb
-* M (energy/distance^2)
-* r1 (distance)
-* r2 (distance)
-
-For the Eba formula, each line in a :doc:`angle_coeff <angle_coeff>`
-command in the input script lists 5 coefficients, the first of which
-is "ba" to indicate they are BondAngle coefficients. In a data file,
-these coefficients should be listed under a "BondAngle Coeffs" heading
-and you must leave out the "ba", i.e. only list 4 coefficients after
-the angle type.
-
-* ba
-* N1 (energy/distance^2)
-* N2 (energy/distance^2)
-* r1 (distance)
-* r2 (distance)
-
-The theta0 value in the Eba formula is not specified, since it is the
-same value from the Ea formula.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the CLASS2
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Sun:
-
-
-
-**(Sun)** Sun, J Phys Chem B 102, 7338-7364 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_coeff.txt b/doc/_sources/angle_coeff.txt
deleted file mode 100644
index 8a619c14e..000000000
--- a/doc/_sources/angle_coeff.txt
+++ /dev/null
@@ -1,116 +0,0 @@
-.. index:: angle_coeff
-
-angle_coeff command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_coeff N args
-
-* N = angle type (see asterisk form below)
-* args = coefficients for one or more angle types
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_coeff 1 300.0 107.0
- angle_coeff * 5.0
- angle_coeff 2*10 5.0
-
-Description
-"""""""""""
-
-Specify the angle force field coefficients for one or more angle types.
-The number and meaning of the coefficients depends on the angle style.
-Angle coefficients can also be set in the data file read by the
-:doc:`read_data <read_data>` command or in a restart file.
-
-N can be specified in one of two ways. An explicit numeric value can
-be used, as in the 1st example above. Or a wild-card asterisk can be
-used to set the coefficients for multiple angle types. This takes the
-form "*" or "*n" or "n*" or "m*n". If N = the number of angle types,
-then an asterisk with no numeric values means all types from 1 to N. A
-leading asterisk means all types from 1 to n (inclusive). A trailing
-asterisk means all types from n to N (inclusive). A middle asterisk
-means all types from m to n (inclusive).
-
-Note that using an angle_coeff command can override a previous setting
-for the same angle type. For example, these commands set the coeffs
-for all angle types, then overwrite the coeffs for just angle type 2:
-
-.. parsed-literal::
-
- angle_coeff * 200.0 107.0 1.2
- angle_coeff 2 50.0 107.0
-
-A line in a data file that specifies angle coefficients uses the exact
-same format as the arguments of the angle_coeff command in an input
-script, except that wild-card asterisks should not be used since
-coefficients for all N types must be listed in the file. For example,
-under the "Angle Coeffs" section of a data file, the line that
-corresponds to the 1st example above would be listed as
-
-.. parsed-literal::
-
- 1 300.0 107.0
-
-The :doc:`angle_style class2 <angle_class2>` is an exception to this
-rule, in that an additional argument is used in the input script to
-allow specification of the cross-term coefficients. See its
-doc page for details.
-
-
-----------
-
-
-Here is an alphabetic list of angle styles defined in LAMMPS. Click on
-the style to display the formula it computes and coefficients
-specified by the associated :doc:`angle_coeff <angle_coeff>` command.
-
-Note that there are also additional angle styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the angle section of :ref:`this page <cmd_5>`.
-
-* :doc:`angle_style none <angle_none>` - turn off angle interactions
-* :doc:`angle_style hybrid <angle_hybrid>` - define multiple styles of angle interactions
-
-* :doc:`angle_style charmm <angle_charmm>` - CHARMM angle
-* :doc:`angle_style class2 <angle_class2>` - COMPASS (class 2) angle
-* :doc:`angle_style cosine <angle_cosine>` - cosine angle potential
-* :doc:`angle_style cosine/delta <angle_cosine_delta>` - difference of cosines angle potential
-* :doc:`angle_style cosine/periodic <angle_cosine_periodic>` - DREIDING angle
-* :doc:`angle_style cosine/squared <angle_cosine_squared>` - cosine squared angle potential
-* :doc:`angle_style harmonic <angle_harmonic>` - harmonic angle
-* :doc:`angle_style table <angle_table>` - tabulated by angle
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command must come after the simulation box is defined by a
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`, or
-:doc:`create_box <create_box>` command.
-
-An angle style must be defined before any angle coefficients are
-set, either in the input script or in a data file.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_style <angle_style>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_cosine.txt b/doc/_sources/angle_cosine.txt
deleted file mode 100644
index ef925b8d3..000000000
--- a/doc/_sources/angle_cosine.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-.. index:: angle_style cosine
-
-angle_style cosine command
-==========================
-
-angle_style cosine/omp command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style cosine
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style cosine
- angle_coeff * 75.0
-
-Description
-"""""""""""
-
-The *cosine* angle style uses the potential
-
-.. image:: Eqs/angle_cosine.jpg
- :align: center
-
-where K is defined for each angle type.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_cosine_delta.txt b/doc/_sources/angle_cosine_delta.txt
deleted file mode 100644
index 7329ffff1..000000000
--- a/doc/_sources/angle_cosine_delta.txt
+++ /dev/null
@@ -1,90 +0,0 @@
-.. index:: angle_style cosine/delta
-
-angle_style cosine/delta command
-================================
-
-angle_style cosine/delta/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style cosine/delta
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style cosine/delta
- angle_coeff 2*4 75.0 100.0
-
-Description
-"""""""""""
-
-The *cosine/delta* angle style uses the potential
-
-.. image:: Eqs/angle_cosine_delta.jpg
- :align: center
-
-where theta0 is the equilibrium value of the angle, and K is a
-prefactor. Note that the usual 1/2 factor is included in K.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-* theta0 (degrees)
-
-Theta0 is specified in degrees, but LAMMPS converts it to radians
-internally.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`, :doc:`angle_style cosine/squared <angle_cosine_squared>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_cosine_periodic.txt b/doc/_sources/angle_cosine_periodic.txt
deleted file mode 100644
index 8faddb911..000000000
--- a/doc/_sources/angle_cosine_periodic.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-.. index:: angle_style cosine/periodic
-
-angle_style cosine/periodic command
-===================================
-
-angle_style cosine/periodic/omp command
-=======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style cosine/periodic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style cosine/periodic
- angle_coeff * 75.0 1 6
-
-Description
-"""""""""""
-
-The *cosine/periodic* angle style uses the following potential, which
-is commonly used in the :ref:`DREIDING <howto_4>` force
-field, particularly for organometallic systems where *n* = 4 might be
-used for an octahedral complex and *n* = 3 might be used for a
-trigonal center:
-
-.. image:: Eqs/angle_cosine_periodic.jpg
- :align: center
-
-where C, B and n are coefficients defined for each angle type.
-
-See :ref:`(Mayo) <Mayo>` for a description of the DREIDING force field
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* C (energy)
-* B = 1 or -1
-* n = 1, 2, 3, 4, 5 or 6 for periodicity
-
-Note that the prefactor C is specified and not the overall force
-constant K = C / n^2. When B = 1, it leads to a minimum for the
-linear geometry. When B = -1, it leads to a maximum for the linear
-geometry.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mayo:
-
-
-
-**(Mayo)** Mayo, Olfason, Goddard III, J Phys Chem, 94, 8897-8909
-(1990).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_cosine_shift.txt b/doc/_sources/angle_cosine_shift.txt
deleted file mode 100644
index ee65f69ea..000000000
--- a/doc/_sources/angle_cosine_shift.txt
+++ /dev/null
@@ -1,90 +0,0 @@
-.. index:: angle_style cosine/shift
-
-angle_style cosine/shift command
-================================
-
-angle_style cosine/shift/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style cosine/shift
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style cosine/shift
- angle_coeff * 10.0 45.0
-
-Description
-"""""""""""
-
-The *cosine/shift* angle style uses the potential
-
-.. image:: Eqs/angle_cosine_shift.jpg
- :align: center
-
-where theta0 is the equilibrium angle. The potential is bounded
-between -Umin and zero. In the neighborhood of the minimum E=- Umin +
-Umin/4(theta-theta0)^2 hence the spring constant is umin/2.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* umin (energy)
-* theta (angle)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`,
-:doc:`angle_cosineshiftexp <angle_cosineshiftexp>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_cosine_shift_exp.txt b/doc/_sources/angle_cosine_shift_exp.txt
deleted file mode 100644
index 7d22bcc15..000000000
--- a/doc/_sources/angle_cosine_shift_exp.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-.. index:: angle_style cosine/shift/exp
-
-angle_style cosine/shift/exp command
-====================================
-
-angle_style cosine/shift/exp/omp command
-========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style cosine/shift/exp
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style cosine/shift/exp
- angle_coeff * 10.0 45.0 2.0
-
-Description
-"""""""""""
-
-The *cosine/shift/exp* angle style uses the potential
-
-.. image:: Eqs/angle_cosine_shift_exp.jpg
- :align: center
-
-where Umin, theta, and a are defined for each angle type.
-
-The potential is bounded between [-Umin:0] and the minimum is
-located at the angle theta0. The a parameter can be both positive or
-negative and is used to control the spring constant at the
-equilibrium.
-
-The spring constant is given by k = A exp(A) Umin / [2 (Exp(a)-1)].
-For a > 3, k/Umin = a/2 to better than 5% relative error. For negative
-values of the a parameter, the spring constant is essentially zero,
-and anharmonic terms takes over. The potential is furthermore well
-behaved in the limit a -> 0, where it has been implemented to linear
-order in a for a < 0.001. In this limit the potential reduces to the
-cosineshifted potential.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* umin (energy)
-* theta (angle)
-* A (real number)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`,
-:doc:`angle_cosineshift <angle_cosineshift>`,
-:doc:`dihedral_cosineshift <dihedral_cosineshift>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_cosine_squared.txt b/doc/_sources/angle_cosine_squared.txt
deleted file mode 100644
index 55f692655..000000000
--- a/doc/_sources/angle_cosine_squared.txt
+++ /dev/null
@@ -1,90 +0,0 @@
-.. index:: angle_style cosine/squared
-
-angle_style cosine/squared command
-==================================
-
-angle_style cosine/squared/omp command
-======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style cosine/squared
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style cosine/squared
- angle_coeff 2*4 75.0 100.0
-
-Description
-"""""""""""
-
-The *cosine/squared* angle style uses the potential
-
-.. image:: Eqs/angle_cosine_squared.jpg
- :align: center
-
-where theta0 is the equilibrium value of the angle, and K is a
-prefactor. Note that the usual 1/2 factor is included in K.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-* theta0 (degrees)
-
-Theta0 is specified in degrees, but LAMMPS converts it to radians
-internally.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_dipole.txt b/doc/_sources/angle_dipole.txt
deleted file mode 100644
index bf01e7926..000000000
--- a/doc/_sources/angle_dipole.txt
+++ /dev/null
@@ -1,152 +0,0 @@
-.. index:: angle_style dipole
-
-angle_style dipole command
-==========================
-
-angle_style dipole/omp command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style dipole
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style dipole
- angle_coeff 6 2.1 180.0
-
-Description
-"""""""""""
-
-The *dipole* angle style is used to control the orientation of a dipolar
-atom within a molecule :ref:`(Orsi) <Orsi>`. Specifically, the *dipole* angle
-style restrains the orientation of a point dipole mu_j (embedded in atom
-'j') with respect to a reference (bond) vector r_ij = r_i - r_j, where 'i'
-is another atom of the same molecule (typically, 'i' and 'j' are also
-covalently bonded).
-
-It is convenient to define an angle gamma between the 'free' vector mu_j
-and the reference (bond) vector r_ij:
-
-.. image:: Eqs/angle_dipole_gamma.jpg
- :align: center
-
-The *dipole* angle style uses the potential:
-
-.. image:: Eqs/angle_dipole_potential.jpg
- :align: center
-
-where K is a rigidity constant and gamma0 is an equilibrium (reference)
-angle.
-
-The torque on the dipole can be obtained by differentiating the
-potential using the 'chain rule' as in appendix C.3 of
-:ref:`(Allen) <Allen>`:
-
-.. image:: Eqs/angle_dipole_torque.jpg
- :align: center
-
-Example: if gamma0 is set to 0 degrees, the torque generated by
-the potential will tend to align the dipole along the reference
-direction defined by the (bond) vector r_ij (in other words, mu_j is
-restrained to point towards atom 'i').
-
-The dipolar torque T_j must be counterbalanced in order to conserve
-the local angular momentum. This is achieved via an additional force
-couple generating a torque equivalent to the opposite of T_j:
-
-.. image:: Eqs/angle_dipole_couple.jpg
- :align: center
-
-where F_i and F_j are applied on atoms i and j, respectively.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-* gamma0 (degrees)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_6>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <2_3>`
-section for more info on packages.
-
-.. note::
-
- In the "Angles" section of the data file, the atom ID 'j'
- corresponding to the dipole to restrain must come before the atom ID
- of the reference atom 'i'. A third atom ID 'k' must also be provided,
- although 'k' is just a 'dummy' atom which can be any atom; it may be
- useful to choose a convention (e.g., 'k'='i') and adhere to it. For
- example, if ID=1 for the dipolar atom to restrain, and ID=2 for the
- reference atom, the corresponding line in the "Angles" section of the
- data file would read: X X 1 2 2
-
-The "newton" command for intramolecular interactions must be "on"
-(which is the default).
-
-This angle style should not be used with SHAKE.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`, :doc:`angle_hybrid <angle_hybrid>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Orsi:
-
-
-
-**(Orsi)** Orsi & Essex, The ELBA force field for coarse-grain modeling of
-lipid membranes, PloS ONE 6(12): e28637, 2011.
-
-.. _Allen:
-
-
-
-**(Allen)** Allen & Tildesley, Computer Simulation of Liquids,
-Clarendon Press, Oxford, 1987.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_fourier.txt b/doc/_sources/angle_fourier.txt
deleted file mode 100644
index fefde623d..000000000
--- a/doc/_sources/angle_fourier.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-.. index:: angle_style fourier
-
-angle_style fourier command
-===========================
-
-angle_style fourier/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style fourier
-
-Examples
-""""""""
-
-angle_style fourier
-angle_coeff 75.0 1.0 1.0 1.0
-
-Description
-"""""""""""
-
-The *fourier* angle style uses the potential
-
-.. image:: Eqs/angle_fourier.jpg
- :align: center
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-* C0 (real)
-* C1 (real)
-* C2 (real)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER_MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_fourier_simple.txt b/doc/_sources/angle_fourier_simple.txt
deleted file mode 100644
index 476214f23..000000000
--- a/doc/_sources/angle_fourier_simple.txt
+++ /dev/null
@@ -1,84 +0,0 @@
-.. index:: angle_style fourier/simple
-
-angle_style fourier/simple command
-==================================
-
-angle_style fourier/simple/omp command
-======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style fourier/simple
-
-Examples
-""""""""
-
-angle_style fourier/simple
-angle_coeff 100.0 -1.0 1.0
-
-Description
-"""""""""""
-
-The *fourier/simple* angle style uses the potential
-
-.. image:: Eqs/angle_fourier_simple.jpg
- :align: center
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-* c (real)
-* n (real)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER_MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_harmonic.txt b/doc/_sources/angle_harmonic.txt
deleted file mode 100644
index e6cf99535..000000000
--- a/doc/_sources/angle_harmonic.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-.. index:: angle_style harmonic
-
-angle_style harmonic command
-============================
-
-angle_style harmonic/intel command
-==================================
-
-angle_style harmonic/kk command
-===============================
-
-angle_style harmonic/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style harmonic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style harmonic
- angle_coeff 1 300.0 107.0
-
-Description
-"""""""""""
-
-The *harmonic* angle style uses the potential
-
-.. image:: Eqs/angle_harmonic.jpg
- :align: center
-
-where theta0 is the equilibrium value of the angle, and K is a
-prefactor. Note that the usual 1/2 factor is included in K.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy/radian^2)
-* theta0 (degrees)
-
-Theta0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_hybrid.txt b/doc/_sources/angle_hybrid.txt
deleted file mode 100644
index bedaa512e..000000000
--- a/doc/_sources/angle_hybrid.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-.. index:: angle_style hybrid
-
-angle_style hybrid command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style hybrid style1 style2 ...
-
-* style1,style2 = list of one or more angle styles
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style hybrid harmonic cosine
- angle_coeff 1 harmonic 80.0 30.0
- angle_coeff 2* cosine 50.0
-
-Description
-"""""""""""
-
-The *hybrid* style enables the use of multiple angle styles in one
-simulation. An angle style is assigned to each angle type. For
-example, angles in a polymer flow (of angle type 1) could be computed
-with a *harmonic* potential and angles in the wall boundary (of angle
-type 2) could be computed with a *cosine* potential. The assignment
-of angle type to style is made via the :doc:`angle_coeff <angle_coeff>`
-command or in the data file.
-
-In the angle_coeff commands, the name of an angle style must be added
-after the angle type, with the remaining coefficients being those
-appropriate to that style. In the example above, the 2 angle_coeff
-commands set angles of angle type 1 to be computed with a *harmonic*
-potential with coefficients 80.0, 30.0 for K, theta0. All other angle
-types (2-N) are computed with a *cosine* potential with coefficient
-50.0 for K.
-
-If angle coefficients are specified in the data file read via the
-:doc:`read_data <read_data>` command, then the same rule applies.
-E.g. "harmonic" or "cosine", must be added after the angle type, for each
-line in the "Angle Coeffs" section, e.g.
-
-.. parsed-literal::
-
- Angle Coeffs
-
-.. parsed-literal::
-
- 1 harmonic 80.0 30.0
- 2 cosine 50.0
- ...
-
-If *class2* is one of the angle hybrid styles, the same rule holds for
-specifying additional BondBond (and BondAngle) coefficients either via
-the input script or in the data file. I.e. *class2* must be added to
-each line after the angle type. For lines in the BondBond (or
-BondAngle) section of the data file for angle types that are not
-*class2*, you must use an angle style of *skip* as a placeholder, e.g.
-
-.. parsed-literal::
-
- BondBond Coeffs
-
-.. parsed-literal::
-
- 1 skip
- 2 class2 3.6512 1.0119 1.0119
- ...
-
-Note that it is not necessary to use the angle style *skip* in the
-input script, since BondBond (or BondAngle) coefficients need not be
-specified at all for angle types that are not *class2*.
-
-An angle style of *none* with no additional coefficients can be used
-in place of an angle style, either in a input script angle_coeff
-command or in the data file, if you desire to turn off interactions
-for specific angle types.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Unlike other angle styles, the hybrid angle style does not store angle
-coefficient info for individual sub-styles in a :doc:`binary restart files <restart>`. Thus when retarting a simulation from a restart
-file, you need to re-specify angle_coeff commands.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_none.txt b/doc/_sources/angle_none.txt
deleted file mode 100644
index a53a50ac0..000000000
--- a/doc/_sources/angle_none.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-.. index:: angle_style none
-
-angle_style none command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style none
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style none
-
-Description
-"""""""""""
-
-Using an angle style of none means angle forces and energies are not
-computed, even if triplets of angle atoms were listed in the data file
-read by the :doc:`read_data <read_data>` command.
-
-See the :doc:`angle_style zero <angle_zero>` command for a way to
-calculate angle statistics, but compute no angle interactions.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_style zero <angle_zero>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_quartic.txt b/doc/_sources/angle_quartic.txt
deleted file mode 100644
index 67ccdfc16..000000000
--- a/doc/_sources/angle_quartic.txt
+++ /dev/null
@@ -1,93 +0,0 @@
-.. index:: angle_style quartic
-
-angle_style quartic command
-===========================
-
-angle_style quartic/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style quartic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style quartic
- angle_coeff 1 129.1948 56.8726 -25.9442 -14.2221
-
-Description
-"""""""""""
-
-The *quartic* angle style uses the potential
-
-.. image:: Eqs/angle_quartic.jpg
- :align: center
-
-where theta0 is the equilibrium value of the angle, and K is a
-prefactor. Note that the usual 1/2 factor is included in K.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* theta0 (degrees)
-* K2 (energy/radian^2)
-* K3 (energy/radian^3)
-* K4 (energy/radian^4)
-
-Theta0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER_MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_sdk.txt b/doc/_sources/angle_sdk.txt
deleted file mode 100644
index bec395863..000000000
--- a/doc/_sources/angle_sdk.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-.. index:: angle_style sdk
-
-angle_style sdk command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style sdk
-
-.. parsed-literal::
-
- angle_style sdk/omp
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style sdk
- angle_coeff 1 300.0 107.0
-
-Description
-"""""""""""
-
-The *sdk* angle style is a combination of the harmonic angle potential,
-
-.. image:: Eqs/angle_harmonic.jpg
- :align: center
-
-where theta0 is the equilibrium value of the angle and K a prefactor,
-with the *repulsive* part of the non-bonded *lj/sdk* pair style
-between the atoms 1 and 3. This angle potential is intended for
-coarse grained MD simulations with the CMM parametrization using the
-:doc:`pair_style lj/sdk <pair_sdk>`. Relative to the pair_style
-*lj/sdk*, however, the energy is shifted by *epsilon*, to avoid sudden
-jumps. Note that the usual 1/2 factor is included in K.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above:
-
-* K (energy/radian^2)
-* theta0 (degrees)
-
-Theta0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-The also required *lj/sdk* parameters will be extracted automatically
-from the pair_style.
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER-CG-CMM package. See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`, :doc:`angle_style harmonic <angle_harmonic>`, :doc:`pair_style lj/sdk <pair_sdk>`,
-:doc:`pair_style lj/sdk/coul/long <pair_sdk>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_style.txt b/doc/_sources/angle_style.txt
deleted file mode 100644
index c498617a1..000000000
--- a/doc/_sources/angle_style.txt
+++ /dev/null
@@ -1,113 +0,0 @@
-.. index:: angle_style
-
-angle_style command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style style
-
-* style = *none* or *hybrid* or *charmm* or *class2* or *cosine* or *cosine/squared* or *harmonic*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style harmonic
- angle_style charmm
- angle_style hybrid harmonic cosine
-
-Description
-"""""""""""
-
-Set the formula(s) LAMMPS uses to compute angle interactions between
-triplets of atoms, which remain in force for the duration of the
-simulation. The list of angle triplets is read in by a
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>` command
-from a data or restart file.
-
-Hybrid models where angles are computed using different angle
-potentials can be setup using the *hybrid* angle style.
-
-The coefficients associated with a angle style can be specified in a
-data or restart file or via the :doc:`angle_coeff <angle_coeff>` command.
-
-All angle potentials store their coefficient data in binary restart
-files which means angle_style and :doc:`angle_coeff <angle_coeff>`
-commands do not need to be re-specified in an input script that
-restarts a simulation. See the :doc:`read_restart <read_restart>`
-command for details on how to do this. The one exception is that
-angle_style *hybrid* only stores the list of sub-styles in the restart
-file; angle coefficients need to be re-specified.
-
-.. note::
-
- When both an angle and pair style is defined, the
- :doc:`special_bonds <special_bonds>` command often needs to be used to
- turn off (or weight) the pairwise interaction that would otherwise
- exist between 3 bonded atoms.
-
-In the formulas listed for each angle style, *theta* is the angle
-between the 3 atoms in the angle.
-
-
-----------
-
-
-Here is an alphabetic list of angle styles defined in LAMMPS. Click on
-the style to display the formula it computes and coefficients
-specified by the associated :doc:`angle_coeff <angle_coeff>` command.
-
-Note that there are also additional angle styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the angle section of :ref:`this page <cmd_5>`.
-
-* :doc:`angle_style none <angle_none>` - turn off angle interactions
-* :doc:`angle_style zero <angle_zero>` - topology but no interactions
-* :doc:`angle_style hybrid <angle_hybrid>` - define multiple styles of angle interactions
-
-* :doc:`angle_style charmm <angle_charmm>` - CHARMM angle
-* :doc:`angle_style class2 <angle_class2>` - COMPASS (class 2) angle
-* :doc:`angle_style cosine <angle_cosine>` - cosine angle potential
-* :doc:`angle_style cosine/delta <angle_cosine_delta>` - difference of cosines angle potential
-* :doc:`angle_style cosine/periodic <angle_cosine_periodic>` - DREIDING angle
-* :doc:`angle_style cosine/squared <angle_cosine_squared>` - cosine squared angle potential
-* :doc:`angle_style harmonic <angle_harmonic>` - harmonic angle
-* :doc:`angle_style table <angle_table>` - tabulated by angle
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Angle styles can only be set for atom_styles that allow angles to be
-defined.
-
-Most angle styles are part of the MOLECULE package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-The doc pages for individual bond potentials tell if it is part of a
-package.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- angle_style none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_table.txt b/doc/_sources/angle_table.txt
deleted file mode 100644
index 5c958b79c..000000000
--- a/doc/_sources/angle_table.txt
+++ /dev/null
@@ -1,175 +0,0 @@
-.. index:: angle_style table
-
-angle_style table command
-=========================
-
-angle_style table/omp command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style table style N
-
-* style = *linear* or *spline* = method of interpolation
-* N = use N values in table
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style table linear 1000
- angle_coeff 3 file.table ENTRY1
-
-Description
-"""""""""""
-
-Style *table* creates interpolation tables of length *N* from angle
-potential and derivative values listed in a file(s) as a function of
-angle The files are read by the :doc:`angle_coeff <angle_coeff>`
-command.
-
-The interpolation tables are created by fitting cubic splines to the
-file values and interpolating energy and derivative values at each of
-*N* angles. During a simulation, these tables are used to interpolate
-energy and force values on individual atoms as needed. The
-interpolation is done in one of 2 styles: *linear* or *spline*.
-
-For the *linear* style, the angle is used to find 2 surrounding table
-values from which an energy or its derivative is computed by linear
-interpolation.
-
-For the *spline* style, a cubic spline coefficients are computed and
-stored at each of the *N* values in the table. The angle is used to
-find the appropriate set of coefficients which are used to evaluate a
-cubic polynomial which computes the energy or derivative.
-
-The following coefficients must be defined for each angle type via the
-:doc:`angle_coeff <angle_coeff>` command as in the example above.
-
-* filename
-* keyword
-
-The filename specifies a file containing tabulated energy and
-derivative values. The keyword specifies a section of the file. The
-format of this file is described below.
-
-
-----------
-
-
-The format of a tabulated file is as follows (without the
-parenthesized comments):
-
-.. parsed-literal::
-
- # Angle potential for harmonic (one or more comment or blank lines)
-
-.. parsed-literal::
-
- HAM (keyword is the first text on line)
- N 181 FP 0 0 EQ 90.0 (N, FP, EQ parameters)
- (blank line)
- N 181 FP 0 0 (N, FP parameters)
- 1 0.0 200.5 2.5 (index, angle, energy, derivative)
- 2 1.0 198.0 2.5
- ...
- 181 180.0 0.0 0.0
-
-A section begins with a non-blank line whose 1st character is not a
-"#"; blank lines or lines starting with "#" can be used as comments
-between sections. The first line begins with a keyword which
-identifies the section. The line can contain additional text, but the
-initial text must match the argument specified in the
-:doc:`angle_coeff <angle_coeff>` command. The next line lists (in any
-order) one or more parameters for the table. Each parameter is a
-keyword followed by one or more numeric values.
-
-The parameter "N" is required and its value is the number of table
-entries that follow. Note that this may be different than the *N*
-specified in the :doc:`angle_style table <angle_style>` command. Let
-Ntable = *N* in the angle_style command, and Nfile = "N" in the
-tabulated file. What LAMMPS does is a preliminary interpolation by
-creating splines using the Nfile tabulated values as nodal points. It
-uses these to interpolate as needed to generate energy and derivative
-values at Ntable different points. The resulting tables of length
-Ntable are then used as described above, when computing energy and
-force for individual angles and their atoms. This means that if you
-want the interpolation tables of length Ntable to match exactly what
-is in the tabulated file (with effectively no preliminary
-interpolation), you should set Ntable = Nfile.
-
-The "FP" parameter is optional. If used, it is followed by two values
-fplo and fphi, which are the 2nd derivatives at the innermost and
-outermost angle settings. These values are needed by the spline
-construction routines. If not specified by the "FP" parameter, they
-are estimated (less accurately) by the first two and last two
-derivative values in the table.
-
-The "EQ" parameter is also optional. If used, it is followed by a the
-equilibrium angle value, which is used, for example, by the :doc:`fix shake <fix_shake>` command. If not used, the equilibrium angle is
-set to 180.0.
-
-Following a blank line, the next N lines list the tabulated values.
-On each line, the 1st value is the index from 1 to N, the 2nd value is
-the angle value (in degrees), the 3rd value is the energy (in energy
-units), and the 4th is -dE/d(theta) (also in energy units). The 3rd
-term is the energy of the 3-atom configuration for the specified
-angle. The last term is the derivative of the energy with respect to
-the angle (in degrees, not radians). Thus the units of the last term
-are still energy, not force. The angle values must increase from one
-line to the next. The angle values must also begin with 0.0 and end
-with 180.0, i.e. span the full range of possible angles.
-
-Note that one file can contain many sections, each with a tabulated
-potential. LAMMPS reads the file section by section until it finds
-one that matches the specified keyword.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_coeff <angle_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/angle_zero.txt b/doc/_sources/angle_zero.txt
deleted file mode 100644
index 35bbd1494..000000000
--- a/doc/_sources/angle_zero.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-.. index:: angle_style zero
-
-angle_style zero command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- angle_style zero *nocoeff*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- angle_style zero
- angle_style zero nocoeff
- angle_coeff *
- angle_coeff * 120.0
-
-Description
-"""""""""""
-
-Using an angle style of zero means angle forces and energies are not
-computed, but the geometry of angle triplets is still accessible to
-other commands.
-
-As an example, the :doc:`compute angle/local <compute_angle_local>`
-command can be used to compute the theta values for the list of
-triplets of angle atoms listed in the data file read by the
-:doc:`read_data <read_data>` command. If no angle style is defined,
-this command cannot be used.
-
-The optional *nocoeff* flag allows to read data files with AngleCoeff
-section for any angle style. Similarly, any angle_coeff commands
-will only be checked for the angle type number and the rest ignored.
-
-Note that the :doc:`angle_coeff <angle_coeff>` command must be used for
-all angle types. If specified, there can be only one value, which is
-going to be used to assign an equilibrium angle, e.g. for use with
-:doc:`fix shake <fix_shake>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`angle_style none <angle_none>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/atom_modify.txt b/doc/_sources/atom_modify.txt
deleted file mode 100644
index 63c7e6c44..000000000
--- a/doc/_sources/atom_modify.txt
+++ /dev/null
@@ -1,186 +0,0 @@
-.. index:: atom_modify
-
-atom_modify command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- atom_modify keyword values ...
-
-* one or more keyword/value pairs may be appended
-* keyword = *id* or *map* or *first* or *sort*
-.. parsed-literal::
-
- *id* value = *yes* or *no*
- *map* value = *array* or *hash*
- *first* value = group-ID = group whose atoms will appear first in internal atom lists
- *sort* values = Nfreq binsize
- Nfreq = sort atoms spatially every this many time steps
- binsize = bin size for spatial sorting (distance units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- atom_modify map hash
- atom_modify map array sort 10000 2.0
- atom_modify first colloid
-
-Description
-"""""""""""
-
-Modify certain attributes of atoms defined and stored within LAMMPS,
-in addition to what is specified by the :doc:`atom_style <atom_style>`
-command. The *id* and *map* keywords must be specified before a
-simulation box is defined; other keywords can be specified any time.
-
-The *id* keyword determines whether non-zero atom IDs can be assigned
-to each atom. If the value is *yes*, which is the default, IDs are
-assigned, whether you use the :doc:`create atoms <create_atoms>` or
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands to initialize atoms. If the value is *no* the IDs for all
-atoms are assumed to be 0.
-
-If atom IDs are used, they must all be positive integers. They should
-also be unique, though LAMMPS does not check for this. Typically they
-should also be consecutively numbered (from 1 to Natoms), though this
-is not required. Molecular :doc:`atom styles <atom_style>` are those
-that store bond topology information (styles bond, angle, molecular,
-full). These styles require atom IDs since the IDs are used to encode
-the topology. Some other LAMMPS commands also require the use of atom
-IDs. E.g. some many-body pair styles use them to avoid double
-computation of the I-J interaction between two atoms.
-
-The only reason not to use atom IDs is if you are running an atomic
-simulation so large that IDs cannot be uniquely assigned. For a
-default LAMMPS build this limit is 2^31 or about 2 billion atoms.
-However, even in this case, you can use 64-bit atom IDs, allowing 2^63
-or about 9e18 atoms, if you build LAMMPS with the - DLAMMPS_BIGBIG
-switch. This is described in :ref:`Section 2.2 <start_2>`
-of the manual. If atom IDs are not used, they must be specified as 0
-for all atoms, e.g. in a data or restart file.
-
-The *map* keyword determines how atom ID lookup is done for molecular
-atom styles. Lookups are performed by bond (angle, etc) routines in
-LAMMPS to find the local atom index associated with a global atom ID.
-
-When the *array* value is used, each processor stores a lookup table
-of length N, where N is the largest atom ID in the system. This is a
-fast, simple method for many simulations, but requires too much memory
-for large simulations. The *hash* value uses a hash table to perform
-the lookups. This can be slightly slower than the *array* method, but
-its memory cost is proportional to the number of atoms owned by a
-processor, i.e. N/P when N is the total number of atoms in the system
-and P is the number of processors.
-
-When this setting is not specified in your input script, LAMMPS
-creates a map, if one is needed, as an array or hash. See the
-discussion of default values below for how LAMMPS chooses which kind
-of map to build. Note that atomic systems do not normally need to
-create a map. However, even in this case some LAMMPS commands will
-create a map to find atoms (and then destroy it), or require a
-permanent map. An example of the former is the :doc:`velocity loop all <velocity>` command, which uses a map when looping over all
-atoms and insuring the same velocity values are assigned to an atom
-ID, no matter which processor owns it.
-
-The *first* keyword allows a :doc:`group <group>` to be specified whose
-atoms will be maintained as the first atoms in each processor's list
-of owned atoms. This in only useful when the specified group is a
-small fraction of all the atoms, and there are other operations LAMMPS
-is performing that will be sped-up significantly by being able to loop
-over the smaller set of atoms. Otherwise the reordering required by
-this option will be a net slow-down. The :doc:`neigh_modify include <neigh_modify>` and :doc:`comm_modify group <comm_modify>`
-commands are two examples of commands that require this setting to
-work efficiently. Several :doc:`fixes <fix>`, most notably time
-integration fixes like :doc:`fix nve <fix_nve>`, also take advantage of
-this setting if the group they operate on is the group specified by
-this command. Note that specifying "all" as the group-ID effectively
-turns off the *first* option.
-
-It is OK to use the *first* keyword with a group that has not yet been
-defined, e.g. to use the atom_modify first command at the beginning of
-your input script. LAMMPS does not use the group until a simullation
-is run.
-
-The *sort* keyword turns on a spatial sorting or reordering of atoms
-within each processor's sub-domain every *Nfreq* timesteps. If
-*Nfreq* is set to 0, then sorting is turned off. Sorting can improve
-cache performance and thus speed-up a LAMMPS simulation, as discussed
-in a paper by :ref:`(Meloni) <Meloni>`. Its efficacy depends on the problem
-size (atoms/processor), how quickly the system becomes disordered, and
-various other factors. As a general rule, sorting is typically more
-effective at speeding up simulations of liquids as opposed to solids.
-In tests we have done, the speed-up can range from zero to 3-4x.
-
-Reordering is peformed every *Nfreq* timesteps during a dynamics run
-or iterations during a minimization. More precisely, reordering
-occurs at the first reneighboring that occurs after the target
-timestep. The reordering is performed locally by each processor,
-using bins of the specified *binsize*. If *binsize* is set to 0.0,
-then a binsize equal to half the :doc:`neighbor <neighbor>` cutoff
-distance (force cutoff plus skin distance) is used, which is a
-reasonable value. After the atoms have been binned, they are
-reordered so that atoms in the same bin are adjacent to each other in
-the processor's 1d list of atoms.
-
-The goal of this procedure is for atoms to put atoms close to each
-other in the processor's one-dimensional list of atoms that are also
-near to each other spatially. This can improve cache performance when
-pairwise intereractions and neighbor lists are computed. Note that if
-bins are too small, there will be few atoms/bin. Likewise if bins are
-too large, there will be many atoms/bin. In both cases, the goal of
-cache locality will be undermined.
-
-.. note::
-
- Running a simulation with sorting on versus off should not
- change the simulation results in a statistical sense. However, a
- different ordering will induce round-off differences, which will lead
- to diverging trajectories over time when comparing two simluations.
- Various commands, particularly those which use random numbers
- (e.g. :doc:`velocity create <velocity>`, and :doc:`fix langevin <fix_langevin>`), may generate (statistically identical)
- results which depend on the order in which atoms are processed. The
- order of atoms in a :doc:`dump <dump>` file will also typically change
- if sorting is enabled.
-
-Restrictions
-""""""""""""
-
-
-The *first* and *sort* options cannot be used together. Since sorting
-is on by default, it will be turned off if the *first* keyword is
-used with a group-ID that is not "all".
-
-**Related commands:** none
-
-Default
-"""""""
-
-By default, *id* is yes. By default, atomic systems (no bond topology
-info) do not use a map. For molecular systems (with bond topology
-info), a map is used. The default map style is array if no atom ID is
-larger than 1 million, otherwise the default is hash. By default, a
-"first" group is not defined. By default, sorting is enabled with a
-frequency of 1000 and a binsize of 0.0, which means the neighbor
-cutoff will be used to set the bin size.
-
-
-----------
-
-
-.. _Meloni:
-
-
-
-**(Meloni)** Meloni, Rosati and Colombo, J Chem Phys, 126, 121102 (2007).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/atom_style.txt b/doc/_sources/atom_style.txt
deleted file mode 100644
index 3c285a726..000000000
--- a/doc/_sources/atom_style.txt
+++ /dev/null
@@ -1,336 +0,0 @@
-.. index:: atom_style
-
-atom_style command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- atom_style style args
-
-* style = *angle* or *atomic* or *body* or *bond* or *charge* or *dipole* or *dpd* or *electron* or *ellipsoid* or *full* or *line* or *meso* or *molecular* or *peri* or *smd* or *sphere* or *tri* or *template* or *hybrid*
-.. parsed-literal::
-
- args = none for any style except the following
- *body* args = bstyle bstyle-args
- bstyle = style of body particles
- bstyle-args = additional arguments specific to the bstyle
- see the :doc:`body <body>` doc page for details
- *template* args = template-ID
- template-ID = ID of molecule template specified in a separate :doc:`molecule <molecule>` command
- *hybrid* args = list of one or more sub-styles, each with their args
-
-* accelerated styles (with same args) = *angle/cuda* or *angle/kk* or *atomic/cuda* or *atomic/kk* or *bond/kk* or *charge/cuda* or *charge/kk* or *full/cuda* or *full/kk* or *molecular/kk*
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- atom_style atomic
- atom_style bond
- atom_style full
- atom_style full/cuda
- atom_style body nparticle 2 10
- atom_style hybrid charge bond
- atom_style hybrid charge body nparticle 2 5
- atom_style template myMols
-
-Description
-"""""""""""
-
-Define what style of atoms to use in a simulation. This determines
-what attributes are associated with the atoms. This command must be
-used before a simulation is setup via a :doc:`read_data <read_data>`,
-:doc:`read_restart <read_restart>`, or :doc:`create_box <create_box>`
-command.
-
-.. note::
-
- Many of the atom styles discussed here are only enabled if
- LAMMPS was built with a specific package, as listed below in the
- Restrictions section.
-
-Once a style is assigned, it cannot be changed, so use a style general
-enough to encompass all attributes. E.g. with style *bond*, angular
-terms cannot be used or added later to the model. It is OK to use a
-style more general than needed, though it may be slightly inefficient.
-
-The choice of style affects what quantities are stored by each atom,
-what quantities are communicated between processors to enable forces
-to be computed, and what quantities are listed in the data file read
-by the :doc:`read_data <read_data>` command.
-
-These are the additional attributes of each style and the typical
-kinds of physical systems they are used to model. All styles store
-coordinates, velocities, atom IDs and types. See the
-:doc:`read_data <read_data>`, :doc:`create_atoms <create_atoms>`, and
-:doc:`set <set>` commands for info on how to set these various
-quantities.
-
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *angle* | bonds and angles | bead-spring polymers with stiffness |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *atomic* | only the default values | coarse-grain liquids, solids, metals |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *body* | mass, inertia moments, quaternion, angular momentum | arbitrary bodies |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *bond* | bonds | bead-spring polymers |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *charge* | charge | atomic system with charges |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *dipole* | charge and dipole moment | system with dipolar particles |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *dpd* | internal temperature and internal energies | DPD particles |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *electron* | charge and spin and eradius | electronic force field |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *ellipsoid* | shape, quaternion, angular momentum | aspherical particles |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *full* | molecular + charge | bio-molecules |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *line* | end points, angular velocity | rigid bodies |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *meso* | rho, e, cv | SPH particles |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *molecular* | bonds, angles, dihedrals, impropers | uncharged molecules |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *peri* | mass, volume | mesocopic Peridynamic models |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *smd* | volume, kernel diameter, contact radius, mass | solid and fluid SPH particles |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *sphere* | diameter, mass, angular velocity | granular models |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *template* | template index, template atom | small molecules with fixed topology |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *tri* | corner points, angular momentum | rigid bodies |
-+--------------+-----------------------------------------------------+--------------------------------------+
-| *wavepacket* | charge, spin, eradius, etag, cs_re, cs_im | AWPMD |
-+--------------+-----------------------------------------------------+--------------------------------------+
-
-.. note::
-
- It is possible to add some attributes, such as a molecule ID, to
- atom styles that do not have them via the :doc:`fix property/atom <fix_property_atom>` command. This command also
- allows new custom attributes consisting of extra integer or
- floating-point values to be added to atoms. See the :doc:`fix property/atom <fix_property_atom>` doc page for examples of cases
- where this is useful and details on how to initialize, access, and
- output the custom values.
-
-All of the above styles define point particles, except the *sphere*,
-*ellipsoid*, *electron*, *peri*, *wavepacket*, *line*, *tri*, and
-*body* styles, which define finite-size particles. See :ref:`Section_howto 14 <howto_14>` for an overview of using finite-size
-particle models with LAMMPS.
-
-All of the point-particle styles assign mass to particles on a
-per-type basis, using the :doc:`mass <mass>` command, The finite-size
-particle styles assign mass to individual particles on a per-particle
-basis.
-
-For the *sphere* style, the particles are spheres and each stores a
-per-particle diameter and mass. If the diameter > 0.0, the particle
-is a finite-size sphere. If the diameter = 0.0, it is a point
-particle.
-
-For the *ellipsoid* style, the particles are ellipsoids and each
-stores a flag which indicates whether it is a finite-size ellipsoid or
-a point particle. If it is an ellipsoid, it also stores a shape
-vector with the 3 diamters of the ellipsoid and a quaternion 4-vector
-with its orientation.
-
-For the *dipole* style, a point dipole is defined for each point
-particle. Note that if you wish the particles to be finite-size
-spheres as in a Stockmayer potential for a dipolar fluid, so that the
-particles can rotate due to dipole-dipole interactions, then you need
-to use atom_style hybrid sphere dipole, which will assign both a
-diameter and dipole moment to each particle.
-
-For the *electron* style, the particles representing electrons are 3d
-Gaussians with a specified position and bandwidth or uncertainty in
-position, which is represented by the eradius = electron size.
-
-For the *peri* style, the particles are spherical and each stores a
-per-particle mass and volume.
-
-The *dpd* style is for dissipative particle dynamics (DPD) particles
-which store the particle internal temperature (dpdTheta), internal
-conductive energy (uCond) and internal mechanical energy (uMech).
-
-The *meso* style is for smoothed particle hydrodynamics (SPH)
-particles which store a density (rho), energy (e), and heat capacity
-(cv).
-
-The *smd* style is for a general formulation of Smooth Particle
-Hydrodynamics. Both fluids and solids can be modeled. Particles
-store the mass and volume of an integration point, a kernel diameter
-used for calculating the field variables (e.g. stress and deformation)
-and a contact radius for calculating repulsive forces which prevent
-individual physical bodies from penetretating each other.
-
-The *wavepacket* style is similar to *electron*, but the electrons may
-consist of several Gaussian wave packets, summed up with coefficients
-cs= (cs_re,cs_im). Each of the wave packets is treated as a separate
-particle in LAMMPS, wave packets belonging to the same electron must
-have identical *etag* values.
-
-For the *line* style, the particles are idealized line segments and
-each stores a per-particle mass and length and orientation (i.e. the
-end points of the line segment).
-
-For the *tri* style, the particles are planar triangles and each
-stores a per-particle mass and size and orientation (i.e. the corner
-points of the triangle).
-
-The *template* style allows molecular topolgy (bonds,angles,etc) to be
-defined via a molecule template using the `molecule <molecule.txt>`_
-command. The template stores one or more molecules with a single copy
-of the topology info (bonds,angles,etc) of each. Individual atoms
-only store a template index and template atom to identify which
-molecule and which atom-within-the-molecule they represent. Using the
-*template* style instead of the *bond*, *angle*, *molecular* styles
-can save memory for systems comprised of a large number of small
-molecules, all of a single type (or small number of types). See the
-paper by Grime and Voth, in :ref:`(Grime) <Grime>`, for examples of how this
-can be advantageous for large-scale coarse-grained systems.
-
-.. note::
-
- When using the *template* style with a :doc:`molecule template <molecule>` that contains multiple molecules, you should
- insure the atom types, bond types, angle_types, etc in all the
- molecules are consistent. E.g. if one molecule represents H2O and
- another CO2, then you probably do not want each molecule file to
- define 2 atom types and a single bond type, because they will conflict
- with each other when a mixture system of H2O and CO2 molecules is
- defined, e.g. by the :doc:`read_data <read_data>` command. Rather the
- H2O molecule should define atom types 1 and 2, and bond type 1. And
- the CO2 molecule should define atom types 3 and 4 (or atom types 3 and
- 2 if a single oxygen type is desired), and bond type 2.
-
-For the *body* style, the particles are arbitrary bodies with internal
-attributes defined by the "style" of the bodies, which is specified by
-the *bstyle* argument. Body particles can represent complex entities,
-such as surface meshes of discrete points, collections of
-sub-particles, deformable objects, etc.
-
-The :doc:`body <body>` doc page descibes the body styles LAMMPS
-currently supports, and provides more details as to the kind of body
-particles they represent. For all styles, each body particle stores
-moments of inertia and a quaternion 4-vector, so that its orientation
-and position can be time integrated due to forces and torques.
-
-Note that there may be additional arguments required along with the
-*bstyle* specification, in the atom_style body command. These
-arguments are described in the :doc:`body <body>` doc page.
-
-
-----------
-
-
-Typically, simulations require only a single (non-hybrid) atom style.
-If some atoms in the simulation do not have all the properties defined
-by a particular style, use the simplest style that defines all the
-needed properties by any atom. For example, if some atoms in a
-simulation are charged, but others are not, use the *charge* style.
-If some atoms have bonds, but others do not, use the *bond* style.
-
-The only scenario where the *hybrid* style is needed is if there is no
-single style which defines all needed properties of all atoms. For
-example, as mentioned above, if you want dipolar particles which will
-rotate due to torque, you need to use "atom_style hybrid sphere
-dipole". When a hybrid style is used, atoms store and communicate the
-union of all quantities implied by the individual styles.
-
-When using the *hybrid* style, you cannot combine the *template* style
-with another molecular style that stores bond,angle,etc info on a
-per-atom basis.
-
-LAMMPS can be extended with new atom styles as well as new body
-styles; see :doc:`this section <Section_modify>`.
-
-
-----------
-
-
-Styles with a *cuda* or *kk* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-Note that other acceleration packages in LAMMPS, specifically the GPU,
-USER-INTEL, USER-OMP, and OPT packages do not use accelerated atom
-styles.
-
-The accelerated styles are part of the USER-CUDA and KOKKOS packages
-respectively. They are only enabled if LAMMPS was built with those
-packages. See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restrictions
-""""""""""""
-
-
-This command cannot be used after the simulation box is defined by a
-:doc:`read_data <read_data>` or :doc:`create_box <create_box>` command.
-
-Many of the styles listed above are only enabled if LAMMPS was built
-with a specific package, as listed below. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The *angle*, *bond*, *full*, *molecular*, and *template* styles are
-part of the MOLECULE package.
-
-The *line* and *tri* styles are part of the ASPHERE package.
-
-The *body* style is part of the BODY package.
-
-The *dipole* style is part of the DIPOLE package.
-
-The *peri* style is part of the PERI package for Peridynamics.
-
-The *electron* style is part of the USER-EFF package for :doc:`electronic force fields <pair_eff>`.
-
-The *dpd* style is part of the USER-DPD package for dissipative
-particle dynamics (DPD).
-
-The *meso* style is part of the USER-SPH package for smoothed particle
-hydrodyanmics (SPH). See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in LAMMPS.
-
-The *wavepacket* style is part of the USER-AWPMD package for the
-:doc:`antisymmetrized wave packet MD method <pair_awpmd>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`read_data <read_data>`, :doc:`pair_style <pair_style>`
-
-Default
-"""""""
-
-atom_style atomic
-
-
-----------
-
-
-.. _Grime:
-
-
-
-**(Grime)** Grime and Voth, to appear in J Chem Theory & Computation
-(2014).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/balance.txt b/doc/_sources/balance.txt
deleted file mode 100644
index 41e9fbc64..000000000
--- a/doc/_sources/balance.txt
+++ /dev/null
@@ -1,386 +0,0 @@
-.. index:: balance
-
-balance command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- balance thresh style args ... keyword value ...
-
-* thresh = imbalance threshhold that must be exceeded to perform a re-balance
-* one style/arg pair can be used (or multiple for *x*,*y*,*z*)
-* style = *x* or *y* or *z* or *shift* or *rcb*
-.. parsed-literal::
-
- *x* args = *uniform* or Px-1 numbers between 0 and 1
- *uniform* = evenly spaced cuts between processors in x dimension
- numbers = Px-1 ascending values between 0 and 1, Px - # of processors in x dimension
- *x* can be specified together with *y* or *z*
- *y* args = *uniform* or Py-1 numbers between 0 and 1
- *uniform* = evenly spaced cuts between processors in y dimension
- numbers = Py-1 ascending values between 0 and 1, Py - # of processors in y dimension
- *y* can be specified together with *x* or *z*
- *z* args = *uniform* or Pz-1 numbers between 0 and 1
- *uniform* = evenly spaced cuts between processors in z dimension
- numbers = Pz-1 ascending values between 0 and 1, Pz - # of processors in z dimension
- *z* can be specified together with *x* or *y*
- *shift* args = dimstr Niter stopthresh
- dimstr = sequence of letters containing "x" or "y" or "z", each not more than once
- Niter = # of times to iterate within each dimension of dimstr sequence
- stopthresh = stop balancing when this imbalance threshhold is reached
- *rcb* args = none
-
-* zero or more keyword/value pairs may be appended
-* keyword = *out*
-.. parsed-literal::
-
- *out* value = filename
- filename = write each processor's sub-domain to a file
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- balance 0.9 x uniform y 0.4 0.5 0.6
- balance 1.2 shift xz 5 1.1
- balance 1.0 shift xz 5 1.1
- balance 1.1 rcb
- balance 1.0 shift x 20 1.0 out tmp.balance
-
-Description
-"""""""""""
-
-This command adjusts the size and shape of processor sub-domains
-within the simulation box, to attempt to balance the number of
-particles and thus the computational cost (load) evenly across
-processors. The load balancing is "static" in the sense that this
-command performs the balancing once, before or between simulations.
-The processor sub-domains will then remain static during the
-subsequent run. To perform "dynamic" balancing, see the :doc:`fix balance <fix_balance>` command, which can adjust processor
-sub-domain sizes and shapes on-the-fly during a :doc:`run <run>`.
-
-Load-balancing is typically only useful if the particles in the
-simulation box have a spatially-varying density distribution. E.g. a
-model of a vapor/liquid interface, or a solid with an irregular-shaped
-geometry containing void regions. In this case, the LAMMPS default of
-dividing the simulation box volume into a regular-spaced grid of 3d
-bricks, with one equal-volume sub-domain per procesor, may assign very
-different numbers of particles per processor. This can lead to poor
-performance when the simulation is run in parallel.
-
-Note that the :doc:`processors <processors>` command allows some control
-over how the box volume is split across processors. Specifically, for
-a Px by Py by Pz grid of processors, it allows choice of Px, Py, and
-Pz, subject to the constraint that Px * Py * Pz = P, the total number
-of processors. This is sufficient to achieve good load-balance for
-some problems on some processor counts. However, all the processor
-sub-domains will still have the same shape and same volume.
-
-The requested load-balancing operation is only performed if the
-current "imbalance factor" in particles owned by each processor
-exceeds the specified *thresh* parameter. The imbalance factor is
-defined as the maximum number of particles owned by any processor,
-divided by the average number of particles per processor. Thus an
-imbalance factor of 1.0 is perfect balance.
-
-As an example, for 10000 particles running on 10 processors, if the
-most heavily loaded processor has 1200 particles, then the factor is
-1.2, meaning there is a 20% imbalance. Note that a re-balance can be
-forced even if the current balance is perfect (1.0) be specifying a
-*thresh* < 1.0.
-
-.. note::
-
- Balancing is performed even if the imbalance factor does not
- exceed the *thresh* parameter if a "grid" style is specified when the
- current partitioning is "tiled". The meaning of "grid" vs "tiled" is
- explained below. This is to allow forcing of the partitioning to
- "grid" so that the :doc:`comm_style brick <comm_style>` command can then
- be used to replace a current :doc:`comm_style tiled <comm_style>`
- setting.
-
-When the balance command completes, it prints statistics about the
-result, including the change in the imbalance factor and the change in
-the maximum number of particles on any processor. For "grid" methods
-(defined below) that create a logical 3d grid of processors, the
-positions of all cutting planes in each of the 3 dimensions (as
-fractions of the box length) are also printed.
-
-.. note::
-
- This command attempts to minimize the imbalance factor, as
- defined above. But depending on the method a perfect balance (1.0)
- may not be achieved. For example, "grid" methods (defined below) that
- create a logical 3d grid cannot achieve perfect balance for many
- irregular distributions of particles. Likewise, if a portion of the
- system is a perfect lattice, e.g. the intiial system is generated by
- the :doc:`create_atoms <create_atoms>` command, then "grid" methods may
- be unable to achieve exact balance. This is because entire lattice
- planes will be owned or not owned by a single processor.
-
-.. note::
-
- The imbalance factor is also an estimate of the maximum speed-up
- you can hope to achieve by running a perfectly balanced simulation
- versus an imbalanced one. In the example above, the 10000 particle
- simulation could run up to 20% faster if it were perfectly balanced,
- versus when imbalanced. However, computational cost is not strictly
- proportional to particle count, and changing the relative size and
- shape of processor sub-domains may lead to additional computational
- and communication overheads, e.g. in the PPPM solver used via the
- :doc:`kspace_style <kspace_style>` command. Thus you should benchmark
- the run times of a simulation before and after balancing.
-
-
-----------
-
-
-The method used to perform a load balance is specified by one of the
-listed styles (or more in the case of *x*,*y*,*z*), which are
-described in detail below. There are 2 kinds of styles.
-
-The *x*, *y*, *z*, and *shift* styles are "grid" methods which produce
-a logical 3d grid of processors. They operate by changing the cutting
-planes (or lines) between processors in 3d (or 2d), to adjust the
-volume (area in 2d) assigned to each processor, as in the following 2d
-diagram where processor sub-domains are shown and atoms are colored by
-the processor that owns them. The leftmost diagram is the default
-partitioning of the simulation box across processors (one sub-box for
-each of 16 processors); the middle diagram is after a "grid" method
-has been applied.
-
-.. thumbnail:: JPG/balance_uniform.jpg
- :align: center
-.. thumbnail:: JPG/balance_nonuniform.jpg
- :align: center
-.. thumbnail:: JPG/balance_rcb.jpg
- :align: center
-The *rcb* style is a "tiling" method which does not produce a logical
-3d grid of processors. Rather it tiles the simulation domain with
-rectangular sub-boxes of varying size and shape in an irregular
-fashion so as to have equal numbers of particles in each sub-box, as
-in the rightmost diagram above.
-
-The "grid" methods can be used with either of the
-:doc:`comm_style <comm_style>` command options, *brick* or *tiled*. The
-"tiling" methods can only be used with :doc:`comm_style tiled <comm_style>`. Note that it can be useful to use a "grid"
-method with :doc:`comm_style tiled <comm_style>` to return the domain
-partitioning to a logical 3d grid of processors so that "comm_style
-brick" can afterwords be specified for subsequent :doc:`run <run>`
-commands.
-
-When a "grid" method is specified, the current domain partitioning can
-be either a logical 3d grid or a tiled partitioning. In the former
-case, the current logical 3d grid is used as a starting point and
-changes are made to improve the imbalance factor. In the latter case,
-the tiled partitioning is discarded and a logical 3d grid is created
-with uniform spacing in all dimensions. This becomes the starting
-point for the balancing operation.
-
-When a "tiling" method is specified, the current domain partitioning
-("grid" or "tiled") is ignored, and a new partitioning is computed
-from scratch.
-
-
-----------
-
-
-The *x*, *y*, and *z* styles invoke a "grid" method for balancing, as
-described above. Note that any or all of these 3 styles can be
-specified together, one after the other, but they cannot be used with
-any other style. This style adjusts the position of cutting planes
-between processor sub-domains in specific dimensions. Only the
-specified dimensions are altered.
-
-The *uniform* argument spaces the planes evenly, as in the left
-diagrams above. The *numeric* argument requires listing Ps-1 numbers
-that specify the position of the cutting planes. This requires
-knowing Ps = Px or Py or Pz = the number of processors assigned by
-LAMMPS to the relevant dimension. This assignment is made (and the
-Px, Py, Pz values printed out) when the simulation box is created by
-the "create_box" or "read_data" or "read_restart" command and is
-influenced by the settings of the :doc:`processors <processors>`
-command.
-
-Each of the numeric values must be between 0 and 1, and they must be
-listed in ascending order. They represent the fractional position of
-the cutting place. The left (or lower) edge of the box is 0.0, and
-the right (or upper) edge is 1.0. Neither of these values is
-specified. Only the interior Ps-1 positions are specified. Thus is
-there are 2 procesors in the x dimension, you specify a single value
-such as 0.75, which would make the left processor's sub-domain 3x
-larger than the right processor's sub-domain.
-
-
-----------
-
-
-The *shift* style invokes a "grid" method for balancing, as
-described above. It changes the positions of cutting planes between
-processors in an iterative fashion, seeking to reduce the imbalance
-factor, similar to how the :doc:`fix balance shift <fix_balance>`
-command operates.
-
-The *dimstr* argument is a string of characters, each of which must be
-an "x" or "y" or "z". Eacn character can appear zero or one time,
-since there is no advantage to balancing on a dimension more than
-once. You should normally only list dimensions where you expect there
-to be a density variation in the particles.
-
-Balancing proceeds by adjusting the cutting planes in each of the
-dimensions listed in *dimstr*, one dimension at a time. For a single
-dimension, the balancing operation (described below) is iterated on up
-to *Niter* times. After each dimension finishes, the imbalance factor
-is re-computed, and the balancing operation halts if the *stopthresh*
-criterion is met.
-
-A rebalance operation in a single dimension is performed using a
-recursive multisectioning algorithm, where the position of each
-cutting plane (line in 2d) in the dimension is adjusted independently.
-This is similar to a recursive bisectioning for a single value, except
-that the bounds used for each bisectioning take advantage of
-information from neighboring cuts if possible. At each iteration, the
-count of particles on either side of each plane is tallied. If the
-counts do not match the target value for the plane, the position of
-the cut is adjusted to be halfway between a low and high bound. The
-low and high bounds are adjusted on each iteration, using new count
-information, so that they become closer together over time. Thus as
-the recustion progresses, the count of particles on either side of the
-plane gets closer to the target value.
-
-Once the rebalancing is complete and final processor sub-domains
-assigned, particles are migrated to their new owning processor, and
-the balance procedure ends.
-
-.. note::
-
- At each rebalance operation, the bisectioning for each cutting
- plane (line in 2d) typcially starts with low and high bounds separated
- by the extent of a processor's sub-domain in one dimension. The size
- of this bracketing region shrinks by 1/2 every iteration. Thus if
- *Niter* is specified as 10, the cutting plane will typically be
- positioned to 1 part in 1000 accuracy (relative to the perfect target
- position). For *Niter* = 20, it will be accurate to 1 part in a
- million. Thus there is no need ot set *Niter* to a large value.
- LAMMPS will check if the threshold accuracy is reached (in a
- dimension) is less iterations than *Niter* and exit early. However,
- *Niter* should also not be set too small, since it will take roughly
- the same number of iterations to converge even if the cutting plane is
- initially close to the target value.
-
-
-----------
-
-
-The *rcb* style invokes a "tiled" method for balancing, as described
-above. It performs a recursive coordinate bisectioning (RCB) of the
-simulation domain. The basic idea is as follows.
-
-The simulation domain is cut into 2 boxes by an axis-aligned cut in
-the longest dimension, leaving one new box on either side of the cut.
-All the processors are also partitioned into 2 groups, half assigned
-to the box on the lower side of the cut, and half to the box on the
-upper side. (If the processor count is odd, one side gets an extra
-processor.) The cut is positioned so that the number of atoms in the
-lower box is exactly the number that the processors assigned to that
-box should own for load balance to be perfect. This also makes load
-balance for the upper box perfect. The positioning is done
-iteratively, by a bisectioning method. Note that counting atoms on
-either side of the cut requires communication between all processors
-at each iteration.
-
-That is the procedure for the first cut. Subsequent cuts are made
-recursively, in exactly the same manner. The subset of processors
-assigned to each box make a new cut in the longest dimension of that
-box, splitting the box, the subset of processsors, and the atoms in
-the box in two. The recursion continues until every processor is
-assigned a sub-box of the entire simulation domain, and owns the atoms
-in that sub-box.
-
-
-----------
-
-
-The *out* keyword writes a text file to the specified *filename* with
-the results of the balancing operation. The file contains the bounds
-of the sub-domain for each processor after the balancing operation
-completes. The format of the file is compatible with the
-`Pizza.py <pizza>`_ *mdump* tool which has support for manipulating and
-visualizing mesh files. An example is shown here for a balancing by 4
-processors for a 2d problem:
-
-.. parsed-literal::
-
- ITEM: TIMESTEP
- 0
- ITEM: NUMBER OF NODES
- 16
- ITEM: BOX BOUNDS
- 0 10
- 0 10
- 0 10
- ITEM: NODES
- 1 1 0 0 0
- 2 1 5 0 0
- 3 1 5 5 0
- 4 1 0 5 0
- 5 1 5 0 0
- 6 1 10 0 0
- 7 1 10 5 0
- 8 1 5 5 0
- 9 1 0 5 0
- 10 1 5 5 0
- 11 1 5 10 0
- 12 1 10 5 0
- 13 1 5 5 0
- 14 1 10 5 0
- 15 1 10 10 0
- 16 1 5 10 0
- ITEM: TIMESTEP
- 0
- ITEM: NUMBER OF SQUARES
- 4
- ITEM: SQUARES
- 1 1 1 2 3 4
- 2 1 5 6 7 8
- 3 1 9 10 11 12
- 4 1 13 14 15 16
-
-The coordinates of all the vertices are listed in the NODES section, 5
-per processor. Note that the 4 sub-domains share vertices, so there
-will be duplicate nodes in the list.
-
-The "SQUARES" section lists the node IDs of the 4 vertices in a
-rectangle for each processor (1 to 4).
-
-For a 3d problem, the syntax is similar with 8 vertices listed for
-each processor, instead of 4, and "SQUARES" replaced by "CUBES".
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-For 2d simulations, the *z* style cannot be used. Nor can a "z"
-appear in *dimstr* for the *shift* style.
-
-Related commands
-""""""""""""""""
-
-:doc:`processors <processors>`, :doc:`fix balance <fix_balance>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/body.txt b/doc/_sources/body.txt
deleted file mode 100644
index 7f1ad12d4..000000000
--- a/doc/_sources/body.txt
+++ /dev/null
@@ -1,301 +0,0 @@
-Body particles
-==============
-
-**Overview:**
-
-This doc page is not about a LAMMPS input script command, but about
-body particles, which are generalized finite-size particles.
-Individual body particles can represent complex entities, such as
-surface meshes of discrete points, collections of sub-particles,
-deformable objects, etc. Note that other kinds of finite-size
-spherical and aspherical particles are also supported by LAMMPS, such
-as spheres, ellipsoids, line segments, and triangles, but they are
-simpler entities that body particles. See :ref:`Section_howto 14 <howto_14>` for a general overview of all these
-particle types.
-
-Body particles are used via the :doc:`atom_style body <atom_style>`
-command. It takes a body style as an argument. The current body
-styles supported by LAMMPS are as follows. The name in the first
-column is used as the *bstyle* argument for the :doc:`atom_style body <atom_style>` command.
-
-+-------------------+-----------------------------------+
-| *nparticle* | rigid body with N sub-particles |
-+-------------------+-----------------------------------+
-| *rounded/polygon* | 2d convex polygon with N vertices |
-+-------------------+-----------------------------------+
-
-The body style determines what attributes are stored for each body and
-thus how they can be used to compute pairwise body/body or
-bond/non-body (point particle) interactions. More details of each
-style are described below.
-
-.. note::
-
- The rounded/polygon style listed in the table above and
- described below has not yet been relesed in LAMMPS. It will be soon.
-
-We hope to add more styles in the future. See :ref:`Section_modify 12 <mod_12>` for details on how to add a new body
-style to the code.
-
-
-----------
-
-
-**When to use body particles:**
-
-You should not use body particles to model a rigid body made of
-simpler particles (e.g. point, sphere, ellipsoid, line segment,
-triangular particles), if the interaction between pairs of rigid
-bodies is just the summation of pairwise interactions between the
-simpler particles. LAMMPS already supports this kind of model via the
-:doc:`fix rigid <fix_rigid>` command. Any of the numerous pair styles
-that compute interactions between simpler particles can be used. The
-:doc:`fix rigid <fix_rigid>` command time integrates the motion of the
-rigid bodies. All of the standard LAMMPS commands for thermostatting,
-adding constraints, performing output, etc will operate as expected on
-the simple particles.
-
-By contrast, when body particles are used, LAMMPS treats an entire
-body as a single particle for purposes of computing pairwise
-interactions, building neighbor lists, migrating particles between
-processors, outputting particles to a dump file, etc. This means that
-interactions between pairs of bodies or between a body and non-body
-(point) particle need to be encoded in an appropriate pair style. If
-such a pair style were to mimic the :doc:`fix rigid <fix_rigid>` model,
-it would need to loop over the entire collection of interactions
-between pairs of simple particles within the two bodies, each time a
-single body/body interaction was computed.
-
-Thus it only makes sense to use body particles and develop such a pair
-style, when particle/particle interactions are more complex than what
-the :doc:`fix rigid <fix_rigid>` command can already calculate. For
-example, if particles have one or more of the following attributes:
-
-* represented by a surface mesh
-* represented by a collection of geometric entities (e.g. planes + spheres)
-* deformable
-* internal stress that induces fragmentation
-
-then the interaction between pairs of particles is likely to be more
-complex than the summation of simple sub-particle interactions. An
-example is contact or frictional forces between particles with planar
-sufaces that inter-penetrate.
-
-These are additional LAMMPS commands that can be used with body
-particles of different styles
-
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`fix nve/body <fix_nve_body>` | integrate motion of a body particle in NVE ensemble |
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`fix nvt/body <fix_nvt_body>` | ditto for NVT ensemble |
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`fix npt/body <fix_npt_body>` | ditto for NPT ensemble |
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`fix nph/body <fix_nph_body>` | ditto for NPH ensemble |
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`compute body/local <compute_body_local>` | store sub-particle attributes of a body particle |
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`compute temp/body <compute_temp_body>` | compute temperature of body particles |
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`dump local <dump>` | output sub-particle attributes of a body particle |
-+------------------------------------------------+-----------------------------------------------------+
-| :doc:`dump image <dump_image>` | output body particle attributes as an image |
-+------------------------------------------------+-----------------------------------------------------+
-
-The pair styles defined for use with specific body styles are listed
-in the sections below.
-
-
-----------
-
-
-**Specifics of body style nparticle:**
-
-The *nparticle* body style represents body particles as a rigid body
-with a variable number N of sub-particles. It is provided as a
-vanillia, prototypical example of a body particle, although as
-mentioned above, the :doc:`fix rigid <fix_rigid>` command already
-duplicates its functionality.
-
-The atom_style body command for this body style takes two additional
-arguments:
-
-.. parsed-literal::
-
- atom_style body nparticle Nmin Nmax
- Nmin = minimum # of sub-particles in any body in the system
- Nmax = maximum # of sub-particles in any body in the system
-
-The Nmin and Nmax arguments are used to bound the size of data
-structures used internally by each particle.
-
-When the :doc:`read_data <read_data>` command reads a data file for this
-body style, the following information must be provided for each entry
-in the *Bodies* section of the data file:
-
-.. parsed-literal::
-
- atom-ID 1 M
- N
- ixx iyy izz ixy ixz iyz
- x1 y1 z1
- ...
- xN yN zN
-
-N is the number of sub-particles in the body particle. M = 6 + 3*N.
-The integer line has a single value N. The floating point line(s)
-list 6 moments of inertia followed by the coordinates of the N
-sub-particles (x1 to zN) as 3N values. These values can be listed on
-as many lines as you wish; see the :doc:`read_data <read_data>` command
-for more details.
-
-The 6 moments of inertia (ixx,iyy,izz,ixy,ixz,iyz) should be the
-values consistent with the current orientation of the rigid body
-around its center of mass. The values are with respect to the
-simulation box XYZ axes, not with respect to the prinicpal axes of the
-rigid body itself. LAMMPS performs the latter calculation internally.
-The coordinates of each sub-particle are specified as its x,y,z
-displacement from the center-of-mass of the body particle. The
-center-of-mass position of the particle is specified by the x,y,z
-values in the *Atoms* section of the data file, as is the total mass
-of the body particle.
-
-The :doc:`pair_style body <pair_body>` command can be used with this
-body style to compute body/body and body/non-body interactions.
-
-For output purposes via the :doc:`compute body/local <compute_body_local>` and :doc:`dump local <dump>`
-commands, this body style produces one datum for each of the N
-sub-particles in a body particle. The datum has 3 values:
-
-.. parsed-literal::
-
- 1 = x position of sub-particle
- 2 = y position of sub-particle
- 3 = z position of sub-particle
-
-These values are the current position of the sub-particle within the
-simulation domain, not a displacement from the center-of-mass (COM) of
-the body particle itself. These values are calculated using the
-current COM and orientation of the body particle.
-
-For images created by the :doc:`dump image <dump_image>` command, if the
-*body* keyword is set, then each body particle is drawn as a
-collection of spheres, one for each sub-particle. The size of each
-sphere is determined by the *bflag1* parameter for the *body* keyword.
-The *bflag2* argument is ignored.
-
-
-----------
-
-
-**Specifics of body style rounded/polygon:**
-
-The *rounded/polygon* body style represents body particles as a convex
-polygon with a variable number N > 2 of vertices, which can only be
-used for 2d models. One example use of this body style is for 2d
-discrete element models, as described in :ref:`Fraige <Fraige>`. Similar to
-body style *nparticle*, the atom_style body command for this body
-style takes two additional arguments:
-
-.. parsed-literal::
-
- atom_style body rounded/polygon Nmin Nmax
- Nmin = minimum # of vertices in any body in the system
- Nmax = maximum # of vertices in any body in the system
-
-The Nmin and Nmax arguments are used to bound the size of data
-structures used internally by each particle.
-
-When the :doc:`read_data <read_data>` command reads a data file for this
-body style, the following information must be provided for each entry
-in the *Bodies* section of the data file:
-
-.. parsed-literal::
-
- atom-ID 1 M
- N
- ixx iyy izz ixy ixz iyz
- x1 y1 z1
- ...
- xN yN zN
- i j j k k ...
- radius
-
-N is the number of vertices in the body particle. M = 6 + 3*N + 2*N +
-1. The integer line has a single value N. The floating point line(s)
-list 6 moments of inertia followed by the coordinates of the N
-vertices (x1 to zN) as 3N values, followed by 2N vertex indices
-corresponding to the end points of the N edges, followed by a single
-radius value = the smallest circle encompassing the polygon. That
-last value is used to facilitate the body/body contact detection.
-These floating-point values can be listed on as many lines as you
-wish; see the :doc:`read_data <read_data>` command for more details.
-
-The 6 moments of inertia (ixx,iyy,izz,ixy,ixz,iyz) should be the
-values consistent with the current orientation of the rigid body
-around its center of mass. The values are with respect to the
-simulation box XYZ axes, not with respect to the prinicpal axes of the
-rigid body itself. LAMMPS performs the latter calculation internally.
-The coordinates of each vertex are specified as its x,y,z displacement
-from the center-of-mass of the body particle. The center-of-mass
-position of the particle is specified by the x,y,z values in the
-*Atoms* section of the data file.
-
-For example, the following information would specify a square
-particles whose edge length is sqrt(2):
-
-.. parsed-literal::
-
- 3 1 27
- 4
- 1 1 4 0 0 0
- -0.7071 -0.7071 0
- -0.7071 0.7071 0
- 0.7071 0.7071 0
- 0.7071 -0.7071 0
- 0 1 1 2 2 3 3 0
- 1.0
-
-The :doc:`pair_style body/rounded/polygon <pair_body_rounded_polygon>` command
-can be used with this body style to compute body/body interactions.
-
-For output purposes via the :doc:`compute body/local <compute_body_local>` and :doc:`dump local <dump>`
-commands, this body style produces one datum for each of the N
-sub-particles in a body particle. The datum has 3 values:
-
-.. parsed-literal::
-
- 1 = x position of vertex
- 2 = y position of vertex
- 3 = z position of vertex
-
-These values are the current position of the vertex within the
-simulation domain, not a displacement from the center-of-mass (COM) of
-the body particle itself. These values are calculated using the
-current COM and orientation of the body particle.
-
-For images created by the :doc:`dump image <dump_image>` command, if the
-*body* keyword is set, then each body particle is drawn as a convex
-polygon consisting of N line segments. Note that the line segments
-are drawn between the N vertices, which does not correspond exactly to
-the physical extent of the body (because the `pair_style rounded/polygon <pair_body_rounded_polygon.cpp>`_ defines finite-size
-spheres at those point and the line segments between the spheres are
-tangent to the spheres). The drawn diameter of each line segment is
-determined by the *bflag1* parameter for the *body* keyword. The
-*bflag2* argument is ignored.
-
-
-----------
-
-
-.. _Fraige:
-
-
-
-**(Fraige)** F. Y. Fraige, P. A. Langston, A. J. Matchett, J. Dodds,
-Particuology, 6, 455 (2008).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_class2.txt b/doc/_sources/bond_class2.txt
deleted file mode 100644
index 95b016986..000000000
--- a/doc/_sources/bond_class2.txt
+++ /dev/null
@@ -1,101 +0,0 @@
-.. index:: bond_style class2
-
-bond_style class2 command
-=========================
-
-bond_style class2/omp command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style class2
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style class2
- bond_coeff 1 1.0 100.0 80.0 80.0
-
-Description
-"""""""""""
-
-The *class2* bond style uses the potential
-
-.. image:: Eqs/bond_class2.jpg
- :align: center
-
-where r0 is the equilibrium bond distance.
-
-See :ref:`(Sun) <Sun>` for a description of the COMPASS class2 force field.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* R0 (distance)
-* K2 (energy/distance^2)
-* K3 (energy/distance^3)
-* K4 (energy/distance^4)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the CLASS2
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Sun:
-
-
-
-**(Sun)** Sun, J Phys Chem B 102, 7338-7364 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_coeff.txt b/doc/_sources/bond_coeff.txt
deleted file mode 100644
index a57efc4e3..000000000
--- a/doc/_sources/bond_coeff.txt
+++ /dev/null
@@ -1,112 +0,0 @@
-.. index:: bond_coeff
-
-bond_coeff command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_coeff N args
-
-* N = bond type (see asterisk form below)
-* args = coefficients for one or more bond types
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_coeff 5 80.0 1.2
- bond_coeff * 30.0 1.5 1.0 1.0
- bond_coeff 1*4 30.0 1.5 1.0 1.0
- bond_coeff 1 harmonic 200.0 1.0
-
-Description
-"""""""""""
-
-Specify the bond force field coefficients for one or more bond types.
-The number and meaning of the coefficients depends on the bond style.
-Bond coefficients can also be set in the data file read by the
-:doc:`read_data <read_data>` command or in a restart file.
-
-N can be specified in one of two ways. An explicit numeric value can
-be used, as in the 1st example above. Or a wild-card asterisk can be
-used to set the coefficients for multiple bond types. This takes the
-form "*" or "*n" or "n*" or "m*n". If N = the number of bond types,
-then an asterisk with no numeric values means all types from 1 to N. A
-leading asterisk means all types from 1 to n (inclusive). A trailing
-asterisk means all types from n to N (inclusive). A middle asterisk
-means all types from m to n (inclusive).
-
-Note that using a bond_coeff command can override a previous setting
-for the same bond type. For example, these commands set the coeffs
-for all bond types, then overwrite the coeffs for just bond type 2:
-
-.. parsed-literal::
-
- bond_coeff * 100.0 1.2
- bond_coeff 2 200.0 1.2
-
-A line in a data file that specifies bond coefficients uses the exact
-same format as the arguments of the bond_coeff command in an input
-script, except that wild-card asterisks should not be used since
-coefficients for all N types must be listed in the file. For example,
-under the "Bond Coeffs" section of a data file, the line that
-corresponds to the 1st example above would be listed as
-
-.. parsed-literal::
-
- 5 80.0 1.2
-
-
-----------
-
-
-Here is an alphabetic list of bond styles defined in LAMMPS. Click on
-the style to display the formula it computes and coefficients
-specified by the associated :doc:`bond_coeff <bond_coeff>` command.
-
-Note that here are also additional bond styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the bond section of :ref:`this page <cmd_5>`.
-
-* :doc:`bond_style none <bond_none>` - turn off bonded interactions
-* :doc:`bond_style hybrid <bond_hybrid>` - define multiple styles of bond interactions
-
-* :doc:`bond_style class2 <bond_class2>` - COMPASS (class 2) bond
-* :doc:`bond_style fene <bond_fene>` - FENE (finite-extensible non-linear elastic) bond
-* :doc:`bond_style fene/expand <bond_fene_expand>` - FENE bonds with variable size particles
-* :doc:`bond_style harmonic <bond_harmonic>` - harmonic bond
-* :doc:`bond_style morse <bond_morse>` - Morse bond
-* :doc:`bond_style nonlinear <bond_nonlinear>` - nonlinear bond
-* :doc:`bond_style quartic <bond_quartic>` - breakable quartic bond
-* :doc:`bond_style table <bond_table>` - tabulated by bond length
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command must come after the simulation box is defined by a
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`, or
-:doc:`create_box <create_box>` command.
-
-A bond style must be defined before any bond coefficients are set,
-either in the input script or in a data file.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_style <bond_style>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_fene.txt b/doc/_sources/bond_fene.txt
deleted file mode 100644
index 6218a34e5..000000000
--- a/doc/_sources/bond_fene.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-.. index:: bond_style fene
-
-bond_style fene command
-=======================
-
-bond_style fene/kk command
-==========================
-
-bond_style fene/omp command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style fene
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style fene
- bond_coeff 1 30.0 1.5 1.0 1.0
-
-Description
-"""""""""""
-
-The *fene* bond style uses the potential
-
-.. image:: Eqs/bond_fene.jpg
- :align: center
-
-to define a finite extensible nonlinear elastic (FENE) potential
-:ref:`(Kremer) <Kremer>`, used for bead-spring polymer models. The first
-term is attractive, the 2nd Lennard-Jones term is repulsive. The
-first term extends to R0, the maximum extent of the bond. The 2nd
-term is cutoff at 2^(1/6) sigma, the minimum of the LJ potential.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy/distance^2)
-* R0 (distance)
-* epsilon (energy)
-* sigma (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-You typically should specify `special_bonds fene <special_bonds.html">`_
-or :doc:`special_bonds lj/coul 0 1 1 <special_bonds>` to use this bond
-style. LAMMPS will issue a warning it that's not the case.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Kremer:
-
-
-
-**(Kremer)** Kremer, Grest, J Chem Phys, 92, 5057 (1990).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_fene_expand.txt b/doc/_sources/bond_fene_expand.txt
deleted file mode 100644
index 20bb1472e..000000000
--- a/doc/_sources/bond_fene_expand.txt
+++ /dev/null
@@ -1,111 +0,0 @@
-.. index:: bond_style fene/expand
-
-bond_style fene/expand command
-==============================
-
-bond_style fene/expand/omp command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style fene/expand
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style fene/expand
- bond_coeff 1 30.0 1.5 1.0 1.0 0.5
-
-Description
-"""""""""""
-
-The *fene/expand* bond style uses the potential
-
-.. image:: Eqs/bond_fene_expand.jpg
- :align: center
-
-to define a finite extensible nonlinear elastic (FENE) potential
-:ref:`(Kremer) <Kremer>`, used for bead-spring polymer models. The first
-term is attractive, the 2nd Lennard-Jones term is repulsive.
-
-The *fene/expand* bond style is similar to *fene* except that an extra
-shift factor of delta (positive or negative) is added to *r* to
-effectively change the bead size of the bonded atoms. The first term
-now extends to R0 + delta and the 2nd term is cutoff at 2^(1/6) sigma
-+ delta.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy/distance^2)
-* R0 (distance)
-* epsilon (energy)
-* sigma (distance)
-* delta (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-You typically should specify `special_bonds fene <special_bonds.html">`_
-or :doc:`special_bonds lj/coul 0 1 1 <special_bonds>` to use this bond
-style. LAMMPS will issue a warning it that's not the case.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Kremer:
-
-
-
-**(Kremer)** Kremer, Grest, J Chem Phys, 92, 5057 (1990).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_harmonic.txt b/doc/_sources/bond_harmonic.txt
deleted file mode 100644
index 842cd9f6c..000000000
--- a/doc/_sources/bond_harmonic.txt
+++ /dev/null
@@ -1,93 +0,0 @@
-.. index:: bond_style harmonic
-
-bond_style harmonic command
-===========================
-
-bond_style harmonic/intel command
-=================================
-
-bond_style harmonic/kk command
-==============================
-
-bond_style harmonic/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style harmonic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style harmonic
- bond_coeff 5 80.0 1.2
-
-Description
-"""""""""""
-
-The *harmonic* bond style uses the potential
-
-.. image:: Eqs/bond_harmonic.jpg
- :align: center
-
-where r0 is the equilibrium bond distance. Note that the usual 1/2
-factor is included in K.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy/distance^2)
-* r0 (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_harmonic_shift.txt b/doc/_sources/bond_harmonic_shift.txt
deleted file mode 100644
index b62b14dfc..000000000
--- a/doc/_sources/bond_harmonic_shift.txt
+++ /dev/null
@@ -1,94 +0,0 @@
-.. index:: bond_style harmonic/shift
-
-bond_style harmonic/shift command
-=================================
-
-bond_style harmonic/shift/omp command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style harmonic/shift
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style harmonic/shift
- bond_coeff 5 10.0 0.5 1.0
-
-Description
-"""""""""""
-
-The *harmonic/shift* bond style is a shifted harmonic bond that uses
-the potential
-
-.. image:: Eqs/bond_harmonic_shift.jpg
- :align: center
-
-where r0 is the equilibrium bond distance, and rc the critical distance.
-The potential is -Umin at r0 and zero at rc. The spring constant is
-k = Umin / [ 2 (r0-rc)^2].
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* Umin (energy)
-
-* r0 (distance)
-
-* rc (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`,
-:doc:`bond_harmonic <bond_harmonic>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_harmonic_shift_cut.txt b/doc/_sources/bond_harmonic_shift_cut.txt
deleted file mode 100644
index 6f04183a2..000000000
--- a/doc/_sources/bond_harmonic_shift_cut.txt
+++ /dev/null
@@ -1,93 +0,0 @@
-.. index:: bond_style harmonic/shift/cut
-
-bond_style harmonic/shift/cut command
-=====================================
-
-bond_style harmonic/shift/cut/omp command
-=========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style harmonic/shift/cut
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style harmonic/shift/cut
- bond_coeff 5 10.0 0.5 1.0
-
-Description
-"""""""""""
-
-The *harmonic/shift/cut* bond style is a shifted harmonic bond that
-uses the potential
-
-.. image:: Eqs/bond_harmonic_shift_cut.jpg
- :align: center
-
-where r0 is the equilibrium bond distance, and rc the critical distance.
-The bond potential is zero for distances r > rc. The potential is -Umin
-at r0 and zero at rc. The spring constant is k = Umin / [ 2 (r0-rc)^2].
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* Umin (energy)
-* r0 (distance)
-* rc (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`,
-:doc:`bond_harmonic <bond_harmonic>`,
-:doc:`bond_harmonicshift <bond_harmonicshift>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_hybrid.txt b/doc/_sources/bond_hybrid.txt
deleted file mode 100644
index a07e051db..000000000
--- a/doc/_sources/bond_hybrid.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-.. index:: bond_style hybrid
-
-bond_style hybrid command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style hybrid style1 style2 ...
-
-* style1,style2 = list of one or more bond styles
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style hybrid harmonic fene
- bond_coeff 1 harmonic 80.0 1.2
- bond_coeff 2* fene 30.0 1.5 1.0 1.0
-
-Description
-"""""""""""
-
-The *hybrid* style enables the use of multiple bond styles in one
-simulation. A bond style is assigned to each bond type. For example,
-bonds in a polymer flow (of bond type 1) could be computed with a
-*fene* potential and bonds in the wall boundary (of bond type 2) could
-be computed with a *harmonic* potential. The assignment of bond type
-to style is made via the :doc:`bond_coeff <bond_coeff>` command or in
-the data file.
-
-In the bond_coeff commands, the name of a bond style must be added
-after the bond type, with the remaining coefficients being those
-appropriate to that style. In the example above, the 2 bond_coeff
-commands set bonds of bond type 1 to be computed with a *harmonic*
-potential with coefficients 80.0, 1.2 for K, r0. All other bond types
-(2-N) are computed with a *fene* potential with coefficients 30.0,
-1.5, 1.0, 1.0 for K, R0, epsilon, sigma.
-
-If bond coefficients are specified in the data file read via the
-:doc:`read_data <read_data>` command, then the same rule applies.
-E.g. "harmonic" or "fene" must be added after the bond type, for each
-line in the "Bond Coeffs" section, e.g.
-
-.. parsed-literal::
-
- Bond Coeffs
-
-.. parsed-literal::
-
- 1 harmonic 80.0 1.2
- 2 fene 30.0 1.5 1.0 1.0
- ...
-
-A bond style of *none* with no additional coefficients can be used in
-place of a bond style, either in a input script bond_coeff command or
-in the data file, if you desire to turn off interactions for specific
-bond types.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Unlike other bond styles, the hybrid bond style does not store bond
-coefficient info for individual sub-styles in a :doc:`binary restart files <restart>`. Thus when retarting a simulation from a restart
-file, you need to re-specify bond_coeff commands.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_morse.txt b/doc/_sources/bond_morse.txt
deleted file mode 100644
index d31766a9d..000000000
--- a/doc/_sources/bond_morse.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-.. index:: bond_style morse
-
-bond_style morse command
-========================
-
-bond_style morse/omp command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style morse
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style morse
- bond_coeff 5 1.0 2.0 1.2
-
-Description
-"""""""""""
-
-The *morse* bond style uses the potential
-
-.. image:: Eqs/bond_morse.jpg
- :align: center
-
-where r0 is the equilibrium bond distance, alpha is a stiffness
-parameter, and D determines the depth of the potential well.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* D (energy)
-* alpha (inverse distance)
-* r0 (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_none.txt b/doc/_sources/bond_none.txt
deleted file mode 100644
index ca330a4bc..000000000
--- a/doc/_sources/bond_none.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-.. index:: bond_style none
-
-bond_style none command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style none
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style none
-
-Description
-"""""""""""
-
-Using a bond style of none means bond forces and energies are not
-computed, even if pairs of bonded atoms were listed in the data file
-read by the :doc:`read_data <read_data>` command.
-
-See the :doc:`bond_style zero <bond_zero>` command for a way to
-calculate bond statistics, but compute no bond interactions.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-:doc:`bond_style zero <bond_zero>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_nonlinear.txt b/doc/_sources/bond_nonlinear.txt
deleted file mode 100644
index 1db2d83ca..000000000
--- a/doc/_sources/bond_nonlinear.txt
+++ /dev/null
@@ -1,98 +0,0 @@
-.. index:: bond_style nonlinear
-
-bond_style nonlinear command
-============================
-
-bond_style nonlinear/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style nonlinear
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style nonlinear
- bond_coeff 2 100.0 1.1 1.4
-
-Description
-"""""""""""
-
-The *nonlinear* bond style uses the potential
-
-.. image:: Eqs/bond_nonlinear.jpg
- :align: center
-
-to define an anharmonic spring :ref:`(Rector) <Rector>` of equilibrium
-length r0 and maximum extension lamda.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* epsilon (energy)
-* r0 (distance)
-* lamda (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Rector:
-
-
-
-**(Rector)** Rector, Van Swol, Henderson, Molecular Physics, 82, 1009 (1994).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_quartic.txt b/doc/_sources/bond_quartic.txt
deleted file mode 100644
index 9cfe81f22..000000000
--- a/doc/_sources/bond_quartic.txt
+++ /dev/null
@@ -1,128 +0,0 @@
-.. index:: bond_style quartic
-
-bond_style quartic command
-==========================
-
-bond_style quartic/omp command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style quartic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style quartic
- bond_coeff 2 1200 -0.55 0.25 1.3 34.6878
-
-Description
-"""""""""""
-
-The *quartic* bond style uses the potential
-
-.. image:: Eqs/bond_quartic.jpg
- :align: center
-
-to define a bond that can be broken as the simulation proceeds (e.g.
-due to a polymer being stretched). The sigma and epsilon used in the
-LJ portion of the formula are both set equal to 1.0 by LAMMPS.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy/distance^4)
-* B1 (distance)
-* B2 (distance)
-* Rc (distance)
-* U0 (energy)
-
-This potential was constructed to mimic the FENE bond potential for
-coarse-grained polymer chains. When monomers with sigma = epsilon =
-1.0 are used, the following choice of parameters gives a quartic
-potential that looks nearly like the FENE potential: K = 1200, B1 =
--0.55, B2 = 0.25, Rc = 1.3, and U0 = 34.6878. Different parameters
-can be specified using the :doc:`bond_coeff <bond_coeff>` command, but
-you will need to choose them carefully so they form a suitable bond
-potential.
-
-Rc is the cutoff length at which the bond potential goes smoothly to a
-local maximum. If a bond length ever becomes > Rc, LAMMPS "breaks"
-the bond, which means two things. First, the bond potential is turned
-off by setting its type to 0, and is no longer computed. Second, a
-pairwise interaction between the two atoms is turned on, since they
-are no longer bonded.
-
-LAMMPS does the second task via a computational sleight-of-hand. It
-subtracts the pairwise interaction as part of the bond computation.
-When the bond breaks, the subtraction stops. For this to work, the
-pairwise interaction must always be computed by the
-:doc:`pair_style <pair_style>` command, whether the bond is broken or
-not. This means that :doc:`special_bonds <special_bonds>` must be set
-to 1,1,1, as indicated as a restriction below.
-
-Note that when bonds are dumped to a file via the :doc:`dump local <dump>` command, bonds with type 0 are not included. The
-:doc:`delete_bonds <delete_bonds>` command can also be used to query the
-status of broken bonds or permanently delete them, e.g.:
-
-.. parsed-literal::
-
- delete_bonds all stats
- delete_bonds all bond 0 remove
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-The *quartic* style requires that :doc:`special_bonds <special_bonds>`
-parameters be set to 1,1,1. Three- and four-body interactions (angle,
-dihedral, etc) cannot be used with *quartic* bonds.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_style.txt b/doc/_sources/bond_style.txt
deleted file mode 100644
index 7182ee064..000000000
--- a/doc/_sources/bond_style.txt
+++ /dev/null
@@ -1,122 +0,0 @@
-.. index:: bond_style
-
-bond_style command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style style args
-
-* style = *none* or *hybrid* or *class2* or *fene* or *fene/expand* or *harmonic* or *morse* or *nonlinear* or *quartic*
-
-.. parsed-literal::
-
- args = none for any style except *hybrid*
- *hybrid* args = list of one or more styles
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style harmonic
- bond_style fene
- bond_style hybrid harmonic fene
-
-Description
-"""""""""""
-
-Set the formula(s) LAMMPS uses to compute bond interactions between
-pairs of atoms. In LAMMPS, a bond differs from a pairwise
-interaction, which are set via the :doc:`pair_style <pair_style>`
-command. Bonds are defined between specified pairs of atoms and
-remain in force for the duration of the simulation (unless the bond
-breaks which is possible in some bond potentials). The list of bonded
-atoms is read in by a :doc:`read_data <read_data>` or
-:doc:`read_restart <read_restart>` command from a data or restart file.
-By contrast, pair potentials are typically defined between all pairs
-of atoms within a cutoff distance and the set of active interactions
-changes over time.
-
-Hybrid models where bonds are computed using different bond potentials
-can be setup using the *hybrid* bond style.
-
-The coefficients associated with a bond style can be specified in a
-data or restart file or via the :doc:`bond_coeff <bond_coeff>` command.
-
-All bond potentials store their coefficient data in binary restart
-files which means bond_style and :doc:`bond_coeff <bond_coeff>` commands
-do not need to be re-specified in an input script that restarts a
-simulation. See the :doc:`read_restart <read_restart>` command for
-details on how to do this. The one exception is that bond_style
-*hybrid* only stores the list of sub-styles in the restart file; bond
-coefficients need to be re-specified.
-
-.. note::
-
- When both a bond and pair style is defined, the
- :doc:`special_bonds <special_bonds>` command often needs to be used to
- turn off (or weight) the pairwise interaction that would otherwise
- exist between 2 bonded atoms.
-
-In the formulas listed for each bond style, *r* is the distance
-between the 2 atoms in the bond.
-
-
-----------
-
-
-Here is an alphabetic list of bond styles defined in LAMMPS. Click on
-the style to display the formula it computes and coefficients
-specified by the associated :doc:`bond_coeff <bond_coeff>` command.
-
-Note that there are also additional bond styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the bond section of :ref:`this page <cmd_5>`.
-
-* :doc:`bond_style none <bond_none>` - turn off bonded interactions
-* :doc:`bond_style zero <bond_zero>` - topology but no interactions
-* :doc:`bond_style hybrid <bond_hybrid>` - define multiple styles of bond interactions
-
-* :doc:`bond_style class2 <bond_class2>` - COMPASS (class 2) bond
-* :doc:`bond_style fene <bond_fene>` - FENE (finite-extensible non-linear elastic) bond
-* :doc:`bond_style fene/expand <bond_fene_expand>` - FENE bonds with variable size particles
-* :doc:`bond_style harmonic <bond_harmonic>` - harmonic bond
-* :doc:`bond_style morse <bond_morse>` - Morse bond
-* :doc:`bond_style nonlinear <bond_nonlinear>` - nonlinear bond
-* :doc:`bond_style quartic <bond_quartic>` - breakable quartic bond
-* :doc:`bond_style table <bond_table>` - tabulated by bond length
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Bond styles can only be set for atom styles that allow bonds to be
-defined.
-
-Most bond styles are part of the MOLECULE package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-The doc pages for individual bond potentials tell if it is part of a
-package.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-Default
-"""""""
-
-bond_style none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_table.txt b/doc/_sources/bond_table.txt
deleted file mode 100644
index b6d4bee1a..000000000
--- a/doc/_sources/bond_table.txt
+++ /dev/null
@@ -1,172 +0,0 @@
-.. index:: bond_style table
-
-bond_style table command
-========================
-
-bond_style table/omp command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style table style N
-
-* style = *linear* or *spline* = method of interpolation
-* N = use N values in table
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style table linear 1000
- bond_coeff 1 file.table ENTRY1
-
-Description
-"""""""""""
-
-Style *table* creates interpolation tables of length *N* from bond
-potential and force values listed in a file(s) as a function of bond
-length. The files are read by the :doc:`bond_coeff <bond_coeff>`
-command.
-
-The interpolation tables are created by fitting cubic splines to the
-file values and interpolating energy and force values at each of *N*
-distances. During a simulation, these tables are used to interpolate
-energy and force values as needed. The interpolation is done in one
-of 2 styles: *linear* or *spline*.
-
-For the *linear* style, the bond length is used to find 2 surrounding
-table values from which an energy or force is computed by linear
-interpolation.
-
-For the *spline* style, a cubic spline coefficients are computed and
-stored at each of the *N* values in the table. The bond length is
-used to find the appropriate set of coefficients which are used to
-evaluate a cubic polynomial which computes the energy or force.
-
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff <bond_coeff>` command as in the example above.
-
-* filename
-* keyword
-
-The filename specifies a file containing tabulated energy and force
-values. The keyword specifies a section of the file. The format of
-this file is described below.
-
-
-----------
-
-
-The format of a tabulated file is as follows (without the
-parenthesized comments):
-
-.. parsed-literal::
-
- # Bond potential for harmonic (one or more comment or blank lines)
-
-.. parsed-literal::
-
- HAM (keyword is the first text on line)
- N 101 FP 0 0 EQ 0.5 (N, FP, EQ parameters)
- (blank line)
- 1 0.00 338.0000 1352.0000 (index, bond-length, energy, force)
- 2 0.01 324.6152 1324.9600
- ...
- 101 1.00 338.0000 -1352.0000
-
-A section begins with a non-blank line whose 1st character is not a
-"#"; blank lines or lines starting with "#" can be used as comments
-between sections. The first line begins with a keyword which
-identifies the section. The line can contain additional text, but the
-initial text must match the argument specified in the
-:doc:`bond_coeff <bond_coeff>` command. The next line lists (in any
-order) one or more parameters for the table. Each parameter is a
-keyword followed by one or more numeric values.
-
-The parameter "N" is required and its value is the number of table
-entries that follow. Note that this may be different than the *N*
-specified in the :doc:`bond_style table <bond_style>` command. Let
-Ntable = *N* in the bond_style command, and Nfile = "N" in the
-tabulated file. What LAMMPS does is a preliminary interpolation by
-creating splines using the Nfile tabulated values as nodal points. It
-uses these to interpolate as needed to generate energy and force
-values at Ntable different points. The resulting tables of length
-Ntable are then used as described above, when computing energy and
-force for individual bond lengths. This means that if you want the
-interpolation tables of length Ntable to match exactly what is in the
-tabulated file (with effectively no preliminary interpolation), you
-should set Ntable = Nfile.
-
-The "FP" parameter is optional. If used, it is followed by two values
-fplo and fphi, which are the derivatives of the force at the innermost
-and outermost bond lengths. These values are needed by the spline
-construction routines. If not specified by the "FP" parameter, they
-are estimated (less accurately) by the first two and last two force
-values in the table.
-
-The "EQ" parameter is also optional. If used, it is followed by a the
-equilibrium bond length, which is used, for example, by the :doc:`fix shake <fix_shake>` command. If not used, the equilibrium bond
-length is to the distance in the table with the lowest potential energy.
-
-Following a blank line, the next N lines list the tabulated values.
-On each line, the 1st value is the index from 1 to N, the 2nd value is
-the bond length r (in distance units), the 3rd value is the energy (in
-energy units), and the 4th is the force (in force units). The bond
-lengths must range from a LO value to a HI value, and increase from
-one line to the next. If the actual bond length is ever smaller than
-the LO value or larger than the HI value, then the bond energy and
-force is evaluated as if the bond were the LO or HI length.
-
-Note that one file can contain many sections, each with a tabulated
-potential. LAMMPS reads the file section by section until it finds
-one that matches the specified keyword.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This bond style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_coeff <bond_coeff>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_write.txt b/doc/_sources/bond_write.txt
deleted file mode 100644
index 66cf5884b..000000000
--- a/doc/_sources/bond_write.txt
+++ /dev/null
@@ -1,74 +0,0 @@
-.. index:: bond_write
-
-bond_write command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_write btype N inner outer file keyword itype jtype
-
-* btype = bond types
-* N = # of values
-* inner,outer = inner and outer bond length (distance units)
-* file = name of file to write values to
-* keyword = section name in file for this set of tabulated values
-* itype,jtype = 2 atom types (optional)
-*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_write 1 500 0.5 3.5 table.txt Harmonic_1
- bond_write 3 1000 0.1 6.0 table.txt Morse
-
-Description
-"""""""""""
-
-Write energy and force values to a file as a function of distance for
-the currently defined bond potential. This is useful for plotting the
-potential function or otherwise debugging its values. If the file
-already exists, the table of values is appended to the end of the file
-to allow multiple tables of energy and force to be included in one
-file.
-
-The energy and force values are computed at distances from inner to
-outer for 2 interacting atoms forming a bond of type btype, using the
-appropriate :doc:`bond_coeff <bond_coeff>` coefficients. N evenly spaced
-distances are used.
-
-For example, for N = 7, inner = 1.0, and outer = 4.0,
-values are computed at r = 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0.
-
-The file is written in the format used as input for the
-:doc:`bond_style <bond_style>` *table* option with *keyword* as the
-section name. Each line written to the file lists an index number
-(1-N), a distance (in distance units), an energy (in energy units),
-and a force (in force units).
-
-Restrictions
-""""""""""""
-
-
-All force field coefficients for bond and other kinds of interactions
-must be set before this command can be invoked.
-
-Due to how the bond force is computed, an inner value > 0.0 must
-be specified even if the potential has a finite value at r = 0.0.
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_style table <bond_table>`,
-:doc:`bond_style <bond_style>`, :doc:`bond_coeff <bond_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/bond_zero.txt b/doc/_sources/bond_zero.txt
deleted file mode 100644
index 975e681b9..000000000
--- a/doc/_sources/bond_zero.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-.. index:: bond_style zero
-
-bond_style zero command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- bond_style zero *nocoeff*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- bond_style zero
- bond_style zero nocoeff
- bond_coeff *
- bond_coeff * 2.14
-
-Description
-"""""""""""
-
-Using an bond style of zero means bond forces and energies are not
-computed, but the geometry of bond pairs is still accessible to other
-commands.
-
-As an example, the :doc:`compute bond/local <compute_bond_local>`
-command can be used to compute distances for the list of pairs of bond
-atoms listed in the data file read by the :doc:`read_data <read_data>`
-command. If no bond style is defined, this command cannot be used.
-
-The optional *nocoeff* flag allows to read data files with a BondCoeff
-section for any bond style. Similarly, any bond_coeff commands
-will only be checked for the bond type number and the rest ignored.
-
-Note that the :doc:`bond_coeff <bond_coeff>` command must be used for
-all bond types. If specified, there can be only one value, which is
-going to be used to assign an equilibrium distance, e.g. for use with
-:doc:`fix shake <fix_shake>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`bond_style none <bond_none>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/boundary.txt b/doc/_sources/boundary.txt
deleted file mode 100644
index 99f5ff6f0..000000000
--- a/doc/_sources/boundary.txt
+++ /dev/null
@@ -1,114 +0,0 @@
-.. index:: boundary
-
-boundary command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- boundary x y z
-
-* x,y,z = *p* or *s* or *f* or *m*, one or two letters
-.. parsed-literal::
-
- *p* is periodic
- *f* is non-periodic and fixed
- *s* is non-periodic and shrink-wrapped
- *m* is non-periodic and shrink-wrapped with a minimum value
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- boundary p p f
- boundary p fs p
- boundary s f fm
-
-Description
-"""""""""""
-
-Set the style of boundaries for the global simulation box in each
-dimension. A single letter assigns the same style to both the lower
-and upper face of the box. Two letters assigns the first style to the
-lower face and the second style to the upper face. The initial size
-of the simulation box is set by the :doc:`read_data <read_data>`,
-:doc:`read_restart <read_restart>`, or :doc:`create_box <create_box>`
-commands.
-
-The style *p* means the box is periodic, so that particles interact
-across the boundary, and they can exit one end of the box and re-enter
-the other end. A periodic dimension can change in size due to
-constant pressure boundary conditions or box deformation (see the :doc:`fix npt <fix_nh>` and :doc:`fix deform <fix_deform>` commands). The *p*
-style must be applied to both faces of a dimension.
-
-The styles *f*, *s*, and *m* mean the box is non-periodic, so that
-particles do not interact across the boundary and do not move from one
-side of the box to the other.
-
-For style *f*, the position of the face is fixed. If an atom moves
-outside the face it will be deleted on the next timestep that
-reneighboring occurs. This will typically generate an error unless
-you have set the :doc:`thermo_modify lost <thermo_modify>` option to
-allow for lost atoms.
-
-For style *s*, the position of the face is set so as to encompass the
-atoms in that dimension (shrink-wrapping), no matter how far they
-move.
-
-For style *m*, shrink-wrapping occurs, but is bounded by the value
-specified in the data or restart file or set by the
-:doc:`create_box <create_box>` command. For example, if the upper z
-face has a value of 50.0 in the data file, the face will always be
-positioned at 50.0 or above, even if the maximum z-extent of all the
-atoms becomes less than 50.0. This can be useful if you start a
-simulation with an empty box or if you wish to leave room on one side
-of the box, e.g. for atoms to evaporate from a surface.
-
-For triclinic (non-orthogonal) simulation boxes, if the 2nd dimension
-of a tilt factor (e.g. y for xy) is periodic, then the periodicity is
-enforced with the tilt factor offset. If the 1st dimension is
-shrink-wrapped, then the shrink wrapping is applied to the tilted box
-face, to encompass the atoms. E.g. for a positive xy tilt, the xlo
-and xhi faces of the box are planes tilting in the +y direction as y
-increases. These tilted planes are shrink-wrapped around the atoms to
-determine the x extent of the box.
-
-See :ref:`Section_howto 12 <howto_12>` of the doc pages
-for a geometric description of triclinic boxes, as defined by LAMMPS,
-and how to transform these parameters to and from other commonly used
-triclinic representations.
-
-Restrictions
-""""""""""""
-
-
-This command cannot be used after the simulation box is defined by a
-:doc:`read_data <read_data>` or :doc:`create_box <create_box>` command or
-:doc:`read_restart <read_restart>` command. See the
-:doc:`change_box <change_box>` command for how to change the simulation
-box boundaries after it has been defined.
-
-For 2d simulations, the z dimension must be periodic.
-
-Related commands
-""""""""""""""""
-
-See the :doc:`thermo_modify <thermo_modify>` command for a discussion
-of lost atoms.
-
-Default
-"""""""
-
-.. parsed-literal::
-
- boundary p p p
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/box.txt b/doc/_sources/box.txt
deleted file mode 100644
index e77f24c1a..000000000
--- a/doc/_sources/box.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-.. index:: box
-
-box command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- box keyword value ...
-
-* one or more keyword/value pairs may be appended
-* keyword = *tilt*
-.. parsed-literal::
-
- *tilt* value = *small* or *large*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- box tilt large
- box tilt small
-
-Description
-"""""""""""
-
-Set attributes of the simulation box.
-
-For triclinic (non-orthogonal) simulation boxes, the *tilt* keyword
-allows simulation domains to be created with arbitrary tilt factors,
-e.g. via the :doc:`create_box <create_box>` or
-:doc:`read_data <read_data>` commands. Tilt factors determine how
-skewed the triclinic box is; see :ref:`this section <howto_12>` of the manual for a discussion of
-triclinic boxes in LAMMPS.
-
-LAMMPS normally requires that no tilt factor can skew the box more
-than half the distance of the parallel box length, which is the 1st
-dimension in the tilt factor (x for xz). If *tilt* is set to
-*small*, which is the default, then an error will be
-generated if a box is created which exceeds this limit. If *tilt*
-is set to *large*, then no limit is enforced. You can create
-a box with any tilt factors you wish.
-
-Note that if a simulation box has a large tilt factor, LAMMPS will run
-less efficiently, due to the large volume of communication needed to
-acquire ghost atoms around a processor's irregular-shaped sub-domain.
-For extreme values of tilt, LAMMPS may also lose atoms and generate an
-error.
-
-Restrictions
-""""""""""""
-
-
-This command cannot be used after the simulation box is defined by a
-:doc:`read_data <read_data>` or :doc:`create_box <create_box>` command or
-:doc:`read_restart <read_restart>` command.
-
-**Related commands:** none
-
-Default
-"""""""
-
-The default value is tilt = small.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/change_box.txt b/doc/_sources/change_box.txt
deleted file mode 100644
index 56f220f20..000000000
--- a/doc/_sources/change_box.txt
+++ /dev/null
@@ -1,381 +0,0 @@
-.. index:: change_box
-
-change_box command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- change_box group-ID parameter args ... keyword args ...
-
-* group-ID = ID of group of atoms to (optionally) displace
-* one or more parameter/arg pairs may be appended
-.. parsed-literal::
-
- parameter = *x* or *y* or *z* or *xy* or *xz* or *yz* or *boundary* or *ortho* or *triclinic* or *set* or *remap*
- *x*, *y*, *z* args = style value(s)
- style = *final* or *delta* or *scale* or *volume*
- *final* values = lo hi
- lo hi = box boundaries after displacement (distance units)
- *delta* values = dlo dhi
- dlo dhi = change in box boundaries after displacement (distance units)
- *scale* values = factor
- factor = multiplicative factor for change in box length after displacement
- *volume* value = none = adjust this dim to preserve volume of system
- *xy*, *xz*, *yz* args = style value
- style = *final* or *delta*
- *final* value = tilt
- tilt = tilt factor after displacement (distance units)
- *delta* value = dtilt
- dtilt = change in tilt factor after displacement (distance units)
- *boundary* args = x y z
- x,y,z = *p* or *s* or *f* or *m*, one or two letters
- *p* is periodic
- *f* is non-periodic and fixed
- *s* is non-periodic and shrink-wrapped
- *m* is non-periodic and shrink-wrapped with a minimum value
- *ortho* args = none = change box to orthogonal
- *triclinic* args = none = change box to triclinic
- *set* args = none = store state of current box
- *remap* args = none = remap atom coords from last saved state to current box
-
-* zero or more keyword/value pairs may be appended
-* keyword = *units*
-.. parsed-literal::
-
- *units* value = *lattice* or *box*
- lattice = distances are defined in lattice units
- box = distances are defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- change_box all xy final -2.0 z final 0.0 5.0 boundary p p f remap units box
- change_box all x scale 1.1 y volume z volume remap
-
-Description
-"""""""""""
-
-Change the volume and/or shape and/or boundary conditions for the
-simulation box. Orthogonal simulation boxes have 3 adjustable size
-parameters (x,y,z). Triclinic (non-orthogonal) simulation boxes have
-6 adjustable size/shape parameters (x,y,z,xy,xz,yz). Any or all of
-them can be adjusted independently by this command. Thus it can be
-used to expand or contract a box, or to apply a shear strain to a
-non-orthogonal box. It can also be used to change the boundary
-conditions for the simulation box, similar to the
-:doc:`boundary <boundary>` command.
-
-The size and shape of the initial simulation box are specified by the
-:doc:`create_box <create_box>` or :doc:`read_data <read_data>` or
-:doc:`read_restart <read_restart>` command used to setup the simulation.
-The size and shape may be altered by subsequent runs, e.g. by use of
-the :doc:`fix npt <fix_nh>` or :doc:`fix deform <fix_deform>` commands.
-The :doc:`create_box <create_box>`, :doc:`read data <read_data>`, and
-:doc:`read_restart <read_restart>` commands also determine whether the
-simulation box is orthogonal or triclinic and their doc pages explain
-the meaning of the xy,xz,yz tilt factors.
-
-See :ref:`Section_howto 12 <howto_12>` of the doc pages
-for a geometric description of triclinic boxes, as defined by LAMMPS,
-and how to transform these parameters to and from other commonly used
-triclinic representations.
-
-The keywords used in this command are applied sequentially to the
-simulation box and the atoms in it, in the order specified.
-
-Before the sequence of keywords are invoked, the current box
-size/shape is stored, in case a *remap* keyword is used to map the
-atom coordinates from a previously stored box size/shape to the
-current one.
-
-After all the keywords have been processed, any shrink-wrap boundary
-conditions are invoked (see the :doc:`boundary <boundary>` command)
-which may change simulation box boundaries, and atoms are migrated to
-new owning processors.
-
-.. note::
-
- This means that you cannot use the change_box command to enlarge
- a shrink-wrapped box, e.g. to make room to insert more atoms via the
- :doc:`create_atoms <create_atoms>` command, because the simulation box
- will be re-shrink-wrapped before the change_box command completes.
- Instead you could do something like this, assuming the simulation box
- is non-periodic and atoms extend from 0 to 20 in all dimensions:
-
-.. parsed-literal::
-
- change_box all x final -10 20
- create_atoms 1 single -5 5 5 # this will fail to insert an atom
-
-.. parsed-literal::
-
- change_box all x final -10 20 boundary f s s
- create_atoms 1 single -5 5 5
- change_box boundary s s s # this will work
-
-.. note::
-
- Unlike the earlier "displace_box" version of this command, atom
- remapping is NOT performed by default. This command allows remapping
- to be done in a more general way, exactly when you specify it (zero or
- more times) in the sequence of transformations. Thus if you do not
- use the *remap* keyword, atom coordinates will not be changed even if
- the box size/shape changes. If a uniformly strained state is desired,
- the *remap* keyword should be specified.
-
-.. note::
-
- It is possible to lose atoms with this command. E.g. by
- changing the box without remapping the atoms, and having atoms end up
- outside of non-periodic boundaries. It is also possible to alter
- bonds between atoms straddling a boundary in bad ways. E.g. by
- converting a boundary from periodic to non-periodic. It is also
- possible when remapping atoms to put them (nearly) on top of each
- other. E.g. by converting a boundary from non-periodic to periodic.
- All of these will typically lead to bad dynamics and/or generate error
- messages.
-
-.. note::
-
- The simulation box size/shape can be changed by arbitrarily
- large amounts by this command. This is not a problem, except that the
- mapping of processors to the simulation box is not changed from its
- initial 3d configuration; see the :doc:`processors <processors>`
- command. Thus, if the box size/shape changes dramatically, the
- mapping of processors to the simulation box may not end up as optimal
- as the initial mapping attempted to be.
-
-.. note::
-
- Because the keywords used in this command are applied one at a
- time to the simulation box and the atoms in it, care must be taken
- with triclinic cells to avoid exceeding the limits on skew after each
- transformation in the sequence. If skew is exceeded before the final
- transformation this can be avoided by changing the order of the
- sequence, or breaking the transformation into two or more smaller
- transformations. For more information on the allowed limits for box
- skew see the discussion on triclinic boxes on :ref:`this page <howto_12>`.
-
-
-----------
-
-
-For the *x*, *y*, and *z* parameters, this is the meaning of their
-styles and values.
-
-For style *final*, the final lo and hi box boundaries of a dimension
-are specified. The values can be in lattice or box distance units.
-See the discussion of the units keyword below.
-
-For style *delta*, plus or minus changes in the lo/hi box boundaries
-of a dimension are specified. The values can be in lattice or box
-distance units. See the discussion of the units keyword below.
-
-For style *scale*, a multiplicative factor to apply to the box length
-of a dimension is specified. For example, if the initial box length
-is 10, and the factor is 1.1, then the final box length will be 11. A
-factor less than 1.0 means compression.
-
-The *volume* style changes the specified dimension in such a way that
-the overall box volume remains constant with respect to the operation
-performed by the preceding keyword. The *volume* style can only be
-used following a keyword that changed the volume, which is any of the
-*x*, *y*, *z* keywords. If the preceding keyword "key" had a *volume*
-style, then both it and the current keyword apply to the keyword
-preceding "key". I.e. this sequence of keywords is allowed:
-
-.. parsed-literal::
-
- change_box all x scale 1.1 y volume z volume
-
-The *volume* style changes the associated dimension so that the
-overall box volume is unchanged relative to its value before the
-preceding keyword was invoked.
-
-If the following command is used, then the z box length will shrink by
-the same 1.1 factor the x box length was increased by:
-
-.. parsed-literal::
-
- change_box all x scale 1.1 z volume
-
-If the following command is used, then the y,z box lengths will each
-shrink by sqrt(1.1) to keep the volume constant. In this case, the
-y,z box lengths shrink so as to keep their relative aspect ratio
-constant:
-
-.. parsed-literal::
-
- change_box all"x scale 1.1 y volume z volume
-
-If the following command is used, then the final box will be a factor
-of 10% larger in x and y, and a factor of 21% smaller in z, so as to
-keep the volume constant:
-
-.. parsed-literal::
-
- change_box all x scale 1.1 z volume y scale 1.1 z volume
-
-.. note::
-
- For solids or liquids, when one dimension of the box is
- expanded, it may be physically undesirable to hold the other 2 box
- lengths constant since that implies a density change. For solids,
- adjusting the other dimensions via the *volume* style may make
- physical sense (just as for a liquid), but may not be correct for
- materials and potentials whose Poisson ratio is not 0.5.
-
-For the *scale* and *volume* styles, the box length is expanded or
-compressed around its mid point.
-
-
-----------
-
-
-For the *xy*, *xz*, and *yz* parameters, this is the meaning of their
-styles and values. Note that changing the tilt factors of a triclinic
-box does not change its volume.
-
-For style *final*, the final tilt factor is specified. The value
-can be in lattice or box distance units. See the discussion of the
-units keyword below.
-
-For style *delta*, a plus or minus change in the tilt factor is
-specified. The value can be in lattice or box distance units. See
-the discussion of the units keyword below.
-
-All of these styles change the xy, xz, yz tilt factors. In LAMMPS,
-tilt factors (xy,xz,yz) for triclinic boxes are required to be no more
-than half the distance of the parallel box length. For example, if
-xlo = 2 and xhi = 12, then the x box length is 10 and the xy tilt
-factor must be between -5 and 5. Similarly, both xz and yz must be
-between -(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is not a
-limitation, since if the maximum tilt factor is 5 (as in this
-example), then configurations with tilt = ..., -15, -5, 5, 15, 25,
-... are all equivalent. Any tilt factor specified by this command
-must be within these limits.
-
-
-----------
-
-
-The *boundary* keyword takes arguments that have exactly the same
-meaning as they do for the :doc:`boundary <boundary>` command. In each
-dimension, a single letter assigns the same style to both the lower
-and upper face of the box. Two letters assigns the first style to the
-lower face and the second style to the upper face.
-
-The style *p* means the box is periodic; the other styles mean
-non-periodic. For style *f*, the position of the face is fixed. For
-style *s*, the position of the face is set so as to encompass the
-atoms in that dimension (shrink-wrapping), no matter how far they
-move. For style *m*, shrink-wrapping occurs, but is bounded by the
-current box edge in that dimension, so that the box will become no
-smaller. See the :doc:`boundary <boundary>` command for more
-explanation of these style options.
-
-Note that the "boundary" command itself can only be used before the
-simulation box is defined via a :doc:`read_data <read_data>` or
-:doc:`create_box <create_box>` or :doc:`read_restart <read_restart>`
-command. This command allows the boundary conditions to be changed
-later in your input script. Also note that the
-:doc:`read_restart <read_restart>` will change boundary conditions to
-match what is stored in the restart file. So if you wish to change
-them, you should use the change_box command after the read_restart
-command.
-
-
-----------
-
-
-The *ortho* and *triclinic* keywords convert the simulation box to be
-orthogonal or triclinic (non-orthongonal). See :ref:`this section <howto_13>` for a discussion of how non-orthongal
-boxes are represented in LAMMPS.
-
-The simulation box is defined as either orthogonal or triclinic when
-it is created via the :doc:`create_box <create_box>`,
-:doc:`read_data <read_data>`, or :doc:`read_restart <read_restart>`
-commands.
-
-These keywords allow you to toggle the existing simulation box from
-orthogonal to triclinic and vice versa. For example, an initial
-equilibration simulation can be run in an orthogonal box, the box can
-be toggled to triclinic, and then a :ref:`non-equilibrium MD (NEMD) simulation <howto_13>` can be run with deformation
-via the :doc:`fix deform <fix_deform>` command.
-
-If the simulation box is currently triclinic and has non-zero tilt in
-xy, yz, or xz, then it cannot be converted to an orthogonal box.
-
-
-----------
-
-
-The *set* keyword saves the current box size/shape. This can be
-useful if you wish to use the *remap* keyword more than once or if you
-wish it to be applied to an intermediate box size/shape in a sequence
-of keyword operations. Note that the box size/shape is saved before
-any of the keywords are processed, i.e. the box size/shape at the time
-the create_box command is encountered in the input script.
-
-The *remap* keyword remaps atom coordinates from the last saved box
-size/shape to the current box state. For example, if you stretch the
-box in the x dimension or tilt it in the xy plane via the *x* and *xy*
-keywords, then the *remap* commmand will dilate or tilt the atoms to
-conform to the new box size/shape, as if the atoms moved with the box
-as it deformed.
-
-Note that this operation is performed without regard to periodic
-boundaries. Also, any shrink-wrapping of non-periodic boundaries (see
-the :doc:`boundary <boundary>` command) occurs after all keywords,
-including this one, have been processed.
-
-Only atoms in the specified group are remapped.
-
-
-----------
-
-
-The *units* keyword determines the meaning of the distance units used
-to define various arguments. A *box* value selects standard distance
-units as defined by the :doc:`units <units>` command, e.g. Angstroms for
-units = real or metal. A *lattice* value means the distance units are
-in lattice spacings. The :doc:`lattice <lattice>` command must have
-been previously used to define the lattice spacing.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-If you use the *ortho* or *triclinic* keywords, then at the point in
-the input script when this command is issued, no :doc:`dumps <dump>` can
-be active, nor can a :doc:`fix ave/spatial <fix_ave_spatial>` or :doc:`fix deform <fix_deform>` be active. This is because these commands
-test whether the simulation box is orthogonal when they are first
-issued. Note that these commands can be used in your script before a
-change_box command is issued, so long as an :doc:`undump <undump>` or
-:doc:`unfix <unfix>` command is also used to turn them off.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix deform <fix_deform>`, :doc:`boundary <boundary>`
-
-Default
-"""""""
-
-The option default is units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/clear.txt b/doc/_sources/clear.txt
deleted file mode 100644
index f145148cb..000000000
--- a/doc/_sources/clear.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-.. index:: clear
-
-clear command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- clear
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- (commands for 1st simulation)
- clear
- (commands for 2nd simulation)
-
-Description
-"""""""""""
-
-This command deletes all atoms, restores all settings to their default
-values, and frees all memory allocated by LAMMPS. Once a clear
-command has been executed, it is almost as if LAMMPS were starting
-over, with only the exceptions noted below. This command enables
-multiple jobs to be run sequentially from one input script.
-
-These settings are not affected by a clear command: the working
-directory (:doc:`shell <shell>` command), log file status
-(:doc:`log <log>` command), echo status (:doc:`echo <echo>` command), and
-input script variables (:doc:`variable <variable>` command).
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/comm_modify.txt b/doc/_sources/comm_modify.txt
deleted file mode 100644
index 79a3f5be4..000000000
--- a/doc/_sources/comm_modify.txt
+++ /dev/null
@@ -1,177 +0,0 @@
-.. index:: comm_modify
-
-comm_modify command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- comm_modify keyword value ...
-
-* zero or more keyword/value pairs may be appended
-* keyword = *mode* or *cutoff* or *cutoff/multi* or *group* or *vel*
-.. parsed-literal::
-
- *mode* value = *single* or *multi* = communicate atoms within a single or multiple distances
- *cutoff* value = Rcut (distance units) = communicate atoms from this far away
- *cutoff/multi* type value
- type = atom type or type range (supports asterisk notation)
- value = Rcut (distance units) = communicate atoms for selected types from this far away
- *group* value = group-ID = only communicate atoms in the group
- *vel* value = *yes* or *no* = do or do not communicate velocity info with ghost atoms
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- comm_modify mode multi
- comm_modify mode multi group solvent
- comm_modift mode multi cutoff/multi 1 10.0 cutoff/multi 2*4 15.0
- comm_modify vel yes
- comm_modify mode single cutoff 5.0 vel yes
- comm_modify cutoff/multi * 0.0
-
-Description
-"""""""""""
-
-This command sets parameters that affect the inter-processor
-communication of atom information that occurs each timestep as
-coordinates and other properties are exchanged between neighboring
-processors and stored as properties of ghost atoms.
-
-.. note::
-
- These options apply to the currently defined comm style. When
- you specify a :doc:`comm_style <comm_style>` command, all communication
- settings are restored to their default values, including those
- previously reset by a comm_modify command. Thus if your input script
- specifies a comm_style command, you should use the comm_modify command
- after it.
-
-The *mode* keyword determines whether a single or multiple cutoff
-distances are used to determine which atoms to communicate.
-
-The default mode is *single* which means each processor acquires
-information for ghost atoms that are within a single distance from its
-sub-domain. The distance is by default the maximum of the neighbor
-cutoff across all atom type pairs.
-
-For many systems this is an efficient algorithm, but for systems with
-widely varying cutoffs for different type pairs, the *multi* mode can
-be faster. In this case, each atom type is assigned its own distance
-cutoff for communication purposes, and fewer atoms will be
-communicated. See the :doc:`neighbor multi <neighbor>` command for a
-neighbor list construction option that may also be beneficial for
-simulations of this kind.
-
-The *cutoff* keyword allows you to extend the ghost cutoff distance
-for communication mode *single*, which is the distance from the borders
-of a processor's sub-domain at which ghost atoms are acquired from other
-processors. By default the ghost cutoff = neighbor cutoff = pairwise
-force cutoff + neighbor skin. See the :doc:`neighbor <neighbor>` command
-for more information about the skin distance. If the specified Rcut is
-greater than the neighbor cutoff, then extra ghost atoms will be acquired.
-If the provided cutoff is smaller, the provided value will be ignored
-and the ghost cutoff is set to the neighbor cutoff. Specifying a
-cutoff value of 0.0 will reset any previous value to the default.
-
-The *cutoff/multi* option is equivalent to *cutoff*, but applies to
-communication mode *multi* instead. Since in this case the communication
-cutoffs are determined per atom type, a type specifier is needed and
-cutoff for one or multiple types can be extended. Also ranges of types
-using the usual asterisk notation can be given.
-
-These are simulation scenarios in which it may be useful or even
-necessary to set a ghost cutoff > neighbor cutoff:
-
-* a single polymer chain with bond interactions, but no pairwise interactions
-* bonded interactions (e.g. dihedrals) extend further than the pairwise cutoff
-* ghost atoms beyond the pairwise cutoff are needed for some computation
-
-In the first scenario, a pairwise potential is not defined. Thus the
-pairwise neighbor cutoff will be 0.0. But ghost atoms are still
-needed for computing bond, angle, etc interactions between atoms on
-different processors, or when the interaction straddles a periodic
-boundary.
-
-The appropriate ghost cutoff depends on the :doc:`newton bond <newton>`
-setting. For newton bond *off*, the distance needs to be the furthest
-distance between any two atoms in the bond, angle, etc. E.g. the
-distance between 1-4 atoms in a dihedral. For newton bond *on*, the
-distance between the central atom in the bond, angle, etc and any
-other atom is sufficient. E.g. the distance between 2-4 atoms in a
-dihedral.
-
-In the second scenario, a pairwise potential is defined, but its
-neighbor cutoff is not sufficiently long enough to enable bond, angle,
-etc terms to be computed. As in the previous scenario, an appropriate
-ghost cutoff should be set.
-
-In the last scenario, a :doc:`fix <fix>` or :doc:`compute <compute>` or
-:doc:`pairwise potential <pair_style>` needs to calculate with ghost
-atoms beyond the normal pairwise cutoff for some computation it
-performs (e.g. locate neighbors of ghost atoms in a multibody pair
-potential). Setting the ghost cutoff appropriately can insure it will
-find the needed atoms.
-
-.. note::
-
- In these scenarios, if you do not set the ghost cutoff long
- enough, and if there is only one processor in a periodic dimension
- (e.g. you are running in serial), then LAMMPS may "find" the atom it
- is looking for (e.g. the partner atom in a bond), that is on the far
- side of the simulation box, across a periodic boundary. This will
- typically lead to bad dynamics (i.e. the bond length is now the
- simulation box length). To detect if this is happening, see the
- :doc:`neigh_modify cluster <neigh_modify>` command.
-
-The *group* keyword will limit communication to atoms in the specified
-group. This can be useful for models where no ghost atoms are needed
-for some kinds of particles. All atoms (not just those in the
-specified group) will still migrate to new processors as they move.
-The group specified with this option must also be specified via the
-:doc:`atom_modify first <atom_modify>` command.
-
-The *vel* keyword enables velocity information to be communicated with
-ghost particles. Depending on the :doc:`atom_style <atom_style>`,
-velocity info includes the translational velocity, angular velocity,
-and angular momentum of a particle. If the *vel* option is set to
-*yes*, then ghost atoms store these quantities; if *no* then they do
-not. The *yes* setting is needed by some pair styles which require
-the velocity state of both the I and J particles to compute a pairwise
-I,J interaction.
-
-Note that if the :doc:`fix deform <fix_deform>` command is being used
-with its "remap v" option enabled, then the velocities for ghost atoms
-(in the fix deform group) mirrored across a periodic boundary will
-also include components due to any velocity shift that occurs across
-that boundary (e.g. due to dilation or shear).
-
-Restrictions
-""""""""""""
-
-
-Communication mode *multi* is currently only available for
-:doc:`comm_style <comm_style>` *brick*.
-
-Related commands
-""""""""""""""""
-
-:doc:`comm_style <comm_style>`, :doc:`neighbor <neighbor>`
-
-Default
-"""""""
-
-The option defauls are mode = single, group = all, cutoff = 0.0, vel =
-no. The cutoff default of 0.0 means that ghost cutoff = neighbor
-cutoff = pairwise force cutoff + neighbor skin.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/comm_style.txt b/doc/_sources/comm_style.txt
deleted file mode 100644
index b788de751..000000000
--- a/doc/_sources/comm_style.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-.. index:: comm_style
-
-comm_style command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- comm_style style
-
-* style = *brick* or *tiled*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- comm_style brick
- comm_style tiled
-
-Description
-"""""""""""
-
-This command sets the style of inter-processor communication of atom
-information that occurs each timestep as coordinates and other
-properties are exchanged between neighboring processors and stored as
-properties of ghost atoms.
-
-For the default *brick* style, the domain decomposition used by LAMMPS
-to partition the simulation box must be a regular 3d grid of bricks,
-one per processor. Each processor communicates with its 6 Cartesian
-neighbors in the grid to acquire information for nearby atoms.
-
-For the *tiled* style, a more general domain decomposition can be
-used, as triggered by the :doc:`balance <balance>` or :doc:`fix balance <fix_balance>` commands. The simulation box can be
-partitioned into non-overlapping rectangular-shaped "tiles" or varying
-sizes and shapes. Again there is one tile per processor. To acquire
-information for nearby atoms, communication must now be done with a
-more complex pattern of neighboring processors.
-
-Note that this command does not actually define a partitoining of the
-simulation box (a domain decomposition), rather it determines what
-kinds of decompositions are allowed and the pattern of communication
-used to enable the decomposition. A decomposition is created when the
-simulation box is first created, via the :doc:`create_box <create_box>`
-or :doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands. For both the *brick* and *tiled* styles, the initial
-decomposition will be the same, as described by
-:doc:`create_box <create_box>` and :doc:`processors <processors>`
-commands. The decomposition can be changed via the
-:doc:`balance <balance>` or :doc:`fix balance <fix_balance>` commands.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`comm_modify <comm_modify>`, :doc:`processors <processors>`,
-:doc:`balance <balance>`, :doc:`fix balance <fix_balance>`
-
-Default
-"""""""
-
-The default style is brick.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute.txt b/doc/_sources/compute.txt
deleted file mode 100644
index 275d19f6e..000000000
--- a/doc/_sources/compute.txt
+++ /dev/null
@@ -1,272 +0,0 @@
-.. index:: compute
-
-compute command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID style args
-
-* ID = user-assigned name for the computation
-* group-ID = ID of the group of atoms to perform the computation on
-* style = one of a list of possible style names (see below)
-* args = arguments used by a particular style
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all temp
- compute newtemp flow temp/partial 1 1 0
- compute 3 all ke/atom
-
-Description
-"""""""""""
-
-Define a computation that will be performed on a group of atoms.
-Quantities calculated by a compute are instantaneous values, meaning
-they are calculated from information about atoms on the current
-timestep or iteration, though a compute may internally store some
-information about a previous state of the system. Defining a compute
-does not perform a computation. Instead computes are invoked by other
-LAMMPS commands as needed, e.g. to calculate a temperature needed for
-a thermostat fix or to generate thermodynamic or dump file output.
-See this :ref:`howto section <howto_15>` for a summary of
-various LAMMPS output options, many of which involve computes.
-
-The ID of a compute can only contain alphanumeric characters and
-underscores.
-
-
-----------
-
-
-Computes calculate one of three styles of quantities: global,
-per-atom, or local. A global quantity is one or more system-wide
-values, e.g. the temperature of the system. A per-atom quantity is
-one or more values per atom, e.g. the kinetic energy of each atom.
-Per-atom values are set to 0.0 for atoms not in the specified compute
-group. Local quantities are calculated by each processor based on the
-atoms it owns, but there may be zero or more per atom, e.g. a list of
-bond distances. Computes that produce per-atom quantities have the
-word "atom" in their style, e.g. *ke/atom*. Computes that produce
-local quantities have the word "local" in their style,
-e.g. *bond/local*. Styles with neither "atom" or "local" in their
-style produce global quantities.
-
-Note that a single compute produces either global or per-atom or local
-quantities, but never more than one of these (with only a few
-exceptions, as documented by individual compute commands).
-
-Global, per-atom, and local quantities each come in three kinds: a
-single scalar value, a vector of values, or a 2d array of values. The
-doc page for each compute describes the style and kind of values it
-produces, e.g. a per-atom vector. Some computes produce more than one
-kind of a single style, e.g. a global scalar and a global vector.
-
-When a compute quantity is accessed, as in many of the output commands
-discussed below, it can be referenced via the following bracket
-notation, where ID is the ID of the compute:
-
-+------------+--------------------------------------------+
-| c_ID | entire scalar, vector, or array |
-+------------+--------------------------------------------+
-| c_ID[I] | one element of vector, one column of array |
-+------------+--------------------------------------------+
-| c_ID[I][J] | one element of array |
-+------------+--------------------------------------------+
-
-In other words, using one bracket reduces the dimension of the
-quantity once (vector -> scalar, array -> vector). Using two brackets
-reduces the dimension twice (array -> scalar). Thus a command that
-uses scalar compute values as input can also process elements of a
-vector or array.
-
-Note that commands and :doc:`variables <variable>` which use compute
-quantities typically do not allow for all kinds, e.g. a command may
-require a vector of values, not a scalar. This means there is no
-ambiguity about referring to a compute quantity as c_ID even if it
-produces, for example, both a scalar and vector. The doc pages for
-various commands explain the details.
-
-
-----------
-
-
-In LAMMPS, the values generated by a compute can be used in several
-ways:
-
-* The results of computes that calculate a global temperature or
- pressure can be used by fixes that do thermostatting or barostatting
- or when atom velocities are created.
-* Global values can be output via the :doc:`thermo_style custom <thermo_style>` or :doc:`fix ave/time <fix_ave_time>` command.
- Or the values can be referenced in a :doc:`variable equal <variable>` or
- :doc:`variable atom <variable>` command.
-* Per-atom values can be output via the :doc:`dump custom <dump>` command
- or the :doc:`fix ave/spatial <fix_ave_spatial>` command. Or they can be
- time-averaged via the :doc:`fix ave/atom <fix_ave_atom>` command or
- reduced by the :doc:`compute reduce <compute_reduce>` command. Or the
- per-atom values can be referenced in an :doc:`atom-style variable <variable>`.
-* Local values can be reduced by the :doc:`compute reduce <compute_reduce>` command, or histogrammed by the :doc:`fix ave/histo <fix_ave_histo>` command, or output by the :doc:`dump local <dump>` command.
-The results of computes that calculate global quantities can be either
-"intensive" or "extensive" values. Intensive means the value is
-independent of the number of atoms in the simulation,
-e.g. temperature. Extensive means the value scales with the number of
-atoms in the simulation, e.g. total rotational kinetic energy.
-:doc:`Thermodynamic output <thermo_style>` will normalize extensive
-values by the number of atoms in the system, depending on the
-"thermo_modify norm" setting. It will not normalize intensive values.
-If a compute value is accessed in another way, e.g. by a
-:doc:`variable <variable>`, you may want to know whether it is an
-intensive or extensive value. See the doc page for individual
-computes for further info.
-
-
-----------
-
-
-LAMMPS creates its own computes internally for thermodynamic output.
-Three computes are always created, named "thermo_temp",
-"thermo_press", and "thermo_pe", as if these commands had been invoked
-in the input script:
-
-.. parsed-literal::
-
- compute thermo_temp all temp
- compute thermo_press all pressure thermo_temp
- compute thermo_pe all pe
-
-Additional computes for other quantities are created if the thermo
-style requires it. See the documentation for the
-:doc:`thermo_style <thermo_style>` command.
-
-Fixes that calculate temperature or pressure, i.e. for thermostatting
-or barostatting, may also create computes. These are discussed in the
-documentation for specific :doc:`fix <fix>` commands.
-
-In all these cases, the default computes LAMMPS creates can be
-replaced by computes defined by the user in the input script, as
-described by the :doc:`thermo_modify <thermo_modify>` and :doc:`fix modify <fix_modify>` commands.
-
-Properties of either a default or user-defined compute can be modified
-via the :doc:`compute_modify <compute_modify>` command.
-
-Computes can be deleted with the :doc:`uncompute <uncompute>` command.
-
-Code for new computes can be added to LAMMPS (see :doc:`this section <Section_modify>` of the manual) and the results of their
-calculations accessed in the various ways described above.
-
-
-----------
-
-
-Each compute style has its own doc page which describes its arguments
-and what it does. Here is an alphabetic list of compute styles
-available in LAMMPS. They are also given in more compact form in the
-Compute section of :ref:`this page <cmd_5>`.
-
-There are also additional compute styles (not listed here) submitted
-by users which are included in the LAMMPS distribution. The list of
-these with links to the individual styles are given in the compute
-section of :ref:`this page <cmd_5>`.
-
-* :doc:`angle/local <compute_bond_local>` - theta and energy of each angle
-* :doc:`angmom/chunk <compute_angmom_chunk>` - angular momentum for each chunk
-* :doc:`body/local <compute_body_local>` - attributes of body sub-particles
-* :doc:`bond <compute_bond>` - values computed by a bond style
-* :doc:`bond/local <compute_bond_local>` - distance and energy of each bond
-* :doc:`centro/atom <compute_centro_atom>` - centro-symmetry parameter for each atom
-* :doc:`chunk/atom <compute_chunk_atom>` - assign chunk IDs to each atom
-* :doc:`cluster/atom <compute_cluster_atom>` - cluster ID for each atom
-* :doc:`cna/atom <compute_cna_atom>` - common neighbor analysis (CNA) for each atom
-* :doc:`com <compute_com>` - center-of-mass of group of atoms
-* :doc:`com/chunk <compute_com_chunk>` - center-of-mass for each chunk
-* :doc:`contact/atom <compute_contact_atom>` - contact count for each spherical particle
-* :doc:`coord/atom <compute_coord_atom>` - coordination number for each atom
-* :doc:`damage/atom <compute_damage_atom>` - Peridynamic damage for each atom
-* :doc:`dihedral/local <compute_dihedral_local>` - angle of each dihedral
-* :doc:`dilatation/atom <compute_dilatation_atom>` - Peridynamic dilatation for each atom
-* :doc:`displace/atom <compute_displace_atom>` - displacement of each atom
-* :doc:`erotate/asphere <compute_erotate_asphere>` - rotational energy of aspherical particles
-* :doc:`erotate/rigid <compute_erotate_rigid>` - rotational energy of rigid bodies
-* :doc:`erotate/sphere <compute_erotate_sphere>` - rotational energy of spherical particles
-* :doc:`erotate/sphere/atom <compute_erotate_sphere>` - rotational energy for each spherical particle
-* :doc:`event/displace <compute_event_displace>` - detect event on atom displacement
-* :doc:`group/group <compute_group_group>` - energy/force between two groups of atoms
-* :doc:`gyration <compute_gyration>` - radius of gyration of group of atoms
-* :doc:`gyration/chunk <compute_gyration_chunk>` - radius of gyration for each chunk
-* :doc:`heat/flux <compute_heat_flux>` - heat flux through a group of atoms
-* :doc:`hexorder/atom <compute_hexorder_atom>` - bond orientational order parameter q6
-* :doc:`improper/local <compute_improper_local>` - angle of each improper
-* :doc:`inertia/chunk <compute_inertia_chunk>` - inertia tensor for each chunk
-* :doc:`ke <compute_ke>` - translational kinetic energy
-* :doc:`ke/atom <compute_ke_atom>` - kinetic energy for each atom
-* :doc:`ke/rigid <compute_ke_rigid>` - translational kinetic energy of rigid bodies
-* :doc:`msd <compute_msd>` - mean-squared displacement of group of atoms
-* :doc:`msd/chunk <compute_msd_chunk>` - mean-squared displacement for each chunk
-* :doc:`msd/nongauss <compute_msd_nongauss>` - MSD and non-Gaussian parameter of group of atoms
-* :doc:`omega/chunk <compute_omega_chunk>` - angular velocity for each chunk
-* :doc:`orientorder/atom <compute_orientorder_atom>` - Steinhardt bond orientational order parameters Ql
-* :doc:`pair <compute_pair>` - values computed by a pair style
-* :doc:`pair/local <compute_pair_local>` - distance/energy/force of each pairwise interaction
-* :doc:`pe <compute_pe>` - potential energy
-* :doc:`pe/atom <compute_pe_atom>` - potential energy for each atom
-* :doc:`plasticity/atom <compute_plasticity_atom>` - Peridynamic plasticity for each atom
-* :doc:`pressure <compute_pressure>` - total pressure and pressure tensor
-* :doc:`property/atom <compute_property_atom>` - convert atom attributes to per-atom vectors/arrays
-* :doc:`property/local <compute_property_local>` - convert local attributes to localvectors/arrays
-* :doc:`property/chunk <compute_property_chunk>` - extract various per-chunk attributes
-* :doc:`rdf <compute_rdf>` - radial distribution function g(r) histogram of group of atoms
-* :doc:`reduce <compute_reduce>` - combine per-atom quantities into a single global value
-* :doc:`reduce/region <compute_reduce>` - same as compute reduce, within a region
-* :doc:`slice <compute_slice>` - extract values from global vector or array
-* :doc:`sna/atom <compute_sna_atom>` - calculate bispectrum coefficients for each atom
-* :doc:`snad/atom <compute_sna_atom>` - derivative of bispectrum coefficients for each atom
-* :doc:`snav/atom <compute_sna_atom>` - virial contribution from bispectrum coefficients for each atom
-* :doc:`stress/atom <compute_stress_atom>` - stress tensor for each atom
-* :doc:`temp <compute_temp>` - temperature of group of atoms
-* :doc:`temp/asphere <compute_temp_asphere>` - temperature of aspherical particles
-* :doc:`temp/body <compute_temp_body>` - temperature of body particles
-* :doc:`temp/chunk <compute_temp_chunk>` - temperature of each chunk
-* :doc:`temp/com <compute_temp_com>` - temperature after subtracting center-of-mass velocity
-* :doc:`temp/deform <compute_temp_deform>` - temperature excluding box deformation velocity
-* :doc:`temp/partial <compute_temp_partial>` - temperature excluding one or more dimensions of velocity
-* :doc:`temp/profile <compute_temp_profile>` - temperature excluding a binned velocity profile
-* :doc:`temp/ramp <compute_temp_ramp>` - temperature excluding ramped velocity component
-* :doc:`temp/region <compute_temp_region>` - temperature of a region of atoms
-* :doc:`temp/sphere <compute_temp_sphere>` - temperature of spherical particles
-* :doc:`ti <compute_ti>` - thermodyanmic integration free energy values
-* :doc:`torque/chunk <compute_torque_chunk>` - torque applied on each chunk
-* :doc:`vacf <compute_vacf>` - velocity-autocorrelation function of group of atoms
-* :doc:`vcm/chunk <compute_vcm_chunk>` - velocity of center-of-mass for each chunk
-* :doc:`voronoi/atom <compute_voronoi_atom>` - Voronoi volume and neighbors for each atom
-
-There are also additional compute styles submitted by users which are
-included in the LAMMPS distribution. The list of these with links to
-the individual styles are given in the compute section of :ref:`this page <cmd_5>`.
-
-There are also additional accelerated compute styles included in the
-LAMMPS distribution for faster performance on CPUs and GPUs. The list
-of these with links to the individual styles are given in the pair
-section of :ref:`this page <cmd_5>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`uncompute <uncompute>`, :doc:`compute_modify <compute_modify>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/spatial <fix_ave_spatial>`,
-:doc:`fix ave/time <fix_ave_time>`, :doc:`fix ave/histo <fix_ave_histo>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_ackland_atom.txt b/doc/_sources/compute_ackland_atom.txt
deleted file mode 100644
index b17519a73..000000000
--- a/doc/_sources/compute_ackland_atom.txt
+++ /dev/null
@@ -1,87 +0,0 @@
-.. index:: compute ackland/atom
-
-compute ackland/atom command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID ackland/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* ackland/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all ackland/atom
-
-Description
-"""""""""""
-
-Defines a computation that calculates the local lattice structure
-according to the formulation given in :ref:`(Ackland) <Ackland>`.
-
-In contrast to the :doc:`centro-symmetry parameter <compute_centro_atom>` this method is stable against
-temperature boost, because it is based not on the distance between
-particles but the angles. Therefore statistical fluctuations are
-averaged out a little more. A comparison with the Common Neighbor
-Analysis metric is made in the paper.
-
-The result is a number which is mapped to the following different
-lattice structures:
-
-* 0 = UNKNOWN
-* 1 = BCC
-* 2 = FCC
-* 3 = HCP
-* 4 = ICO
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (i.e. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently or to have multiple compute/dump commands, each of
-which computes this quantity.-
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The per-atom vector values will be unitless since they are the
-integers defined above.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute centro/atom <compute_centro_atom>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Ackland:
-
-
-
-**(Ackland)** Ackland, Jones, Phys Rev B, 73, 054104 (2006).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_angle.txt b/doc/_sources/compute_angle.txt
deleted file mode 100644
index 91df79f90..000000000
--- a/doc/_sources/compute_angle.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-.. index:: compute angle
-
-compute angle command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID angle
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* angle = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all angle
-
-Description
-"""""""""""
-
-Define a computation that extracts the angle energy calculated by each
-of the angle sub-styles used in the "angle_style
-hybrid" angle_hybrid.html command. These values are made accessible
-for output or further processing by other commands. The group
-specified for this command is ignored.
-
-This compute is useful when using :doc:`angle_style hybrid <angle_hybrid>` if you want to know the portion of the total
-energy contributed by one or more of the hybrid sub-styles.
-
-**Output info:**
-
-This compute calculates a global vector of length N where N is the
-number of sub_styles defined by the :doc:`angle_style hybrid <angle_style>` command, which can be accessed by indices
-1-N. These values can be used by any command that uses global scalar
-or vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "extensive" and will be in energy
-:doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe <compute_pe>`, :doc:`compute pair <compute_pair>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_angle_local.txt b/doc/_sources/compute_angle_local.txt
deleted file mode 100644
index f0656219e..000000000
--- a/doc/_sources/compute_angle_local.txt
+++ /dev/null
@@ -1,86 +0,0 @@
-.. index:: compute angle/local
-
-compute angle/local command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID angle/local input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* angle/local = style name of this compute command
-* one or more keywords may be appended
-* keyword = *theta* or *eng*
-.. parsed-literal::
-
- *theta* = tabulate angles
- *eng* = tabulate angle energies
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all angle/local theta
- compute 1 all angle/local eng theta
-
-Description
-"""""""""""
-
-Define a computation that calculates properties of individual angle
-interactions. The number of datums generated, aggregated across all
-processors, equals the number of angles in the system, modified by the
-group parameter as explained below.
-
-The local data stored by this command is generated by looping over all
-the atoms owned on a processor and their angles. An angle will only
-be included if all 3 atoms in the angle are in the specified compute
-group. Any angles that have been broken (see the
-:doc:`angle_style <angle_style>` command) by setting their angle type to
-0 are not included. Angles that have been turned off (see the :doc:`fix shake <fix_shake>` or :doc:`delete_bonds <delete_bonds>` commands) by
-setting their angle type negative are written into the file, but their
-energy will be 0.0.
-
-Note that as atoms migrate from processor to processor, there will be
-no consistent ordering of the entries within the local vector or array
-from one timestep to the next. The only consistency that is
-guaranteed is that the ordering on a particular timestep will be the
-same for local vectors or arrays generated by other compute commands.
-For example, angle output from the :doc:`compute property/local <compute_property_local>` command can be combined
-with data from this command and output by the :doc:`dump local <dump>`
-command in a consistent way.
-
-**Output info:**
-
-This compute calculates a local vector or local array depending on the
-number of keywords. The length of the vector or number of rows in the
-array is the number of angles. If a single keyword is specified, a
-local vector is produced. If two or more keywords are specified, a
-local array is produced where the number of columns = the number of
-keywords. The vector or array can be accessed by any command that
-uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The output for *theta* will be in degrees. The output for *eng* will
-be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump local <dump>`, :doc:`compute property/local <compute_property_local>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_angmom_chunk.txt b/doc/_sources/compute_angmom_chunk.txt
deleted file mode 100644
index 68894d185..000000000
--- a/doc/_sources/compute_angmom_chunk.txt
+++ /dev/null
@@ -1,97 +0,0 @@
-.. index:: compute angmom/chunk
-
-compute angmom/chunk command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID angmom/chunk chunkID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* angmom/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid angmom/chunk molchunk
-
-Description
-"""""""""""
-
-Define a computation that calculates the angular momemtum of multiple
-chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the 3 components of the angular momentum
-vector for each chunk, due to the velocity/momentum of the individual
-atoms in the chunk around the center-of-mass of the chunk. The
-calculation includes all effects due to atoms passing thru periodic
-boundaries.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-.. note::
-
- The coordinates of an atom contribute to the chunk's angular
- momentum in "unwrapped" form, by using the image flags associated with
- each atom. See the :doc:`dump custom <dump>` command for a discussion
- of "unwrapped" coordinates. See the Atoms section of the
- :doc:`read_data <read_data>` command for a discussion of image flags and
- how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-The simplest way to output the results of the compute angmom/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all angmom/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-3 for the 3 xyz components of the angular momentum for each chunk.
-These values can be accessed by any command that uses global array
-values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The array values are "intensive". The array values will be in
-mass-velocity-distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`variable angmom() function <variable>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_basal_atom.txt b/doc/_sources/compute_basal_atom.txt
deleted file mode 100644
index 046fc8236..000000000
--- a/doc/_sources/compute_basal_atom.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-.. index:: compute basal/atom
-
-compute basal/atom command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID basal/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* basal/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all basal/atom
-
-Description
-"""""""""""
-
-Defines a computation that calculates the hexagonal close-packed "c"
-lattice vector for each atom in the group. It does this by
-calculating the normal unit vector to the basal plane for each atom.
-The results enable efficient identification and characterization of
-twins and grains in hexagonal close-packed structures.
-
-The output of the compute is thus the 3 components of a unit vector
-associdate with each atom. The components are set to 0.0 for
-atoms not in the group.
-
-Details of the calculation are given in :ref:`(Barrett) <Barrett>`.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (i.e. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently or to have multiple compute/dump commands, each of
-which computes this quantity.
-
-An example input script that uses this compute is provided
-in examples/USER/misc/basal.
-
-**Output info:**
-
-This compute calculates a per-atom array with 3 columns, which can be
-accessed by indices 1-3 by any command that uses per-atom values from
-a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The per-atom vector values are unitless since the 3 columns represent
-components of a unit vector.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The output of this compute will be meaningless unless the atoms are on
-(or near) hcp lattice sites, since the calculation assumes a
-well-defined basal plane.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute centro/atom <compute_centro_atom>`, :doc:`compute ackland/atom <compute_ackland_atom>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Barrett:
-
-
-
-**(Barrett)** Barrett, Tschopp, El Kadiri, Scripta Mat. 66, p.666 (2012).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_body_local.txt b/doc/_sources/compute_body_local.txt
deleted file mode 100644
index 3f642a4cd..000000000
--- a/doc/_sources/compute_body_local.txt
+++ /dev/null
@@ -1,106 +0,0 @@
-.. index:: compute body/local
-
-compute body/local command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID body/local input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* body/local = style name of this compute command
-* one or more keywords may be appended
-* keyword = *id* or *type* or *integer*
-.. parsed-literal::
-
- *id* = atom ID of the body particle
- *type* = atom type of the body particle
- *integer* = 1,2,3,etc = index of fields defined by body style
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all body/local type 1 2 3
- compute 1 all body/local 3 6
-
-Description
-"""""""""""
-
-Define a computation that calculates properties of individual body
-sub-particles. The number of datums generated, aggregated across all
-processors, equals the number of body sub-particles plus the number of
-non-body particles in the system, modified by the group parameter as
-explained below. See :ref:`Section_howto 14 <howto_14>`
-of the manual and the :doc:`body <body>` doc page for more details on
-using body particles.
-
-The local data stored by this command is generated by looping over all
-the atoms. An atom will only be included if it is in the group. If
-the atom is a body particle, then its N sub-particles will be looped
-over, and it will contribute N datums to the count of datums. If it
-is not a body particle, it will contribute 1 datum.
-
-For both body particles and non-body particles, the *id* keyword
-will store the ID of the particle.
-
-For both body particles and non-body particles, the *type* keyword
-will store the type of the particle.
-
-The *integer* keywords mean different things for body and non-body
-particles. If the atom is not a body particle, only its *x*, *y*, *z*
-coordinates can be referenced, using the *integer* keywords 1,2,3.
-Note that this means that if you want to access more fields than this
-for body particles, then you cannot include non-body particles in the
-group.
-
-For a body particle, the *integer* keywords refer to fields calculated
-by the body style for each sub-particle. The body style, as specified
-by the :doc:`atom_style body <atom_style>`, determines how many fields
-exist and what they are. See the :doc:`body <body>` doc page for
-details of the different styles.
-
-Here is an example of how to output body information using the :doc:`dump local <dump>` command with this compute. If fields 1,2,3 for the
-body sub-particles are x,y,z coordinates, then the dump file will be
-formatted similar to the output of a :doc:`dump atom or custom <dump>`
-command.
-
-.. parsed-literal::
-
- compute 1 all body/local type 1 2 3
- dump 1 all local 1000 tmp.dump index c_1[1] c_1[2] c_1[3] c_1[4]
-
-**Output info:**
-
-This compute calculates a local vector or local array depending on the
-number of keywords. The length of the vector or number of rows in the
-array is the number of datums as described above. If a single keyword
-is specified, a local vector is produced. If two or more keywords are
-specified, a local array is produced where the number of columns = the
-number of keywords. The vector or array can be accessed by any
-command that uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The :doc:`units <units>` for output values depend on the body style.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump local <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_bond.txt b/doc/_sources/compute_bond.txt
deleted file mode 100644
index b912d8b67..000000000
--- a/doc/_sources/compute_bond.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-.. index:: compute bond
-
-compute bond command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID bond
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* bond = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all bond
-
-Description
-"""""""""""
-
-Define a computation that extracts the bond energy calculated by each
-of the bond sub-styles used in the :doc:`bond_style hybrid <bond_hybrid>` command. These values are made accessible
-for output or further processing by other commands. The group
-specified for this command is ignored.
-
-This compute is useful when using :doc:`bond_style hybrid <bond_hybrid>`
-if you want to know the portion of the total energy contributed by one
-or more of the hybrid sub-styles.
-
-**Output info:**
-
-This compute calculates a global vector of length N where N is the
-number of sub_styles defined by the :doc:`bond_style hybrid <bond_style>` command, which can be accessed by indices 1-N.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "extensive" and will be in energy
-:doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe <compute_pe>`, :doc:`compute pair <compute_pair>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_bond_local.txt b/doc/_sources/compute_bond_local.txt
deleted file mode 100644
index cfad7a48d..000000000
--- a/doc/_sources/compute_bond_local.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-.. index:: compute bond/local
-
-compute bond/local command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID bond/local input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* bond/local = style name of this compute command
-* one or more keywords may be appended
-* keyword = *dist* or *eng*
-.. parsed-literal::
-
- *dist* = bond distance
- *eng* = bond energy
- *force* = bond force
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all bond/local eng
- compute 1 all bond/local dist eng force
-
-Description
-"""""""""""
-
-Define a computation that calculates properties of individual bond
-interactions. The number of datums generated, aggregated across all
-processors, equals the number of bonds in the system, modified
-by the group parameter as explained below.
-
-The local data stored by this command is generated by looping over all
-the atoms owned on a processor and their bonds. A bond will only be
-included if both atoms in the bond are in the specified compute group.
-Any bonds that have been broken (see the :doc:`bond_style <bond_style>`
-command) by setting their bond type to 0 are not included. Bonds that
-have been turned off (see the :doc:`fix shake <fix_shake>` or
-:doc:`delete_bonds <delete_bonds>` commands) by setting their bond type
-negative are written into the file, but their energy will be 0.0.
-
-Note that as atoms migrate from processor to processor, there will be
-no consistent ordering of the entries within the local vector or array
-from one timestep to the next. The only consistency that is
-guaranteed is that the ordering on a particular timestep will be the
-same for local vectors or arrays generated by other compute commands.
-For example, bond output from the :doc:`compute property/local <compute_property_local>` command can be combined
-with data from this command and output by the :doc:`dump local <dump>`
-command in a consistent way.
-
-Here is an example of how to do this:
-
-.. parsed-literal::
-
- compute 1 all property/local batom1 batom2 btype
- compute 2 all bond/local dist eng
- dump 1 all local 1000 tmp.dump index c_1[1] c_1[2] c_1[3] c_2[1] c_2[2]
-
-**Output info:**
-
-This compute calculates a local vector or local array depending on the
-number of keywords. The length of the vector or number of rows in the
-array is the number of bonds. If a single keyword is specified, a
-local vector is produced. If two or more keywords are specified, a
-local array is produced where the number of columns = the number of
-keywords. The vector or array can be accessed by any command that
-uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The output for *dist* will be in distance :doc:`units <units>`. The
-output for *eng* will be in energy :doc:`units <units>`. The output for
-*force* will be in force :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump local <dump>`, :doc:`compute property/local <compute_property_local>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_centro_atom.txt b/doc/_sources/compute_centro_atom.txt
deleted file mode 100644
index 176644ee7..000000000
--- a/doc/_sources/compute_centro_atom.txt
+++ /dev/null
@@ -1,142 +0,0 @@
-.. index:: compute centro/atom
-
-compute centro/atom command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID centro/atom lattice
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* centro/atom = style name of this compute command
-* lattice = *fcc* or *bcc* or N = # of neighbors per atom to include
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all centro/atom fcc
-
-.. parsed-literal::
-
- compute 1 all centro/atom 8
-
-Description
-"""""""""""
-
-Define a computation that calculates the centro-symmetry parameter for
-each atom in the group. In solid-state systems the centro-symmetry
-parameter is a useful measure of the local lattice disorder around an
-atom and can be used to characterize whether the atom is part of a
-perfect lattice, a local defect (e.g. a dislocation or stacking
-fault), or at a surface.
-
-The value of the centro-symmetry parameter will be 0.0 for atoms not
-in the specified compute group.
-
-This parameter is computed using the following formula from
-:ref:`(Kelchner) <Kelchner>`
-
-.. image:: Eqs/centro_symmetry.jpg
- :align: center
-
-where the *N* nearest neighbors or each atom are identified and Ri and
-Ri+N/2 are vectors from the central atom to a particular pair of
-nearest neighbors. There are N*(N-1)/2 possible neighbor pairs that
-can contribute to this formula. The quantity in the sum is computed
-for each, and the N/2 smallest are used. This will typically be for
-pairs of atoms in symmetrically opposite positions with respect to the
-central atom; hence the i+N/2 notation.
-
-*N* is an input parameter, which should be set to correspond to the
-number of nearest neighbors in the underlying lattice of atoms. If
-the keyword *fcc* or *bcc* is used, *N* is set to 12 and 8
-respectively. More generally, *N* can be set to a positive, even
-integer.
-
-For an atom on a lattice site, surrounded by atoms on a perfect
-lattice, the centro-symmetry parameter will be 0. It will be near 0
-for small thermal perturbations of a perfect lattice. If a point
-defect exists, the symmetry is broken, and the parameter will be a
-larger positive value. An atom at a surface will have a large
-positive parameter. If the atom does not have *N* neighbors (within
-the potential cutoff), then its centro-symmetry parameter is set to
-0.0.
-
-Only atoms within the cutoff of the pairwise neighbor list are
-considered as possible neighbors. Atoms not in the compute group are
-included in the *N* neighbors used in this calculation.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (e.g. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently or to have multiple compute/dump commands, each with a
-*centro/atom* style.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values are unitless values >= 0.0. Their
-magnitude depends on the lattice style due to the number of
-contibuting neighbor pairs in the summation in the formula above. And
-it depends on the local defects surrounding the central atom, as
-described above.
-
-Here are typical centro-symmetry values, from a a nanoindentation
-simulation into gold (FCC). These were provided by Jon Zimmerman
-(Sandia):
-
-.. parsed-literal::
-
- Bulk lattice = 0
- Dislocation core ~ 1.0 (0.5 to 1.25)
- Stacking faults ~ 5.0 (4.0 to 6.0)
- Free surface ~ 23.0
-
-These values are *not* normalized by the square of the lattice
-parameter. If they were, normalized values would be:
-
-.. parsed-literal::
-
- Bulk lattice = 0
- Dislocation core ~ 0.06 (0.03 to 0.075)
- Stacking faults ~ 0.3 (0.24 to 0.36)
- Free surface ~ 1.38
-
-For BCC materials, the values for dislocation cores and free surfaces
-would be somewhat different, due to their being only 8 neighbors instead
-of 12.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute cna/atom <compute_cna_atom>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Kelchner:
-
-
-
-**(Kelchner)** Kelchner, Plimpton, Hamilton, Phys Rev B, 58, 11085 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_chunk_atom.txt b/doc/_sources/compute_chunk_atom.txt
deleted file mode 100644
index 71e80679d..000000000
--- a/doc/_sources/compute_chunk_atom.txt
+++ /dev/null
@@ -1,699 +0,0 @@
-.. index:: compute chunk/atom
-
-compute chunk/atom command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID chunk/atom style args keyword values ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* chunk/atom = style name of this compute command
-.. parsed-literal::
-
- style = *bin/1d* or *bin/2d* or *bin/3d* or *bin/sphere* or *type* or *molecule* or *compute/fix/variable*
- *bin/1d* args = dim origin delta
- dim = *x* or *y* or *z*
- origin = *lower* or *center* or *upper* or coordinate value (distance units)
- delta = thickness of spatial bins in dim (distance units)
- *bin/2d* args = dim origin delta dim origin delta
- dim = *x* or *y* or *z*
- origin = *lower* or *center* or *upper* or coordinate value (distance units)
- delta = thickness of spatial bins in dim (distance units)
- *bin/3d* args = dim origin delta dim origin delta dim origin delta
- dim = *x* or *y* or *z*
- origin = *lower* or *center* or *upper* or coordinate value (distance units)
- delta = thickness of spatial bins in dim (distance units)
- *bin/sphere* args = xorig yorig zorig rmin rmax nsbin
- xorig,yorig,zorig = center point of sphere
- srmin,srmax = bin from sphere radius rmin to rmax
- nsbin = # of spherical shell bins between rmin and rmax
- *bin/cylinder* args = dim origin delta c1 c2 rmin rmax ncbin
- dim = *x* or *y* or *z* = axis of cylinder axis
- origin = *lower* or *center* or *upper* or coordinate value (distance units)
- delta = thickness of spatial bins in dim (distance units)
- c1,c2 = coords of cylinder axis in other 2 dimensions (distance units)
- crmin,crmax = bin from cylinder radius rmin to rmax (distance units)
- ncbin = # of concentric circle bins between rmin and rmax
- *type* args = none
- *molecule* args = none
- *compute/fix/variable* = c_ID, c_ID[I], f_ID, f_ID[I], v_name with no args
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[I] = Ith column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[I] = Ith column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
-
-* zero or more keyword/values pairs may be appended
-* keyword = *region* or *nchunk* or *static* or *compress* or *bound* or *discard* or *pbc* or *units*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region atoms must be in to be part of a chunk
- *nchunk* value = *once* or *every*
- once = only compute the number of chunks once
- every = re-compute the number of chunks whenever invoked
- *limit* values = 0 or Nc max or Nc exact
- 0 = no limit on the number of chunks
- Nc max = limit number of chunks to be <= Nc
- Nc exact = set number of chunks to exactly Nc
- *ids* value = *once* or *nfreq* or *every*
- once = assign chunk IDs to atoms only once, they persist thereafter
- nfreq = assign chunk IDs to atoms only once every Nfreq steps (if invoked by :doc:`fix ave/chunk <fix_ave_chunk>` which sets Nfreq)
- every = assign chunk IDs to atoms whenever invoked
- *compress* value = *yes* or *no*
- yes = compress chunk IDs to eliminate IDs with no atoms
- no = do not compress chunk IDs even if some IDs have no atoms
- *discard* value = *yes* or *no* or *mixed*
- yes = discard atoms with out-of-range chunk IDs by assigning a chunk ID = 0
- no = keep atoms with out-of-range chunk IDs by assigning a valid chunk ID
- mixed = keep or discard such atoms according to spatial binning rule
- *bound* values = x/y/z lo hi
- x/y/z = *x* or *y* or *z* to bound sptial bins in this dimension
- lo = *lower* or coordinate value (distance units)
- hi = *upper* or coordinate value (distance units)
- *pbc* value = *no* or *yes*
- yes = use periodic distance for bin/sphere and bin/cylinder styles
- *units* value = *box* or *lattice* or *reduced*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all chunk/atom type
- compute 1 all chunk/atom bin/1d z lower 0.02 units reduced
- compute 1 all chunk/atom bin/2d z lower 1.0 y 0.0 2.5
- compute 1 all chunk/atom molecule region sphere nchunk once ids once compress yes
- compute 1 all chunk/atom bin/sphere 5 5 5 2.0 5.0 5 discard yes
- compute 1 all chunk/atom bin/cylinder z lower 2 10 10 2.0 5.0 3 discard yes
-
-Description
-"""""""""""
-
-Define a computation that calculates an integer chunk ID from 1 to
-Nchunk for each atom in the group. Values of chunk IDs are determined
-by the *style* of chunk, which can be based on atom type or molecule
-ID or spatial binning or a per-atom property or value calculated by
-another :doc:`compute <compute>`, :doc:`fix <fix>`, or :doc:`atom-style variable <variable>`. Per-atom chunk IDs can be used by other
-computes with "chunk" in their style name, such as :doc:`compute com/chunk <compute_com_chunk>` or :doc:`compute msd/chunk <compute_msd_chunk>`. Or they can be used by the :doc:`fix ave/chunk <fix_ave_chunk>` command to sum and time average a
-variety of per-atom properties over the atoms in each chunk. Or they
-can simply be accessed by any command that uses per-atom values from a
-compute as input, as discussed in :ref:`Section_howto 15 <howto_15>`.
-
-See :ref:`Section_howto 23 <howto_23>` for an overview of
-how this compute can be used with a variety of other commands to
-tabulate properties of a simulation. The howto section gives several
-examples of input script commands that can be used to calculate
-interesting properties.
-
-Conceptually it is important to realize that this compute does two
-simple things. First, it sets the value of *Nchunk* = the number of
-chunks, which can be a constant value or change over time. Second, it
-assigns each atom to a chunk via a chunk ID. Chunk IDs range from 1
-to *Nchunk* inclusive; some chunks may have no atoms assigned to them.
-Atoms that do not belong to any chunk are assigned a value of 0. Note
-that the two operations are not always performed together. For
-example, spatial bins can be setup once (which sets *Nchunk*), and
-atoms assigned to those bins many times thereafter (setting their
-chunk IDs).
-
-All other commands in LAMMPS that use chunk IDs assume there are
-*Nchunk* number of chunks, and that every atom is assigned to one of
-those chunks, or not assigned to any chunk.
-
-There are many options for specifying for how and when *Nchunk* is
-calculated, and how and when chunk IDs are assigned to atoms. The
-details depend on the chunk *style* and its *args*, as well as
-optional keyword settings. They can also depend on whether a :doc:`fix ave/chunk <fix_ave_chunk>` command is using this compute, since
-that command requires *Nchunk* to remain static across windows of
-timesteps it specifies, while it accumulates per-chunk averages.
-
-The details are described below.
-
-
-
-
-
-The different chunk styles operate as follows. For each style, how it
-calculates *Nchunk* and assigns chunk IDs to atoms is explained. Note
-that using the optional keywords can change both of those actions, as
-described further below where the keywords are discussed.
-
-
-----------
-
-
-The *binning* styles perform a spatial binning of atoms, and assign an
-atom the chunk ID corresponding to the bin number it is in. *Nchunk*
-is set to the number of bins, which can change if the simulation box
-size changes.
-
-The *bin/1d*, *bin/2d*, and *bin/3d* styles define bins as 1d layers
-(slabs), 2d pencils, or 3d boxes. The *dim*, *origin*, and *delta*
-settings are specified 1, 2, or 3 times. For 2d or 3d bins, there is
-no restriction on specifying dim = x before dim = y or z, or dim = y
-before dim = z. Bins in a particular *dim* have a bin size in that
-dimension given by *delta*. In each dimension, bins are defined
-relative to a specified *origin*, which may be the lower/upper edge of
-the simulation box (in that dimension), or its center point, or a
-specified coordinate value. Starting at the origin, sufficient bins
-are created in both directions to completely span the simulation box
-or the bounds specified by the optional *bounds* keyword.
-
-For orthogonal simulation boxes, the bins are layers, pencils, or
-boxes aligned with the xyz coordinate axes. For triclinic
-(non-orthogonal) simulation boxes, the bin faces are parallel to the
-tilted faces of the simulation box. See :ref:`this section <howto_12>` of the manual for a discussion of
-the geometry of triclinic boxes in LAMMPS. As described there, a
-tilted simulation box has edge vectors a,b,c. In that nomenclature,
-bins in the x dimension have faces with normals in the "b" cross "c"
-direction. Bins in y have faces normal to the "a" cross "c"
-direction. And bins in z have faces normal to the "a" cross "b"
-direction. Note that in order to define the size and position of
-these bins in an unambiguous fashion, the *units* option must be set
-to *reduced* when using a triclinic simulation box, as noted below.
-
-The meaning of *origin* and *delta* for triclinic boxes is as follows.
-Consider a triclinic box with bins that are 1d layers or slabs in the
-x dimension. No matter how the box is tilted, an *origin* of 0.0
-means start layers at the lower "b" cross "c" plane of the simulation
-box and an *origin* of 1.0 means to start layers at the upper "b"
-cross "c" face of the box. A *delta* value of 0.1 in *reduced* units
-means there will be 10 layers from 0.0 to 1.0, regardless of the
-current size or shape of the simulation box.
-
-The *bin/sphere* style defines a set of spherical shell bins around
-the origin (*xorig*,*yorig*,*zorig*), using *nsbin* bins with radii
-equally spaced between *srmin* and *srmax*. This is effectively a 1d
-vector of bins. For example, if *srmin* = 1.0 and *srmax* = 10.0 and
-*nsbin* = 9, then the first bin spans 1.0 < r < 2.0, and the last bin
-spans 9.0 < r 10.0. The geometry of the bins is the same whether the
-simulation box is orthogonal or triclinic; i.e. the spherical shells
-are not tilted or scaled differently in different dimensions to
-transform them into ellipsoidal shells.
-
-The *bin/cylinder* style defines bins for a cylinder oriented along
-the axis *dim* with the axis coordinates in the other two radial
-dimensions at (*c1*,*c2*). For dim = x, c1/c2 = y/z; for dim = y,
-c1/c2 = x/z; for dim = z, c1/c2 = x/y. This is effectively a 2d array
-of bins. The first dimension is along the cylinder axis, the second
-dimension is radially outward from the cylinder axis. The bin size
-and positions along the cylinder axis are specified by the *origin*
-and *delta* values, the same as for the *bin/1d*, *bin/2d*, and
-*bin/3d* styles. There are *ncbin* concentric circle bins in the
-radial direction from the cylinder axis with radii equally spaced
-between *crmin* and *crmax*. For example, if *crmin* = 1.0 and
-*crmax* = 10.0 and *ncbin* = 9, then the first bin spans 1.0 < r <
-2.0, and the last bin spans 9.0 < r 10.0. The geometry of the bins in
-the radial dimensions is the same whether the simulation box is
-orthogonal or triclinic; i.e. the concetric circles are not tilted or
-scaled differently in the two different dimensions to transform them
-into ellipses.
-
-The created bins (and hence the chunk IDs) are numbered consecutively
-from 1 to the number of bins = *Nchunk*. For *bin2d* and *bin3d*, the
-numbering varies most rapidly in the first dimension (which could be
-x, y, or z), next rapidly in the 2nd dimension, and most slowly in the
-3rd dimension. For *bin/sphere*, the bin with smallest radii is chunk
-1 and the bni with largest radii is chunk Nchunk = *ncbin*. For
-*bin/cylinder*, the numbering varies most rapidly in the dimension
-along the cylinder axis and most slowly in the radial direction.
-
-Each time this compute is invoked, each atom is mapped to a bin based
-on its current position. Note that between reneighboring timesteps,
-atoms can move outside the current simulation box. If the box is
-periodic (in that dimension) the atom is remapping into the periodic
-box for purposes of binning. If the box in not periodic, the atom may
-have moved outside the bounds of all bins. If an atom is not inside
-any bin, the *discard* keyword is used to determine how a chunk ID is
-assigned to the atom.
-
-
-----------
-
-
-The *type* style uses the atom type as the chunk ID. *Nchunk* is set
-to the number of atom types defined for the simulation, e.g. via the
-:doc:`create_box <create_box>` or :doc:`read_data <read_data>` commands.
-
-
-----------
-
-
-The *molecule* style uses the molecule ID of each atom as its chunk
-ID. *Nchunk* is set to the largest chunk ID. Note that this excludes
-molecule IDs for atoms which are not in the specified group or
-optional region.
-
-There is no requirement that all atoms in a particular molecule are
-assigned the same chunk ID (zero or non-zero), though you probably
-want that to be the case, if you wish to compute a per-molecule
-property. LAMMPS will issue a warning if that is not the case, but
-only the first time that *Nchunk* is calculated.
-
-Note that atoms with a molecule ID = 0, which may be non-molecular
-solvent atoms, have an out-of-range chunk ID. These atoms are
-discarded (not assigned to any chunk) or assigned to *Nchunk*,
-depending on the value of the *discard* keyword.
-
-
-----------
-
-
-The *compute/fix/variable* styles set the chunk ID of each atom based
-on a quantity calculated and stored by a compute, fix, or variable.
-In each case, it must be a per-atom quantity. In each case the
-referenced floating point values are converted to an integer chunk ID
-as follows. The floating point value is truncated (rounded down) to
-an integer value. If the integer value is <= 0, then a chunk ID of 0
-is assigned to the atom. If the integer value is > 0, it becomes the
-chunk ID to the atom. *Nchunk* is set to the largest chunk ID. Note
-that this excludes atoms which are not in the specified group or
-optional region.
-
-If the style begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the compute is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the compute is used. Users can also write code for
-their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If the style begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the fix is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the fix is used. Note that some fixes only produce
-their values on certain timesteps, which must be compatible with the
-timestep on which this compute accesses the fix, else an error
-results. Users can also write code for their own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name for an *atom* or
-*atomfile* style :doc:`variable <variable>` must follow which has been
-previously defined in the input script. Variables of style *atom* can
-reference thermodynamic keywords and various per-atom attributes, or
-invoke other computes, fixes, or variables when they are evaluated, so
-this is a very general means of generating per-atom quantities to
-treat as a chunk ID.
-
-
-
-
-
-Normally, *Nchunk* = the number of chunks, is re-calculated every time
-this fix is invoked, though the value may or may not change. As
-explained below, the *nchunk* keyword can be set to *once* which means
-*Nchunk* will never change.
-
-If a :doc:`fix ave/chunk <fix_ave_chunk>` command uses this compute, it
-can also turn off the re-calculation of *Nchunk* for one or more
-windows of timesteps. The extent of the windows, during which Nchunk
-is held constant, are determined by the *Nevery*, *Nrepeat*, *Nfreq*
-values and the *ave* keyword setting that are used by the :doc:`fix ave/chunk <fix_ave_chunk>` command.
-
-Specifically, if *ave* = *one*, then for each span of *Nfreq*
-timesteps, *Nchunk* is held constant between the first timestep when
-averaging is done (within the Nfreq-length window), and the last
-timestep when averaging is done (multiple of Nfreq). If *ave* =
-*running* or *window*, then *Nchunk* is held constant forever,
-starting on the first timestep when the :doc:`fix ave/chunk <fix_ave_chunk>` command invokes this compute.
-
-Note that multiple :doc:`fix ave/chunk <fix_ave_chunk>` commands can use
-the same compute chunk/atom compute. However, the time windows they
-induce for holding *Nchunk* constant must be identical, else an error
-will be generated.
-
-
-
-
-
-The various optional keywords operate as follows. Note that some of
-them function differently or are ignored by different chunk styles.
-Some of them also have different default values, depending on
-the chunk style, as listed below.
-
-The *region* keyword applies to all chunk styles. If used, an atom
-must be in both the specified group and the specified geometric
-:doc:`region <region>` to be assigned to a chunk.
-
-
-----------
-
-
-The *nchunk* keyword applies to all chunk styles. It specifies how
-often *Nchunk* is recalculated, which in turn can affect the chunk IDs
-assigned to individual atoms.
-
-If *nchunk* is set to *once*, then *Nchunk* is only calculated once,
-the first time this compute is invoked. If *nchunk* is set to
-*every*, then *Nchunk* is re-calculated every time the compute is
-invoked. Note that, as described above, the use of this compute
-by the :doc:`fix ave/chunk <fix_ave_chunk>` command can override
-the *every* setting.
-
-The default values for *nchunk* are listed below and depend on the
-chunk style and other system and keyword settings. They attempt to
-represent typical use cases for the various chunk styles. The
-*nchunk* value can always be set explicitly if desired.
-
-
-----------
-
-
-The *limit* keyword can be used to limit the calculated value of
-*Nchunk* = the number of chunks. The limit is applied each time
-*Nchunk* is calculated, which also limits the chunk IDs assigned to
-any atom. The *limit* keyword is used by all chunk styles except the
-*binning* styles, which ignore it. This is because the number of bins
-can be tailored using the *bound* keyword (described below) which
-effectively limits the size of *Nchunk*.
-
-If *limit* is set to *Nc* = 0, then no limit is imposed on *Nchunk*,
-though the *compress* keyword can still be used to reduce *Nchunk*, as
-described below.
-
-If *Nc* > 0, then the effect of the *limit* keyword depends on whether
-the *compress* keyword is also used with a setting of *yes*, and
-whether the *compress* keyword is specified before the *limit* keyword
-or after.
-
-In all cases, *Nchunk* is first calculated in the usual way for each
-chunk style, as described above.
-
-First, here is what occurs if *compress yes* is not set. If *limit*
-is set to *Nc max*, then *Nchunk* is reset to the smaller of *Nchunk*
-and *Nc*. If *limit* is set to *Nc exact*, then *Nchunk* is reset to
-*Nc*, whether the original *Nchunk* was larger or smaller than *Nc*.
-If *Nchunk* shrank due to the *limit* setting, then atom chunk IDs >
-*Nchunk* will be reset to 0 or *Nchunk*, depending on the setting of
-the *discard* keyword. If *Nchunk* grew, there will simply be some
-chunks with no atoms assigned to them.
-
-If *compress yes* is set, and the *compress* keyword comes before the
-*limit* keyword, the compression operation is performed first, as
-described below, which resets *Nchunk*. The *limit* keyword is then
-applied to the new *Nchunk* value, exactly as described in the
-preceeding paragraph. Note that in this case, all atoms will end up
-with chunk IDs <= *Nc*, but their original values (e.g. molecule ID or
-compute/fix/variable value) may have been > *Nc*, because of the
-compression operation.
-
-If *compress yes* is set, and the *compress* keyword comes after the
-*limit* keyword, then the *limit* value of *Nc* is applied first to
-the uncompressed value of *Nchunk*, but only if *Nc* < *Nchunk*
-(whether *Nc max* or *Nc exact* is used). This effectively means all
-atoms with chunk IDs > *Nc* have their chunk IDs reset to 0 or *Nc*,
-depending on the setting of the *discard* keyword. The compression
-operation is then performed, which may shrink *Nchunk* further. If
-the new *Nchunk* < *Nc* and *limit* = *Nc exact* is specified, then
-*Nchunk* is reset to *Nc*, which results in extra chunks with no atoms
-assigned to them. Note that in this case, all atoms will end up with
-chunk IDs <= *Nc*, and their original values (e.g. molecule ID or
-compute/fix/variable value) will also have been <= *Nc*.
-
-
-----------
-
-
-The *ids* keyword applies to all chunk styles. If the setting is
-*once* then the chunk IDs assigned to atoms the first time this
-compute is invoked will be permanent, and never be re-computed.
-
-If the setting is *nfreq* and if a :doc:`fix ave/chunk <fix_ave_chunk>`
-command is using this compute, then in each of the *Nchunk* = constant
-time windows (discussed above), the chunk ID's assigned to atoms on
-the first step of the time window will persist until the end of the
-time window.
-
-If the setting is *every*, which is the default, then chunk IDs are
-re-calculated on any timestep this compute is invoked.
-
-.. note::
-
- If you want the persistent chunk-IDs calculated by this compute
- to be continuous when running from a :doc:`restart file <read_restart>`,
- then you should use the same ID for this compute, as in the original
- run. This is so that the fix this compute creates to store per-atom
- quantities will also have the same ID, and thus be initialized
- correctly with chunk IDs from the restart file.
-
-
-----------
-
-
-The *compress* keyword applies to all chunk styles and affects how
-*Nchunk* is calculated, which in turn affects the chunk IDs assigned
-to each atom. It is useful for converting a "sparse" set of chunk IDs
-(with many IDs that have no atoms assigned to them), into a "dense"
-set of IDs, where every chunk has one or more atoms assigned to it.
-
-Two possible use cases are as follows. If a large simulation box is
-mostly empty space, then the *binning* style may produce many bins
-with no atoms. If *compress* is set to *yes*, only bins with atoms
-will be contribute to *Nchunk*. Likewise, the *molecule* or
-*compute/fix/variable* styles may produce large *Nchunk* values. For
-example, the :doc:`compute cluster/atom <compute_cluster_atom>` command
-assigns every atom an atom ID for one of the atoms it is clustered
-with. For a million-atom system with 5 clusters, there would only be
-5 unique chunk IDs, but the largest chunk ID might be 1 million,
-resulting in *Nchunk* = 1 million. If *compress* is set to *yes*,
-*Nchunk* will be reset to 5.
-
-If *compress* is set to *no*, which is the default, no compression is
-done. If it is set to *yes*, all chunk IDs with no atoms are removed
-from the list of chunk IDs, and the list is sorted. The remaining
-chunk IDs are renumbered from 1 to *Nchunk* where *Nchunk* is the new
-length of the list. The chunk IDs assigned to each atom reflect
-the new renumbering from 1 to *Nchunk*.
-
-The original chunk IDs (before renumbering) can be accessed by the
-:doc:`compute property/chunk <compute_property_chunk>` command and its
-*id* keyword, or by the :doc:`fix ave/chunk <fix_ave_chunk>` command
-which outputs the original IDs as one of the columns in its global
-output array. For example, using the "compute cluster/atom" command
-discussed above, the original 5 unique chunk IDs might be atom IDs
-(27,4982,58374,857838,1000000). After compresion, these will be
-renumbered to (1,2,3,4,5). The original values (27,...,1000000) can
-be output to a file by the :doc:`fix ave/chunk <fix_ave_chunk>` command,
-or by using the :doc:`fix ave/time <fix_ave_time>` command in
-conjunction with the :doc:`compute property/chunk <compute_property_chunk>` command.
-
-.. note::
-
- The compression operation requires global communication across
- all processors to share their chunk ID values. It can require large
- memory on every processor to store them, even after they are
- compressed, if there are are a large number of unique chunk IDs with
- atoms assigned to them. It uses a STL map to find unique chunk IDs
- and store them in sorted order. Each time an atom is assigned a
- compressed chunk ID, it must access the STL map. All of this means
- that compression can be expensive, both in memory and CPU time. The
- use of the *limit* keyword in conjunction with the *compress* keyword
- can affect these costs, depending on which keyword is used first. So
- use this option with care.
-
-
-----------
-
-
-The *discard* keyword applies to all chunk styles. It affects what
-chunk IDs are assigned to atoms that do not match one of the valid
-chunk IDs from 1 to *Nchunk*. Note that it does not apply to atoms
-that are not in the specified group or optionally specified region.
-Those atoms are always assigned a chunk ID = 0.
-
-If the calculated chunk ID for an atom is not within the range 1 to
-*Nchunk* then it is a "discard" atom. Note that *Nchunk* may have
-been shrunk by the *limit* keyword. Or the *compress* keyword may
-have eliminated chunk IDs that were valid before the compression took
-place, and are now not in the compressed list. Also note that for the
-*molecule* chunk style, if new molecules are added to the system,
-their chunk IDs may exceed a previously calculated *Nchunk*.
-Likewise, evaluation of a compute/fix/variable on a later timestep may
-return chunk IDs that are invalid for the previously calculated
-*Nchunk*.
-
-All the chunk styles except the *binning* styles, must use *discard*
-set to either *yes* or *no*. If *discard* is set to *yes*, which is
-the default, then every "discard" atom has its chunk ID set to 0. If
-*discard* is set to *no*, every "discard" atom has its chunk ID set to
-*Nchunk*. I.e. it becomes part of the last chunk.
-
-The *binning* styles use the *discard* keyword to decide whether to
-discard atoms outside the spatial domain covered by bins, or to assign
-them to the bin they are nearest to.
-
-For the *bin/1d*, *bin/2d*, *bin/3d* styles the details are as
-follows. If *discard* is set to *yes*, an out-of-domain atom will
-have its chunk ID set to 0. If *discard* is set to *no*, the atom
-will have its chunk ID set to the first or last bin in that dimension.
-If *discard* is set to *mixed*, which is the default, it will only
-have its chunk ID set to the first or last bin if bins extend to the
-simulation box boundary in that dimension. This is the case if the
-*bound* keyword settings are *lower* and *upper*, which is the
-default. If the *bound* keyword settings are numeric values, then the
-atom will have its chunk ID set to 0 if it is outside the bounds of
-any bin. Note that in this case, it is possible that the first or
-last bin extends beyond the numeric *bounds* settings, depending on
-the specified *origin*. If this is the case, the chunk ID of the atom
-is only set to 0 if it is outside the first or last bin, not if it is
-simply outside the numeric *bounds* setting.
-
-For the *bin/sphere* style the details are as follows. If *discard*
-is set to *yes*, an out-of-domain atom will have its chunk ID set to
-0. If *discard* is set to *no* or *mixed*, the atom will have its
-chunk ID set to the first or last bin, i.e. the innermost or outermost
-spherical shell. If the distance of the atom from the origin is less
-than *rmin*, it will be assigned to the first bin. If the distance of
-the atom from the origin is greater than *rmax*, it will be assigned
-to the last bin.
-
-For the *bin/cylinder* style the details are as follows. If *discard*
-is set to *yes*, an out-of-domain atom will have its chunk ID set to
-0. If *discard* is set to *no*, the atom will have its chunk ID set
-to the first or last bin in both the radial and axis dimensions. If
-*discard* is set to *mixed*, which is the default, the the radial
-dimension is treated the same as for *discard* = no. But for the axis
-dimensinon, it will only have its chunk ID set to the first or last
-bin if bins extend to the simulation box boundary in the axis
-dimension. This is the case if the *bound* keyword settings are
-*lower* and *upper*, which is the default. If the *bound* keyword
-settings are numeric values, then the atom will have its chunk ID set
-to 0 if it is outside the bounds of any bin. Note that in this case,
-it is possible that the first or last bin extends beyond the numeric
-*bounds* settings, depending on the specified *origin*. If this is
-the case, the chunk ID of the atom is only set to 0 if it is outside
-the first or last bin, not if it is simply outside the numeric
-*bounds* setting.
-
-If *discard* is set to *no* or *mixed*, the atom will have its
-chunk ID set to the first or last bin, i.e. the innermost or outermost
-spherical shell. If the distance of the atom from the origin is less
-than *rmin*, it will be assigned to the first bin. If the distance of
-the atom from the origin is greater than *rmax*, it will be assigned
-to the last bin.
-
-
-----------
-
-
-The *bound* keyword only applies to the *bin/1d*, *bin/2d*, *bin/3d*
-styles and to the axis dimension of the *bin/cylinder* style;
-otherwise it is ignored. It can be used one or more times to limit
-the extent of bin coverage in a specified dimension, i.e. to only bin
-a portion of the box. If the *lo* setting is *lower* or the *hi*
-setting is *upper*, the bin extent in that direction extends to the
-box boundary. If a numeric value is used for *lo* and/or *hi*, then
-the bin extent in the *lo* or *hi* direction extends only to that
-value, which is assumed to be inside (or at least near) the simulation
-box boundaries, though LAMMPS does not check for this. Note that
-using the *bound* keyword typically reduces the total number of bins
-and thus the number of chunks *Nchunk*.
-
-The *pbc* keyword only applies to the *bin/sphere* and *bin/cylinder*
-styles. If set to *yes*, the distance an atom is from the sphere
-origin or cylinder axis is calculated in a minimum image sense with
-respect to periodic dimensions, when determining which bin the atom is
-in. I.e. if x is a periodic dimension and the distance between the
-atom and the sphere center in the x dimension is greater than 0.5 *
-simulation box length in x, then a box length is subtracted to give a
-distance < 0.5 * simulation box length. This allosws the sphere or
-cylinder center to be near a box edge, and atoms on the other side of
-the periodic box will still be close to the center point/axis. Note
-that with a setting of *yes*, the outer sphere or cylinder radius must
-also be <= 0.5 * simulation box length in any periodic dimension
-except for the cylinder axis dimension, or an error is generated.
-
-The *units* keyword only applies to the *binning* styles; otherwise it
-is ignored. For the *bin/1d*, *bin/2d*, *bin/3d* styles, it
-determines the meaning of the distance units used for the bin sizes
-*delta* and for *origin* and *bounds* values if they are coordinate
-values. For the *bin/sphere* style it determines the meaning of the
-distance units used for *xorig*,*yorig*,*zorig* and the radii *srmin*
-and *srmax*. For the *bin/cylinder* style it determines the meaning
-of the distance units used for *delta*,*c1*,*c2* and the radii *crmin*
-and *crmax*.
-
-For orthogonal simulation boxes, any of the 3 options may
-be used. For non-orthogonal (triclinic) simulation boxes, only the
-*reduced* option may be used.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacing. A *reduced* value means normalized
-unitless values between 0 and 1, which represent the lower and upper
-faces of the simulation box respectively. Thus an *origin* value of
-0.5 means the center of the box in any dimension. A *delta* value of
-0.1 means 10 bins span the box in that dimension.
-
-Note that for the *bin/sphere* style, the radii *srmin* and *srmax* are
-scaled by the lattice spacing or reduced value of the *x* dimension.
-
-Note that for the *bin/cylinder* style, the radii *crmin* and *crmax*
-are scaled by the lattice spacing or reduced value of the 1st
-dimension perpendicular to the cylinder axis. E.g. y for an x-axis
-cylinder, x for a y-axis cylinder, and x for a z-axis cylinder.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values are unitless chunk IDs, ranging from 1 to
-*Nchunk* (inclusive) for atoms assigned to chunks, and 0 for atoms not
-belonging to a chunk.
-
-Restrictions
-""""""""""""
-
-
-Even if the *nchunk* keyword is set to *once*, the chunk IDs assigned
-to each atom are not stored in a restart files. This means you cannot
-expect those assignments to persist in a restarted simulation.
-Instead you must re-specify this command and assign atoms to chunks when
-the restarted simulation begins.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/chunk <fix_ave_chunk>`
-
-Default
-"""""""
-
-The option defaults are as follows:
-
-* region = none
-* nchunk = every, if compress is yes, overriding other defaults listed here
-* nchunk = once, for type style
-* nchunk = once, for mol style if region is none
-* nchunk = every, for mol style if region is set
-* nchunk = once, for binning style if the simulation box size is static or units = reduced
-* nchunk = every, for binning style if the simulation box size is dynamic and units is lattice or box
-* nchunk = every, for compute/fix/variable style
-* limit = 0
-* ids = every
-* compress = no
-* discard = yes, for all styles except binning
-* discard = mixed, for binning styles
-* bound = lower and upper in all dimensions
-* pbc = no
-* units = lattice
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_cluster_atom.txt b/doc/_sources/compute_cluster_atom.txt
deleted file mode 100644
index a402ee3d2..000000000
--- a/doc/_sources/compute_cluster_atom.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-.. index:: compute cluster/atom
-
-compute cluster/atom command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID cluster/atom cutoff
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* cluster/atom = style name of this compute command
-* cutoff = distance within which to label atoms as part of same cluster (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all cluster/atom 1.0
-
-Description
-"""""""""""
-
-Define a computation that assigns each atom a cluster ID.
-
-A cluster is defined as a set of atoms, each of which is within the
-cutoff distance from one or more other atoms in the cluster. If an
-atom has no neighbors within the cutoff distance, then it is a 1-atom
-cluster. The ID of every atom in the cluster will be the smallest
-atom ID of any atom in the cluster.
-
-Only atoms in the compute group are clustered and assigned cluster
-IDs. Atoms not in the compute group are assigned a cluster ID = 0.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (i.e. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently or to have multiple compute/dump commands, each of a
-*clsuter/atom* style.
-
-.. note::
-
- If you have a bonded system, then the settings of
- :doc:`special_bonds <special_bonds>` command can remove pairwise
- interactions between atoms in the same bond, angle, or dihedral. This
- is the default setting for the :doc:`special_bonds <special_bonds>`
- command, and means those pairwise interactions do not appear in the
- neighbor list. Because this fix uses the neighbor list, it also means
- those pairs will not be included when computing the clusters. This
- does not apply when using long-range coulomb (*coul/long*, *coul/msm*,
- *coul/wolf* or similar. One way to get around this would be to set
- special_bond scaling factors to very tiny numbers that are not exactly
- zero (e.g. 1.0e-50). Another workaround is to write a dump file, and
- use the :doc:`rerun <rerun>` command to compute the clusters for
- snapshots in the dump file. The rerun script can use a
- :doc:`special_bonds <special_bonds>` command that includes all pairs in
- the neighbor list.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be an ID > 0, as explained above.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute coord/atom <compute_coord_atom>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_cna_atom.txt b/doc/_sources/compute_cna_atom.txt
deleted file mode 100644
index 336ce8263..000000000
--- a/doc/_sources/compute_cna_atom.txt
+++ /dev/null
@@ -1,117 +0,0 @@
-.. index:: compute cna/atom
-
-compute cna/atom command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID cna/atom cutoff
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* cna/atom = style name of this compute command
-* cutoff = cutoff distance for nearest neighbors (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all cna/atom 3.08
-
-Description
-"""""""""""
-
-Define a computation that calculates the CNA (Common Neighbor
-Analysis) pattern for each atom in the group. In solid-state systems
-the CNA pattern is a useful measure of the local crystal structure
-around an atom. The CNA methodology is described in :ref:`(Faken) <Faken>`
-and :ref:`(Tsuzuki) <Tsuzuki>`.
-
-Currently, there are five kinds of CNA patterns LAMMPS recognizes:
-
-* fcc = 1
-* hcp = 2
-* bcc = 3
-* icosohedral = 4
-* unknown = 5
-
-The value of the CNA pattern will be 0 for atoms not in the specified
-compute group. Note that normally a CNA calculation should only be
-performed on mono-component systems.
-
-The CNA calculation can be sensitive to the specified cutoff value.
-You should insure the appropriate nearest neighbors of an atom are
-found within the cutoff distance for the presumed crystal strucure.
-E.g. 12 nearest neighbor for perfect FCC and HCP crystals, 14 nearest
-neighbors for perfect BCC crystals. These formulas can be used to
-obtain a good cutoff distance:
-
-.. image:: Eqs/cna_cutoff1.jpg
- :align: center
-
-where a is the lattice constant for the crystal structure concerned
-and in the HCP case, x = (c/a) / 1.633, where 1.633 is the ideal c/a
-for HCP crystals.
-
-Also note that since the CNA calculation in LAMMPS uses the neighbors
-of an owned atom to find the nearest neighbors of a ghost atom, the
-following relation should also be satisfied:
-
-.. image:: Eqs/cna_cutoff2.jpg
- :align: center
-
-where Rc is the cutoff distance of the potential, Rs is the skin
-distance as specified by the :doc:`neighbor <neighbor>` command, and
-cutoff is the argument used with the compute cna/atom command. LAMMPS
-will issue a warning if this is not the case.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (e.g. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently or to have multiple compute/dump commands, each with a
-*cna/atom* style.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be a number from 0 to 5, as explained
-above.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute centro/atom <compute_centro_atom>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Faken:
-
-
-
-**(Faken)** Faken, Jonsson, Comput Mater Sci, 2, 279 (1994).
-
-.. _Tsuzuki:
-
-
-
-**(Tsuzuki)** Tsuzuki, Branicio, Rino, Comput Phys Comm, 177, 518 (2007).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_com.txt b/doc/_sources/compute_com.txt
deleted file mode 100644
index 0a34de74d..000000000
--- a/doc/_sources/compute_com.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-.. index:: compute com
-
-compute com command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID com
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* com = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all com
-
-Description
-"""""""""""
-
-Define a computation that calculates the center-of-mass of the group
-of atoms, including all effects due to atoms passing thru periodic
-boundaries.
-
-A vector of three quantites is calculated by this compute, which
-are the x,y,z coordinates of the center of mass.
-
-.. note::
-
- The coordinates of an atom contribute to the center-of-mass in
- "unwrapped" form, by using the image flags associated with each atom.
- See the :doc:`dump custom <dump>` command for a discussion of
- "unwrapped" coordinates. See the Atoms section of the
- :doc:`read_data <read_data>` command for a discussion of image flags and
- how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-**Output info:**
-
-This compute calculates a global vector of length 3, which can be
-accessed by indices 1-3 by any command that uses global vector values
-from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "intensive". The vector values will be in
-distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute com/chunk <compute_com_chunk>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_com_chunk.txt b/doc/_sources/compute_com_chunk.txt
deleted file mode 100644
index 5a7047211..000000000
--- a/doc/_sources/compute_com_chunk.txt
+++ /dev/null
@@ -1,95 +0,0 @@
-.. index:: compute com/chunk
-
-compute com/chunk command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID com/chunk chunkID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* com/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid com/chunk molchunk
-
-Description
-"""""""""""
-
-Define a computation that calculates the center-of-mass for multiple
-chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the x,y,z coordinates of the center-of-mass
-for each chunk, which includes all effects due to atoms passing thru
-periodic boundaries.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-.. note::
-
- The coordinates of an atom contribute to the chunk's
- center-of-mass in "unwrapped" form, by using the image flags
- associated with each atom. See the :doc:`dump custom <dump>` command
- for a discussion of "unwrapped" coordinates. See the Atoms section of
- the :doc:`read_data <read_data>` command for a discussion of image flags
- and how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-The simplest way to output the results of the compute com/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all com/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-3 for the x,y,z center-of-mass coordinates of each chunk. These
-values can be accessed by any command that uses global array values
-from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The array values are "intensive". The array values will be in
-distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute com <compute_com>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_contact_atom.txt b/doc/_sources/compute_contact_atom.txt
deleted file mode 100644
index ea633116a..000000000
--- a/doc/_sources/compute_contact_atom.txt
+++ /dev/null
@@ -1,64 +0,0 @@
-.. index:: compute contact/atom
-
-compute contact/atom command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID contact/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* contact/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all contact/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the number of contacts
-for each atom in a group.
-
-The contact number is defined for finite-size spherical particles as
-the number of neighbor atoms which overlap the central particle,
-meaning that their distance of separation is less than or equal to the
-sum of the radii of the two particles.
-
-The value of the contact number will be 0.0 for atoms not in the
-specified compute group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, whose values can be
-accessed by any command that uses per-atom values from a compute as
-input. See :ref:`Section_howto 15 <howto_15>` for an
-overview of LAMMPS output options.
-
-The per-atom vector values will be a number >= 0.0, as explained
-above.
-
-Restrictions
-""""""""""""
-
-
-This compute requires that atoms store a radius as defined by the
-:doc:`atom_style sphere <atom_style>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute coord/atom <compute_coord_atom>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_coord_atom.txt b/doc/_sources/compute_coord_atom.txt
deleted file mode 100644
index 4a12143af..000000000
--- a/doc/_sources/compute_coord_atom.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-.. index:: compute coord/atom
-
-compute coord/atom command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID coord/atom cutoff type1 type2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* coord/atom = style name of this compute command
-* cutoff = distance within which to count coordination neighbors (distance units)
-* typeN = atom type for Nth coordination count (see asterisk form below)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all coord/atom 2.0
- compute 1 all coord/atom 6.0 1 2
- compute 1 all coord/atom 6.0 2*4 5*8 *
-
-Description
-"""""""""""
-
-Define a computation that calculates one or more coordination numbers
-for each atom in a group.
-
-A coordination number is defined as the number of neighbor atoms with
-specified atom type(s) that are within the specified cutoff distance
-from the central atom. Atoms not in the group are included in a
-coordination number of atoms in the group.
-
-The *typeN* keywords allow you to specify which atom types contribute
-to each coordination number. One coordination number is computed for
-each of the *typeN* keywords listed. If no *typeN* keywords are
-listed, a single coordination number is calculated, which includes
-atoms of all types (same as the "*" format, see below).
-
-The *typeN* keywords can be specified in one of two ways. An explicit
-numeric value can be used, as in the 2nd example above. Or a
-wild-card asterisk can be used to specify a range of atom types. This
-takes the form "*" or "*n" or "n*" or "m*n". If N = the number of
-atom types, then an asterisk with no numeric values means all types
-from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive).
-
-The value of all coordination numbers will be 0.0 for atoms not in the
-specified compute group.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (i.e. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently.
-
-.. note::
-
- If you have a bonded system, then the settings of
- :doc:`special_bonds <special_bonds>` command can remove pairwise
- interactions between atoms in the same bond, angle, or dihedral. This
- is the default setting for the :doc:`special_bonds <special_bonds>`
- command, and means those pairwise interactions do not appear in the
- neighbor list. Because this fix uses the neighbor list, it also means
- those pairs will not be included in the coordination count. One way
- to get around this, is to write a dump file, and use the
- :doc:`rerun <rerun>` command to compute the coordination for snapshots
- in the dump file. The rerun script can use a
- :doc:`special_bonds <special_bonds>` command that includes all pairs in
- the neighbor list.
-
-**Output info:**
-
-If single *type1* keyword is specified (or if none are specified),
-this compute calculates a per-atom vector. If multiple *typeN*
-keywords are specified, this compute calculates a per-atom array, with
-N columns. These values can be accessed by any command that uses
-per-atom values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The per-atom vector or array values will be a number >= 0.0, as
-explained above.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute cluster/atom <compute_cluster_atom>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_damage_atom.txt b/doc/_sources/compute_damage_atom.txt
deleted file mode 100644
index 114f07020..000000000
--- a/doc/_sources/compute_damage_atom.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-.. index:: compute damage/atom
-
-compute damage/atom command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID damage/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* damage/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all damage/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom damage for each atom
-in a group. This is a quantity relevant for :doc:`Peridynamics models <pair_peri>`. See `this document <PDF/PDLammps_overview.pdf>`_
-for an overview of LAMMPS commands for Peridynamics modeling.
-
-The "damage" of a Peridymaics particles is based on the bond breakage
-between the particle and its neighbors. If all the bonds are broken
-the particle is considered to be fully damaged.
-
-See the `PDLAMMPS user guide <http://www.sandia.gov/~mlparks/papers/PDLAMMPS.pdf>`_ for a formal
-definition of "damage" and more details about Peridynamics as it is
-implemented in LAMMPS.
-
-This command can be used with all the Peridynamic pair styles.
-
-The damage value will be 0.0 for atoms not in the specified compute
-group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values are unitlesss numbers (damage) >= 0.0.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the PERI package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute dilatation <compute_dilatation>`, :doc:`compute plasticity <compute_plasticity>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_dihedral.txt b/doc/_sources/compute_dihedral.txt
deleted file mode 100644
index 8c0281e40..000000000
--- a/doc/_sources/compute_dihedral.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-.. index:: compute dihedral
-
-compute dihedral command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID dihedral
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* dihedral = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all dihedral
-
-Description
-"""""""""""
-
-Define a computation that extracts the dihedral energy calculated by
-each of the dihedral sub-styles used in the :doc:`dihedral_style hybrid <dihedral_hybrid>` command. These values are made
-accessible for output or further processing by other commands. The
-group specified for this command is ignored.
-
-This compute is useful when using :doc:`dihedral_style hybrid <dihedral_hybrid>` if you want to know the portion of the
-total energy contributed by one or more of the hybrid sub-styles.
-
-**Output info:**
-
-This compute calculates a global vector of length N where N is the
-number of sub_styles defined by the :doc:`dihedral_style hybrid <dihedral_style>` command. which can be accessed by indices
-1-N. These values can be used by any command that uses global scalar
-or vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "extensive" and will be in energy
-:doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe <compute_pe>`, :doc:`compute pair <compute_pair>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_dihedral_local.txt b/doc/_sources/compute_dihedral_local.txt
deleted file mode 100644
index ee95d0c3a..000000000
--- a/doc/_sources/compute_dihedral_local.txt
+++ /dev/null
@@ -1,79 +0,0 @@
-.. index:: compute dihedral/local
-
-compute dihedral/local command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID dihedral/local input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* dihedral/local = style name of this compute command
-* one or more keywords may be appended
-* keyword = *phi*
-.. parsed-literal::
-
- *phi* = tabulate dihedral angles
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all dihedral/local phi
-
-Description
-"""""""""""
-
-Define a computation that calculates properties of individual dihedral
-interactions. The number of datums generated, aggregated across all
-processors, equals the number of angles in the system, modified by the
-group parameter as explained below.
-
-The local data stored by this command is generated by looping over all
-the atoms owned on a processor and their dihedrals. A dihedral will
-only be included if all 4 atoms in the dihedral are in the specified
-compute group.
-
-Note that as atoms migrate from processor to processor, there will be
-no consistent ordering of the entries within the local vector or array
-from one timestep to the next. The only consistency that is
-guaranteed is that the ordering on a particular timestep will be the
-same for local vectors or arrays generated by other compute commands.
-For example, dihedral output from the :doc:`compute property/local <compute_property_local>` command can be combined
-with data from this command and output by the :doc:`dump local <dump>`
-command in a consistent way.
-
-**Output info:**
-
-This compute calculates a local vector or local array depending on the
-number of keywords. The length of the vector or number of rows in the
-array is the number of dihedrals. If a single keyword is specified, a
-local vector is produced. If two or more keywords are specified, a
-local array is produced where the number of columns = the number of
-keywords. The vector or array can be accessed by any command that
-uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The output for *phi* will be in degrees.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump local <dump>`, :doc:`compute property/local <compute_property_local>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_dilatation_atom.txt b/doc/_sources/compute_dilatation_atom.txt
deleted file mode 100644
index 54fe89e9c..000000000
--- a/doc/_sources/compute_dilatation_atom.txt
+++ /dev/null
@@ -1,71 +0,0 @@
-.. index:: compute dilatation/atom
-
-compute dilatation/atom command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID dilatation/atom
-
-* ID, group-ID are documented in compute command
-* dilation/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all dilatation/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom dilatation for each
-atom in a group. This is a quantity relevant for :doc:`Peridynamics models <pair_peri>`. See `this document <PDF/PDLammps_overview.pdf>`_
-for an overview of LAMMPS commands for Peridynamics modeling.
-
-For small deformation, dilatation of is the measure of the volumetric
-strain.
-
-The dilatation "theta" for each peridynamic particle I is calculated
-as a sum over its neighbors with unbroken bonds, where the
-contribution of the IJ pair is a function of the change in bond length
-(versus the initial length in the reference state), the volume
-fraction of the particles and an influence function. See the
-`PDLAMMPS user guide <http://www.sandia.gov/~mlparks/papers/PDLAMMPS.pdf>`_ for a formal
-definition of dilatation.
-
-This command can only be used with a subset of the Peridynamic :doc:`pair styles <pair_peri>`: peri/lps, peri/ves and peri/eps.
-
-The dilatation value will be 0.0 for atoms not in the specified
-compute group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-Section_howto 15 for an overview of LAMMPS output options.
-
-The per-atom vector values are unitlesss numbers (theta) >= 0.0.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the PERI package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute damage <compute_damage>`, :doc:`compute plasticity <compute_plasticity>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_dipole_chunk.txt b/doc/_sources/compute_dipole_chunk.txt
deleted file mode 100644
index afdd24562..000000000
--- a/doc/_sources/compute_dipole_chunk.txt
+++ /dev/null
@@ -1,100 +0,0 @@
-.. index:: compute dipole/chunk
-
-compute dipole/chunk command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID dipole/chunk chunkID charge-correction
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* dipole/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-* charge-correction = *mass* or *geometry*, use COM or geometric center for charged chunk correction (optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid dipole/chunk molchunk
- compute dw water dipole/chunk 1 geometry
-
-Description
-"""""""""""
-
-Define a computation that calculates the dipole vector and total dipole
-for multiple chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the x,y,z coordinates of the dipole vector
-and the total dipole moment for each chunk, which includes all effects
-due to atoms passing thru periodic boundaries. For chunks with a net
-charge the resulting dipole is made position independent by subtracting
-the position vector of the center of mass or geometric center times the
-net charge from the computed dipole vector.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-.. note::
-
- The coordinates of an atom contribute to the chunk's
- dipole in "unwrapped" form, by using the image flags
- associated with each atom. See the :doc:`dump custom <dump>` command
- for a discussion of "unwrapped" coordinates. See the Atoms section of
- the :doc:`read_data <read_data>` command for a discussion of image flags
- and how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-The simplest way to output the results of the compute com/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all dipole/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-4 for the x,y,z dipole vector components and the total dipole of each
-chunk. These values can be accessed by any command that uses global
-array values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The array values are "intensive". The array values will be in
-dipole units, i.e. charge units times distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute com/chunk <compute_com_chunk>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_displace_atom.txt b/doc/_sources/compute_displace_atom.txt
deleted file mode 100644
index 8c0e84bc5..000000000
--- a/doc/_sources/compute_displace_atom.txt
+++ /dev/null
@@ -1,80 +0,0 @@
-.. index:: compute displace/atom
-
-compute displace/atom command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID displace/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* displace/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all displace/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the current displacement of each
-atom in the group from its original coordinates, including all effects
-due to atoms passing thru periodic boundaries.
-
-A vector of four quantites per atom is calculated by this compute.
-The first 3 elements of the vector are the dx,dy,dz displacements.
-The 4th component is the total displacement, i.e. sqrt(dx*dx + dy*dy +
-dz*dz).
-
-The displacement of an atom is from its original position at the time
-the compute command was issued. The value of the displacement will be
-0.0 for atoms not in the specified compute group.
-
-.. note::
-
- Initial coordinates are stored in "unwrapped" form, by using the
- image flags associated with each atom. See the :doc:`dump custom <dump>` command for a discussion of "unwrapped" coordinates.
- See the Atoms section of the :doc:`read_data <read_data>` command for a
- discussion of image flags and how they are set for each atom. You can
- reset the image flags (e.g. to 0) before invoking this compute by
- using the :doc:`set image <set>` command.
-
-.. note::
-
- If you want the quantities calculated by this compute to be
- continuous when running from a :doc:`restart file <read_restart>`, then
- you should use the same ID for this compute, as in the original run.
- This is so that the fix this compute creates to store per-atom
- quantities will also have the same ID, and thus be initialized
- correctly with time=0 atom coordinates from the restart file.
-
-**Output info:**
-
-This compute calculates a per-atom array with 4 columns, which can be
-accessed by indices 1-4 by any command that uses per-atom values from
-a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The per-atom array values will be in distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute msd <compute_msd>`, :doc:`dump custom <dump>`, :doc:`fix store/state <fix_store_state>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_dpd.txt b/doc/_sources/compute_dpd.txt
deleted file mode 100644
index 5028ed787..000000000
--- a/doc/_sources/compute_dpd.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-.. index:: compute dpd
-
-compute dpd command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID dpd
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* dpd = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all dpd
-
-Description
-"""""""""""
-
-Define a computation that accumulates the total internal conductive
-energy (U_cond), the total internal mechanical energy (U_mech), the
-total internal energy (U) and the *harmonic* average of the internal
-temperature (dpdTheta) for the entire system of particles. See the
-:doc:`compute dpd/atom <compute_dpd_atom>` command if you want
-per-particle internal energies and internal temperatures.
-
-The system internal properties are computed according to the following
-relations:
-
-.. image:: Eqs/compute_dpd.jpg
- :align: center
-
-where N is the number of particles in the system
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global vector of length 5 (U_cond, U_mech,
-U, dpdTheta, N_particles), which can be accessed by indices 1-5. See
-:ref:`this section <howto_15>` for an overview of LAMMPS
-output options.
-
-The vector values will be in energy and temperature :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-The compute *dpd* is only available if LAMMPS is built with the
-USER-DPD package and requires the :doc:`atom_style dpd <atom_style>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute dpd/atom <compute_dpd_atom>`,
-:doc:`thermo_style <thermo_style>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Larentzos:
-
-
-
-**(Larentzos)** J.P. Larentzos, J.K. Brennan, J.D. Moore, and
-W.D. Mattson, "LAMMPS Implementation of Constant Energy Dissipative
-Particle Dynamics (DPD-E)", ARL-TR-6863, U.S. Army Research
-Laboratory, Aberdeen Proving Ground, MD (2014).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_dpd_atom.txt b/doc/_sources/compute_dpd_atom.txt
deleted file mode 100644
index 1cdf02264..000000000
--- a/doc/_sources/compute_dpd_atom.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-.. index:: compute dpd/atom
-
-compute dpd/atom command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID dpd/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* dpd/atom = style name of this compute command
-
-Examples
-""""""""
-
-compute 1 all dpd/atom
-
-Description
-"""""""""""
-
-Define a computation that accesses the per-particle internal
-conductive energy (u_cond), internal mechanical energy (u_mech) and
-internal temperatures (dpdTheta) for each particle in a group. See
-the :doc:`compute dpd <compute_dpd>` command if you want the total
-internal conductive energy, the total internal mechanical energy, and
-average internal temperature of the entire system or group of dpd
-particles.
-
-**Output info:**
-
-This compute calculates a per-particle array with 3 columns (u_cond,
-u_mech, dpdTheta), which can be accessed by indices 1-3 by any command
-that uses per-particle values from a compute as input. See
-:ref:`Section_howto15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-particle array values will be in energy (u_cond, u_mech) and
-temperature (dpdTheta) :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-The compute *dpd/atom* is only available if LAMMPS is built with the
-USER-DPD package.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`, :doc:`compute dpd <compute_dpd>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Larentzos:
-
-
-
-**(Larentzos)** J.P. Larentzos, J.K. Brennan, J.D. Moore, and
-W.D. Mattson, "LAMMPS Implementation of Constant Energy Dissipative
-Particle Dynamics (DPD-E)", ARL-TR-6863, U.S. Army Research
-Laboratory, Aberdeen Proving Ground, MD (2014).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_erotate_asphere.txt b/doc/_sources/compute_erotate_asphere.txt
deleted file mode 100644
index f75175b3f..000000000
--- a/doc/_sources/compute_erotate_asphere.txt
+++ /dev/null
@@ -1,80 +0,0 @@
-.. index:: compute erotate/asphere
-
-compute erotate/asphere command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID erotate/asphere
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* erotate/asphere = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all erotate/asphere
-
-Description
-"""""""""""
-
-Define a computation that calculates the rotational kinetic energy of
-a group of aspherical particles. The aspherical particles can be
-ellipsoids, or line segments, or triangles. See the
-:doc:`atom_style <atom_style>` and :doc:`read_data <read_data>` commands
-for descriptions of these options.
-
-For all 3 types of particles, the rotational kinetic energy is
-computed as 1/2 I w^2, where I is the inertia tensor for the
-aspherical particle and w is its angular velocity, which is computed
-from its angular momentum if needed.
-
-.. note::
-
- For :doc:`2d models <dimension>`, ellipsoidal particles are
- treated as ellipsoids, not ellipses, meaning their moments of inertia
- will be the same as in 3d.
-
-**Output info:**
-
-This compute calculates a global scalar (the KE). This value can be
-used by any command that uses a global scalar value from a compute as
-input. See :ref:`Section_howto 15 <howto_15>` for an
-overview of LAMMPS output options.
-
-The scalar value calculated by this compute is "extensive". The
-scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute requires that ellipsoidal particles atoms store a shape
-and quaternion orientation and angular momentum as defined by the
-:doc:`atom_style ellipsoid <atom_style>` command.
-
-This compute requires that line segment particles atoms store a length
-and orientation and angular velocity as defined by the :doc:`atom_style line <atom_style>` command.
-
-This compute requires that triangular particles atoms store a size and
-shape and quaternion orientation and angular momentum as defined by
-the :doc:`atom_style tri <atom_style>` command.
-
-All particles in the group must be finite-size. They cannot be point
-particles.
-
-**Related commands:** none
-
-:doc:`compute erotate/sphere <compute_erotate_sphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_erotate_rigid.txt b/doc/_sources/compute_erotate_rigid.txt
deleted file mode 100644
index 093860fef..000000000
--- a/doc/_sources/compute_erotate_rigid.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-.. index:: compute erotate/rigid
-
-compute erotate/rigid command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID erotate/rigid fix-ID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* erotate/rigid = style name of this compute command
-* fix-ID = ID of rigid body fix
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all erotate/rigid myRigid
-
-Description
-"""""""""""
-
-Define a computation that calculates the rotational kinetic energy of
-a collection of rigid bodies, as defined by one of the :doc:`fix rigid <fix_rigid>` command variants.
-
-The rotational energy of each rigid body is computed as 1/2 I Wbody^2,
-where I is the inertia tensor for the rigid body, and Wbody is its
-angular velocity vector. Both I and Wbody are in the frame of
-reference of the rigid body, i.e. I is diagonalized.
-
-The *fix-ID* should be the ID of one of the :doc:`fix rigid <fix_rigid>`
-commands which defines the rigid bodies. The group specified in the
-compute command is ignored. The rotational energy of all the rigid
-bodies defined by the fix rigid command in included in the
-calculation.
-
-**Output info:**
-
-This compute calculates a global scalar (the summed rotational energy
-of all the rigid bodies). This value can be used by any command that
-uses a global scalar value from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The scalar value calculated by this compute is "extensive". The
-scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the RIGID package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute ke/rigid <compute_erotate_ke_rigid>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_erotate_sphere.txt b/doc/_sources/compute_erotate_sphere.txt
deleted file mode 100644
index 5ed6d6a10..000000000
--- a/doc/_sources/compute_erotate_sphere.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-.. index:: compute erotate/sphere
-
-compute erotate/sphere command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID erotate/sphere
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* erotate/sphere = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all erotate/sphere
-
-Description
-"""""""""""
-
-Define a computation that calculates the rotational kinetic energy of
-a group of spherical particles.
-
-The rotational energy is computed as 1/2 I w^2, where I is the moment
-of inertia for a sphere and w is the particle's angular velocity.
-
-.. note::
-
- For :doc:`2d models <dimension>`, particles are treated as
- spheres, not disks, meaning their moment of inertia will be the same
- as in 3d.
-
-**Output info:**
-
-This compute calculates a global scalar (the KE). This value can be
-used by any command that uses a global scalar value from a compute as
-input. See :ref:`Section_howto 15 <howto_15>` for an
-overview of LAMMPS output options.
-
-The scalar value calculated by this compute is "extensive". The
-scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute requires that atoms store a radius and angular velocity
-(omega) as defined by the :doc:`atom_style sphere <atom_style>` command.
-
-All particles in the group must be finite-size spheres or point
-particles. They cannot be aspherical. Point particles will not
-contribute to the rotational energy.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute erotate/asphere <compute_erotate_asphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_erotate_sphere_atom.txt b/doc/_sources/compute_erotate_sphere_atom.txt
deleted file mode 100644
index ba529198c..000000000
--- a/doc/_sources/compute_erotate_sphere_atom.txt
+++ /dev/null
@@ -1,65 +0,0 @@
-.. index:: compute erotate/sphere/atom
-
-compute erotate/sphere/atom command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID erotate/sphere/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* erotate/sphere/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all erotate/sphere/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the rotational kinetic energy for
-each particle in a group.
-
-The rotational energy is computed as 1/2 I w^2, where I is the moment
-of inertia for a sphere and w is the particle's angular velocity.
-
-.. note::
-
- For :doc:`2d models <dimension>`, particles are treated as
- spheres, not disks, meaning their moment of inertia will be the same
- as in 3d.
-
-The value of the rotational kinetic energy will be 0.0 for atoms not
-in the specified compute group or for point particles with a radius =
-0.0.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_event_displace.txt b/doc/_sources/compute_event_displace.txt
deleted file mode 100644
index ac54510ed..000000000
--- a/doc/_sources/compute_event_displace.txt
+++ /dev/null
@@ -1,74 +0,0 @@
-.. index:: compute event/displace
-
-compute event/displace command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID event/displace threshold
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* event/displace = style name of this compute command
-* threshold = minimum distance anyparticle must move to trigger an event (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all event/displace 0.5
-
-Description
-"""""""""""
-
-Define a computation that flags an "event" if any particle in the
-group has moved a distance greater than the specified threshold
-distance when compared to a previously stored reference state
-(i.e. the previous event). This compute is typically used in
-conjunction with the :doc:`prd <prd>` and :doc:`tad <tad>` commands,
-to detect if a transition
-to a new minimum energy basin has occurred.
-
-This value calculated by the compute is equal to 0 if no particle has
-moved far enough, and equal to 1 if one or more particles have moved
-further than the threshold distance.
-
-.. note::
-
- If the system is undergoing significant center-of-mass motion,
- due to thermal motion, an external force, or an initial net momentum,
- then this compute will not be able to distinguish that motion from
- local atom displacements and may generate "false postives."
-
-**Output info:**
-
-This compute calculates a global scalar (the flag). This value can be
-used by any command that uses a global scalar value from a compute as
-input. See :ref:`Section_howto 15 <howto_15>` for an
-overview of LAMMPS output options.
-
-The scalar value calculated by this compute is "intensive". The
-scalar value will be a 0 or 1 as explained above.
-
-Restrictions
-""""""""""""
-
-
-This command can only be used if LAMMPS was built with the REPLICA
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`prd <prd>`, :doc:`tad <tad>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_fep.txt b/doc/_sources/compute_fep.txt
deleted file mode 100644
index f145f8d7c..000000000
--- a/doc/_sources/compute_fep.txt
+++ /dev/null
@@ -1,315 +0,0 @@
-.. index:: compute fep
-
-compute fep command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID fep temp attribute args ... keyword value ...
-
-* ID, group-ID are documented in the :doc:`compute <compute>` command
-* fep = name of this compute command
-* temp = external temperature (as specified for constant-temperature run)
-* one or more attributes with args may be appended
-* attribute = *pair* or *atom*
-.. parsed-literal::
-
- *pair* args = pstyle pparam I J v_delta
- pstyle = pair style name, e.g. lj/cut
- pparam = parameter to perturb
- I,J = type pair(s) to set parameter for
- v_delta = variable with perturbation to apply (in the units of the parameter)
- *atom* args = aparam I v_delta
- aparam = parameter to perturb
- I = type to set parameter for
- v_delta = variable with perturbation to apply (in the units of the parameter)
-
-* zero or more keyword/value pairs may be appended
-* keyword = *tail* or *volume*
-.. parsed-literal::
-
- *tail* value = *no* or *yes*
- *no* = ignore tail correction to pair energies (usually small in fep)
- *yes* = include tail correction to pair energies
- *volume* value = *no* or *yes*
- *no* = ignore volume changes (e.g. in *NVE* or *NVT* trajectories)
- *yes* = include volume changes (e.g. in *NpT* trajectories)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all fep 298 pair lj/cut epsilon 1 * v_delta pair lj/cut sigma 1 * v_delta volume yes
- compute 1 all fep 300 atom charge 2 v_delta
-
-Description
-"""""""""""
-
-Apply a perturbation to parameters of the interaction potential and
-recalculate the pair potential energy without changing the atomic
-coordinates from those of the reference, unperturbed system. This
-compute can be used to calculate free energy differences using several
-methods, such as free-energy perturbation (FEP), finite-difference
-thermodynamic integration (FDTI) or Bennet's acceptance ratio method
-(BAR).
-
-The potential energy of the system is decomposed in three terms: a
-background term corresponding to interaction sites whose parameters
-remain constant, a reference term *U*<sub>0</sub> corresponding to the
-initial interactions of the atoms that will undergo perturbation, and
-a term *U*<sub>1</sub> corresponding to the final interactions of
-these atoms:
-
-.. image:: Eqs/compute_fep_u.jpg
- :align: center
-
-A coupling parameter &lambda; varying from 0 to 1 connects the
-reference and perturbed systems:
-
-.. image:: Eqs/compute_fep_lambda.jpg
- :align: center
-
-It is possible but not necessary that the coupling parameter (or a
-function thereof) appears as a multiplication factor of the potential
-energy. Therefore, this compute can apply perturbations to interaction
-parameters that are not directly proportional to the potential energy
-(e.g. &sigma; in Lennard-Jones potentials).
-
-This command can be combined with :doc:`fix adapt <fix_adapt>` to
-perform multistage free-energy perturbation calculations along
-stepwise alchemical transformations during a simulation run:
-
-.. image:: Eqs/compute_fep_fep.jpg
- :align: center
-
-This compute is suitable for the finite-difference thermodynamic
-integration (FDTI) method :ref:`(Mezei) <Mezei>`, which is based on an
-evaluation of the numerical derivative of the free energy by a
-perturbation method using a very small &delta;:
-
-.. image:: Eqs/compute_fep_fdti.jpg
- :align: center
-
-where *w*<sub>i</sub> are weights of a numerical quadrature. The :doc:`fix adapt <fix_adapt>` command can be used to define the stages of
-&lambda; at which the derivative is calculated and averaged.
-
-The compute fep calculates the exponential Boltzmann term and also the
-potential energy difference *U*<sub>1</sub>-*U*<sub>0</sub>. By
-choosing a very small perturbation &delta; the thermodynamic
-integration method can be implemented using a numerical evaluation of
-the derivative of the potential energy with respect to &lambda;:
-
-.. image:: Eqs/compute_fep_ti.jpg
- :align: center
-
-Another technique to calculate free energy differences is the
-acceptance ratio method :ref:`(Bennet) <Bennet>`, which can be implemented
-by calculating the potential energy differences with &delta; = 1.0 on
-both the forward and reverse routes:
-
-.. image:: Eqs/compute_fep_bar.jpg
- :align: center
-
-The value of the free energy difference is determined by numerical
-root finding to establish the equality.
-
-Concerning the choice of how the atomic parameters are perturbed in
-order to setup an alchemical transformation route, several strategies
-are available, such as single-topology or double-topology strategies
-:ref:`(Pearlman) <Pearlman>`. The latter does not require modification of
-bond lengths, angles or other internal coordinates.
-
-NOTES: This compute command does not take kinetic energy into account,
-therefore the masses of the particles should not be modified between
-the reference and perturbed states, or along the alchemical
-transformation route. This compute command does not change bond
-lengths or other internal coordinates :ref:`(Boresch, Karplus) <BoreschKarplus>`.
-
-
-----------
-
-
-The *pair* attribute enables various parameters of potentials defined
-by the :doc:`pair_style <pair_style>` and :doc:`pair_coeff <pair_coeff>`
-commands to be changed, if the pair style supports it.
-
-The *pstyle* argument is the name of the pair style. For example,
-*pstyle* could be specified as "lj/cut". The *pparam* argument is the
-name of the parameter to change. This is a (non-exclusive) list of
-pair styles and parameters that can be used with this compute. See
-the doc pages for individual pair styles and their energy formulas for
-the meaning of these parameters:
-
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/cut <pair_lj>` | epsilon,sigma | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/cut/coul/cut <pair_lj>` | epsilon,sigma | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/cut/coul/long <pair_lj>` | epsilon,sigma | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/cut/soft <pair_lj_soft>` | epsilon,sigma,lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`coul/cut/soft <pair_lj_soft>` | lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`coul/long/soft <pair_lj_soft>` | lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/cut/coul/cut/soft <pair_lj_soft>` | epsilon,sigma,lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/cut/coul/long/soft <pair_lj_soft>` | epsilon,sigma,lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/cut/tip4p/long/soft <pair_lj_soft>` | epsilon,sigma,lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`tip4p/long/soft <pair_lj_soft>` | lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`lj/charmm/coul/long/soft <pair_lj_soft>` | epsilon,sigma,lambda | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`born <pair_born>` | a,b,c | type pairs |
-+------------------------------------------------+----------------------+------------+
-| :doc:`buck <pair_buck>` | a,c | type pairs |
-+------------------------------------------------+----------------------+------------+
-
-Note that it is easy to add new potentials and their parameters to
-this list. All it typically takes is adding an extract() method to
-the pair_*.cpp file associated with the potential.
-
-Similar to the :doc:`pair_coeff <pair_coeff>` command, I and J can be
-specified in one of two ways. Explicit numeric values can be used for
-each, as in the 1st example above. I <= J is required. LAMMPS sets
-the coefficients for the symmetric J,I interaction to the same
-values. A wild-card asterisk can be used in place of or in conjunction
-with the I,J arguments to set the coefficients for multiple pairs of
-atom types. This takes the form "*" or "*n" or "n*" or "m*n". If N =
-the number of atom types, then an asterisk with no numeric values
-means all types from 1 to N. A leading asterisk means all types from
-1 to n (inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive). Note that only type pairs with I <= J are considered; if
-asterisks imply type pairs where J < I, they are ignored.
-
-If :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>` is being
-used, then the *pstyle* will be a sub-style name. You must specify
-I,J arguments that correspond to type pair values defined (via the
-:doc:`pair_coeff <pair_coeff>` command) for that sub-style.
-
-The *v_name* argument for keyword *pair* is the name of an
-:doc:`equal-style variable <variable>` which will be evaluated each time
-this compute is invoked. It should be specified as v_name, where name
-is the variable name.
-
-
-----------
-
-
-The *atom* attribute enables atom properties to be changed. The
-*aparam* argument is the name of the parameter to change. This is the
-current list of atom parameters that can be used with this compute:
-
-* charge = charge on particle
-
-The *v_name* argument for keyword *pair* is the name of an
-:doc:`equal-style variable <variable>` which will be evaluated each time
-this compute is invoked. It should be specified as v_name, where name
-is the variable name.
-
-
-----------
-
-
-The *tail* keyword controls the calculation of the tail correction to
-"van der Waals" pair energies beyond the cutoff, if this has been
-activated via the :doc:`pair_modify <pair_modify>` command. If the
-perturbation is small, the tail contribution to the energy difference
-between the reference and perturbed systems should be negligible.
-
-If the keyword *volume* = *yes*, then the Boltzmann term is multiplied
-by the volume so that correct ensemble averaging can be performed over
-trajectories during which the volume fluctuates or changes :ref:`(Allen and Tildesley) <AllenTildesley>`:
-
-.. image:: Eqs/compute_fep_vol.jpg
- :align: center
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global vector of length 3 which contains the
-energy difference (*U*<sub>1</sub>-*U*<sub>0</sub>) as c_ID[1], the
-Boltzmann factor exp(-(*U*<sub>1</sub>-*U*<sub>0</sub>)/*kT*), or
-*V*exp(-(*U*<sub>1</sub>-*U*<sub>0</sub>)/*kT*), as c_ID[2] and the
-volume of the simulation box *V* as c_ID[3]. *U*<sub>1</sub> is the
-pair potential energy obtained with the perturbed parameters and
-*U*<sub>0</sub> is the pair potential energy obtained with the
-unperturbed parameters. The energies include kspace terms if these
-are used in the simulation.
-
-These output results can be used by any command that uses a global
-scalar or vector from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options. For example, the computed values can be averaged using :doc:`fix ave/time <fix_ave_time>`.
-
-The values calculated by this compute are "extensive".
-
-Restrictions
-""""""""""""
-
-
-This compute is distributed as the USER-FEP package. It is only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix adapt/fep <fix_adapt_fep>`, :doc:`fix ave/time <fix_ave_time>`,
-`pair_lj_soft_coul_soft <pair_lj_soft_coul_soft.txt>`_
-
-Default
-"""""""
-
-The option defaults are *tail* = *no*, *volume* = *no*.
-
-
-----------
-
-
-.. _Pearlman:
-
-
-
-**(Pearlman)** Pearlman, J Chem Phys, 98, 1487 (1994)
-
-.. _Mezei:
-
-
-
-**(Mezei)** Mezei, J Chem Phys, 86, 7084 (1987)
-
-.. _Bennet:
-
-
-
-**(Bennet)** Bennet, J Comput Phys, 22, 245 (1976)
-
-.. _BoreschKarplus:
-
-
-
-**(BoreschKarplus)** Boresch and Karplus, J Phys Chem A, 103, 103 (1999)
-
-.. _AllenTildesley:
-
-
-
-**(AllenTildesley)** Allen and Tildesley, Computer Simulation of
-Liquids, Oxford University Press (1987)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_group_group.txt b/doc/_sources/compute_group_group.txt
deleted file mode 100644
index 9cb3a9ff1..000000000
--- a/doc/_sources/compute_group_group.txt
+++ /dev/null
@@ -1,150 +0,0 @@
-.. index:: compute group/group
-
-compute group/group command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID group/group group2-ID keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* group/group = style name of this compute command
-* group2-ID = group ID of second (or same) group
-* zero or more keyword/value pairs may be appended
-* keyword = *pair* or *kspace* or *boundary*
-.. parsed-literal::
-
- *pair* value = *yes* or *no*
- *kspace* value = *yes* or *no*
- *boundary* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 lower group/group upper
- compute 1 lower group/group upper kspace yes
- compute mine fluid group/group wall
-
-Description
-"""""""""""
-
-Define a computation that calculates the total energy and force
-interaction between two groups of atoms: the compute group and the
-specified group2. The two groups can be the same.
-
-If the *pair* keyword is set to *yes*, which is the default, then the
-the interaction energy will include a pair component which is defined
-as the pairwise energy between all pairs of atoms where one atom in
-the pair is in the first group and the other is in the second group.
-Likewise, the interaction force calculated by this compute will
-include the force on the compute group atoms due to pairwise
-interactions with atoms in the specified group2.
-
-.. note::
-
- The energies computed by the *pair* keyword do not include tail
- corrections, even if they are enabled via the
- :doc:`pair_modify <pair_modify>` command.
-
-If the *kspace* keyword is set to *yes*, which is not the default, and
-if a :doc:`kspace_style <kspace_style>` is defined, then the interaction
-energy will include a Kspace component which is the long-range
-Coulombic energy between all the atoms in the first group and all the
-atoms in the 2nd group. Likewise, the interaction force calculated by
-this compute will include the force on the compute group atoms due to
-long-range Coulombic interactions with atoms in the specified group2.
-
-Normally the long-range Coulombic energy converges only when the net
-charge of the unit cell is zero. However, one can assume the net
-charge of the system is neutralized by a uniform background plasma,
-and a correction to the system energy can be applied to reduce
-artifacts. For more information see :ref:`(Bogusz) <Bogusz>`. If the
-*boundary* keyword is set to *yes*, which is the default, and *kspace*
-contributions are included, then this energy correction term will be
-added to the total group-group energy. This correction term does not
-affect the force calculation and will be zero if one or both of the
-groups are charge neutral. This energy correction term is the same as
-that included in the regular Ewald and PPPM routines.
-
-This compute does not calculate any bond or angle or dihedral or
-improper interactions between atoms in the two groups.
-
-
-----------
-
-
-The pairwise contributions to the group-group interactions are
-calculated by looping over a neighbor list. The Kspace contribution
-to the group-group interactions require essentially the same amount of
-work (FFTs, Ewald summation) as computing long-range forces for the
-entire system. Thus it can be costly to invoke this compute too
-frequently.
-
-If you desire a breakdown of the interactions into a pairwise and
-Kspace component, simply invoke the compute twice with the appropriate
-yes/no settings for the *pair* and *kspace* keywords. This is no more
-costly than using a single compute with both keywords set to *yes*.
-The individual contributions can be summed in a
-:doc:`variable <variable>` if desired.
-
-This `document <PDF/kspace.pdf>`_ describes how the long-range
-group-group calculations are performed.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the energy) and a global
-vector of length 3 (force), which can be accessed by indices 1-3.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-Both the scalar and vector values calculated by this compute are
-"extensive". The scalar value will be in energy :doc:`units <units>`.
-The vector values will be in force :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-Not all pair styles can be evaluated in a pairwise mode as required by
-this compute. For example, 3-body and other many-body potentials,
-such as :doc:`Tersoff <pair_tersoff>` and
-:doc:`Stillinger-Weber <pair_sw>` cannot be used. :doc:`EAM <pair_eam>`
-potentials only include the pair potential portion of the EAM
-interaction when used by this compute, not the embedding term.
-
-Not all Kspace styles support calculation of group/group interactions.
-The *ewald* and *pppm* styles do.
-
-**Related commands:** none
-
-Default
-"""""""
-
-The option defaults are pair = yes, kspace = no, and boundary = yes.
-
-
-----------
-
-
-.. _Bogusz:
-
-
-
-Bogusz et al, J Chem Phys, 108, 7070 (1998)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_gyration.txt b/doc/_sources/compute_gyration.txt
deleted file mode 100644
index d28bef60c..000000000
--- a/doc/_sources/compute_gyration.txt
+++ /dev/null
@@ -1,83 +0,0 @@
-.. index:: compute gyration
-
-compute gyration command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID gyration
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* gyration = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 molecule gyration
-
-Description
-"""""""""""
-
-Define a computation that calculates the radius of gyration Rg of the
-group of atoms, including all effects due to atoms passing thru
-periodic boundaries.
-
-Rg is a measure of the size of the group of atoms, and is computed as
-the square root of the Rg^2 value in this formula
-
-.. image:: Eqs/compute_gyration.jpg
- :align: center
-
-where M is the total mass of the group, Rcm is the center-of-mass
-position of the group, and the sum is over all atoms in the group.
-
-A Rg^2 tensor, stored as a 6-element vector, is also calculated by
-this compute. The formula for the components of the tensor is the
-same as the above formula, except that (Ri - Rcm)^2 is replaced by
-(Rix - Rcmx) * (Riy - Rcmy) for the xy component, etc. The 6
-components of the vector are ordered xx, yy, zz, xy, xz, yz. Note
-that unlike the scalar Rg, each of the 6 values of the tensor is
-effectively a "squared" value, since the cross-terms may be negative
-and taking a sqrt() would be invalid.
-
-.. note::
-
- The coordinates of an atom contribute to Rg in "unwrapped" form,
- by using the image flags associated with each atom. See the :doc:`dump custom <dump>` command for a discussion of "unwrapped" coordinates.
- See the Atoms section of the :doc:`read_data <read_data>` command for a
- discussion of image flags and how they are set for each atom. You can
- reset the image flags (e.g. to 0) before invoking this compute by
- using the :doc:`set image <set>` command.
-
-**Output info:**
-
-This compute calculates a global scalar (Rg) and a global vector of
-length 6 (Rg^2 tensor), which can be accessed by indices 1-6. These
-values can be used by any command that uses a global scalar value or
-vector values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar and vector values calculated by this compute are
-"intensive". The scalar and vector values will be in distance and
-distance^2 :doc:`units <units>` respectively.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute gyration/chunk <compute_gyration_chunk>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_gyration_chunk.txt b/doc/_sources/compute_gyration_chunk.txt
deleted file mode 100644
index cbd683db3..000000000
--- a/doc/_sources/compute_gyration_chunk.txt
+++ /dev/null
@@ -1,122 +0,0 @@
-.. index:: compute gyration/chunk
-
-compute gyration/chunk command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID gyration/chunk chunkID keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* gyration/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-* zero or more keyword/value pairs may be appended
-* keyword = *tensor*
-.. parsed-literal::
-
- *tensor* value = none
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 molecule gyration/chunk molchunk
- compute 2 molecule gyration/chunk molchunk tensor
-
-Description
-"""""""""""
-
-Define a computation that calculates the radius of gyration Rg for
-multiple chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the radius of gyration Rg for each chunk,
-which includes all effects due to atoms passing thru periodic
-boundaries.
-
-Rg is a measure of the size of a chunk, and is computed by this
-formula
-
-.. image:: Eqs/compute_gyration.jpg
- :align: center
-
-where M is the total mass of the chunk, Rcm is the center-of-mass
-position of the chunk, and the sum is over all atoms in the
-chunk.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-If the *tensor* keyword is specified, then the scalar Rg value is not
-calculated, but an Rg tensor is instead calculated for each chunk.
-The formula for the components of the tensor is the same as the above
-formula, except that (Ri - Rcm)^2 is replaced by (Rix - Rcmx) * (Riy -
-Rcmy) for the xy component, etc. The 6 components of the tensor are
-ordered xx, yy, zz, xy, xz, yz.
-
-.. note::
-
- The coordinates of an atom contribute to Rg in "unwrapped" form,
- by using the image flags associated with each atom. See the :doc:`dump custom <dump>` command for a discussion of "unwrapped" coordinates.
- See the Atoms section of the :doc:`read_data <read_data>` command for a
- discussion of image flags and how they are set for each atom. You can
- reset the image flags (e.g. to 0) before invoking this compute by
- using the :doc:`set image <set>` command.
-
-The simplest way to output the results of the compute gyration/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all gyration/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global vector if the *tensor* keyword is not
-specified and a global array if it is. The length of the vector or
-number of rows in the array = the number of chunks *Nchunk* as
-calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. If the *tensor* keyword
-is specified, the global array has 6 columns. The vector or array can
-be accessed by any command that uses global values from a compute as
-input. See :ref:`this section <howto_15>` for an overview
-of LAMMPS output options.
-
-All the vector or array values calculated by this compute are
-"intensive". The vector or array values will be in distance
-:doc:`units <units>`, since they are the square root of values
-represented by the formula above.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-:doc:`compute gyration <compute_gyration>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_heat_flux.txt b/doc/_sources/compute_heat_flux.txt
deleted file mode 100644
index 00a1f0113..000000000
--- a/doc/_sources/compute_heat_flux.txt
+++ /dev/null
@@ -1,225 +0,0 @@
-.. index:: compute heat/flux
-
-compute heat/flux command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID heat/flux ke-ID pe-ID stress-ID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* heat/flux = style name of this compute command
-* ke-ID = ID of a compute that calculates per-atom kinetic energy
-* pe-ID = ID of a compute that calculates per-atom potential energy
-* stress-ID = ID of a compute that calculates per-atom stress
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute myFlux all heat/flux myKE myPE myStress
-
-Description
-"""""""""""
-
-Define a computation that calculates the heat flux vector based on
-contributions from atoms in the specified group. This can be used by
-itself to measure the heat flux into or out of a reservoir of atoms,
-or to calculate a thermal conductivity using the Green-Kubo formalism.
-
-See the :doc:`fix thermal/conductivity <fix_thermal_conductivity>`
-command for details on how to compute thermal conductivity in an
-alternate way, via the Muller-Plathe method. See the :doc:`fix heat <fix_heat>` command for a way to control the heat added or
-subtracted to a group of atoms.
-
-The compute takes three arguments which are IDs of other
-:doc:`computes <compute>`. One calculates per-atom kinetic energy
-(*ke-ID*), one calculates per-atom potential energy (*pe-ID)*, and the
-third calcualtes per-atom stress (*stress-ID*). These should be
-defined for the same group used by compute heat/flux, though LAMMPS
-does not check for this.
-
-The Green-Kubo formulas relate the ensemble average of the
-auto-correlation of the heat flux J to the thermal conductivity kappa:
-
-.. image:: Eqs/heat_flux_J.jpg
- :align: center
-
-.. image:: Eqs/heat_flux_k.jpg
- :align: center
-
-Ei in the first term of the equation for J is the per-atom energy
-(potential and kinetic). This is calculated by the computes *ke-ID*
-and *pe-ID*. Si in the second term of the equation for J is the
-per-atom stress tensor calculated by the compute *stress-ID*. The
-tensor multiplies Vi as a 3x3 matrix-vector multiply to yield a
-vector. Note that as discussed below, the 1/V scaling factor in the
-equation for J is NOT included in the calculation performed by this
-compute; you need to add it for a volume appropriate to the atoms
-included in the calculation.
-
-.. note::
-
- The :doc:`compute pe/atom <compute_pe_atom>` and :doc:`compute stress/atom <compute_stress_atom>` commands have options for which
- terms to include in their calculation (pair, bond, etc). The heat
- flux calculation will thus include exactly the same terms. Normally
- you should use :doc:`compute stress/atom virial <compute_stress_atom>`
- so as not to include a kinetic energy term in the heat flux.
-
-This compute calculates 6 quantities and stores them in a 6-component
-vector. The first 3 components are the x, y, z components of the full
-heat flux vector, i.e. (Jx, Jy, Jz). The next 3 components are the x,
-y, z components of just the convective portion of the flux, i.e. the
-first term in the equation for J above.
-
-
-----------
-
-
-The heat flux can be output every so many timesteps (e.g. via the
-:doc:`thermo_style custom <thermo_style>` command). Then as a
-post-processing operation, an autocorrelation can be performed, its
-integral estimated, and the Green-Kubo formula above evaluated.
-
-The :doc:`fix ave/correlate <fix_ave_correlate>` command can calclate
-the autocorrelation. The trap() function in the
-:doc:`variable <variable>` command can calculate the integral.
-
-An example LAMMPS input script for solid Ar is appended below. The
-result should be: average conductivity ~0.29 in W/mK.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global vector of length 6 (total heat flux
-vector, followed by convective heat flux vector), which can be
-accessed by indices 1-6. These values can be used by any command that
-uses global vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values calculated by this compute are "extensive", meaning
-they scale with the number of atoms in the simulation. They can be
-divided by the appropriate volume to get a flux, which would then be
-an "intensive" value, meaning independent of the number of atoms in
-the simulation. Note that if the compute is "all", then the
-appropriate volume to divide by is the simulation box volume.
-However, if a sub-group is used, it should be the volume containing
-those atoms.
-
-The vector values will be in energy*velocity :doc:`units <units>`. Once
-divided by a volume the units will be that of flux, namely
-energy/area/time :doc:`units <units>`
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix thermal/conductivity <fix_thermal_conductivity>`,
-:doc:`fix ave/correlate <fix_ave_correlate>`,
-:doc:`variable <variable>`
-
-**Default:** none
-
-
-----------
-
-
-.. parsed-literal::
-
- # Sample LAMMPS input script for thermal conductivity of solid Ar
-
-.. parsed-literal::
-
- units real
- variable T equal 70
- variable V equal vol
- variable dt equal 4.0
- variable p equal 200 # correlation length
- variable s equal 10 # sample interval
- variable d equal $p*$s # dump interval
-
-.. parsed-literal::
-
- # convert from LAMMPS real units to SI
-
-.. parsed-literal::
-
- variable kB equal 1.3806504e-23 # [J/K] Boltzmann
- variable kCal2J equal 4186.0/6.02214e23
- variable A2m equal 1.0e-10
- variable fs2s equal 1.0e-15
- variable convert equal ${kCal2J}*${kCal2J}/${fs2s}/${A2m}
-
-.. parsed-literal::
-
- # setup problem
-
-.. parsed-literal::
-
- dimension 3
- boundary p p p
- lattice fcc 5.376 orient x 1 0 0 orient y 0 1 0 orient z 0 0 1
- region box block 0 4 0 4 0 4
- create_box 1 box
- create_atoms 1 box
- mass 1 39.948
- pair_style lj/cut 13.0
- pair_coeff * * 0.2381 3.405
- timestep ${dt}
- thermo $d
-
-.. parsed-literal::
-
- # equilibration and thermalization
-
-.. parsed-literal::
-
- velocity all create $T 102486 mom yes rot yes dist gaussian
- fix NVT all nvt temp $T $T 10 drag 0.2
- run 8000
-
-.. parsed-literal::
-
- # thermal conductivity calculation, switch to NVE if desired
-
-.. parsed-literal::
-
- #unfix NVT
- #fix NVE all nve
-
-.. parsed-literal::
-
- reset_timestep 0
- compute myKE all ke/atom
- compute myPE all pe/atom
- compute myStress all stress/atom NULL virial
- compute flux all heat/flux myKE myPE myStress
- variable Jx equal c_flux[1]/vol
- variable Jy equal c_flux[2]/vol
- variable Jz equal c_flux[3]/vol
- fix JJ all ave/correlate $s $p $d &
- c_flux[1] c_flux[2] c_flux[3] type auto file J0Jt.dat ave running
- variable scale equal ${convert}/${kB}/$T/$T/$V*$s*${dt}
- variable k11 equal trap(f_JJ[3])*${scale}
- variable k22 equal trap(f_JJ[4])*${scale}
- variable k33 equal trap(f_JJ[5])*${scale}
- thermo_style custom step temp v_Jx v_Jy v_Jz v_k11 v_k22 v_k33
- run 100000
- variable k equal (v_k11+v_k22+v_k33)/3.0
- variable ndens equal count(all)/vol
- print "average conductivity: $k[W/mK] @ $T K, ${ndens} /A^3"
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_hexorder_atom.txt b/doc/_sources/compute_hexorder_atom.txt
deleted file mode 100644
index dd5555ce0..000000000
--- a/doc/_sources/compute_hexorder_atom.txt
+++ /dev/null
@@ -1,136 +0,0 @@
-.. index:: compute hexorder/atom
-
-compute hexorder/atom command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID hexorder/atom keyword values ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* hexorder/atom = style name of this compute command
-* one or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *degree* or *nnn* or *cutoff*
- *cutoff* value = distance cutoff
- *nnn* value = number of nearest neighbors
- *degree* value = degree *n* of order parameter
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all hexorder/atom
- compute 1 all hexorder/atom degree 4 nnn 4 cutoff 1.2
-
-Description
-"""""""""""
-
-Define a computation that calculates *qn* the bond-orientational
-order parameter for each atom in a group. The hexatic (*n* = 6) order
-parameter was introduced by :ref:`Nelson and Halperin <Nelson>` as a way to detect
-hexagonal symmetry in two-dimensional systems. For each atom, *qn*
-is a complex number (stored as two real numbers) defined as follows:
-
-.. image:: Eqs/hexorder.jpg
- :align: center
-
-where the sum is over the *nnn* nearest neighbors
-of the central atom. The angle theta
-is formed by the bond vector rij and the *x* axis. theta is calculated
-only using the *x* and *y* components, whereas the distance from the
-central atom is calculated using all three
-*x*, *y*, and *z* components of the bond vector.
-Neighbor atoms not in the group
-are included in the order parameter of atoms in the group.
-
-The optional keyword *cutoff* defines the distance cutoff
-used when searching for neighbors. The default value, also
-the maximum allowable value, is the cutoff specified
-by the pair style.
-
-The optional keyword *nnn* defines the number of nearest
-neighbors used to calculate *qn*. The default value is 6.
-If the value is NULL, then all neighbors up to the
-distance cutoff are used.
-
-The optional keyword *degree* sets the degree *n* of the order parameter.
-The default value is 6. For a perfect hexagonal lattice with
-*nnn* = 6,
-*q*6 = exp(6 i phi) for all atoms, where the constant 0 < phi < pi/3
-depends only on the orientation of the lattice relative to the *x* axis.
-In an isotropic liquid, local neighborhoods may still exhibit
-weak hexagonal symmetry, but because the orientational correlation
-decays quickly with distance, the value of phi will be different for
-different atoms, and so when *q*6 is averaged over all the atoms
-in the system, |<*q*6>| << 1.
-
-The value of *qn* is set to zero for atoms not in the
-specified compute group, as well as for atoms that have less than
-*nnn* neighbors within the distance cutoff.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (i.e. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently.
-
-.. note::
-
- If you have a bonded system, then the settings of
- :doc:`special_bonds <special_bonds>` command can remove pairwise
- interactions between atoms in the same bond, angle, or dihedral. This
- is the default setting for the :doc:`special_bonds <special_bonds>`
- command, and means those pairwise interactions do not appear in the
- neighbor list. Because this fix uses the neighbor list, it also means
- those pairs will not be included in the order parameter. This
- difficulty can be circumvented by writing a dump file, and using the
- :doc:`rerun <rerun>` command to compute the order parameter for
- snapshots in the dump file. The rerun script can use a
- :doc:`special_bonds <special_bonds>` command that includes all pairs in
- the neighbor list.
-
-**Output info:**
-
-This compute calculates a per-atom array with 2 columns, giving the
-real and imaginary parts *qn*, a complex number restricted to the
-unit disk of the complex plane i.e. Re(*qn*)^2 + Im(*qn*)^2 <= 1 .
-
-These values can be accessed by any command that uses
-per-atom values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute orientorder/atom <compute_orientorder_atom>`, :doc:`compute coord/atom <compute_coord_atom>`, :doc:`compute centro/atom <compute_centro_atom>`
-
-Default
-"""""""
-
-The option defaults are *cutoff* = pair style cutoff, *nnn* = 6, *degree* = 6
-
-
-----------
-
-
-.. _Nelson:
-
-
-
-**(Nelson)** Nelson, Halperin, Phys Rev B, 19, 2457 (1979).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_improper.txt b/doc/_sources/compute_improper.txt
deleted file mode 100644
index ade78d6cb..000000000
--- a/doc/_sources/compute_improper.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-.. index:: compute improper
-
-compute improper command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID improper
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* improper = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all improper
-
-Description
-"""""""""""
-
-Define a computation that extracts the improper energy calculated by
-each of the improper sub-styles used in the :doc:`improper_style hybrid <improper_hybrid>` command. These values are made
-accessible for output or further processing by other commands. The
-group specified for this command is ignored.
-
-This compute is useful when using :doc:`improper_style hybrid <improper_hybrid>` if you want to know the portion of the
-total energy contributed by one or more of the hybrid sub-styles.
-
-**Output info:**
-
-This compute calculates a global vector of length N where N is the
-number of sub_styles defined by the :doc:`improper_style hybrid <improper_style>` command. which can be accessed by indices
-1-N. These values can be used by any command that uses global scalar
-or vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "extensive" and will be in energy
-:doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe <compute_pe>`, :doc:`compute pair <compute_pair>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_improper_local.txt b/doc/_sources/compute_improper_local.txt
deleted file mode 100644
index d2128538c..000000000
--- a/doc/_sources/compute_improper_local.txt
+++ /dev/null
@@ -1,79 +0,0 @@
-.. index:: compute improper/local
-
-compute improper/local command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID improper/local input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* improper/local = style name of this compute command
-* one or more keywords may be appended
-* keyword = *chi*
-.. parsed-literal::
-
- *chi* = tabulate improper angles
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all improper/local chi
-
-Description
-"""""""""""
-
-Define a computation that calculates properties of individual improper
-interactions. The number of datums generated, aggregated across all
-processors, equals the number of impropers in the system, modified by
-the group parameter as explained below.
-
-The local data stored by this command is generated by looping over all
-the atoms owned on a processor and their impropers. An improper will
-only be included if all 4 atoms in the improper are in the specified
-compute group.
-
-Note that as atoms migrate from processor to processor, there will be
-no consistent ordering of the entries within the local vector or array
-from one timestep to the next. The only consistency that is
-guaranteed is that the ordering on a particular timestep will be the
-same for local vectors or arrays generated by other compute commands.
-For example, improper output from the :doc:`compute property/local <compute_property_local>` command can be combined
-with data from this command and output by the :doc:`dump local <dump>`
-command in a consistent way.
-
-**Output info:**
-
-This compute calculates a local vector or local array depending on the
-number of keywords. The length of the vector or number of rows in the
-array is the number of impropers. If a single keyword is specified, a
-local vector is produced. If two or more keywords are specified, a
-local array is produced where the number of columns = the number of
-keywords. The vector or array can be accessed by any command that
-uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The output for *chi* will be in degrees.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump local <dump>`, :doc:`compute property/local <compute_property_local>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_inertia_chunk.txt b/doc/_sources/compute_inertia_chunk.txt
deleted file mode 100644
index e55f6f413..000000000
--- a/doc/_sources/compute_inertia_chunk.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-.. index:: compute inertia/chunk
-
-compute inertia/chunk command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID inertia/chunk chunkID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* inertia/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid inertia/chunk molchunk
-
-Description
-"""""""""""
-
-Define a computation that calculates the inertia tensor for multiple
-chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the 6 components of the symmetric intertia
-tensor for each chunk, ordered Ixx,Iyy,Izz,Ixy,Iyz,Ixz. The
-calculation includes all effects due to atoms passing thru periodic
-boundaries.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-.. note::
-
- The coordinates of an atom contribute to the chunk's inertia
- tensor in "unwrapped" form, by using the image flags associated with
- each atom. See the :doc:`dump custom <dump>` command for a discussion
- of "unwrapped" coordinates. See the Atoms section of the
- :doc:`read_data <read_data>` command for a discussion of image flags and
- how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-The simplest way to output the results of the compute inertia/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all inertia/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-6 for the 6 components of the inertia tensor for each chunk, ordered
-as listed above. These values can be accessed by any command that
-uses global array values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The array values are "intensive". The array values will be in
-mass*distance^2 :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`variable inertia() function <variable>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_ke.txt b/doc/_sources/compute_ke.txt
deleted file mode 100644
index 9283108be..000000000
--- a/doc/_sources/compute_ke.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-.. index:: compute ke
-
-compute ke command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID ke
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* ke = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all ke
-
-Description
-"""""""""""
-
-Define a computation that calculates the translational kinetic energy
-of a group of particles.
-
-The kinetic energy of each particle is computed as 1/2 m v^2, where m
-and v are the mass and velocity of the particle.
-
-There is a subtle difference between the quantity calculated by this
-compute and the kinetic energy calculated by the *ke* or *etotal*
-keyword used in thermodynamic output, as specified by the
-:doc:`thermo_style <thermo_style>` command. For this compute, kinetic
-energy is "translational" kinetic energy, calculated by the simple
-formula above. For thermodynamic output, the *ke* keyword infers
-kinetic energy from the temperature of the system with 1/2 Kb T of
-energy for each degree of freedom. For the default temperature
-computation via the :doc:`compute temp <compute_temp>` command, these
-are the same. But different computes that calculate temperature can
-subtract out different non-thermal components of velocity and/or
-include different degrees of freedom (translational, rotational, etc).
-
-**Output info:**
-
-This compute calculates a global scalar (the summed KE). This value
-can be used by any command that uses a global scalar value from a
-compute as input. See :ref:`Section_howto 15 <howto_15>`
-for an overview of LAMMPS output options.
-
-The scalar value calculated by this compute is "extensive". The
-scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute erotate/sphere <compute_erotate_sphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_ke_atom.txt b/doc/_sources/compute_ke_atom.txt
deleted file mode 100644
index ddee572c6..000000000
--- a/doc/_sources/compute_ke_atom.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-.. index:: compute ke/atom
-
-compute ke/atom command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID ke/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* ke/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all ke/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom translational
-kinetic energy for each atom in a group.
-
-The kinetic energy is simply 1/2 m v^2, where m is the mass and v is
-the velocity of each atom.
-
-The value of the kinetic energy will be 0.0 for atoms not in the
-specified compute group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_ke_atom_eff.txt b/doc/_sources/compute_ke_atom_eff.txt
deleted file mode 100644
index b776b1712..000000000
--- a/doc/_sources/compute_ke_atom_eff.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-.. index:: compute ke/atom/eff
-
-compute ke/atom/eff command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID ke/atom/eff
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* ke/atom/eff = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all ke/atom/eff
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom translational
-(nuclei and electrons) and radial kinetic energy (electron only) in a
-group. The particles are assumed to be nuclei and electrons modeled
-with the :doc:`electronic force field <pair_eff>`.
-
-The kinetic energy for each nucleus is computed as 1/2 m v^2, where m
-corresponds to the corresponding nuclear mass, and the kinetic energy
-for each electron is computed as 1/2 (me v^2 + 3/4 me s^2), where me
-and v correspond to the mass and translational velocity of each
-electron, and s to its radial velocity, respectively.
-
-There is a subtle difference between the quantity calculated by this
-compute and the kinetic energy calculated by the *ke* or *etotal*
-keyword used in thermodynamic output, as specified by the
-:doc:`thermo_style <thermo_style>` command. For this compute, kinetic
-energy is "translational" plus electronic "radial" kinetic energy,
-calculated by the simple formula above. For thermodynamic output, the
-*ke* keyword infers kinetic energy from the temperature of the system
-with 1/2 Kb T of energy for each (nuclear-only) degree of freedom in
-eFF.
-
-.. note::
-
- The temperature in eFF should be monitored via the :doc:`compute temp/eff <compute_temp_eff>` command, which can be printed with
- thermodynamic output by using the :doc:`thermo_modify <thermo_modify>`
- command, as shown in the following example:
-
-.. parsed-literal::
-
- compute effTemp all temp/eff
- thermo_style custom step etotal pe ke temp press
- thermo_modify temp effTemp
-
-The value of the kinetic energy will be 0.0 for atoms (nuclei or
-electrons) not in the specified compute group.
-
-**Output info:**
-
-This compute calculates a scalar quantity for each atom, which can be
-accessed by any command that uses per-atom computes as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_ke_eff.txt b/doc/_sources/compute_ke_eff.txt
deleted file mode 100644
index 4497ecf5b..000000000
--- a/doc/_sources/compute_ke_eff.txt
+++ /dev/null
@@ -1,87 +0,0 @@
-.. index:: compute ke/eff
-
-compute ke/eff command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID ke/eff
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* ke/eff = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all ke/eff
-
-Description
-"""""""""""
-
-Define a computation that calculates the kinetic energy of motion of a
-group of eFF particles (nuclei and electrons), as modeled with the
-:doc:`electronic force field <pair_eff>`.
-
-The kinetic energy for each nucleus is computed as 1/2 m v^2 and the
-kinetic energy for each electron is computed as 1/2(me v^2 + 3/4 me
-s^2), where m corresponds to the nuclear mass, me to the electron
-mass, v to the translational velocity of each particle, and s to the
-radial velocity of the electron, respectively.
-
-There is a subtle difference between the quantity calculated by this
-compute and the kinetic energy calculated by the *ke* or *etotal*
-keyword used in thermodynamic output, as specified by the
-:doc:`thermo_style <thermo_style>` command. For this compute, kinetic
-energy is "translational" and "radial" (only for electrons) kinetic
-energy, calculated by the simple formula above. For thermodynamic
-output, the *ke* keyword infers kinetic energy from the temperature of
-the system with 1/2 Kb T of energy for each degree of freedom. For
-the eFF temperature computation via the :doc:`compute temp_eff <compute_temp_eff>` command, these are the same. But
-different computes that calculate temperature can subtract out
-different non-thermal components of velocity and/or include other
-degrees of freedom.
-
-IMPRORTANT NOTE: The temperature in eFF models should be monitored via
-the :doc:`compute temp/eff <compute_temp_eff>` command, which can be
-printed with thermodynamic output by using the
-:doc:`thermo_modify <thermo_modify>` command, as shown in the following
-example:
-
-.. parsed-literal::
-
- compute effTemp all temp/eff
- thermo_style custom step etotal pe ke temp press
- thermo_modify temp effTemp
-
-See :doc:`compute temp/eff <compute_temp_eff>`.
-
-**Output info:**
-
-This compute calculates a global scalar (the KE). This value can be
-used by any command that uses a global scalar value from a compute as
-input. See :ref:`Section_howto 15 <howto_15>` for an
-overview of LAMMPS output options.
-
-The scalar value calculated by this compute is "extensive". The
-scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_ke_rigid.txt b/doc/_sources/compute_ke_rigid.txt
deleted file mode 100644
index d40e1768c..000000000
--- a/doc/_sources/compute_ke_rigid.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-.. index:: compute ke/rigid
-
-compute ke/rigid command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID ke/rigid fix-ID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* ke = style name of this compute command
-* fix-ID = ID of rigid body fix
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all ke/rigid myRigid
-
-Description
-"""""""""""
-
-Define a computation that calculates the translational kinetic energy
-of a collection of rigid bodies, as defined by one of the :doc:`fix rigid <fix_rigid>` command variants.
-
-The kinetic energy of each rigid body is computed as 1/2 M Vcm^2,
-where M is the total mass of the rigid body, and Vcm is its
-center-of-mass velocity.
-
-The *fix-ID* should be the ID of one of the :doc:`fix rigid <fix_rigid>`
-commands which defines the rigid bodies. The group specified in the
-compute command is ignored. The kinetic energy of all the rigid
-bodies defined by the fix rigid command in included in the
-calculation.
-
-**Output info:**
-
-This compute calculates a global scalar (the summed KE of all the
-rigid bodies). This value can be used by any command that uses a
-global scalar value from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "extensive". The
-scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the RIGID package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute erotate/rigid <compute_erotate_rigid>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_meso_e_atom.txt b/doc/_sources/compute_meso_e_atom.txt
deleted file mode 100644
index 833e0d363..000000000
--- a/doc/_sources/compute_meso_e_atom.txt
+++ /dev/null
@@ -1,65 +0,0 @@
-.. index:: compute meso/e/atom
-
-compute meso/e/atom command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID meso/e/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* meso/e/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all meso/e/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom internal energy
-for each atom in a group.
-
-The internal energy is the energy associated with the internal degrees
-of freedom of a mesoscopic particles, e.g. a Smooth-Particle
-Hydrodynamics particle.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The value of the internal energy will be 0.0 for atoms not in the
-specified compute group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SPH package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_meso_rho_atom.txt b/doc/_sources/compute_meso_rho_atom.txt
deleted file mode 100644
index cbfa46926..000000000
--- a/doc/_sources/compute_meso_rho_atom.txt
+++ /dev/null
@@ -1,65 +0,0 @@
-.. index:: compute meso/rho/atom
-
-compute meso/rho/atom command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID meso/rho/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* meso/rho/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all meso/rho/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom mesoscopic density
-for each atom in a group.
-
-The mesoscopic density is the mass density of a mesoscopic particle,
-calculated by kernel function interpolation using "pair style
-sph/rhosum".
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The value of the mesoscopic density will be 0.0 for atoms not in the
-specified compute group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be in mass/volume :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SPH package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_meso_t_atom.txt b/doc/_sources/compute_meso_t_atom.txt
deleted file mode 100644
index 817d6f256..000000000
--- a/doc/_sources/compute_meso_t_atom.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-.. index:: compute meso/t/atom
-
-compute meso/t/atom command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID meso/t/atom
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* meso/t/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all meso/t/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom internal temperature
-for each atom in a group.
-
-The internal temperature is the ratio of internal energy over the heat
-capacity associated with the internal degrees of freedom of a mesoscopic
-particles, e.g. a Smooth-Particle Hydrodynamics particle.
-
-T_*int* = E_*int* / C_*V, int*
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The value of the internal energy will be 0.0 for atoms not in the
-specified compute group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be in temperature :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SPH package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_modify.txt b/doc/_sources/compute_modify.txt
deleted file mode 100644
index 8c677fcd9..000000000
--- a/doc/_sources/compute_modify.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-.. index:: compute_modify
-
-compute_modify command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute_modify compute-ID keyword value ...
-
-* compute-ID = ID of the compute to modify
-* one or more keyword/value pairs may be listed
-* keyword = *extra* or *dynamic*
-.. parsed-literal::
-
- *extra* value = N
- N = # of extra degrees of freedom to subtract
- *dynamic* value = *yes* or *no*
- yes/no = do or do not recompute the number of atoms contributing to the temperature
- *thermo* value = *yes* or *no*
- yes/no = do or do not add contributions from fixes to the potential energy
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute_modify myTemp extra 0
- compute_modify newtemp dynamic yes extra 600
-
-Description
-"""""""""""
-
-Modify one or more parameters of a previously defined compute. Not
-all compute styles support all parameters.
-
-The *extra* keyword refers to how many degrees-of-freedom are
-subtracted (typically from 3N) as a normalizing factor in a
-temperature computation. Only computes that compute a temperature use
-this option. The default is 2 or 3 for :doc:`2d or 3d systems <dimension>` which is a correction factor for an ensemble
-of velocities with zero total linear momentum. For compute temp/partial,
-if one or more velocity components are excluded, the value used for
-*extra* is scaled accordingly. You can use a negative number for
-the *extra* parameter if you need to add degrees-of-freedom.
- See the :doc:`compute temp/asphere <compute_temp_asphere>` command
-for an example.
-
-The *dynamic* keyword determines whether the number of atoms N in the
-compute group is re-computed each time a temperature is computed.
-Only compute styles that compute a temperature use this option. By
-default, N is assumed to be constant. If you are adding atoms to the
-system (see the :doc:`fix pour <fix_pour>` or :doc:`fix deposit <fix_deposit>` commands) or expect atoms to be lost
-(e.g. due to evaporation), then this option should be used to insure
-the temperature is correctly normalized.
-
-The *thermo* keyword determines whether the potential energy
-contribution calculated by some :doc:`fixes <fix>` is added to the
-potential energy calculated by the compute. Currently, only the
-compute of style *pe* uses this option. See the doc pages for
-:doc:`individual fixes <fix>` for details.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`
-
-Default
-"""""""
-
-The option defaults are extra = 2 or 3 for 2d or 3d systems and
-dynamic = no. Thermo is *yes* if the compute of style *pe* was
-defined with no extra keywords; otherwise it is *no*.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_msd.txt b/doc/_sources/compute_msd.txt
deleted file mode 100644
index 1e3e71837..000000000
--- a/doc/_sources/compute_msd.txt
+++ /dev/null
@@ -1,126 +0,0 @@
-.. index:: compute msd
-
-compute msd command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID msd keyword values ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* msd = style name of this compute command
-* zero or more keyword/value pairs may be appended
-* keyword = *com* or *average*
-.. parsed-literal::
-
- *com* value = *yes* or *no*
- *average* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all msd
- compute 1 upper msd com yes average yes
-
-Description
-"""""""""""
-
-Define a computation that calculates the mean-squared displacement
-(MSD) of the group of atoms, including all effects due to atoms
-passing thru periodic boundaries. For computation of the non-Gaussian
-parameter of mean-squared displacement, see the :doc:`compute msd/nongauss <compute_msd_nongauss>` command.
-
-A vector of four quantites is calculated by this compute. The first 3
-elements of the vector are the squared dx,dy,dz displacements, summed
-and averaged over atoms in the group. The 4th element is the total
-squared displacement, i.e. (dx*dx + dy*dy + dz*dz), summed and
-averaged over atoms in the group.
-
-The slope of the mean-squared displacement (MSD) versus time is
-proportional to the diffusion coefficient of the diffusing atoms.
-
-The displacement of an atom is from its reference position. This is
-normally the original position at the time
-the compute command was issued, unless the *average* keyword is set to *yes*.
-The value of the displacement will be
-0.0 for atoms not in the specified compute group.
-
-If the *com* option is set to *yes* then the effect of any drift in
-the center-of-mass of the group of atoms is subtracted out before the
-displacment of each atom is calculated.
-
-If the *average* option is set to *yes* then the reference position of
-an atom is based on the average position of that atom, corrected for
-center-of-mass motion if requested. The average position is a running
-average over all previous calls to the compute, including the current
-call. So on the first call it is current position, on the second call
-it is the arithmetic average of the current position and the position
-on the first call, and so on. Note that when using this option, the
-precise value of the mean square displacement will depend on the
-number of times the compute is called. So, for example, changing the
-frequency of thermo output may change the computed displacement. Also,
-the precise values will be changed if a single simulation is broken up
-into two parts, using either multiple run commands or a restart
-file. It only makes sense to use this option if the atoms are not
-diffusing, so that their average positions relative to the center of
-mass of the system are stationary. The most common case is crystalline
-solids undergoing thermal motion.
-
-.. note::
-
- Initial coordinates are stored in "unwrapped" form, by using the
- image flags associated with each atom. See the :doc:`dump custom <dump>` command for a discussion of "unwrapped" coordinates.
- See the Atoms section of the :doc:`read_data <read_data>` command for a
- discussion of image flags and how they are set for each atom. You can
- reset the image flags (e.g. to 0) before invoking this compute by
- using the :doc:`set image <set>` command.
-
-.. note::
-
- If you want the quantities calculated by this compute to be
- continuous when running from a :doc:`restart file <read_restart>`, then
- you should use the same ID for this compute, as in the original run.
- This is so that the fix this compute creates to store per-atom
- quantities will also have the same ID, and thus be initialized
- correctly with atom reference positions from the restart file. When
- *average* is set to yes, then the atom reference positions are
- restored correctly, but not the number of samples used obtain them. As
- a result, the reference positions from the restart file are combined
- with subsequent positions as if they were from a single sample,
- instead of many, which will change the values of msd somewhat.
-
-**Output info:**
-
-This compute calculates a global vector of length 4, which can be
-accessed by indices 1-4 by any command that uses global vector values
-from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "intensive". The vector values will be in
-distance^2 :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute msd/nongauss <compute_msd_nongauss>`, :doc:`compute displace_atom <compute_displace_atom>`, :doc:`fix store/state <fix_store_state>`, :doc:`compute msd/chunk <compute_msd_chunk>`
-
-Default
-"""""""
-
-The option default are com = no, average = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_msd_chunk.txt b/doc/_sources/compute_msd_chunk.txt
deleted file mode 100644
index 4c491d0a4..000000000
--- a/doc/_sources/compute_msd_chunk.txt
+++ /dev/null
@@ -1,134 +0,0 @@
-.. index:: compute msd/chunk
-
-compute msd/chunk command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID msd/chunk chunkID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* msd/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all msd/chunk molchunk
-
-Description
-"""""""""""
-
-Define a computation that calculates the mean-squared displacement
-(MSD) for multiple chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-Four quantites are calculated by this compute for each chunk. The
-first 3 quantities are the squared dx,dy,dz displacements of the
-center-of-mass. The 4th component is the total squared displacement,
-i.e. (dx*dx + dy*dy + dz*dz) of the center-of-mass. These
-calculations include all effects due to atoms passing thru periodic
-boundaries.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-The slope of the mean-squared displacement (MSD) versus time is
-proportional to the diffusion coefficient of the diffusing chunks.
-
-The displacement of the center-of-mass of the chunk is from its
-original center-of-mass position, calculated on the timestep this
-compute command was first invoked.
-
-.. note::
-
- The number of chunks *Nchunk* calculated by the :doc:`compute chunk/atom <compute_chunk_atom>` command must remain constant each
- time this compute is invoked, so that the displacement for each chunk
- from its original position can be computed consistently. If *Nchunk*
- does not remain constant, an error will be generated. If needed, you
- can enforce a constant *Nchunk* by using the *nchunk once* or *ids
- once* options when specifying the :doc:`compute chunk/atom <compute_chunk_atom>` command.
-
-.. note::
-
- This compute stores the original position (of the
- center-of-mass) of each chunk. When a displacement is calculated on a
- later timestep, it is assumed that the same atoms are assigned to the
- same chunk ID. However LAMMPS has no simple way to insure this is the
- case, though you can use the *ids once* option when specifying the
- :doc:`compute chunk/atom <compute_chunk_atom>` command. Note that if
- this is not the case, the MSD calculation does not have a sensible
- meaning.
-
-.. note::
-
- The initial coordinates of the atoms in each chunk are stored in
- "unwrapped" form, by using the image flags associated with each atom.
- See the :doc:`dump custom <dump>` command for a discussion of
- "unwrapped" coordinates. See the Atoms section of the
- :doc:`read_data <read_data>` command for a discussion of image flags and
- how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-.. note::
-
- If you want the quantities calculated by this compute to be
- continuous when running from a :doc:`restart file <read_restart>`, then
- you should use the same ID for this compute, as in the original run.
- This is so that the fix this compute creates to store per-chunk
- quantities will also have the same ID, and thus be initialized
- correctly with chunk reference positions from the restart file.
-
-The simplest way to output the results of the compute com/msd
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all com/msd cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-4 for dx,dy,dz and the total displacement. These values can be
-accessed by any command that uses global array values from a compute
-as input. See :ref:`this section <howto_15>` for an
-overview of LAMMPS output options.
-
-The array values are "intensive". The array values will be in
-distance^2 :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute msd <compute_msd>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_msd_nongauss.txt b/doc/_sources/compute_msd_nongauss.txt
deleted file mode 100644
index a330cb2a9..000000000
--- a/doc/_sources/compute_msd_nongauss.txt
+++ /dev/null
@@ -1,93 +0,0 @@
-.. index:: compute msd/nongauss
-
-compute msd/nongauss command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID msd/nongauss keyword values ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* msd/nongauss = style name of this compute command
-* zero or more keyword/value pairs may be appended
-* keyword = *com*
-.. parsed-literal::
-
- *com* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all msd/nongauss
- compute 1 upper msd/nongauss com yes
-
-Description
-"""""""""""
-
-Define a computation that calculates the mean-squared displacement
-(MSD) and non-Gaussian parameter (NGP) of the group of atoms,
-including all effects due to atoms passing thru periodic boundaries.
-
-A vector of three quantites is calculated by this compute. The first
-element of the vector is the total squared dx,dy,dz displacements
-drsquared = (dx*dx + dy*dy + dz*dz) of atoms, and the second is the
-fourth power of these displacements drfourth = (dx*dx + dy*dy +
-dz*dz)*(dx*dx + dy*dy + dz*dz), summed and averaged over atoms in the
-group. The 3rd component is the nonGaussian diffusion paramter NGP =
-3*drfourth/(5*drsquared*drsquared), i.e.
-
-.. image:: Eqs/compute_msd_nongauss.jpg
- :align: center
-
-The NGP is a commonly used quantity in studies of dynamical
-heterogeneity. Its minimum theoretical value (-0.4) occurs when all
-atoms have the same displacement magnitude. NGP=0 for Brownian
-diffusion, while NGP > 0 when some mobile atoms move faster than
-others.
-
-If the *com* option is set to *yes* then the effect of any drift in
-the center-of-mass of the group of atoms is subtracted out before the
-displacment of each atom is calcluated.
-
-See the :doc:`compute msd <compute_msd>` doc page for further important
-NOTEs, which also apply to this compute.
-
-**Output info:**
-
-This compute calculates a global vector of length 3, which can be
-accessed by indices 1-3 by any command that uses global vector values
-from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "intensive". The first vector value will be in
-distance^2 :doc:`units <units>`, the second is in distance^4 units, and
-the 3rd is dimensionless.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute msd <compute_msd>`
-
-Default
-"""""""
-
-The option default is com = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_omega_chunk.txt b/doc/_sources/compute_omega_chunk.txt
deleted file mode 100644
index ea3cc572a..000000000
--- a/doc/_sources/compute_omega_chunk.txt
+++ /dev/null
@@ -1,97 +0,0 @@
-.. index:: compute omega/chunk
-
-compute omega/chunk command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID omega/chunk chunkID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* omega/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid omega/chunk molchunk
-
-Description
-"""""""""""
-
-Define a computation that calculates the angular velocity (omega) of
-multiple chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the 3 components of the angular velocity
-vector for each chunk, via the formula L = Iw where L is the angular
-momentum vector of the chunk, I is its moment of inertia tensor, and w
-is omega = angular velocity of the chunk. The calculation includes
-all effects due to atoms passing thru periodic boundaries.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-.. note::
-
- The coordinates of an atom contribute to the chunk's angular
- velocity in "unwrapped" form, by using the image flags associated with
- each atom. See the :doc:`dump custom <dump>` command for a discussion
- of "unwrapped" coordinates. See the Atoms section of the
- :doc:`read_data <read_data>` command for a discussion of image flags and
- how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-The simplest way to output the results of the compute omega/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all omega/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-3 for the 3 xyz components of the angular velocity for each chunk.
-These values can be accessed by any command that uses global array
-values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The array values are "intensive". The array values will be in
-velocity/distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`variable omega() function <variable>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_orientorder_atom.txt b/doc/_sources/compute_orientorder_atom.txt
deleted file mode 100644
index ddc76d657..000000000
--- a/doc/_sources/compute_orientorder_atom.txt
+++ /dev/null
@@ -1,144 +0,0 @@
-.. index:: compute orientorder/atom
-
-compute orientorder/atom command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID orientorder/atom keyword values ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* orientorder/atom = style name of this compute command
-* one or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *cutoff* or *nnn* or *ql*
- *cutoff* value = distance cutoff
- *nnn* value = number of nearest neighbors
- *degrees* values = nlvalues, l1, l2,...
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all orientorder/atom
- compute 1 all orientorder/atom degrees 5 4 6 8 10 12 nnn NULL cutoff 1.5
-
-Description
-"""""""""""
-
-Define a computation that calculates a set of bond-orientational
-order parameters *Ql* for each atom in a group. These order parameters
-were introduced by :ref:`Steinhardt et al. <Steinhardt>` as a way to
-characterize the local orientational order in atomic structures.
-For each atom, *Ql* is a real number defined as follows:
-
-.. image:: Eqs/orientorder.jpg
- :align: center
-
-The first equation defines the spherical harmonic order parameters.
-These are complex number components of the 3D analog of the 2D order
-parameter *qn*, which is implemented as LAMMPS compute
-:doc:`hexorder/atom <compute_hexorder_atom>`.
-The summation is over the *nnn* nearest
-neighbors of the central atom.
-The angles theta and phi are the standard spherical polar angles
-defining the direction of the bond vector *rij*.
-The second equation defines *Ql*, which is a
-rotationally invariant scalar quantity obtained by summing
-over all the components of degree *l*.
-
-The optional keyword *cutoff* defines the distance cutoff
-used when searching for neighbors. The default value, also
-the maximum allowable value, is the cutoff specified
-by the pair style.
-
-The optional keyword *nnn* defines the number of nearest
-neighbors used to calculate *Ql*. The default value is 12.
-If the value is NULL, then all neighbors up to the
-specified distance cutoff are used.
-
-The optional keyword *degrees* defines the list of order parameters to
-be computed. The first argument *nlvalues* is the number of order
-parameters. This is followed by that number of integers giving the
-degree of each order parameter. Because *Q*2 and all odd-degree
-order parameters are zero for atoms in cubic crystals
-(see :ref:`Steinhardt <Steinhardt>`), the default order parameters
-are *Q*4, *Q*6, *Q*8, *Q*10, and *Q*12. For the
-FCC crystal with *nnn*=12, *Q*4 = sqrt(7/3)/8 = 0.19094....
-The numerical values of all order parameters up to *Q*12
-for a range of commonly encountered high-symmetry structures are given
-in Table I of :ref:`Mickel et al. <Mickel>`.
-
-The value of *Ql* is set to zero for atoms not in the
-specified compute group, as well as for atoms that have less than
-*nnn* neighbors within the distance cutoff.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (i.e. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently.
-
-.. note::
-
- If you have a bonded system, then the settings of
- :doc:`special_bonds <special_bonds>` command can remove pairwise
- interactions between atoms in the same bond, angle, or dihedral. This
- is the default setting for the :doc:`special_bonds <special_bonds>`
- command, and means those pairwise interactions do not appear in the
- neighbor list. Because this fix uses the neighbor list, it also means
- those pairs will not be included in the order parameter. This
- difficulty can be circumvented by writing a dump file, and using the
- :doc:`rerun <rerun>` command to compute the order parameter for
- snapshots in the dump file. The rerun script can use a
- :doc:`special_bonds <special_bonds>` command that includes all pairs in
- the neighbor list.
-
-**Output info:**
-
-This compute calculates a per-atom array with *nlvalues* columns, giving the
-*Ql* values for each atom, which are real numbers on the range 0 <= *Ql* <= 1.
-
-These values can be accessed by any command that uses
-per-atom values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute coord/atom <compute_coord_atom>`, :doc:`compute centro/atom <compute_centro_atom>`, :doc:`compute hexorder/atom <compute_hexorder_atom>`
-
-Default
-"""""""
-
-The option defaults are *cutoff* = pair style cutoff, *nnn* = 12, *degrees* = 5 4 6 8 9 10 12 i.e. *Q*4, *Q*6, *Q*8, *Q*10, and *Q*12.
-
-
-----------
-
-
-.. _Steinhardt:
-
-
-
-.. _Mickel:
-
-**(Steinhardt)** P. Steinhardt, D. Nelson, and M. Ronchetti, Phys. Rev. B 28, 784 (1983).
-
-
-**(Mickel)** W. Mickel, S. C. Kapfer, G. E. Schroeder-Turkand, K. Mecke, J. Chem. Phys. 138, 044501 (2013).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_pair.txt b/doc/_sources/compute_pair.txt
deleted file mode 100644
index d25929c2f..000000000
--- a/doc/_sources/compute_pair.txt
+++ /dev/null
@@ -1,95 +0,0 @@
-.. index:: compute pair
-
-compute pair command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID pair pstyle evalue
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* pair = style name of this compute command
-* pstyle = style name of a pair style that calculates additional values
-* evalue = *epair* or *evdwl* or *ecoul* or blank (optional setting)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all pair gauss
- compute 1 all pair lj/cut/coul/cut ecoul
- compute 1 all pair reax
-
-Description
-"""""""""""
-
-Define a computation that extracts additional values calculated by a
-pair style, and makes them accessible for output or further processing
-by other commands. The group specified for this command is ignored.
-
-The specified *pstyle* must be a pair style used in your simulation
-either by itself or as a sub-style in a :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>` command.
-
-The *evalue* setting is optional; it may be left off the command. All
-pair styles tally a potential energy *epair* which may be broken into
-two parts: *evdwl* and *ecoul* such that *epair* = *evdwl* + *ecoul*.
-If the pair style calculates Coulombic interactions, their energy will
-be tallied in *ecoul*. Everything else (whether it is a Lennard-Jones
-style van der Waals interaction or not) is tallied in *evdwl*. If
-*evalue* is specified as *epair* or left out, then *epair* is stored
-as a global scalar by this compute. This is useful when using
-:doc:`pair_style hybrid <pair_hybrid>` if you want to know the portion
-of the total energy contributed by one sub-style. If *evalue* is
-specfied as *evdwl* or *ecoul*, then just that portion of the energy
-is stored as a global scalar.
-
-.. note::
-
- The energy returned by the *evdwl* keyword does not include tail
- corrections, even if they are enabled via the
- :doc:`pair_modify <pair_modify>` command.
-
-Some pair styles tally additional quantities, e.g. a breakdown of
-potential energy into a dozen or so components is tallied by the
-:doc:`pair_style reax <pair_reax>` commmand. These values (1 or more)
-are stored as a global vector by this compute. See the doc page for
-:doc:`individual pair styles <pair_style>` for info on these values.
-
-**Output info:**
-
-This compute calculates a global scalar which is *epair* or *evdwl* or
-*ecoul*. If the pair style supports it, it also calculates a global
-vector of length >= 1, as determined by the pair style. These values
-can be used by any command that uses global scalar or vector values
-from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar and vector values calculated by this compute are
-"extensive".
-
-The scalar value will be in energy :doc:`units <units>`. The vector
-values will typically also be in energy :doc:`units <units>`, but see
-the doc page for the pair style for details.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe <compute_pe>`, :doc:`compute bond <compute_bond>`
-
-Default
-"""""""
-
-The default for *evalue* is *epair*.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_pair_local.txt b/doc/_sources/compute_pair_local.txt
deleted file mode 100644
index 99a3d2af7..000000000
--- a/doc/_sources/compute_pair_local.txt
+++ /dev/null
@@ -1,129 +0,0 @@
-.. index:: compute pair/local
-
-compute pair/local command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID pair/local input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* pair/local = style name of this compute command
-* zero or more keywords may be appended
-* keyword = *dist* or *eng* or *force* or *fx* or *fy* or *fz* or *pN*
-.. parsed-literal::
-
- *dist* = pairwise distance
- *eng* = pairwise energy
- *force* = pairwise force
- *fx*,*fy*,*fz* = components of pairwise force
- *pN* = pair style specific quantities for allowed N values
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all pair/local eng
- compute 1 all pair/local dist eng force
- compute 1 all pair/local dist eng fx fy fz
- compute 1 all pair/local dist fx fy fz p1 p2 p3
-
-Description
-"""""""""""
-
-Define a computation that calculates properties of individual pairwise
-interactions. The number of datums generated, aggregated across all
-processors, equals the number of pairwise interactions in the system.
-
-The local data stored by this command is generated by looping over the
-pairwise neighbor list. Info about an individual pairwise interaction
-will only be included if both atoms in the pair are in the specified
-compute group, and if the current pairwise distance is less than the
-force cutoff distance for that interaction, as defined by the
-:doc:`pair_style <pair_style>` and :doc:`pair_coeff <pair_coeff>`
-commands.
-
-The output *dist* is the distance bewteen the pair of atoms.
-
-The output *eng* is the interaction energy for the pair of atoms.
-
-The output *force* is the force acting between the pair of atoms,
-which is positive for a repulsive force and negative for an attractive
-force. The outputs *fx*, *fy*, and *fz* are the xyz components of
-*force* on atom I.
-
-A pair style may define additional pairwise quantities which can be
-accessed as *p1* to *pN*, where N is defined by the pair style. Most
-pair styles do not define any additional quantities, so N = 0. An
-example of ones that do are the :doc:`granular pair styles <pair_gran>`
-which calculate the tangential force between two particles and return
-its components and magnitude acting on atom I for N = 1,2,3,4. See
-individual pair styles for detils.
-
-The output *dist* will be in distance :doc:`units <units>`. The output
-*eng* will be in energy :doc:`units <units>`. The outputs *force*,
-*fx*, *fy*, and *fz* will be in force :doc:`units <units>`. The output
-*pN* will be in whatever units the pair style defines.
-
-Note that as atoms migrate from processor to processor, there will be
-no consistent ordering of the entries within the local vector or array
-from one timestep to the next. The only consistency that is
-guaranteed is that the ordering on a particular timestep will be the
-same for local vectors or arrays generated by other compute commands.
-For example, pair output from the :doc:`compute property/local <compute_property_local>` command can be combined
-with data from this command and output by the :doc:`dump local <dump>`
-command in a consistent way.
-
-.. note::
-
- For pairs, if two atoms I,J are involved in 1-2, 1-3, 1-4
- interactions within the molecular topology, their pairwise interaction
- may be turned off, and thus they may not appear in the neighbor list,
- and will not be part of the local data created by this command. More
- specifically, this will be true of I,J pairs with a weighting factor
- of 0.0; pairs with a non-zero weighting factor are included. The
- weighting factors for 1-2, 1-3, and 1-4 pairwise interactions are set
- by the :doc:`special_bonds <special_bonds>` command. An exception is if
- long-range Coulombics are being computed via the
- :doc:`kspace_style <kspace_style>` command, then atom pairs with
- weighting factors of zero are still included in the neighbor list, so
- that a portion of the long-range interaction contribution can be
- computed in the pair style. Hence in that case, those atom pairs will
- be part of the local data created by this command.
-
-**Output info:**
-
-This compute calculates a local vector or local array depending on the
-number of keywords. The length of the vector or number of rows in the
-array is the number of pairs. If a single keyword is specified, a
-local vector is produced. If two or more keywords are specified, a
-local array is produced where the number of columns = the number of
-keywords. The vector or array can be accessed by any command that
-uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The output for *dist* will be in distance :doc:`units <units>`. The
-output for *eng* will be in energy :doc:`units <units>`. The output for
-*force* will be in force :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump local <dump>`, :doc:`compute property/local <compute_property_local>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_pe.txt b/doc/_sources/compute_pe.txt
deleted file mode 100644
index 440c6b86b..000000000
--- a/doc/_sources/compute_pe.txt
+++ /dev/null
@@ -1,117 +0,0 @@
-.. index:: compute pe
-
-compute pe command
-==================
-
-compute pe/cuda command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID pe keyword ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* pe = style name of this compute command
-* zero or more keywords may be appended
-* keyword = *pair* or *bond* or *angle* or *dihedral* or *improper* or *kspace*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all pe
- compute molPE all pe bond angle dihedral improper
-
-Description
-"""""""""""
-
-Define a computation that calculates the potential energy of the
-entire system of atoms. The specified group must be "all". See the
-:doc:`compute pe/atom <compute_pe_atom>` command if you want per-atom
-energies. These per-atom values could be summed for a group of atoms
-via the :doc:`compute reduce <compute_reduce>` command.
-
-The energy is calculated by the various pair, bond, etc potentials
-defined for the simulation. If no extra keywords are listed, then the
-potential energy is the sum of pair, bond, angle, dihedral, improper,
-and kspace (long-range) energy. If any extra keywords are listed,
-then only those components are summed to compute the potential energy.
-
-The Kspace contribution requires 1 extra FFT each timestep the energy
-is calculated, if using the PPPM solver via the :doc:`kspace_style pppm <kspace_style>` command. Thus it can increase the cost of the
-PPPM calculation if it is needed on a large fraction of the simulation
-timesteps.
-
-Various fixes can contribute to the total potential energy of the
-system. See the doc pages for :doc:`individual fixes <fix>` for
-details. The *thermo* option of the
-:doc:`compute_modify <compute_modify>` command determines whether these
-contributions are added into the computed potential energy. If no
-keywords are specified the default is *yes*. If any keywords are
-specified, the default is *no*.
-
-A compute of this style with the ID of "thermo_pe" is created when
-LAMMPS starts up, as if this command were in the input script:
-
-.. parsed-literal::
-
- compute thermo_pe all pe
-
-See the "thermo_style" command for more details.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the potential energy). This
-value can be used by any command that uses a global scalar value from
-a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "extensive". The
-scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe/atom <compute_pe_atom>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_pe_atom.txt b/doc/_sources/compute_pe_atom.txt
deleted file mode 100644
index aefbc60f8..000000000
--- a/doc/_sources/compute_pe_atom.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-.. index:: compute pe/atom
-
-compute pe/atom command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID pe/atom keyword ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* pe/atom = style name of this compute command
-* zero or more keywords may be appended
-* keyword = *pair* or *bond* or *angle* or *dihedral* or *improper* or *kspace*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all pe/atom
- compute 1 all pe/atom pair
- compute 1 all pe/atom pair bond
-
-Description
-"""""""""""
-
-Define a computation that computes the per-atom potential energy for
-each atom in a group. See the :doc:`compute pe <compute_pe>` command if
-you want the potential energy of the entire system.
-
-The per-atom energy is calculated by the various pair, bond, etc
-potentials defined for the simulation. If no extra keywords are
-listed, then the potential energy is the sum of pair, bond, angle,
-dihedral,improper, and kspace energy. If any extra keywords are
-listed, then only those components are summed to compute the potential
-energy.
-
-Note that the energy of each atom is due to its interaction with all
-other atoms in the simulation, not just with other atoms in the group.
-
-For an energy contribution produced by a small set of atoms (e.g. 4
-atoms in a dihedral or 3 atoms in a Tersoff 3-body interaction), that
-energy is assigned in equal portions to each atom in the set.
-E.g. 1/4 of the dihedral energy to each of the 4 atoms.
-
-The :doc:`dihedral_style charmm <dihedral_charmm>` style calculates
-pairwise interactions between 1-4 atoms. The energy contribution of
-these terms is included in the pair energy, not the dihedral energy.
-
-The KSpace contribution is calculated using the method in
-:ref:`(Heyes) <Heyes>` for the Ewald method and a related method for PPPM,
-as specified by the :doc:`kspace_style pppm <kspace_style>` command.
-For PPPM, the calcluation requires 1 extra FFT each timestep that
-per-atom energy is calculated. Thie `document <PDF/kspace.pdf>`_
-describes how the long-range per-atom energy calculation is performed.
-
-As an example of per-atom potential energy compared to total potential
-energy, these lines in an input script should yield the same result
-in the last 2 columns of thermo output:
-
-.. parsed-literal::
-
- compute peratom all pe/atom
- compute pe all reduce sum c_peratom
- thermo_style custom step temp etotal press pe c_pe
-
-.. note::
-
- The per-atom energy does not any Lennard-Jones tail corrections
- invoked by the :doc:`pair_modify tail yes <pair_modify>` command, since
- those are global contributions to the system energy.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-atom vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe <compute_pe>`, :doc:`compute stress/atom <compute_stress_atom>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Heyes:
-
-
-
-**(Heyes)** Heyes, Phys Rev B 49, 755 (1994),
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_plasticity_atom.txt b/doc/_sources/compute_plasticity_atom.txt
deleted file mode 100644
index 843c7d868..000000000
--- a/doc/_sources/compute_plasticity_atom.txt
+++ /dev/null
@@ -1,78 +0,0 @@
-.. index:: compute plasticity/atom
-
-compute plasticity/atom command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID plasticity/atom
-
-* ID, group-ID are documented in compute command
-* plasticity/atom = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all plasticity/atom
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-atom plasticity for each
-atom in a group. This is a quantity relevant for :doc:`Peridynamics models <pair_peri>`. See `this document <PDF/PDLammps_overview.pdf>`_
-for an overview of LAMMPS commands for Peridynamics modeling.
-
-The plasticity for a Peridynamic particle is the so-called consistency
-parameter (lambda). For elastic deformation lambda = 0, otherwise
-lambda > 0 for plastic deformation. For details, see
-:ref:`(Mitchell) <Mitchell>` and the PDF doc included in the LAMMPS
-distro in `doc/PDF/PDLammps_EPS.pdf <PDF/PDLammps_EPS.pdf>`_.
-
-This command can be invoked for one of the Peridynamic :doc:`pair styles <pair_peri>`: peri/eps.
-
-The plasticity value will be 0.0 for atoms not in the specified
-compute group.
-
-**Output info:**
-
-This compute calculates a per-atom vector, which can be accessed by
-any command that uses per-atom values from a compute as input. See
-Section_howto 15 for an overview of LAMMPS output options.
-
-The per-atom vector values are unitlesss numbers (lambda) >= 0.0.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the PERI package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute damage <compute_damage>`, :doc:`compute dilatation <compute_dilatation>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mitchell:
-
-
-
-**(Mitchell)** Mitchell, "A non-local, ordinary-state-based
-viscoelasticity model for peridynamics", Sandia National Lab Report,
-8064:1-28 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_pressure.txt b/doc/_sources/compute_pressure.txt
deleted file mode 100644
index fd366853c..000000000
--- a/doc/_sources/compute_pressure.txt
+++ /dev/null
@@ -1,166 +0,0 @@
-.. index:: compute pressure
-
-compute pressure command
-========================
-
-compute pressure/cuda command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID pressure temp-ID keyword ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* pressure = style name of this compute command
-* temp-ID = ID of compute that calculates temperature, can be NULL if not needed
-* zero or more keywords may be appended
-* keyword = *ke* or *pair* or *bond* or *angle* or *dihedral* or *improper* or *kspace* or *fix* or *virial*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all pressure thermo_temp
- compute 1 all pressure NULL pair bond
-
-Description
-"""""""""""
-
-Define a computation that calculates the pressure of the entire system
-of atoms. The specified group must be "all". See the :doc:`compute stress/atom <compute_stress_atom>` command if you want per-atom
-pressure (stress). These per-atom values could be summed for a group
-of atoms via the :doc:`compute reduce <compute_reduce>` command.
-
-The pressure is computed by the formula
-
-.. image:: Eqs/pressure.jpg
- :align: center
-
-where N is the number of atoms in the system (see discussion of DOF
-below), Kb is the Boltzmann constant, T is the temperature, d is the
-dimensionality of the system (2 or 3 for 2d/3d), V is the system
-volume (or area in 2d), and the second term is the virial, computed
-within LAMMPS for all pairwise as well as 2-body, 3-body, and 4-body,
-and long-range interactions. :doc:`Fixes <fix>` that impose constraints
-(e.g. the :doc:`fix shake <fix_shake>` command) also contribute to the
-virial term.
-
-A symmetric pressure tensor, stored as a 6-element vector, is also
-calculated by this compute. The 6 components of the vector are
-ordered xx, yy, zz, xy, xz, yz. The equation for the I,J components
-(where I and J = x,y,z) is similar to the above formula, except that
-the first term uses components of the kinetic energy tensor and the
-second term uses components of the virial tensor:
-
-.. image:: Eqs/pressure_tensor.jpg
- :align: center
-
-If no extra keywords are listed, the entire equations above are
-calculated. This includes a kinetic energy (temperature) term and the
-virial as the sum of pair, bond, angle, dihedral, improper, kspace
-(long-range), and fix contributions to the force on each atom. If any
-extra keywords are listed, then only those components are summed to
-compute temperature or ke and/or the virial. The *virial* keyword
-means include all terms except the kinetic energy *ke*.
-
-Details of how LAMMPS computes the virial efficiently for the entire
-system, including the effects of periodic boundary conditions is
-discussed in :ref:`(Thompson) <Thompson>`.
-
-The temperature and kinetic energy tensor is not calculated by this
-compute, but rather by the temperature compute specified with the
-command. If the kinetic energy is not included in the pressure, than
-the temperature compute is not used and can be specified as NULL.
-Normally the temperature compute used by compute pressure should
-calculate the temperature of all atoms for consistency with the virial
-term, but any compute style that calculates temperature can be used,
-e.g. one that excludes frozen atoms or other degrees of freedom.
-
-Note that if desired the specified temperature compute can be one that
-subtracts off a bias to calculate a temperature using only the thermal
-velocity of the atoms, e.g. by subtracting a background streaming
-velocity. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias.
-
-Also note that the N in the first formula above is really
-degrees-of-freedom divided by d = dimensionality, where the DOF value
-is calcluated by the temperature compute. See the various :doc:`compute temperature <compute>` styles for details.
-
-A compute of this style with the ID of "thermo_press" is created when
-LAMMPS starts up, as if this command were in the input script:
-
-.. parsed-literal::
-
- compute thermo_press all pressure thermo_temp
-
-where "thermo_temp" is the ID of a similarly defined compute of style
-"temp". See the "thermo_style" command for more details.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the pressure) and a global
-vector of length 6 (pressure tensor), which can be accessed by indices
-1-6. These values can be used by any command that uses global scalar
-or vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar and vector values calculated by this compute are
-"intensive". The scalar and vector values will be in pressure
-:doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute stress/atom <compute_stress_atom>`,
-:doc:`thermo_style <thermo_style>`,
-
-**Default:** none
-
-
-----------
-
-
-.. _Thompson:
-
-
-
-**(Thompson)** Thompson, Plimpton, Mattson, J Chem Phys, 131, 154107 (2009).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_property_atom.txt b/doc/_sources/compute_property_atom.txt
deleted file mode 100644
index 546faaa32..000000000
--- a/doc/_sources/compute_property_atom.txt
+++ /dev/null
@@ -1,182 +0,0 @@
-.. index:: compute property/atom
-
-compute property/atom command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID property/atom input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* property/atom = style name of this compute command
-* input = one or more atom attributes
-.. parsed-literal::
-
- possible attributes = id, mol, proc, type, mass,
- x, y, z, xs, ys, zs, xu, yu, zu, ix, iy, iz,
- vx, vy, vz, fx, fy, fz,
- q, mux, muy, muz, mu,
- radius, diameter, omegax, omegay, omegaz,
- angmomx, angmomy, angmomz,
- shapex,shapey, shapez,
- quatw, quati, quatj, quatk, tqx, tqy, tqz,
- end1x, end1y, end1z, end2x, end2y, end2z,
- corner1x, corner1y, corner1z,
- corner2x, corner2y, corner2z,
- corner3x, corner3y, corner3z,
- nbonds,
- vfrac, s0,
- spin, eradius, ervel, erforce,
- rho, drho, e, de, cv,
- i_name, d_name
-
-.. parsed-literal::
-
- id = atom ID
- mol = molecule ID
- proc = ID of processor that owns atom
- type = atom type
- mass = atom mass
- x,y,z = unscaled atom coordinates
- xs,ys,zs = scaled atom coordinates
- xu,yu,zu = unwrapped atom coordinates
- ix,iy,iz = box image that the atom is in
- vx,vy,vz = atom velocities
- fx,fy,fz = forces on atoms
- q = atom charge
- mux,muy,muz = orientation of dipole moment of atom
- mu = magnitude of dipole moment of atom
- radius,diameter = radius,diameter of spherical particle
- omegax,omegay,omegaz = angular velocity of spherical particle
- angmomx,angmomy,angmomz = angular momentum of aspherical particle
- shapex,shapey,shapez = 3 diameters of aspherical particle
- quatw,quati,quatj,quatk = quaternion components for aspherical or body particles
- tqx,tqy,tqz = torque on finite-size particles
- end12x, end12y, end12z = end points of line segment
- corner123x, corner123y, corner123z = corner points of triangle
- nbonds = number of bonds assigned to an atom
-
-.. parsed-literal::
-
- PERI package per-atom properties:
- vfrac = ???
- s0 = ???
-
-.. parsed-literal::
-
- USER-EFF and USER-AWPMD package per-atom properties:
- spin = electron spin
- eradius = electron radius
- ervel = electron radial velocity
- erforce = electron radial force
-
-.. parsed-literal::
-
- USER-SPH package per-atom properties:
- rho = ???
- drho = ???
- e = ???
- de = ???
- cv = ???
-
-.. parsed-literal::
-
- :doc:`fix property/atom <fix_property_atom>` per-atom properties:
- i_name = custom integer vector with name
- d_name = custom integer vector with name
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all property/atom xs vx fx mux
- compute 2 all property/atom type
- compute 1 all property/atom ix iy iz
-
-Description
-"""""""""""
-
-Define a computation that simply stores atom attributes for each atom
-in the group. This is useful so that the values can be used by other
-:ref:`output commands <howto_15>` that take computes as
-inputs. See for example, the :doc:`compute reduce <compute_reduce>`,
-:doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/histo <fix_ave_histo>`,
-:doc:`fix ave/spatial <fix_ave_spatial>`, and :doc:`atom-style variable <variable>` commands.
-
-The list of possible attributes is the same as that used by the :doc:`dump custom <dump>` command, which describes their meaning, with some
-additional quantities that are only defined for certain :doc:`atom styles <atom_style>`. Basically, this augmented list gives an
-input script access to any per-atom quantity stored by LAMMPS.
-
-The values are stored in a per-atom vector or array as discussed
-below. Zeroes are stored for atoms not in the specified group or for
-quantities that are not defined for a particular particle in the group
-(e.g. *shapex* if the particle is not an ellipsoid).
-
-The additional quantities only accessible via this command, and not
-directly via the :doc:`dump custom <dump>` command, are as follows.
-
-*Shapex*, *shapey*, and *shapez* are defined for ellipsoidal particles
-and define the 3d shape of each particle.
-
-*Quatw*, *quati*, *quatj*, and *quatk* are defined for ellipsoidal
-particles and body particles and store the 4-vector quaternion
-representing the orientation of each particle. See the :doc:`set <set>`
-command for an explanation of the quaternion vector.
-
-*End1x*, *end1y*, *end1z*, *end2x*, *end2y*, *end2z*, are defined for
-line segment particles and define the end points of each line segment.
-
-*Corner1x*, *corner1y*, *corner1z*, *corner2x*, *corner2y*,
-*corner2z*, *corner3x*, *corner3y*, *corner3z*, are defined for
-triangular particles and define the corner points of each triangle.
-
-*Nbonds* is available for all molecular atom styles and refers to the
-number of explicit bonds assigned to an atom. Note that if the
-:doc:`newton bond <newton>` command is set to *on*, which is the
-default, then every bond in the system is assigned to only one of the
-two atoms in the bond. Thus a bond between atoms I,J may be tallied
-for either atom I or atom J. If :doc:`newton bond off <newton>` is set,
-it will be tallied with both atom I and atom J.
-
-The *i_name* and *d_name* attributes refer to custom integer and
-floating-point properties that have been added to each atom via the
-:doc:`fix property/atom <fix_property_atom>` command. When that command
-is used specific names are given to each attribute which are what is
-specified as the "name" portion of *i_name* or *d_name*.
-
-**Output info:**
-
-This compute calculates a per-atom vector or per-atom array depending
-on the number of input values. If a single input is specified, a
-per-atom vector is produced. If two or more inputs are specified, a
-per-atom array is produced where the number of columns = the number of
-inputs. The vector or array can be accessed by any command that uses
-per-atom values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector or array values will be in whatever :doc:`units <units>` the
-corresponding attribute is in, e.g. velocity units for vx, charge
-units for q, etc.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`, :doc:`compute reduce <compute_reduce>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/spatial <fix_ave_spatial>`,
-:doc:`fix property/atom <fix_property_atom>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_property_chunk.txt b/doc/_sources/compute_property_chunk.txt
deleted file mode 100644
index 7bb22eeaa..000000000
--- a/doc/_sources/compute_property_chunk.txt
+++ /dev/null
@@ -1,125 +0,0 @@
-.. index:: compute property/chunk
-
-compute property/chunk command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID property/chunk chunkID input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* property/chunk = style name of this compute command
-* input = one or more attributes
-.. parsed-literal::
-
- attributes = count, id, coord1, coord2, coord3
- count = # of atoms in chunk
- id = original chunk IDs before compression by :doc:`compute chunk/atom <compute_chunk_atom>`
- coord123 = coordinates for spatial bins calculated by :doc:`compute chunk/atom <compute_chunk_atom>`
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all property/chunk count
- compute 1 all property/chunk ID coord1
-
-Description
-"""""""""""
-
-Define a computation that stores the specified attributes of chunks of
-atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates and stores the specified attributes of chunks
-as global data so they can be accessed by other :ref:`output commands <howto_15>` and used in conjunction with
-other commands that generate per-chunk data, such as :doc:`compute com/chunk <compute_com_chunk>` or :doc:`compute msd/chunk <compute_msd_chunk>`.
-
-Note that only atoms in the specified group contribute to the
-calculation of the *count* attribute. The :doc:`compute chunk/atom <compute_chunk_atom>` command defines its own group;
-atoms will have a chunk ID = 0 if they are not in that group,
-signifying they are not assigned to a chunk, and will thus also not
-contribute to this calculation. You can specify the "all" group for
-this command if you simply want to include atoms with non-zero chunk
-IDs.
-
-The *count* attribute is the number of atoms in the chunk.
-
-The *id* attribute stores the original chunk ID for each chunk. It
-can only be used if the *compress* keyword was set to *yes* for the
-:doc:`compute chunk/atom <compute_chunk_atom>` command referenced by
-chunkID. This means that the original chunk IDs (e.g. molecule IDs)
-will have been compressed to remove chunk IDs with no atoms assigned
-to them. Thus a compresed chunk ID of 3 may correspond to an original
-chunk ID (molecule ID in this case) of 415. The *id* attribute will
-then be 415 for the 3rd chunk.
-
-The *coordN* attributes can only be used if a *binning* style was used
-in the :doc:`compute chunk/atom <compute_chunk_atom>` command referenced
-by chunkID. For *bin/1d*, *bin/2d*, and *bin/3d* styles the attribute
-is the center point of the bin in the corresponding dimension. Style
-*bin/1d* only defines a *coord1* attribute. Style *bin/2d* adds a
-*coord2* attribute. Style *bin/3d* adds a *coord3* attribute.
-
-Note that if the value of the *units* keyword used in the :doc:`compute chunk/atom command <compute_chunk_atom>` is *box* or *lattice*, the
-*coordN* attributes will be in distance :doc:`units <units>`. If the
-value of the *units* keyword is *reduced*, the *coordN* attributes
-will be in unitless reduced units (0-1).
-
-The simplest way to output the results of the compute property/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk1 all property/chunk cc1
- compute myChunk2 all com/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk1 c_myChunk2 file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global vector or global array depending on
-the number of input values. The length of the vector or number of
-rows in the array is the number of chunks.
-
-This compute calculates a global vector or global array where the
-number of rows = the number of chunks *Nchunk* as calculated by the
-specified :doc:`compute chunk/atom <compute_chunk_atom>` command. If a
-single input is specified, a global vector is produced. If two or
-more inputs are specified, a global array is produced where the number
-of columns = the number of inputs. The vector or array can be
-accessed by any command that uses global values from a compute as
-input. See :ref:`this section <howto_15>` for an overview
-of LAMMPS output options.
-
-The vector or array values are "intensive". The values will be
-unitless or in the units discussed above.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/chunk <fix_ave_chunk>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_property_local.txt b/doc/_sources/compute_property_local.txt
deleted file mode 100644
index 346376427..000000000
--- a/doc/_sources/compute_property_local.txt
+++ /dev/null
@@ -1,153 +0,0 @@
-.. index:: compute property/local
-
-compute property/local command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID property/local input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* property/local = style name of this compute command
-* input = one or more attributes
-.. parsed-literal::
-
- possible attributes = natom1 natom2 ntype1 ntype2
- patom1 patom2 ptype1 ptype2
- batom1 batom2 btype
- aatom1 aatom2 aatom3 atype
- datom1 datom2 datom3 dtype
- iatom1 iatom2 iatom3 itype
-
-.. parsed-literal::
-
- natom1, natom2 = IDs of 2 atoms in each pair (within neighbor cutoff)
- ntype1, ntype2 = type of 2 atoms in each pair (within neighbor cutoff)
- patom1, patom2 = IDs of 2 atoms in each pair (within force cutoff)
- ptype1, ptype2 = type of 2 atoms in each pair (within force cutoff)
- batom1, batom2 = IDs of 2 atoms in each bond
- btype = bond type of each bond
- aatom1, aatom2, aatom3 = IDs of 3 atoms in each angle
- atype = angle type of each angle
- datom1, datom2, datom3, datom4 = IDs of 4 atoms in each dihedral
- dtype = dihedral type of each dihedral
- iatom1, iatom2, iatom3, iatom4 = IDs of 4 atoms in each improper
- itype = improper type of each improper
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all property/local btype batom1 batom2
- compute 1 all property/local atype aatom2
-
-Description
-"""""""""""
-
-Define a computation that stores the specified attributes as local
-data so it can be accessed by other :ref:`output commands <howto_15>`. If the input attributes refer
-to bond information, then the number of datums generated, aggregated
-across all processors, equals the number of bonds in the system.
-Ditto for pairs, angles, etc.
-
-If multiple input attributes are specified then they must all generate
-the same amount of information, so that the resulting local array has
-the same number of rows for each column. This means that only bond
-attributes can be specified together, or angle attributes, etc. Bond
-and angle attributes can not be mixed in the same compute
-property/local command.
-
-If the inputs are pair attributes, the local data is generated by
-looping over the pairwise neighbor list. Info about an individual
-pairwise interaction will only be included if both atoms in the pair
-are in the specified compute group. For *natom1* and *natom2*, all
-atom pairs in the neighbor list are considered (out to the neighbor
-cutoff = force cutoff + :doc:`neighbor skin <neighbor>`). For *patom1*
-and *patom2*, the distance between the atoms must be less than the
-force cutoff distance for that pair to be included, as defined by the
-:doc:`pair_style <pair_style>` and :doc:`pair_coeff <pair_coeff>`
-commands.
-
-If the inputs are bond, angle, etc attributes, the local data is
-generated by looping over all the atoms owned on a processor and
-extracting bond, angle, etc info. For bonds, info about an individual
-bond will only be included if both atoms in the bond are in the
-specified compute group. Likewise for angles, dihedrals, etc.
-
-For bonds and angles, a bonds/angles that have been broken by setting
-their bond/angle type to 0 will not be included. Bonds/angles that
-have been turned off (see the :doc:`fix shake <fix_shake>` or
-:doc:`delete_bonds <delete_bonds>` commands) by setting their bond/angle
-type negative are written into the file. This is consistent with the
-:doc:`compute bond/local <compute_bond_local>` and :doc:`compute angle/local <compute_angle_local>` commands
-
-Note that as atoms migrate from processor to processor, there will be
-no consistent ordering of the entries within the local vector or array
-from one timestep to the next. The only consistency that is
-guaranteed is that the ordering on a particular timestep will be the
-same for local vectors or arrays generated by other compute commands.
-For example, output from the :doc:`compute bond/local <compute_bond_local>` command can be combined with bond
-atom indices from this command and output by the :doc:`dump local <dump>` command in a consistent way.
-
-The *natom1* and *natom2*, or *patom1* and *patom2* attributes refer
-to the atom IDs of the 2 atoms in each pairwise interaction computed
-by the :doc:`pair_style <pair_style>` command. The *ntype1* and
-*ntype2*, or *ptype1* and *ptype2* attributes refer to the atom types
-of the 2 atoms in each pairwise interaction.
-
-.. note::
-
- For pairs, if two atoms I,J are involved in 1-2, 1-3, 1-4
- interactions within the molecular topology, their pairwise interaction
- may be turned off, and thus they may not appear in the neighbor list,
- and will not be part of the local data created by this command. More
- specifically, this may be true of I,J pairs with a weighting factor of
- 0.0; pairs with a non-zero weighting factor are included. The
- weighting factors for 1-2, 1-3, and 1-4 pairwise interactions are set
- by the :doc:`special_bonds <special_bonds>` command.
-
-The *batom1* and *batom2* attributes refer to the atom IDs of the 2
-atoms in each :doc:`bond <bond_style>`. The *btype* attribute refers to
-the type of the bond, from 1 to Nbtypes = # of bond types. The number
-of bond types is defined in the data file read by the
-:doc:`read_data <read_data>` command.
-
-The attributes that start with "a", "d", "i", refer to similar values
-for :doc:`angles <angle_style>`, :doc:`dihedrals <dihedral_style>`, and
-:doc:`impropers <improper_style>`.
-
-**Output info:**
-
-This compute calculates a local vector or local array depending on the
-number of input values. The length of the vector or number of rows in
-the array is the number of bonds, angles, etc. If a single input is
-specified, a local vector is produced. If two or more inputs are
-specified, a local array is produced where the number of columns = the
-number of inputs. The vector or array can be accessed by any command
-that uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector or array values will be integers that correspond to the
-specified attribute.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump local <dump>`, :doc:`compute reduce <compute_reduce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_rdf.txt b/doc/_sources/compute_rdf.txt
deleted file mode 100644
index 861e7c7f5..000000000
--- a/doc/_sources/compute_rdf.txt
+++ /dev/null
@@ -1,170 +0,0 @@
-.. index:: compute rdf
-
-compute rdf command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID rdf Nbin itype1 jtype1 itype2 jtype2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* rdf = style name of this compute command
-* Nbin = number of RDF bins
-* itypeN = central atom type for Nth RDF histogram (see asterisk form below)
-* jtypeN = distribution atom type for Nth RDF histogram (see asterisk form below)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all rdf 100
- compute 1 all rdf 100 1 1
- compute 1 all rdf 100 * 3
- compute 1 fluid rdf 500 1 1 1 2 2 1 2 2
- compute 1 fluid rdf 500 1*3 2 5 *10
-
-Description
-"""""""""""
-
-Define a computation that calculates the radial distribution function
-(RDF), also called g(r), and the coordination number for a group of
-particles. Both are calculated in histogram form by binning pairwise
-distances into *Nbin* bins from 0.0 to the maximum force cutoff
-defined by the :doc:`pair_style <pair_style>` command. The bins are of
-uniform size in radial distance. Thus a single bin encompasses a thin
-shell of distances in 3d and a thin ring of distances in 2d.
-
-.. note::
-
- If you have a bonded system, then the settings of
- :doc:`special_bonds <special_bonds>` command can remove pairwise
- interactions between atoms in the same bond, angle, or dihedral. This
- is the default setting for the :doc:`special_bonds <special_bonds>`
- command, and means those pairwise interactions do not appear in the
- neighbor list. Because this fix uses the neighbor list, it also means
- those pairs will not be included in the RDF. This does not apply when
- using long-range coulomb (*coul/long*, *coul/msm*, *coul/wolf* or
- similar. One way to get around this would be to set special_bond
- scaling factors to very tiny numbers that are not exactly zero
- (e.g. 1.0e-50). Another workaround is to write a dump file, and use
- the :doc:`rerun <rerun>` command to compute the RDF for snapshots in the
- dump file. The rerun script can use a
- :doc:`special_bonds <special_bonds>` command that includes all pairs in
- the neighbor list.
-
-The *itypeN* and *jtypeN* arguments are optional. These arguments
-must come in pairs. If no pairs are listed, then a single histogram
-is computed for g(r) between all atom types. If one or more pairs are
-listed, then a separate histogram is generated for each
-*itype*,*jtype* pair.
-
-The *itypeN* and *jtypeN* settings can be specified in one of two
-ways. An explicit numeric value can be used, as in the 4th example
-above. Or a wild-card asterisk can be used to specify a range of atom
-types. This takes the form "*" or "*n" or "n*" or "m*n". If N = the
-number of atom types, then an asterisk with no numeric values means
-all types from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive).
-
-If both *itypeN* and *jtypeN* are single values, as in the 4th example
-above, this means that a g(r) is computed where atoms of type *itypeN*
-are the central atom, and atoms of type *jtypeN* are the distribution
-atom. If either *itypeN* and *jtypeN* represent a range of values via
-the wild-card asterisk, as in the 5th example above, this means that a
-g(r) is computed where atoms of any of the range of types represented
-by *itypeN* are the central atom, and atoms of any of the range of
-types represented by *jtypeN* are the distribution atom.
-
-Pairwise distances are generated by looping over a pairwise neighbor
-list, just as they would be in a :doc:`pair_style <pair_style>`
-computation. The distance between two atoms I and J is included in a
-specific histogram if the following criteria are met:
-
-* atoms I,J are both in the specified compute group
-* the distance between atoms I,J is less than the maximum force cutoff
-* the type of the I atom matches itypeN (one or a range of types)
-* the type of the J atom matches jtypeN (one or a range of types)
-
-It is OK if a particular pairwise distance is included in more than
-one individual histogram, due to the way the *itypeN* and *jtypeN*
-arguments are specified.
-
-The g(r) value for a bin is calculated from the histogram count by
-scaling it by the idealized number of how many counts there would be
-if atoms of type *jtypeN* were uniformly distributed. Thus it
-involves the count of *itypeN* atoms, the count of *jtypeN* atoms, the
-volume of the entire simulation box, and the volume of the bin's thin
-shell in 3d (or the area of the bin's thin ring in 2d).
-
-A coordination number coord(r) is also calculated, which is the number
-of atoms of type *jtypeN* within the current bin or closer, averaged
-over atoms of type *itypeN*. This is calculated as the area- or
-volume-weighted sum of g(r) values over all bins up to and including
-the current bin, multiplied by the global average volume density of
-atoms of type jtypeN.
-
-The simplest way to output the results of the compute rdf calculation
-to a file is to use the :doc:`fix ave/time <fix_ave_time>` command, for
-example:
-
-.. parsed-literal::
-
- compute myRDF all rdf 50
- fix 1 all ave/time 100 1 100 c_myRDF file tmp.rdf mode vector
-
-**Output info:**
-
-This compute calculates a global array with the number of rows =
-*Nbins*, and the number of columns = 1 + 2*Npairs, where Npairs is the
-number of I,J pairings specified. The first column has the bin
-coordinate (center of the bin), Each successive set of 2 columns has
-the g(r) and coord(r) values for a specific set of *itypeN* versus
-*jtypeN* interactions, as described above. These values can be used
-by any command that uses a global values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The array values calculated by this compute are all "intensive".
-
-The first column of array values will be in distance
-:doc:`units <units>`. The g(r) columns of array values are normalized
-numbers >= 0.0. The coordination number columns of array values are
-also numbers >= 0.0.
-
-Restrictions
-""""""""""""
-
-
-The RDF is not computed for distances longer than the force cutoff,
-since processors (in parallel) don't know about atom coordinates for
-atoms further away than that distance. If you want an RDF for larger
-distances, you can use the :doc:`rerun <rerun>` command to post-process
-a dump file and set the cutoff for the potential to be longer in the
-rerun script. Note that in the rerun context, the force cutoff is
-arbitrary, since you aren't running dynamics and thus are not changing
-your model. The definition of g(r) used by LAMMPS is only appropriate
-for characterizing atoms that are uniformly distributed throughout the
-simulation cell. In such cases, the coordination number is still
-correct and meaningful. As an example, if a large simulation cell
-contains only one atom of type *itypeN* and one of *jtypeN*, then g(r)
-will register an arbitrarily large spike at whatever distance they
-happen to be at, and zero everywhere else. Coord(r) will show a step
-change from zero to one at the location of the spike in g(r).
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/time <fix_ave_time>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_reduce.txt b/doc/_sources/compute_reduce.txt
deleted file mode 100644
index 79eaec6f5..000000000
--- a/doc/_sources/compute_reduce.txt
+++ /dev/null
@@ -1,206 +0,0 @@
-.. index:: compute reduce
-
-compute reduce command
-======================
-
-compute reduce/region command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID style arg mode input1 input2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* style = *reduce* or *reduce/region*
-.. parsed-literal::
-
- *reduce* arg = none
- *reduce/region* arg = region-ID
- region-ID = ID of region to use for choosing atoms
-
-* mode = *sum* or *min* or *max* or *ave* or *sumsq* or *avesq*
-* one or more inputs can be listed
-* input = x, y, z, vx, vy, vz, fx, fy, fz, c_ID, c_ID[N], f_ID, f_ID[N], v_name
-.. parsed-literal::
-
- x,y,z,vx,vy,vz,fx,fy,fz = atom attribute (position, velocity, force component)
- c_ID = per-atom or local vector calculated by a compute with ID
- c_ID[I] = Ith column of per-atom or local array calculated by a compute with ID
- f_ID = per-atom or local vector calculated by a fix with ID
- f_ID[I] = Ith column of per-atom or local array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
-
-* zero or more keyword/args pairs may be appended
-* keyword = *replace*
-.. parsed-literal::
-
- *replace* args = vec1 vec2
- vec1 = reduced value from this input vector will be replaced
- vec2 = replace it with vec1[N] where N is index of max/min value from vec2
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all reduce sum c_force
- compute 1 all reduce/region subbox sum c_force
- compute 2 all reduce min c_press[2] f_ave v_myKE
- compute 3 fluid reduce max c_index[1] c_index[2] c_dist replace 1 3 replace 2 3
-
-Description
-"""""""""""
-
-Define a calculation that "reduces" one or more vector inputs into
-scalar values, one per listed input. The inputs can be per-atom or
-local quantities; they cannot be global quantities. Atom attributes
-are per-atom quantities, :doc:`computes <compute>` and :doc:`fixes <fix>`
-may generate any of the three kinds of quantities, and :doc:`atom-style variables <variable>` generate per-atom quantities. See the
-`variable <variable>`_ command and its special functions which can
-perform the same operations as the compute reduce command on global
-vectors.
-
-The reduction operation is specified by the *mode* setting. The *sum*
-option adds the values in the vector into a global total. The *min*
-or *max* options find the minimum or maximum value across all vector
-values. The *ave* setting adds the vector values into a global total,
-then divides by the number of values in the vector. The *sumsq*
-option sums the square of the values in the vector into a global
-total. The *avesq* setting does the same as *sumsq*, then divdes the
-sum of squares by the number of values. The last two options can be
-useful for calculating the variance of some quantity, e.g. variance =
-sumsq - ave^2.
-
-Each listed input is operated on independently. For per-atom inputs,
-the group specified with this command means only atoms within the
-group contribute to the result. For per-atom inputs, if the compute
-reduce/region command is used, the atoms must also currently be within
-the region. Note that an input that produces per-atom quantities may
-define its own group which affects the quantities it returns. For
-example, if a compute is used as an input which generates a per-atom
-vector, it will generate values of 0.0 for atoms that are not in the
-group specified for that compute.
-
-Each listed input can be an atom attribute (position, velocity, force
-component) or can be the result of a :doc:`compute <compute>` or
-:doc:`fix <fix>` or the evaluation of an atom-style
-:doc:`variable <variable>`.
-
-The atom attribute values (x,y,z,vx,vy,vz,fx,fy,fz) are
-self-explanatory. Note that other atom attributes can be used as
-inputs to this fix by using the :doc:`compute property/atom <compute_property_atom>` command and then specifying
-an input value from that compute.
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. Computes can generate
-per-atom or local quantities. See the individual
-:doc:`compute <compute>` doc page for details. If no bracketed integer
-is appended, the vector calculated by the compute is used. If a
-bracketed integer is appended, the Ith column of the array calculated
-by the compute is used. Users can also write code for their own
-compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. Fixes can generate per-atom
-or local quantities. See the individual :doc:`fix <fix>` doc page for
-details. Note that some fixes only produce their values on certain
-timesteps, which must be compatible with when compute reduce
-references the values, else an error results. If no bracketed integer
-is appended, the vector calculated by the fix is used. If a bracketed
-integer is appended, the Ith column of the array calculated by the fix
-is used. Users can also write code for their own fix style and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. It must be an
-:doc:`atom-style variable <variable>`. Atom-style variables can
-reference thermodynamic keywords and various per-atom attributes, or
-invoke other computes, fixes, or variables when they are evaluated, so
-this is a very general means of generating per-atom quantities to
-reduce.
-
-
-----------
-
-
-If the *replace* keyword is used, two indices *vec1* and *vec2* are
-specified, where each index ranges from 1 to the # of input values.
-The replace keyword can only be used if the *mode* is *min* or *max*.
-It works as follows. A min/max is computed as usual on the *vec2*
-input vector. The index N of that value within *vec2* is also stored.
-Then, instead of performing a min/max on the *vec1* input vector, the
-stored index is used to select the Nth element of the *vec1* vector.
-
-Thus, for example, if you wish to use this compute to find the bond
-with maximum stretch, you can do it as follows:
-
-.. parsed-literal::
-
- compute 1 all property/local batom1 batom2
- compute 2 all bond/local dist
- compute 3 all reduce max c_1[1] c_1[2] c_2 replace 1 3 replace 2 3
- thermo_style custom step temp c_3[1] c_3[2] c_3[3]
-
-The first two input values in the compute reduce command are vectors
-with the IDs of the 2 atoms in each bond, using the :doc:`compute property/local <compute_property_local>` command. The last input
-value is bond distance, using the :doc:`compute bond/local <compute_bond_local>` command. Instead of taking the
-max of the two atom ID vectors, which does not yield useful
-information in this context, the *replace* keywords will extract the
-atom IDs for the two atoms in the bond of maximum stretch. These atom
-IDs and the bond stretch will be printed with thermodynamic output.
-
-
-----------
-
-
-If a single input is specified this compute produces a global scalar
-value. If multiple inputs are specified, this compute produces a
-global vector of values, the length of which is equal to the number of
-inputs specified.
-
-As discussed below, for the *sum* and *sumsq* modes, the value(s)
-produced by this compute are all "extensive", meaning their value
-scales linearly with the number of atoms involved. If normalized
-values are desired, this compute can be accessed by the :doc:`thermo_style custom <thermo_style>` command with :doc:`thermo_modify norm yes <thermo_modify>` set as an option. Or it can be accessed by a
-:doc:`variable <variable>` that divides by the appropriate atom count.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar if a single input value is
-specified or a global vector of length N where N is the number of
-inputs, and which can be accessed by indices 1 to N. These values can
-be used by any command that uses global scalar or vector values from a
-compute as input. See :ref:`Section_howto 15 <howto_15>`
-for an overview of LAMMPS output options.
-
-All the scalar or vector values calculated by this compute are
-"intensive", except when the *sum* or *sumsq* modes are used on
-per-atom or local vectors, in which case the calculated values are
-"extensive".
-
-The scalar or vector values will be in whatever :doc:`units <units>` the
-quantities being reduced are in.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix <fix>`, :doc:`variable <variable>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_saed.txt b/doc/_sources/compute_saed.txt
deleted file mode 100644
index d8ed8b0ab..000000000
--- a/doc/_sources/compute_saed.txt
+++ /dev/null
@@ -1,211 +0,0 @@
-.. index:: compute saed
-
-compute saed command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID saed lambda type1 type2 ... typeN keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* saed = style name of this compute command
-* lambda = wavelength of incident radiation (length units)
-* type1 type2 ... typeN = chemical symbol of each atom type (see valid options below)
-* zero or more keyword/value pairs may be appended
-* keyword = *Kmax* or *Zone* or *dR_Ewald* or *c* or *manual* or *echo*
-.. parsed-literal::
-
- *Kmax* value = Maximum distance explored from reciprocal space origin
- (inverse length units)
- *Zone* values = z1 z2 z3
- z1,z2,z3 = Zone axis of incident radiation. If z1=z2=z3=0 all
- reciprocal space will be meshed up to *Kmax*
- *dR_Ewald* value = Thickness of Ewald sphere slice intercepting
- reciprocal space (inverse length units)
- *c* values = c1 c2 c3
- c1,c2,c3 = parameters to adjust the spacing of the reciprocal
- lattice nodes in the h, k, and l directions respectively
- *manual* = flag to use manual spacing of reciprocal lattice points
- based on the values of the *c* parameters
- *echo* = flag to provide extra output for debugging purposes
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all saed 0.0251 Al O Kmax 1.70 Zone 0 0 1 dR_Ewald 0.01 c 0.5 0.5 0.5
- compute 2 all saed 0.0251 Ni Kmax 1.70 Zone 0 0 0 c 0.05 0.05 0.05 manual echo
-
-.. parsed-literal::
-
- fix saed/vtk 1 1 1 c_1 file Al2O3_001.saed
- fix saed/vtk 1 1 1 c_2 file Ni_000.saed
-
-Description
-"""""""""""
-
-Define a computation that calculates electron diffraction intensity as
-described in :ref:`(Coleman) <Coleman>` on a mesh of reciprocal lattice nodes
-defined by the entire simulation domain (or manually) using simulated
-radiation of wavelength lambda.
-
-The electron diffraction intensity I at each reciprocal lattice point
-is computed from the structure factor F using the equations:
-
-.. image:: Eqs/compute_saed1.jpg
- :align: center
-
-.. image:: Eqs/compute_saed2.jpg
- :align: center
-
-Here, K is the location of the reciprocal lattice node, rj is the
-position of each atom, fj are atomic scattering factors.
-
-Diffraction intensities are calculated on a three-dimensional mesh of
-reciprocal lattice nodes. The mesh spacing is defined either (a) by
-the entire simulation domain or (b) manually using selected values as
-shown in the 2D diagram below.
-
-.. thumbnail:: JPG/saed_mesh.jpg
- :align: center
-
-For a mesh defined by the simulation domain, a rectilinear grid is
-constructed with spacing *c**inv(A) along each reciprocal lattice
-axis. Where A are the vectors corresponding to the edges of the
-simulation cell. If one or two directions has non-periodic boundary
-conditions, then the spacing in these directions is defined from the
-average of the (inversed) box lengths with periodic boundary conditions.
-Meshes defined by the simulation domain must contain at least one periodic
-boundary.
-
-If the *manual* flag is included, the mesh of reciprocal lattice nodes
-will defined using the *c* values for the spacing along each reciprocal
-lattice axis. Note that manual mapping of the reciprocal space mesh is
-good for comparing diffraction results from multiple simulations; however
-it can reduce the likelihood that Bragg reflections will be satisfied
-unless small spacing parameters <0.05 Angstrom^(-1) are implemented.
-Meshes with manual spacing do not require a periodic boundary.
-
-The limits of the reciprocal lattice mesh are determined by the use of
-the *Kmax*, *Zone*, and *dR_Ewald* parameters. The rectilinear mesh
-created about the origin of reciprocal space is terminated at the
-boundary of a sphere of radius *Kmax* centered at the origin. If
-*Zone* parameters z1=z2=z3=0 are used, diffraction intensities are
-computed throughout the entire spherical volume - note this can
-greatly increase the cost of computation. Otherwise, *Zone*
-parameters will denote the z1=h, z2=k, and z3=l (in a global since)
-zone axis of an intersecting Ewald sphere. Diffraction intensities
-will only be computed at the intersection of the reciprocal lattice
-mesh and a *dR_Ewald* thick surface of the Ewald sphere. See the
-example 3D intestiety data and the intersection of a [010] zone axis
-in the below image.
-
-.. thumbnail:: JPG/saed_ewald_intersect.jpg
- :align: center
-
-The atomic scattering factors, fj, accounts for the reduction in
-diffraction intensity due to Compton scattering. Compute saed uses
-analytical approximations of the atomic scattering factors that vary
-for each atom type (type1 type2 ... typeN) and angle of diffraction.
-The analytic approximation is computed using the formula
-:ref:`(Brown) <Brown>`:
-
-.. image:: Eqs/compute_saed3.jpg
- :align: center
-
-Coefficients parameterized by :ref:`(Fox) <Fox>` are assigned for each
-atom type designating the chemical symbol and charge of each atom
-type. Valid chemical symbols for compute saed are:
-
-H: He: Li: Be: B:
- C: N: O: F: Ne:
- Na: Mg: Al: Si: P:
- S: Cl: Ar: K: Ca:
- Sc: Ti: V: Cr: Mn:
- Fe: Co: Ni: Cu: Zn:
- Ga: Ge: As: Se: Br:
- Kr: Rb: Sr: Y: Zr:
- Nb: Mo: Tc: Ru: Rh:
- Pd: Ag: Cd: In: Sn:
- Sb: Te: I: Xe: Cs:
- Ba: La: Ce: Pr: Nd:
- Pm: Sm: Eu: Gd: Tb:
- Dy: Ho: Er: Tm: Yb:
- Lu: Hf: Ta: W: Re:
- Os: Ir: Pt: Au: Hg:
- Tl: Pb: Bi: Po: At:
- Rn: Fr: Ra: Ac: Th:
- Pa: U: Np: Pu: Am:
- Cm: Bk: Cf:tb(c=5,s=:)
-
-If the *echo* keyword is specified, compute saed will provide extra
-reporting information to the screen.
-
-**Output info:**
-
-This compute calculates a global vector. The length of the vector is
-the number of reciprocal lattice nodes that are explored by the mesh.
-The entries of the global vector are the computed diffraction
-intensities as described above.
-
-The vector can be accessed by any command that uses global values
-from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-All array values calculated by this compute are "intensive".
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-DIFFRACTION package. It is only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The compute_saed command does not work for triclinic cells.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix saed_vtk <fix_saed_vtk>`, :doc:`compute xrd <compute_xrd>`
-
-Default
-"""""""
-
-The option defaults are Kmax = 1.70, Zone 1 0 0, c 1 1 1, dR_Ewald =
-0.01.
-
-
-----------
-
-
-.. _Coleman:
-
-
-
-**(Coleman)** Coleman, Spearot, Capolungo, MSMSE, 21, 055020
-(2013).
-
-.. _Brown:
-
-
-
-**(Brown)** Brown et al. International Tables for Crystallography
-Volume C: Mathematical and Chemical Tables, 554-95 (2004).
-
-.. _Fox:
-
-
-
-**(Fox)** Fox, O'Keefe, Tabbernor, Acta Crystallogr. A, 45, 786-93
-(1989).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_slice.txt b/doc/_sources/compute_slice.txt
deleted file mode 100644
index 2aa93bf0a..000000000
--- a/doc/_sources/compute_slice.txt
+++ /dev/null
@@ -1,134 +0,0 @@
-.. index:: compute slice
-
-compute slice command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID slice Nstart Nstop Nskip input1 input2 ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* slice = style name of this compute command
-* Nstart = starting index within input vector(s)
-* Nstop = stopping index within input vector(s)
-* Nskip = extract every Nskip elements from input vector(s)
-* input = c_ID, c_ID[N], f_ID, f_ID[N]
-.. parsed-literal::
-
- c_ID = global vector calculated by a compute with ID
- c_ID[I] = Ith column of global array calculated by a compute with ID
- f_ID = global vector calculated by a fix with ID
- f_ID[I] = Ith column of global array calculated by a fix with ID
- v_name = vector calculated by an vector-style variable with name
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all slice 1 100 10 c_msdmol[4]
- compute 1 all slice 301 400 1 c_msdmol[4] v_myVec
-
-Description
-"""""""""""
-
-Define a calculation that "slices" one or more vector inputs into
-smaller vectors, one per listed input. The inputs can be global
-quantities; they cannot be per-atom or local quantities.
-:doc:`Computes <compute>` and :doc:`fixes <fix>` and vector-style
-:doc:`variables <variable>` can generate such global quantities. The
-group specified with this command is ignored.
-
-The values extracted from the input vector(s) are determined by the
-*Nstart*, *Nstop*, and *Nskip* parameters. The elements of an input
-vector of length N are indexed from 1 to N. Starting at element
-*Nstart*, every Mth element is extracted, where M = *Nskip*, until
-element *Nstop* is reached. The extracted quantities are stored as a
-vector, which is typically shorter than the input vector.
-
-Each listed input is operated on independently to produce one output
-vector. Each listed input must be a global vector or column of a
-global array calculated by another :doc:`compute <compute>` or
-:doc:`fix <fix>`.
-
-If an input value begins with "c_", a compute ID must follow which has
-been previously defined in the input script and which generates a
-global vector or array. See the individual :doc:`compute <compute>` doc
-page for details. If no bracketed integer is appended, the vector
-calculated by the compute is used. If a bracketed integer is
-appended, the Ith column of the array calculated by the compute is
-used. Users can also write code for their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script and which generates a global
-vector or array. See the individual :doc:`fix <fix>` doc page for
-details. Note that some fixes only produce their values on certain
-timesteps, which must be compatible with when compute slice references
-the values, else an error results. If no bracketed integer is
-appended, the vector calculated by the fix is used. If a bracketed
-integer is appended, the Ith column of the array calculated by the fix
-is used. Users can also write code for their own fix style and :doc:`add them to LAMMPS <Section_modify>`.
-
-If an input value begins with "v_", a variable name must follow which
-has been previously defined in the input script. Only vector-style
-variables can be referenced. See the :doc:`variable <variable>` command
-for details. Note that variables of style *vector* define a formula
-which can reference individual atom properties or thermodynamic
-keywords, or they can invoke other computes, fixes, or variables when
-they are evaluated, so this is a very general means of specifying
-quantities to slice.
-
-If a single input is specified this compute produces a global vector,
-even if the length of the vector is 1. If multiple inputs are
-specified, then a global array of values is produced, with the number
-of columns equal to the number of inputs specified.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global vector if a single input value is
-specified or a global array with N columns where N is the number of
-inputs. The length of the vector or the number of rows in the array
-is equal to the number of values extracted from each input vector.
-These values can be used by any command that uses global vector or
-array values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector or array values calculated by this compute are simply
-copies of values generated by computes or fixes or variables that are
-input vectors to this compute. If there is a single input vector of
-intensive and/or extensive values, then each value in the vector of
-values calculated by this compute will be "intensive" or "extensive",
-depending on the corresponding input value. If there are multiple
-input vectors, and all the values in them are intensive, then the
-array values calculated by this compute are "intensive". If there are
-multiple input vectors, and any value in them is extensive, then the
-array values calculated by this compute are "extensive". Values
-produced by a variable are treated as intensive.
-
-The vector or array values will be in whatever :doc:`units <units>` the
-input quantities are in.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix <fix>`, :doc:`compute reduce <compute_reduce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_contact_radius.txt b/doc/_sources/compute_smd_contact_radius.txt
deleted file mode 100644
index ff888621e..000000000
--- a/doc/_sources/compute_smd_contact_radius.txt
+++ /dev/null
@@ -1,64 +0,0 @@
-.. index:: compute smd/contact/radius
-
-compute smd/contact/radius command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/contact/radius
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/contact/radius = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/contact/radius
-
-Description
-"""""""""""
-
-Define a computation which outputs the contact radius, i.e., the
-radius used to prevent particles from penetrating each other. The
-contact radius is used only to prevent particles belonging to
-different physical bodies from penetrating each other. It is used by
-the contact pair styles, e.g., smd/hertz and smd/tri_surface.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-The value of the contact radius will be 0.0 for particles not in the
-specified compute group.
-
-**Output info:**
-
-This compute calculates a per-particle vector, which can be accessed by
-any command that uses per-particle values from a compute as input. See
-:ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-particle vector values will be in distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>` smd/hertz smd/tri_surface
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_damage.txt b/doc/_sources/compute_smd_damage.txt
deleted file mode 100644
index 074485810..000000000
--- a/doc/_sources/compute_smd_damage.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-.. index:: compute smd/damage
-
-compute smd/damage command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/damage
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/damage = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/damage
-
-Description
-"""""""""""
-
-Define a computation that calculates the damage status of SPH particles
-according to the damage model which is defined via the SMD SPH pair styles, e.g., the maximum plastic strain failure criterion.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth Mach Dynamics in LAMMPS.
-
-**Output Info:**
-
-This compute calculates a per-particle vector, which can be accessed by
-any command that uses per-particle values from a compute as input. See
-:ref:`How-to discussions, section 6.15 <howto_15>`
-for an overview of LAMMPS output options.
-
-The per-particle values are dimensionless an in the range of zero to one.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/plastic_strain <compute_smd_plastic_strain>`, :doc:`smd/tlsph_stress <compute_smd_tlsph_stress>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_hourglass_error.txt b/doc/_sources/compute_smd_hourglass_error.txt
deleted file mode 100644
index 34cd46606..000000000
--- a/doc/_sources/compute_smd_hourglass_error.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-.. index:: compute smd/hourglass/error
-
-compute smd/hourglass/error command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/hourglass/error
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/hourglass/error = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/hourglass/error
-
-Description
-"""""""""""
-
-Define a computation which outputs the error of the approximated
-relative separation with respect to the actual relative separation of
-the particles i and j. Ideally, if the deformation gradient is exact,
-and there exists a unique mapping between all particles' positions
-within the neighborhood of the central node and the deformation
-gradient, the approximated relative separation will coincide with the
-actual relative separation of the particles i and j in the deformed
-configuration. This compute is only really useful for debugging the
-hourglass control mechanim which is part of the Total-Lagrangian SPH
-pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth
-Mach Dynamics in LAMMPS.
-
-**Output Info:**
-
-This compute calculates a per-particle vector, which can be accessed by
-any command that uses per-particle values from a compute as input. See
-:ref:`How-to discussions, section 6.15 <howto_15>`
-for an overview of LAMMPS output options.
-
-The per-particle vector values will are dimensionless. See
-:doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This quantity will be computed only for particles which interact with
-tlsph pair style.
-
-**Related Commands:**
-
-:doc:`smd/tlsph_defgrad <compute_smd_tlsph_defgrad>`
-
-Default
-"""""""
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_internal_energy.txt b/doc/_sources/compute_smd_internal_energy.txt
deleted file mode 100644
index 075adc72b..000000000
--- a/doc/_sources/compute_smd_internal_energy.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-.. index:: compute smd/internal/energy
-
-compute smd/internal/energy command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/internal/energy
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/smd/internal/energy = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/internal/energy
-
-Description
-"""""""""""
-
-Define a computation which outputs the per-particle enthalpy, i.e.,
-the sum of potential energy and heat.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth
-Mach Dynamics in LAMMPS.
-
-**Output Info:**
-
-This compute calculates a per-particle vector, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`How-to discussions, section 6.15 <howto_15>` for
-an overview of LAMMPS output options.
-
-The per-particle vector values will be given in :doc:`units <units>` of energy.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. This compute
-can only be used for particles which interact via the updated
-Lagrangian or total Lagrangian SPH pair styles.
-
-**Related Commands:**
-
-Default
-"""""""
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_plastic_strain.txt b/doc/_sources/compute_smd_plastic_strain.txt
deleted file mode 100644
index f666f62ae..000000000
--- a/doc/_sources/compute_smd_plastic_strain.txt
+++ /dev/null
@@ -1,63 +0,0 @@
-.. index:: compute smd/plastic/strain
-
-compute smd/plastic/strain command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/plastic/strain
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/plastic/strain = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/plastic/strain
-
-Description
-"""""""""""
-
-Define a computation that outputs the equivalent plastic strain per
-particle. This command is only meaningful if a material model with
-plasticity is defined.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth
-Mach Dynamics in LAMMPS.
-
-**Output Info:**
-
-This compute calculates a per-particle vector, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`How-to discussions, section 6.15 <howto_15>` for
-an overview of LAMMPS output options.
-
-The per-particle values will be given dimensionless. See :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. This compute
-can only be used for particles which interact via the updated
-Lagrangian or total Lagrangian SPH pair styles.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/plastic/strain/rate <compute_smd_tlsph_strain>`,
-:doc:`smd/tlsph/strain/rate <compute_smd_tlsph_strain_rate>`,
-:doc:`smd/tlsph/strain <compute_smd_tlsph_strain>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_plastic_strain_rate.txt b/doc/_sources/compute_smd_plastic_strain_rate.txt
deleted file mode 100644
index 71b708b19..000000000
--- a/doc/_sources/compute_smd_plastic_strain_rate.txt
+++ /dev/null
@@ -1,63 +0,0 @@
-.. index:: compute smd/plastic/strain/rate
-
-compute smd/plastic/strain/rate command
-=======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/plastic/strain/rate
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/plastic/strain/rate = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/plastic/strain/rate
-
-Description
-"""""""""""
-
-Define a computation that outputs the time rate of the equivalent
-plastic strain. This command is only meaningful if a material model
-with plasticity is defined.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth
-Mach Dynamics in LAMMPS.
-
-**Output Info:**
-
-This compute calculates a per-particle vector, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`How-to discussions, section 6.15 <howto_15>` for
-an overview of LAMMPS output options.
-
-The per-particle values will be given in :doc:`units <units>` of one over time.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. This compute
-can only be used for particles which interact via the updated
-Lagrangian or total Lagrangian SPH pair styles.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/plastic/strain <compute_smd_plastic_strain>`,
-:doc:`smd/tlsph/strain/rate <compute_smd_tlsph_strain_rate>`,
-:doc:`smd/tlsph/strain <compute_smd_tlsph_strain>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_rho.txt b/doc/_sources/compute_smd_rho.txt
deleted file mode 100644
index f25398376..000000000
--- a/doc/_sources/compute_smd_rho.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-.. index:: compute smd/rho
-
-compute smd/rho command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/rho
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/rho = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/rho
-
-Description
-"""""""""""
-
-Define a computation that calculates the per-particle mass density.
-The mass density is the mass of a particle which is constant during
-the course of a simulation, divided by its volume, which can change
-due to mechanical deformation.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`How-to discussions, section 6.15 <howto_15>` for
-an overview of LAMMPS output options.
-
-The per-particle values will be in :doc:`units <units>` of mass over volume.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/vol <compute_smd_vol>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_tlsph_defgrad.txt b/doc/_sources/compute_smd_tlsph_defgrad.txt
deleted file mode 100644
index 33501df12..000000000
--- a/doc/_sources/compute_smd_tlsph_defgrad.txt
+++ /dev/null
@@ -1,65 +0,0 @@
-.. index:: compute smd/tlsph/defgrad
-
-compute smd/tlsph/defgrad command
-=================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/tlsph/defgrad
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/tlsph/defgrad = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/tlsph/defgrad
-
-Description
-"""""""""""
-
-Define a computation that calculates the deformation gradient. It is
-only meaningful for particles which interact according to the
-Total-Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute outputss a per-particle vector of vectors (tensors),
-which can be accessed by any command that uses per-particle values
-from a compute as input. See :ref:`How-to discussions, section 6.15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The per-particle vector values will be given dimensionless. See
-:doc:`units <units>`. The per-particle vector has 10 entries. The first
-nine entries correspond to the xx, xy, xz, yx, yy, yz, zx, zy, zz
-components of the asymmetric deformation gradient tensor. The tenth
-entry is the determinant of the deformation gradient.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. TThis
-compute can only be used for particles which interact via the total
-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/hourglass/error <compute_smd_hourglass_error>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_tlsph_dt.txt b/doc/_sources/compute_smd_tlsph_dt.txt
deleted file mode 100644
index e8e406981..000000000
--- a/doc/_sources/compute_smd_tlsph_dt.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-.. index:: compute smd/tlsph/dt
-
-compute smd/tlsph/dt command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/tlsph/dt
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/tlsph/dt = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/tlsph/dt
-
-Description
-"""""""""""
-
-Define a computation that outputs the CFL-stable time increment per
-particle. This time increment is essentially given by the speed of
-sound, divided by the SPH smoothing length. Because both the speed of
-sound and the smoothing length typically change during the course of a
-simulation, the stable time increment needs to be recomputed every
-time step. This calculation is performed automatically in the
-relevant SPH pair styles and this compute only serves to make the
-stable time increment accessible for output purposes.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`How-to discussions, section 6.15 <howto_15>` for
-an overview of LAMMPS output options.
-
-The per-particle values will be given in :doc:`units <units>` of time.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This compute can only be used for particles interacting with the
-Total-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/adjust/dt <fix_smd_adjust_dt>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_tlsph_num_neighs.txt b/doc/_sources/compute_smd_tlsph_num_neighs.txt
deleted file mode 100644
index 78fb76475..000000000
--- a/doc/_sources/compute_smd_tlsph_num_neighs.txt
+++ /dev/null
@@ -1,62 +0,0 @@
-.. index:: compute smd/tlsph/num/neighs
-
-compute smd/tlsph/num/neighs command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/tlsph/num/neighs
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/tlsph/num/neighs = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/tlsph/num/neighs
-
-Description
-"""""""""""
-
-Define a computation that calculates the number of particles inside of
-the smoothing kernel radius for particles interacting via the
-Total-Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`How-to discussions, section 6.15 <howto_15>` for
-an overview of LAMMPS output options.
-
-The per-particle values are dimensionless. See :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This quantity will be computed only for particles which interact with
-the Total-Lagrangian pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/ulsph/num/neighs <compute_smd_ulsph_num_neighs>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_tlsph_shape.txt b/doc/_sources/compute_smd_tlsph_shape.txt
deleted file mode 100644
index 7067b524c..000000000
--- a/doc/_sources/compute_smd_tlsph_shape.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-.. index:: compute smd/tlsph/shape
-
-compute smd/tlsph/shape command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/tlsph/shape
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/tlsph/shape = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/tlsph/shape
-
-Description
-"""""""""""
-
-Define a computation that outputs the current shape of the volume
-associated with a particle as a rotated ellipsoid. It is only
-meaningful for particles which interact according to the
-Total-Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector of vectors, which can be
-accessed by any command that uses per-particle values from a compute
-as input. See :ref:`How-to discussions, section 6.15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The per-particle vector has 7 entries. The first three entries
-correspond to the lengths of the ellipsoid's axes and have units of
-length. These axis valus are computed as the contact radius times the
-xx, yy, or zz components of the Green-Lagrange strain tensor
-associated with the particle. The next 4 values are quaternions
-(order: q, x, y, z) which describe the spatial rotation of the
-particle relative to its initial state.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This quantity will be computed only for particles which interact with
-the Total-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/contact/radius <compute_smd_contact_radius>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_tlsph_strain.txt b/doc/_sources/compute_smd_tlsph_strain.txt
deleted file mode 100644
index 7e92bae14..000000000
--- a/doc/_sources/compute_smd_tlsph_strain.txt
+++ /dev/null
@@ -1,66 +0,0 @@
-.. index:: compute smd/tlsph/strain
-
-compute smd/tlsph/strain command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/tlsph/strain
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/tlsph/strain = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/tlsph/strain
-
-Description
-"""""""""""
-
-Define a computation that calculates the Green-Lagrange strain tensor
-for particles interacting via the Total-Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector of vectors (tensors),
-which can be accessed by any command that uses per-particle values
-from a compute as input. See :ref:`How-to discussions, section 6.15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The per-particle tensor values will be given dimensionless. See
-:doc:`units <units>`.
-
-The per-particle vector has 6 entries, corresponding to the xx, yy,
-zz, xy, xz, yz components of the symmetric strain tensor.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This quantity will be computed only for particles which interact with
-the Total-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/tlsph/strain/rate <compute_smd_tlsph_strain_rate>`,
-:doc:`smd/tlsph/stress <compute_smd_tlsph_stress>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_tlsph_strain_rate.txt b/doc/_sources/compute_smd_tlsph_strain_rate.txt
deleted file mode 100644
index fc2731c83..000000000
--- a/doc/_sources/compute_smd_tlsph_strain_rate.txt
+++ /dev/null
@@ -1,64 +0,0 @@
-.. index:: compute smd/tlsph/strain/rate
-
-compute smd/tlsph/strain/rate command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/tlsph/strain/rate
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/tlsph/strain/rate = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/tlsph/strain/rate
-
-Description
-"""""""""""
-
-Define a computation that calculates the rate of the strain tensor for
-particles interacting via the Total-Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector of vectors (tensors),
-which can be accessed by any command that uses per-particle values
-from a compute as input. See :ref:`How-to discussions, section 6.15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The values will be given in :doc:`units <units>` of one over time.
-
-The per-particle vector has 6 entries, corresponding to the xx, yy,
-zz, xy, xz, yz components of the symmetric strain rate tensor.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This quantity will be computed only for particles which interact with
-Total-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/tlsph/strain <compute_smd_tlsph_strain>`, :doc:`compute smd/tlsph/stress <compute_smd_tlsph_stress>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_tlsph_stress.txt b/doc/_sources/compute_smd_tlsph_stress.txt
deleted file mode 100644
index a155b3a64..000000000
--- a/doc/_sources/compute_smd_tlsph_stress.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-.. index:: compute smd/tlsph/stress
-
-compute smd/tlsph/stress command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/tlsph/stress
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/tlsph/stress = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/tlsph/stress
-
-Description
-"""""""""""
-
-Define a computation that outputs the Cauchy stress tensor for
-particles interacting via the Total-Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector of vectors (tensors), which can be
-accessed by any command that uses per-particle values from a compute
-as input. See
-:ref:`How-to discussions, section 6.15 <howto_15>`
-for an overview of LAMMPS output options.
-
-The values will be given in :doc:`units <units>` of pressure.
-
-The per-particle vector has 7 entries. The first six entries
-correspond to the xx, yy, zz, xy, xz and yz components of the
-symmetric Cauchy stress tensor. The seventh entry is the second
-invariant of the stress tensor, i.e., the von Mises equivalent stress.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This quantity will be computed only for particles which interact with
-the Total-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/tlsph/strain <compute_smd_tlsph_strain>`, :doc:`cmopute smd/tlsph/strain/rate <compute_smd_tlsph_strain_rate>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_triangle_mesh_vertices.txt b/doc/_sources/compute_smd_triangle_mesh_vertices.txt
deleted file mode 100644
index 5c0200985..000000000
--- a/doc/_sources/compute_smd_triangle_mesh_vertices.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-compute smd/triangle/mesh/vertices
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/triangle/mesh/vertices
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/triangle/mesh/vertices = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/triangle/mesh/vertices
-
-Description
-"""""""""""
-
-Define a computation that returns the coordinates of the vertices
-corresponding to the triangle-elements of a mesh created by the `fix smd/wall_surface <ls_>`_.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute returns a per-particle vector of vectors, which can be
-accessed by any command that uses per-particle values from a compute as
-input. See :ref:`How-to discussions, section 6.15 <howto_15>`
-for an overview of LAMMPS output options.
-
-The per-particle vector has nine entries, (x1/y1/z1), (x2/y2/z2), and
-(x3/y3/z3) corresponding to the first, second, and third vertex of
-each triangle.
-
-It is only meaningful to use this compute for a group of particles
-which is created via the `fix smd/wall_surface <ls_>`_ command.
-
-The output of this compute can be used with the dump2vtk_tris tool to
-generate a VTK representation of the smd/wall_surace mesh for
-visualization purposes.
-
-The values will be given in :doc:`units <units>` of distance.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/move/tri/surf <fix_smd_move_triangulated_surface>`,
-`compute smd/wall/surface <ls_>`_
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_ulsph_num_neighs.txt b/doc/_sources/compute_smd_ulsph_num_neighs.txt
deleted file mode 100644
index 90c7a202d..000000000
--- a/doc/_sources/compute_smd_ulsph_num_neighs.txt
+++ /dev/null
@@ -1,61 +0,0 @@
-.. index:: compute smd/ulsph/num/neighs
-
-compute smd/ulsph/num/neighs command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/ulsph/num/neighs
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/ulsph/num/neighs = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/ulsph/num/neighs
-
-Description
-"""""""""""
-
-Define a computation that returns the number of neighbor particles
-inside of the smoothing kernel radius for particles interacting via
-the updated Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute returns a per-particle vector, which can be accessed by
-any command that uses per-particle values from a compute as input.
-See :ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-particle values will be given dimentionless, see :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_2>` section for more info. This compute
-can only be used for particles which interact with the updated
-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/tlsph/num/neighs <compute_smd_tlsph_num_neighs>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_ulsph_strain.txt b/doc/_sources/compute_smd_ulsph_strain.txt
deleted file mode 100644
index 1c8ec914e..000000000
--- a/doc/_sources/compute_smd_ulsph_strain.txt
+++ /dev/null
@@ -1,64 +0,0 @@
-.. index:: compute smd/ulsph/strain
-
-compute smd/ulsph/strain command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/ulsph/strain
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/ulsph/strain = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/ulsph/strain
-
-Description
-"""""""""""
-
-Define a computation that outputs the logarithmic strain tensor. for
-particles interacting via the updated Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle tensor, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`Section_howto 15 <howto_15>` for an overview of
-LAMMPS output options.
-
-The per-particle vector has 6 entries, corresponding to the xx, yy,
-zz, xy, xz, yz components of the symmetric strain rate tensor.
-
-The per-particle tensor values will be given dimensionless, see
-:doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. This compute
-can only be used for particles which interact with the updated
-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/tlsph/strain <compute_smd_tlsph_strain>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_ulsph_strain_rate.txt b/doc/_sources/compute_smd_ulsph_strain_rate.txt
deleted file mode 100644
index 7308385bc..000000000
--- a/doc/_sources/compute_smd_ulsph_strain_rate.txt
+++ /dev/null
@@ -1,64 +0,0 @@
-.. index:: compute smd/ulsph/strain/rate
-
-compute smd/ulsph/strain/rate command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/ulsph/strain/rate
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/ulsph/strain/rate = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/ulsph/strain/rate
-
-Description
-"""""""""""
-
-Define a computation that outputs the rate of the logarithmic strain
-tensor for particles interacting via the updated Lagrangian SPH pair
-style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector of vectors (tensors),
-which can be accessed by any command that uses per-particle values
-from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The values will be given in :doc:`units <units>` of one over time.
-
-The per-particle vector has 6 entries, corresponding to the xx, yy,
-zz, xy, xz, yz components of the symmetric strain rate tensor.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_2>` section for more info. This compute
-can only be used for particles which interact with the updated
-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/tlsph/strain/rate <compute_smd_tlsph_strain_rate>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_ulsph_stress.txt b/doc/_sources/compute_smd_ulsph_stress.txt
deleted file mode 100644
index a3385985f..000000000
--- a/doc/_sources/compute_smd_ulsph_stress.txt
+++ /dev/null
@@ -1,64 +0,0 @@
-.. index:: compute smd/ulsph/stress
-
-compute smd/ulsph/stress command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/ulsph/stress
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/ulsph/stress = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/ulsph/stress
-
-Description
-"""""""""""
-
-Define a computation that outputs the Cauchy stress tensor.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector of vectors (tensors),
-which can be accessed by any command that uses per-particle values
-from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The values will be given in :doc:`units <units>` of pressure.
-
-The per-particle vector has 7 entries. The first six entries
-correspond to the xx, yy, zz, xy, xz, yz components of the symmetric
-Cauchy stress tensor. The seventh entry is the second invariant of the
-stress tensor, i.e., the von Mises equivalent stress.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. This compute
-can only be used for particles which interact with the updated
-Lagrangian SPH pair style.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/ulsph/strain <compute_smd_ulsph_strain>`, :doc:`compute smd/ulsph/strain/rate <compute_smd_ulsph_strain_rate>` :doc:`compute smd/tlsph/stress <compute_smd_tlsph_stress>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_smd_vol.txt b/doc/_sources/compute_smd_vol.txt
deleted file mode 100644
index ec2be61e1..000000000
--- a/doc/_sources/compute_smd_vol.txt
+++ /dev/null
@@ -1,62 +0,0 @@
-.. index:: compute smd/vol
-
-compute smd/vol command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID smd/vol
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* smd/vol = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all smd/vol
-
-Description
-"""""""""""
-
-Define a computation that provides the per-particle volume and the sum
-of the per-particle volumes of the group for which the fix is defined.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth
-Mach Dynamics in LAMMPS.
-
-**Output info:**
-
-This compute calculates a per-particle vector, which can be accessed
-by any command that uses per-particle values from a compute as input.
-See :ref:`How-to discussions, section 6.15 <howto_15>` for
-an overview of LAMMPS output options.
-
-The per-particle vector values will be given in :doc:`units <units>` of
-volume.
-
-Additionally, the compute returns a scalar, which is the sum of the
-per-particle volumes of the group for which the fix is defined.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute smd/rho <compute_smd_rho>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_sna_atom.txt b/doc/_sources/compute_sna_atom.txt
deleted file mode 100644
index fedd75854..000000000
--- a/doc/_sources/compute_sna_atom.txt
+++ /dev/null
@@ -1,281 +0,0 @@
-.. index:: compute sna/atom
-
-compute sna/atom command
-========================
-
-compute snad/atom command
-=========================
-
-compute snav/atom command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID sna/atom ntypes rcutfac rfac0 twojmax R_1 R_2 ... w_1 w_2 ... keyword values ...
- compute ID group-ID snad/atom ntypes rcutfac rfac0 twojmax R_1 R_2 ... w_1 w_2 ... keyword values ...
- compute ID group-ID snav/atom ntypes rcutfac rfac0 twojmax R_1 R_2 ... w_1 w_2 ... keyword values ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* sna/atom = style name of this compute command
-* rcutfac = scale factor applied to all cutoff radii (positive real)
-* rfac0 = parameter in distance to angle conversion (0 < rcutfac < 1)
-* twojmax = band limit for bispectrum components (non-negative integer)
-* R_1, R_2,... = list of cutoff radii, one for each type (distance units)
-* w_1, w_2,... = list of neighbor weights, one for each type
-* zero or more keyword/value pairs may be appended
-* keyword = *diagonal* or *rmin0* or *switchflag*
-.. parsed-literal::
-
- *diagonal* value = *0* or *1* or *2* or *3*
- *0* = all j1, j2, j <= twojmax, j2 <= j1
- *1* = subset satisfying j1 == j2
- *2* = subset satisfying j1 == j2 == j3
- *3* = subset satisfying j2 <= j1 <= j
- *rmin0* value = parameter in distance to angle conversion (distance units)
- *switchflag* value = *0* or *1*
- *0* = do not use switching function
- *1* = use switching function
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute b all sna/atom 1.4 0.99363 6 2.0 2.4 0.75 1.0 diagonal 3 rmin0 0.0
- compute db all sna/atom 1.4 0.95 6 2.0 1.0
- compute vb all sna/atom 1.4 0.95 6 2.0 1.0
-
-Description
-"""""""""""
-
-Define a computation that calculates a set of bispectrum components
-for each atom in a group.
-
-Bispectrum components of an atom are order parameters characterizing
-the radial and angular distribution of neighbor atoms. The detailed
-mathematical definition is given in the paper by Thompson et
-al. :ref:`(Thompson) <Thompson2014>`
-
-The position of a neighbor atom *i'* relative to a central atom *i* is
-a point within the 3D ball of radius *R_ii' = rcutfac*(R_i + R_i')*
-
-Bartok et al. :ref:`(Bartok) <Bartok2010>`, proposed mapping this 3D ball
-onto the 3-sphere, the surface of the unit ball in a four-dimensional
-space. The radial distance *r* within *R_ii'* is mapped on to a third
-polar angle *theta0* defined by,
-
-.. image:: Eqs/compute_sna_atom1.jpg
- :align: center
-
-In this way, all possible neighbor positions are mapped on to a subset
-of the 3-sphere. Points south of the latitude *theta0max=rfac0*Pi*
-are excluded.
-
-The natural basis for functions on the 3-sphere is formed by the 4D
-hyperspherical harmonics *U^j_m,m'(theta, phi, theta0).* These
-functions are better known as *D^j_m,m',* the elements of the Wigner
-*D*-matrices :ref:`(Meremianin <Meremianin2006>`,
-:ref:`Varshalovich) <Varshalovich1987>`.
-
-The density of neighbors on the 3-sphere can be written as a sum of
-Dirac-delta functions, one for each neighbor, weighted by species and
-radial distance. Expanding this density function as a generalized
-Fourier series in the basis functions, we can write each Fourier
-coefficient as
-
-.. image:: Eqs/compute_sna_atom2.jpg
- :align: center
-
-The *w_i'* neighbor weights are dimensionless numbers that are chosen
-to distinguish atoms of different types, while the central atom is
-arbitrarily assigned a unit weight. The function *fc(r)* ensures that
-the contribution of each neighbor atom goes smoothly to zero at
-*R_ii'*:
-
-.. image:: Eqs/compute_sna_atom4.jpg
- :align: center
-
-The expansion coefficients *u^j_m,m'* are complex-valued and they are
-not directly useful as descriptors, because they are not invariant
-under rotation of the polar coordinate frame. However, the following
-scalar triple products of expansion coefficients can be shown to be
-real-valued and invariant under rotation :ref:`(Bartok) <Bartok2010>`.
-
-.. image:: Eqs/compute_sna_atom3.jpg
- :align: center
-
-The constants *H^jmm'_j1m1m1'_j2m2m2'* are coupling coefficients,
-analogous to Clebsch-Gordan coefficients for rotations on the
-2-sphere. These invariants are the components of the bispectrum and
-these are the quantities calculated by the compute *sna/atom*. They
-characterize the strength of density correlations at three points on
-the 3-sphere. The j2=0 subset form the power spectrum, which
-characterizes the correlations of two points. The lowest-order
-components describe the coarsest features of the density function,
-while higher-order components reflect finer detail. Note that the
-central atom is included in the expansion, so three point-correlations
-can be either due to three neighbors, or two neighbors and the central
-atom.
-
-Compute *snad/atom* calculates the derivative of the bispectrum components
-summed separately for each atom type:
-
-.. image:: Eqs/compute_sna_atom5.jpg
- :align: center
-
-The sum is over all atoms *i'* of atom type *I*. For each atom *i*,
-this compute evaluates the above expression for each direction, each
-atom type, and each bispectrum component. See section below on output
-for a detailed explanation.
-
-Compute *snav/atom* calculates the virial contribution due to the
-derivatives:
-
-.. image:: Eqs/compute_sna_atom6.jpg
- :align: center
-
-Again, the sum is over all atoms *i'* of atom type *I*. For each atom
-*i*, this compute evaluates the above expression for each of the six
-virial components, each atom type, and each bispectrum component. See
-section below on output for a detailed explanation.
-
-The value of all bispectrum components will be zero for atoms not in
-the group. Neighbor atoms not in the group do not contribute to the
-bispectrum of atoms in the group.
-
-The neighbor list needed to compute this quantity is constructed each
-time the calculation is performed (i.e. each time a snapshot of atoms
-is dumped). Thus it can be inefficient to compute/dump this quantity
-too frequently.
-
-The argument *rcutfac* is a scale factor that controls the ratio of
-atomic radius to radial cutoff distance.
-
-The argument *rfac0* and the optional keyword *rmin0* define the
-linear mapping from radial distance to polar angle *theta0* on the
-3-sphere.
-
-The argument *twojmax* and the keyword *diagonal* define which
-bispectrum components are generated. See section below on output for a
-detailed explanation of the number of bispectrum components and the
-ordered in which they are listed
-
-The keyword *switchflag* can be used to turn off the switching
-function.
-
-.. note::
-
- If you have a bonded system, then the settings of
- :doc:`special_bonds <special_bonds>` command can remove pairwise
- interactions between atoms in the same bond, angle, or dihedral. This
- is the default setting for the :doc:`special_bonds <special_bonds>`
- command, and means those pairwise interactions do not appear in the
- neighbor list. Because this fix uses the neighbor list, it also means
- those pairs will not be included in the calculation. One way to get
- around this, is to write a dump file, and use the :doc:`rerun <rerun>`
- command to compute the bispectrum components for snapshots in the dump
- file. The rerun script can use a :doc:`special_bonds <special_bonds>`
- command that includes all pairs in the neighbor list.
-
-;line
-
-**Output info:**
-
-Compute *sna/atom* calculates a per-atom array, each column
-corresponding to a particular bispectrum component. The total number
-of columns and the identities of the bispectrum component contained in
-each column depend on the values of *twojmax* and *diagonal*, as
-described by the following piece of python code:
-
-.. parsed-literal::
-
- for j1 in range(0,twojmax+1):
- if(diagonal==2):
- print j1/2,j1/2,j1/2
- elif(diagonal==1):
- for j in range(0,min(twojmax,2*j1)+1,2):
- print j1/2,j1/2,j/2
- elif(diagonal==0):
- for j2 in range(0,j1+1):
- for j in range(j1-j2,min(twojmax,j1+j2)+1,2):
- print j1/2,j2/2,j/2
- elif(diagonal==3):
- for j2 in range(0,j1+1):
- for j in range(j1-j2,min(twojmax,j1+j2)+1,2):
- if (j>=j1): print j1/2,j2/2,j/2
-
-Compute *snad/atom* evaluates a per-atom array. The columns are
-arranged into *ntypes* blocks, listed in order of atom type *I*. Each
-block contains three sub-blocks corresponding to the *x*, *y*, and *z*
-components of the atom position. Each of these sub-blocks contains
-one column for each bispectrum component, the same as for compute
-*sna/atom*
-
-Compute *snav/atom* evaluates a per-atom array. The columns are
-arranged into *ntypes* blocks, listed in order of atom type *I*. Each
-block contains six sub-blocks corresponding to the *xx*, *yy*, *zz*,
-*yz*, *xz*, and *xy* components of the virial tensor in Voigt
-notation. Each of these sub-blocks contains one column for each
-bispectrum component, the same as for compute *sna/atom*
-
-These values can be accessed by any command that uses per-atom values
-from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-Restrictions
-""""""""""""
-
-
-These computes are part of the SNAP package. They are only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style snap <pair_snap>`
-
-Default
-"""""""
-
-The optional keyword defaults are *diagonal* = 0, *rmin0* = 0,
-*switchflag* = 1.
-
-
-----------
-
-
-.. _Thompson2014:
-
-
-
-**(Thompson)** Thompson, Swiler, Trott, Foiles, Tucker, under review, preprint
-available at `arXiv:1409.3880 <http://arxiv.org/abs/1409.3880>`_
-
-.. _Bartok2010:
-
-
-
-**(Bartok)** Bartok, Payne, Risi, Csanyi, Phys Rev Lett, 104, 136403 (2010).
-
-.. _Meremianin2006:
-
-
-
-**(Meremianin)** Meremianin, J. Phys. A, 39, 3099 (2006).
-
-.. _Varshalovich1987:
-
-
-
-**(Varshalovich)** Varshalovich, Moskalev, Khersonskii, Quantum Theory
-of Angular Momentum, World Scientific, Singapore (1987).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_stress_atom.txt b/doc/_sources/compute_stress_atom.txt
deleted file mode 100644
index 602d79f9b..000000000
--- a/doc/_sources/compute_stress_atom.txt
+++ /dev/null
@@ -1,187 +0,0 @@
-.. index:: compute stress/atom
-
-compute stress/atom command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID stress/atom temp-ID keyword ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* stress/atom = style name of this compute command
-* temp-ID = ID of compute that calculates temperature, can be NULL if not needed
-* zero or more keywords may be appended
-* keyword = *ke* or *pair* or *bond* or *angle* or *dihedral* or *improper* or *kspace* or *fix* or *virial*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 mobile stress/atom NULL
- compute 1 mobile stress/atom myRamp
- compute 1 all stress/atom NULL pair bond
-
-Description
-"""""""""""
-
-Define a computation that computes the symmetric per-atom stress
-tensor for each atom in a group. The tensor for each atom has 6
-components and is stored as a 6-element vector in the following order:
-xx, yy, zz, xy, xz, yz. See the :doc:`compute pressure <compute_pressure>` command if you want the stress tensor
-(pressure) of the entire system.
-
-The stress tensor for atom *I* is given by the following formula,
-where *a* and *b* take on values x,y,z to generate the 6 components of
-the symmetric tensor:
-
-.. image:: Eqs/stress_tensor.jpg
- :align: center
-
-The first term is a kinetic energy contribution for atom *I*. See
-details below on how the specified *temp-ID* can affect the velocities
-used in this calculation. The second term is a pairwise energy
-contribution where *n* loops over the *Np* neighbors of atom *I*, *r1*
-and *r2* are the positions of the 2 atoms in the pairwise interaction,
-and *F1* and *F2* are the forces on the 2 atoms resulting from the
-pairwise interaction. The third term is a bond contribution of
-similar form for the *Nb* bonds which atom *I* is part of. There are
-similar terms for the *Na* angle, *Nd* dihedral, and *Ni* improper
-interactions atom *I* is part of. There is also a term for the KSpace
-contribution from long-range Coulombic interactions, if defined.
-Finally, there is a term for the *Nf* :doc:`fixes <fix>` that apply
-internal constraint forces to atom *I*. Currently, only the :doc:`fix shake <fix_shake>` and :doc:`fix rigid <fix_rigid>` commands
-contribute to this term.
-
-As the coefficients in the formula imply, a virial contribution
-produced by a small set of atoms (e.g. 4 atoms in a dihedral or 3
-atoms in a Tersoff 3-body interaction) is assigned in equal portions
-to each atom in the set. E.g. 1/4 of the dihedral virial to each of
-the 4 atoms, or 1/3 of the fix virial due to SHAKE constraints applied
-to atoms in a a water molecule via the :doc:`fix shake <fix_shake>`
-command.
-
-If no extra keywords are listed, all of the terms in this formula are
-included in the per-atom stress tensor. If any extra keywords are
-listed, only those terms are summed to compute the tensor. The
-*virial* keyword means include all terms except the kinetic energy
-*ke*.
-
-Note that the stress for each atom is due to its interaction with all
-other atoms in the simulation, not just with other atoms in the group.
-
-Details of how LAMMPS computes the virial for individual atoms for
-either pairwise or manybody potentials, and including the effects of
-periodic boundary conditions is discussed in :ref:`(Thompson) <Thompson>`.
-The basic idea for manybody potentials is to treat each component of
-the force computation between a small cluster of atoms in the same
-manner as in the formula above for bond, angle, dihedral, etc
-interactions. Namely the quantity R dot F is summed over the atoms in
-the interaction, with the R vectors unwrapped by periodic boundaries
-so that the cluster of atoms is close together. The total
-contribution for the cluster interaction is divided evenly among those
-atoms.
-
-The :doc:`dihedral_style charmm <dihedral_charmm>` style calculates
-pairwise interactions between 1-4 atoms. The virial contribution of
-these terms is included in the pair virial, not the dihedral virial.
-
-The KSpace contribution is calculated using the method in
-:ref:`(Heyes) <Heyes>` for the Ewald method and by the methodology described
-in :ref:`(Sirk) <Sirk>` for PPPM. The choice of KSpace solver is specified
-by the :doc:`kspace_style pppm <kspace_style>` command. Note that for
-PPPM, the calcluation requires 6 extra FFTs each timestep that
-per-atom stress is calculated. Thus it can significantly increase the
-cost of the PPPM calculation if it is needed on a large fraction of
-the simulation timesteps.
-
-The *temp-ID* argument can be used to affect the per-atom velocities
-used in the kinetic energy contribution to the total stress. If the
-kinetic energy is not included in the stress, than the temperature
-compute is not used and can be specified as NULL. If the kinetic
-energy is included and you wish to use atom velocities as-is, then
-*temp-ID* can also be specified as NULL. If desired, the specified
-temperature compute can be one that subtracts off a bias to leave each
-atom with only a thermal velocity to use in the formula above, e.g. by
-subtracting a background streaming velocity. See the doc pages for
-individual :doc:`compute commands <compute>` to determine which ones
-include a bias.
-
-
-----------
-
-
-Note that as defined in the formula, per-atom stress is the negative
-of the per-atom pressure tensor. It is also really a stress*volume
-formulation, meaning the computed quantity is in units of
-pressure*volume. It would need to be divided by a per-atom volume to
-have units of stress (pressure), but an individual atom's volume is
-not well defined or easy to compute in a deformed solid or a liquid.
-See the :doc:`compute voronoi/atom <compute_voronoi_atom>` command for
-one possible way to estimate a per-atom volume.
-
-Thus, if the diagonal components of the per-atom stress tensor are
-summed for all atoms in the system and the sum is divided by dV, where
-d = dimension and V is the volume of the system, the result should be
--P, where P is the total pressure of the system.
-
-These lines in an input script for a 3d system should yield that
-result. I.e. the last 2 columns of thermo output will be the same:
-
-.. parsed-literal::
-
- compute peratom all stress/atom NULL
- compute p all reduce sum c_peratom[1] c_peratom[2] c_peratom[3]
- variable press equal -(c_p[1]+c_p[2]+c_p[3])/(3*vol)
- thermo_style custom step temp etotal press v_press
-
-**Output info:**
-
-This compute calculates a per-atom array with 6 columns, which can be
-accessed by indices 1-6 by any command that uses per-atom values from
-a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The per-atom array values will be in pressure*volume
-:doc:`units <units>` as discussed above.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute pe <compute_pe>`, :doc:`compute pressure <compute_pressure>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Heyes:
-
-
-
-**(Heyes)** Heyes, Phys Rev B 49, 755 (1994),
-
-.. _Sirk:
-
-
-
-**(Sirk)** Sirk, Moore, Brown, J Chem Phys, 138, 064505 (2013).
-
-.. _Thompson:
-
-
-
-**(Thompson)** Thompson, Plimpton, Mattson, J Chem Phys, 131, 154107 (2009).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_tally.txt b/doc/_sources/compute_tally.txt
deleted file mode 100644
index 27fcbf79a..000000000
--- a/doc/_sources/compute_tally.txt
+++ /dev/null
@@ -1,111 +0,0 @@
-.. index:: compute force/tally
-
-compute force/tally command
-===========================
-
-compute heat/flux/tally command
-===============================
-
-compute pe/tally command
-========================
-
-compute pe/mol/tally command
-============================
-
-compute stress/tally command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID style group2-ID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* style = *force/tally* or *pe/tally* or *pe/mol/tally* or *stress/tally*
-* group2-ID = group ID of second (or same) group
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 lower force/tally upper
- compute 1 left pe/tally right
- compute 1 lower stress/tally lower
-
-Description
-"""""""""""
-
-Define a computation that calculates properties between two groups of
-atoms by accumulating them from pairwise non-bonded computations. The
-two groups can be the same. This is similar to :doc:`compute group/group <compute_group_group>` only that the data is
-accumulated directly during the non-bonded force computation. The
-computes *force/tally*, *pe/tally*, *stress/tally*, and
-*heat/flux/tally* are primarily provided as example how to program
-additional, more sophisticated computes using the tally mechanism.
-
-
-----------
-
-
-The pairwise contributions are computing via a callback that the
-compute registers with the non-bonded pairwise force computation.
-This limits the use to systems that have no bonds, no Kspace, and no
-manybody interactions. On the other hand, the computation does not
-have to compute forces or energies a second time and thus can be much
-more efficient. The callback mechanism allows to write more complex
-pairwise property computations.
-
-
-----------
-
-
-**Output info:**
-
-Compute *pe/tally* calculates a global scalar (the energy) and a per
-atom scalar (the contributions of the single atom to the global
-scalar). Compute *pe/mol/tally* calculates a global 4-element vector
-containing (in this order): *evdwl* and *ecoul* for intramolecular pairs
-and *evdwl* and *ecoul* for intermolecular pairs. Since molecules are
-identified my their molecule IDs, the partitioning does not have to be
-related to molecules, but the energies are tallied into the respective
-slots depending on whether the molecule IDs of a pair are the same or
-different. Compute *force/tally* calculates a global scalar (the force
-magnitude) and a per atom 3-element vector (force contribution from
-each atom). Compute *stress/tally* calculates a global scalar
-(average of the diagonal elements of the stress tensor) and a per atom
-vector (the 6 elements of stress tensor contributions from the
-individual atom).
-
-Both the scalar and vector values calculated by this compute are
-"extensive".
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-TALLY package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Not all pair styles can be evaluated in a pairwise mode as required by
-this compute. For example, 3-body and other many-body potentials,
-such as :doc:`Tersoff <pair_tersoff>` and
-:doc:`Stillinger-Weber <pair_sw>` cannot be used. :doc:`EAM <pair_eam>`
-potentials only include the pair potential portion of the EAM
-interaction when used by this compute, not the embedding term. Also
-bonded or Kspace interactions do not contribute to this compute.
-
-Related commands
-""""""""""""""""
-
-*compute group/group*_compute_group_group.html, *compute
-heat/flux*_compute_heat_flux.html
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp.txt b/doc/_sources/compute_temp.txt
deleted file mode 100644
index 412e7c983..000000000
--- a/doc/_sources/compute_temp.txt
+++ /dev/null
@@ -1,128 +0,0 @@
-.. index:: compute temp
-
-compute temp command
-====================
-
-compute temp/cuda command
-=========================
-
-compute temp/kk command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all temp
- compute myTemp mobile temp
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms. A compute of this style can be used by any command that
-computes a temperature, e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-The temperature is calculated by the formula KE = dim/2 N k T, where
-KE = total kinetic energy of the group of atoms (sum of 1/2 m v^2),
-dim = 2 or 3 = dimensionality of the simulation, N = number of atoms
-in the group, k = Boltzmann constant, and T = temperature.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-A compute of this style with the ID of "thermo_temp" is created when
-LAMMPS starts up, as if this command were in the input script:
-
-.. parsed-literal::
-
- compute thermo_temp all temp
-
-See the "thermo_style" command for more details.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp/partial <compute_temp_partial>`, :doc:`compute temp/region <compute_temp_region>`, :doc:`compute pressure <compute_pressure>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_asphere.txt b/doc/_sources/compute_temp_asphere.txt
deleted file mode 100644
index d9954deef..000000000
--- a/doc/_sources/compute_temp_asphere.txt
+++ /dev/null
@@ -1,170 +0,0 @@
-.. index:: compute temp/asphere
-
-compute temp/asphere command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/asphere keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/asphere = style name of this compute command
-* zero or more keyword/value pairs may be appended
-* keyword = *bias* or *dof*
-.. parsed-literal::
-
- *bias* value = bias-ID
- bias-ID = ID of a temperature compute that removes a velocity bias
- *dof* value = *all* or *rotate*
- all = compute temperature of translational and rotational degrees of freedom
- rotate = compute temperature of just rotational degrees of freedom
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all temp/asphere
- compute myTemp mobile temp/asphere bias tempCOM
- compute myTemp mobile temp/asphere dof rotate
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-aspherical particles, including a contribution from both their
-translational and rotational kinetic energy. This differs from the
-usual :doc:`compute temp <compute_temp>` command, which assumes point
-particles with only translational kinetic energy.
-
-Only finite-size particles (aspherical or spherical) can be included
-in the group. For 3d finite-size particles, each has 6 degrees of
-freedom (3 translational, 3 rotational). For 2d finite-size
-particles, each has 3 degrees of freedom (2 translational, 1
-rotational).
-
-.. note::
-
- This choice for degrees of freedom (dof) assumes that all
- finite-size aspherical or spherical particles in your model will
- freely rotate, sampling all their rotational dof. It is possible to
- use a combination of interaction potentials and fixes that induce no
- torque or otherwise constrain some of all of your particles so that
- this is not the case. Then there are less dof and you should use the
- :doc:`compute_modify extra <compute_modify>` command to adjust the dof
- accordingly.
-
-For example, an aspherical particle with all three of its shape
-parameters the same is a sphere. If it does not rotate, then it
-should have 3 dof instead of 6 in 3d (or 2 instead of 3 in 2d). A
-uniaxial aspherical particle has two of its three shape parameters the
-same. If it does not rotate around the axis perpendicular to its
-circular cross section, then it should have 5 dof instead of 6 in 3d.
-The latter is the case for uniaxial ellipsoids in a :doc:`GayBerne model <pair_gayberne>` since there is no induced torque around the
-optical axis. It will also be the case for biaxial ellipsoids when
-exactly two of the semiaxes have the same length and the corresponding
-relative well depths are equal.
-
-The translational kinetic energy is computed the same as is described
-by the :doc:`compute temp <compute_temp>` command. The rotational
-kinetic energy is computed as 1/2 I w^2, where I is the inertia tensor
-for the aspherical particle and w is its angular velocity, which is
-computed from its angular momentum.
-
-.. note::
-
- For :doc:`2d models <dimension>`, particles are treated as
- ellipsoids, not ellipses, meaning their moments of inertia will be the
- same as in 3d.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute. The formula for the components of the
-tensor is the same as the above formula, except that v^2 and w^2 are
-replaced by vx*vy and wx*wy for the xy component, and the appropriate
-elements of the inertia tensor are used. The 6 components of the
-vector are ordered xx, yy, zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-This compute subtracts out translational degrees-of-freedom due to
-fixes that constrain molecular motion, such as :doc:`fix shake <fix_shake>` and :doc:`fix rigid <fix_rigid>`. This means the
-temperature of groups of atoms that include these constraints will be
-computed correctly. If needed, the subtracted degrees-of-freedom can
-be altered using the *extra* option of the
-:doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-
-----------
-
-
-The keyword/value option pairs are used in the following ways.
-
-For the *bias* keyword, *bias-ID* refers to the ID of a temperature
-compute that removes a "bias" velocity from each atom. This allows
-compute temp/sphere to compute its thermal temperature after the
-translational kinetic energy components have been altered in a
-prescribed way, e.g. to remove a flow velocity profile. Thermostats
-that use this compute will work with this bias term. See the doc
-pages for individual computes that calculate a temperature and the doc
-pages for fixes that perform thermostatting for more details.
-
-For the *dof* keyword, a setting of *all* calculates a temperature
-that includes both translational and rotational degrees of freedom. A
-setting of *rotate* calculates a temperature that includes only
-rotational degrees of freedom.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the ASPHERE package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This compute requires that atoms store angular momementum and a
-quaternion as defined by the :doc:`atom_style ellipsoid <atom_style>`
-command.
-
-All particles in the group must be finite-size. They cannot be point
-particles, but they can be aspherical or spherical as defined by their
-shape attribute.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_body.txt b/doc/_sources/compute_temp_body.txt
deleted file mode 100644
index 89d49d809..000000000
--- a/doc/_sources/compute_temp_body.txt
+++ /dev/null
@@ -1,146 +0,0 @@
-.. index:: compute temp/body
-
-compute temp/body command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/body keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/body = style name of this compute command
-* zero or more keyword/value pairs may be appended
-* keyword = *bias* or *dof*
-.. parsed-literal::
-
- *bias* value = bias-ID
- bias-ID = ID of a temperature compute that removes a velocity bias
- *dof* value = *all* or *rotate*
- all = compute temperature of translational and rotational degrees of freedom
- rotate = compute temperature of just rotational degrees of freedom
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all temp/body
- compute myTemp mobile temp/body bias tempCOM
- compute myTemp mobile temp/body dof rotate
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-body particles, including a contribution from both their
-translational and rotational kinetic energy. This differs from the
-usual :doc:`compute temp <compute_temp>` command, which assumes point
-particles with only translational kinetic energy.
-
-Only body particles can be included in the group. For 3d particles,
-each has 6 degrees of freedom (3 translational, 3 rotational). For 2d
-body particles, each has 3 degrees of freedom (2 translational, 1
-rotational).
-
-.. note::
-
- This choice for degrees of freedom (dof) assumes that all body
- particles in your model will freely rotate, sampling all their
- rotational dof. It is possible to use a combination of interaction
- potentials and fixes that induce no torque or otherwise constrain some
- of all of your particles so that this is not the case. Then there are
- less dof and you should use the :doc:`compute_modify extra <compute_modify>` command to adjust the dof accordingly.
-
-The translational kinetic energy is computed the same as is described
-by the :doc:`compute temp <compute_temp>` command. The rotational
-kinetic energy is computed as 1/2 I w^2, where I is the inertia tensor
-for the aspherical particle and w is its angular velocity, which is
-computed from its angular momentum.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute. The formula for the components of the
-tensor is the same as the above formula, except that v^2 and w^2 are
-replaced by vx*vy and wx*wy for the xy component, and the appropriate
-elements of the inertia tensor are used. The 6 components of the
-vector are ordered xx, yy, zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-This compute subtracts out translational degrees-of-freedom due to
-fixes that constrain molecular motion, such as :doc:`fix shake <fix_shake>` and :doc:`fix rigid <fix_rigid>`. This means the
-temperature of groups of atoms that include these constraints will be
-computed correctly. If needed, the subtracted degrees-of-freedom can
-be altered using the *extra* option of the
-:doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-
-----------
-
-
-The keyword/value option pairs are used in the following ways.
-
-For the *bias* keyword, *bias-ID* refers to the ID of a temperature
-compute that removes a "bias" velocity from each atom. This allows
-compute temp/sphere to compute its thermal temperature after the
-translational kinetic energy components have been altered in a
-prescribed way, e.g. to remove a flow velocity profile. Thermostats
-that use this compute will work with this bias term. See the doc
-pages for individual computes that calculate a temperature and the doc
-pages for fixes that perform thermostatting for more details.
-
-For the *dof* keyword, a setting of *all* calculates a temperature
-that includes both translational and rotational degrees of freedom. A
-setting of *rotate* calculates a temperature that includes only
-rotational degrees of freedom.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the BODY package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This compute requires that atoms store angular momementum and a
-quaternion as defined by the :doc:`atom_style body <atom_style>`
-command.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_chunk.txt b/doc/_sources/compute_temp_chunk.txt
deleted file mode 100644
index c779a8270..000000000
--- a/doc/_sources/compute_temp_chunk.txt
+++ /dev/null
@@ -1,255 +0,0 @@
-.. index:: compute temp/chunk
-
-compute temp/chunk command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/chunk chunkID value1 value2 ... keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-* zero or more values can be listed as value1,value2,etc
-* value = *temp* or *kecom* or *internal*
-.. parsed-literal::
-
- temp = temperature of each chunk
- kecom = kinetic energy of each chunk based on velocity of center of mass
- internal = internal kinetic energy of each chunk
-
-* zero or more keyword/value pairs may be appended
-* keyword = *com* or *bias* or *adof* or *cdof*
-.. parsed-literal::
-
- *com* value = *yes* or *no*
- yes = subtract center-of-mass velocity from each chunk before calculating temperature
- no = do not subtract center-of-mass velocity
- *bias* value = bias-ID
- bias-ID = ID of a temperature compute that removes a velocity bias
- *adof* value = dof_per_atom
- dof_per_atom = define this many degrees-of-freedom per atom
- *cdof* value = dof_per_chunk
- dof_per_chunk = define this many degrees-of-freedom per chunk
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid temp/chunk molchunk
- compute 1 fluid temp/chunk molchunk temp internal
- compute 1 fluid temp/chunk molchunk bias tpartial adof 2.0
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms that are also in chunks, after optionally subtracting out the
-center-of-mass velocity of each chunk. By specifying optional values,
-it can also calulate the per-chunk temperature or energies of the
-multiple chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-The temperature is calculated by the formula KE = DOF/2 k T, where KE =
-total kinetic energy of all atoms assigned to chunks (sum of 1/2 m
-v^2), DOF = the total number of degrees of freedom for those atoms, k
-= Boltzmann constant, and T = temperature.
-
-The DOF is calculated as N*adof + Nchunk*cdof, where N = number of
-atoms contributing to the KE, adof = degrees of freedom per atom, and
-cdof = degrees of freedom per chunk. By default adof = 2 or 3 =
-dimensionality of system, as set via the :doc:`dimension <dimension>`
-command, and cdof = 0.0. This gives the usual formula for
-temperature.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-Note that the number of atoms contributing to the temperature is
-calculated each time the temperature is evaluated since it is assumed
-the atoms may be dynamically assigned to chunks. Thus there is no
-need to use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command for this compute style.
-
-If any optional values are specified, then per-chunk quantities are
-also calculated and stored in a global array, as described below.
-
-The *temp* value calculates the temperature for each chunk by the
-formula KE = DOF/2 k T, where KE = total kinetic energy of the chunk
-of atoms (sum of 1/2 m v^2), DOF = the total number of degrees of
-freedom for all atoms in the chunk, k = Boltzmann constant, and T =
-temperature.
-
-The DOF in this case is calculated as N*adof + cdof, where N = number
-of atoms in the chunk, adof = degrees of freedom per atom, and cdof =
-degrees of freedom per chunk. By default adof = 2 or 3 =
-dimensionality of system, as set via the :doc:`dimension <dimension>`
-command, and cdof = 0.0. This gives the usual formula for
-temperature.
-
-The *kecom* value calculates the kinetic energy of each chunk as if
-all its atoms were moving with the velocity of the center-of-mass of
-the chunk.
-
-The *internal* value calculates the internal kinetic energy of each
-chunk. The interal KE is summed over the atoms in the chunk using an
-internal "thermal" velocity for each atom, which is its velocity minus
-the center-of-mass velocity of the chunk.
-
-
-----------
-
-
-Note that currently the global and per-chunk temperatures calculated
-by this compute only include translational degrees of freedom for each
-atom. No rotational degrees of freedom are included for finite-size
-particles. Also no degrees of freedom are subtracted for any velocity
-bias or constraints that are applied, such as :doc:`compute temp/partial <compute_temp_partial>`, or :doc:`fix shake <fix_shake>`
-or :doc:`fix rigid <fix_rigid>`. This is because those degrees of
-freedom (e.g. a constrained bond) could apply to sets of atoms that
-are both included and excluded from a specific chunk, and hence the
-concept is somewhat ill-defined. In some cases, you can use the
-*adof* and *cdof* keywords to adjust the calculated degress of freedom
-appropriately, as explained below.
-
-Note that the per-chunk temperature calulated by this compute and the
-:doc:`fix ave/chunk temp <fix_ave_chunk>` command can be different.
-This compute calculates the temperature for each chunk for a single
-snapshot. Fix ave/chunk can do that but can also time average those
-values over many snapshots, or it can compute a temperature as if the
-atoms in the chunk on different timesteps were collected together as
-one set of atoms to calculate their temperature. This compute allows
-the center-of-mass velocity of each chunk to be subtracted before
-calculating the temperature; fix ave/chunk does not.
-
-.. note::
-
- Only atoms in the specified group contribute to the calculations
- performed by this compute. The :doc:`compute chunk/atom <compute_chunk_atom>` command defines its own group;
- atoms will have a chunk ID = 0 if they are not in that group,
- signifying they are not assigned to a chunk, and will thus also not
- contribute to this calculation. You can specify the "all" group for
- this command if you simply want to include atoms with non-zero chunk
- IDs.
-
-The simplest way to output the per-chunk results of the compute
-temp/chunk calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>` command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all temp/chunk cc1 temp
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-
-----------
-
-
-The keyword/value option pairs are used in the following ways.
-
-The *com* keyword can be used with a value of *yes* to subtract the
-velocity of the center-of-mass for each chunk from the velocity of the
-atoms in that chunk, before calculating either the global or per-chunk
-temperature. This can be useful if the atoms are streaming or
-otherwise moving collectively, and you wish to calculate only the
-thermal temperature.
-
-For the *bias* keyword, *bias-ID* refers to the ID of a temperature
-compute that removes a "bias" velocity from each atom. This also
-allows calculation of the global or per-chunk temperature using only
-the thermal temperature of atoms in each chunk after the translational
-kinetic energy components have been altered in a prescribed way,
-e.g. to remove a velocity profile. It also applies to the calculation
-of the other per-chunk values, such as *kecom* or *internal*, which
-involve the center-of-mass velocity of each chunk, which is calculated
-after the velocity bias is removed from each atom. Note that the
-temperature compute will apply its bias globally to the entire system,
-not on a per-chunk basis.
-
-The *adof* and *cdof* keywords define the values used in the degree of
-freedom (DOF) formulas used for the global or per-chunk temperature,
-as described above. They can be used to calculate a more appropriate
-temperature for some kinds of chunks. Here are 3 examples:
-
-If spatially binned chunks contain some number of water molecules and
-:doc:`fix shake <fix_shake>` is used to make each molecule rigid, then
-you could calculate a temperature with 6 degrees of freedom (DOF) (3
-translational, 3 rotational) per molecule by setting *adof* to 2.0.
-
-If :doc:`compute temp/partial <compute_temp_partial>` is used with the
-*bias* keyword to only allow the x component of velocity to contribute
-to the temperature, then *adof* = 1.0 would be appropriate.
-
-If each chunk consists of a large molecule, with some number of its
-bonds constrained by :doc:`fix shake <fix_shake>` or the entire molecule
-by :doc:`fix rigid/small <fix_rigid>`, *adof* = 0.0 and *cdof* could be
-set to the remaining degrees of freedom for the entire molecule
-(entire chunk in this case), e.g. 6 for 3d, or 3 for 2d, for a rigid
-molecule.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-This compute also optionally calculates a global array, if one or more
-of the optional values are specified. The number of rows in the array
-= the number of chunks *Nchunk* as calculated by the specified
-:doc:`compute chunk/atom <compute_chunk_atom>` command. The number of
-columns is the number of specifed values (1 or more). These values
-can be accessed by any command that uses global array values from a
-compute as input. Again, see :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive". The array values are "intensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`. The array values
-will be in temperature :doc:`units <units>` for the *temp* value, and in
-energy :doc:`units <units>` for the *kecom* and *internal* values.
-
-Restrictions
-""""""""""""
-
-
-The *com* and *bias* keywords cannot be used together.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`fix ave/chunk temp <fix_ave_chunk>`
-
-Default
-"""""""
-
-The option defaults are com no, no bias, adof = dimensionality of the
-system (2 or 3), and cdof = 0.0.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_com.txt b/doc/_sources/compute_temp_com.txt
deleted file mode 100644
index 63fef44bc..000000000
--- a/doc/_sources/compute_temp_com.txt
+++ /dev/null
@@ -1,98 +0,0 @@
-.. index:: compute temp/com
-
-compute temp/com command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/com
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/com = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all temp/com
- compute myTemp mobile temp/com
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms, after subtracting out the center-of-mass velocity of the group.
-This is useful if the group is expected to have a non-zero net
-velocity for some reason. A compute of this style can be used by any
-command that computes a temperature,
-e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-After the center-of-mass velocity has been subtracted from each atom,
-the temperature is calculated by the formula KE = dim/2 N k T, where
-KE = total kinetic energy of the group of atoms (sum of 1/2 m v^2),
-dim = 2 or 3 = dimensionality of the simulation, N = number of atoms
-in the group, k = Boltzmann constant, and T = temperature.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-The removal of the center-of-mass velocity by this fix is essentially
-computing the temperature after a "bias" has been removed from the
-velocity of the atoms. If this compute is used with a fix command
-that performs thermostatting then this bias will be subtracted from
-each atom, thermostatting of the remaining thermal velocity will be
-performed, and the bias will be added back in. Thermostatting fixes
-that work in this way include :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_cs.txt b/doc/_sources/compute_temp_cs.txt
deleted file mode 100644
index c9eeedf0d..000000000
--- a/doc/_sources/compute_temp_cs.txt
+++ /dev/null
@@ -1,128 +0,0 @@
-.. index:: compute temp/cs
-
-compute temp/cs command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/cs group1 group2
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/cs = style name of this compute command
-* group1 = group-ID of either cores or shells
-* group2 = group-ID of either shells or cores
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute oxygen_c-s all temp/cs O_core O_shell
- compute core_shells all temp/cs cores shells
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a system based
-on the center-of-mass velocity of atom pairs that are bonded to each
-other. This compute is designed to be used with the adiabatic
-core/shell model of :ref:`(Mitchell and Finchham) <MitchellFinchham>`. See
-:ref:`Section_howto 25 <howto_25>` of the manual for an
-overview of the model as implemented in LAMMPS. Specifically, this
-compute enables correct temperature calculation and thermostatting of
-core/shell pairs where it is desirable for the internal degrees of
-freedom of the core/shell pairs to not be influenced by a thermostat.
-A compute of this style can be used by any command that computes a
-temperature via :doc:`fix_modify <fix_modify>` e.g. :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-Note that this compute does not require all ions to be polarized,
-hence defined as core/shell pairs. One can mix core/shell pairs and
-ions without a satellite particle if desired. The compute will
-consider the non-polarized ions according to the physical system.
-
-For this compute, core and shell particles are specified by two
-respective group IDs, which can be defined using the
-:doc:`group <group>` command. The number of atoms in the two groups
-must be the same and there should be one bond defined between a pair
-of atoms in the two groups. Non-polarized ions which might also be
-included in the treated system should not be included into either of
-these groups, they are taken into account by the *group-ID* (2nd
-argument) of the compute.
-
-The temperature is calculated by the formula KE = dim/2 N k T, where
-KE = total kinetic energy of the group of atoms (sum of 1/2 m v^2),
-dim = 2 or 3 = dimensionality of the simulation, N = number of atoms
-in the group, k = Boltzmann constant, and T = temperature. Note that
-the velocity of each core or shell atom used in the KE calculation is
-the velocity of the center-of-mass (COM) of the core/shell pair the
-atom is part of.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz. In contrast to the temperature, the velocity of
-each core or shell atom is taken individually.
-
-The change this fix makes to core/shell atom velocities is essentially
-computing the temperature after a "bias" has been removed from the
-velocity of the atoms. This "bias" is the velocity of the atom
-relative to the COM velocity of the core/shell pair. If this compute
-is used with a fix command that performs thermostatting then this bias
-will be subtracted from each atom, thermostatting of the remaining COM
-velocity will be performed, and the bias will be added back in. This
-means the thermostating will effectively be performed on the
-core/shell pairs, instead of on the individual core and shell atoms.
-Thermostatting fixes that work in this way include :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`.
-
-The internal energy of core/shell pairs can be calculated by the
-:doc:`compute temp/chunk <compute_temp_chunk>` command, if chunks are
-defined as core/shell pairs. See :ref:`Section_howto 25 <howto_25>` for more discussion on how to do this.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-The number of core/shell pairs contributing to the temperature is
-assumed to be constant for the duration of the run. No fixes should
-be used which generate new molecules or atoms during a simulation.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute temp/chunk <compute_temp_chunk>`
-
-**Default:** none
-
-
-----------
-
-
-.. _MitchellFinchham:
-
-
-
-**(Mitchell and Finchham)** Mitchell, Finchham, J Phys Condensed Matter,
-5, 1031-1038 (1993).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_deform.txt b/doc/_sources/compute_temp_deform.txt
deleted file mode 100644
index 54eb1dba7..000000000
--- a/doc/_sources/compute_temp_deform.txt
+++ /dev/null
@@ -1,140 +0,0 @@
-.. index:: compute temp/deform
-
-compute temp/deform command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/deform
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/deform = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute myTemp all temp/deform
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms, after subtracting out a streaming velocity induced by the
-simulation box changing size and/or shape, for example in a
-non-equilibrium MD (NEMD) simulation. The size/shape change is
-induced by use of the :doc:`fix deform <fix_deform>` command. A compute
-of this style is created by the :doc:`fix nvt/sllod <fix_nvt_sllod>`
-command to compute the thermal temperature of atoms for thermostatting
-purposes. A compute of this style can also be used by any command
-that computes a temperature, e.g. :doc:`thermo_modify <thermo_modify>`,
-:doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-The deformation fix changes the box size and/or shape over time, so
-each atom in the simulation box can be thought of as having a
-"streaming" velocity. For example, if the box is being sheared in x,
-relative to y, then atoms at the bottom of the box (low y) have a
-small x velocity, while atoms at the top of the box (hi y) have a
-large x velocity. This position-dependent streaming velocity is
-subtracted from each atom's actual velocity to yield a thermal
-velocity which is used to compute the temperature.
-
-.. note::
-
- :doc:`Fix deform <fix_deform>` has an option for remapping either
- atom coordinates or velocities to the changing simulation box. When
- using this compute in conjunction with a deforming box, fix deform
- should NOT remap atom positions, but rather should let atoms respond
- to the changing box by adjusting their own velocities (or let :doc:`fix deform <fix_deform>` remap the atom velocities, see it's remap
- option). If fix deform does remap atom positions, then they appear to
- move with the box but their velocity is not changed, and thus they do
- NOT have the streaming velocity assumed by this compute. LAMMPS will
- warn you if fix deform is defined and its remap setting is not
- consistent with this compute.
-
-After the streaming velocity has been subtracted from each atom, the
-temperature is calculated by the formula KE = dim/2 N k T, where KE =
-total kinetic energy of the group of atoms (sum of 1/2 m v^2), dim = 2
-or 3 = dimensionality of the simulation, N = number of atoms in the
-group, k = Boltzmann constant, and T = temperature. Note that v in
-the kinetic energy formula is the atom's thermal velocity.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-The removal of the box deformation velocity component by this fix is
-essentially computing the temperature after a "bias" has been removed
-from the velocity of the atoms. If this compute is used with a fix
-command that performs thermostatting then this bias will be subtracted
-from each atom, thermostatting of the remaining thermal velocity will
-be performed, and the bias will be added back in. Thermostatting
-fixes that work in this way include :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`.
-
-.. note::
-
- The temperature calculated by this compute is only accurate if
- the atoms are indeed moving with a stream velocity profile that
- matches the box deformation. If not, then the compute will subtract
- off an incorrect stream velocity, yielding a bogus thermal
- temperature. You should NOT assume that your atoms are streaming at
- the same rate the box is deforming. Rather, you should monitor their
- velocity profile, e.g. via the :doc:`fix ave/spatial <fix_ave_spatial>`
- command. And you can compare the results of this compute to :doc:`compute temp/profile <compute_temp_profile>`, which actually calculates the
- stream profile before subtracting it. If the two computes do not give
- roughly the same temperature, then your atoms are not streaming
- consistent with the box deformation. See the :doc:`fix deform <fix_deform>` command for more details on ways to get atoms
- to stream consistently with the box deformation.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp/ramp <compute_temp_ramp>`, :doc:`compute temp/profile <compute_temp_profile>`, :doc:`fix deform <fix_deform>`,
-:doc:`fix nvt/sllod <fix_nvt_sllod>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_deform_eff.txt b/doc/_sources/compute_temp_deform_eff.txt
deleted file mode 100644
index 5eaa0c4c0..000000000
--- a/doc/_sources/compute_temp_deform_eff.txt
+++ /dev/null
@@ -1,77 +0,0 @@
-.. index:: compute temp/deform/eff
-
-compute temp/deform/eff command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/deform/eff
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/deform/eff = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute myTemp all temp/deform/eff
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-nuclei and electrons in the :doc:`electron force field <pair_eff>`
-model, after subtracting out a streaming velocity induced by the
-simulation box changing size and/or shape, for example in a
-non-equilibrium MD (NEMD) simulation. The size/shape change is
-induced by use of the :doc:`fix deform/eff <fix_deform_eff>` command. A
-compute of this style is created by the :doc:`fix nvt/sllod/eff <fix_nvt_sllod_eff>` command to compute the thermal
-temperature of atoms for thermostatting purposes. A compute of this
-style can also be used by any command that computes a temperature,
-e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix npt/eff <fix_nh>`,
-etc.
-
-The calculation performed by this compute is exactly like that
-described by the :doc:`compute temp/deform <compute_temp_deform>`
-command, except that the formula for the temperature includes the
-radial electron velocity contributions, as discussed by the :doc:`compute temp/eff <compute_temp_eff>` command. Note that only the
-translational degrees of freedom for each nuclei or electron are
-affected by the streaming velocity adjustment. The radial velocity
-component of the electrons is not affected.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp/ramp <compute_temp_ramp>`, :doc:`fix deform/eff <fix_deform_eff>`, :doc:`fix nvt/sllod/eff <fix_nvt_sllod_eff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_drude.txt b/doc/_sources/compute_temp_drude.txt
deleted file mode 100644
index 24a911d32..000000000
--- a/doc/_sources/compute_temp_drude.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-.. index:: compute temp/drude
-
-compute temp/drude command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/drude
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/drude = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute TDRUDE all temp/drude
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperatures of core-Drude
-pairs. This compute is designed to be used with the
-:doc:`thermalized Drude oscillator model <tutorial_drude>`. Polarizable
-models in LAMMPS are described in :ref:`this Section <howto_25>`.
-
-Drude oscillators consist of a core particle and a Drude particle
-connected by a harmonic bond, and the relative motion of these Drude
-oscillators is usually maintained cold by a specific thermostat that
-acts on the relative motion of the core-Drude particle
-pairs. Therefore, because LAMMPS considers Drude particles as normal
-atoms in its default temperature compute (:doc:`compute temp <compute_temp>` command), the reduced temperature of the
-core-Drude particle pairs is not calculated correctly.
-
-By contrast, this compute calculates the temperature of the cores
-using center-of-mass velocities of the core-Drude pairs, and the
-reduced temperature of the Drude particles using the relative
-velocities of the Drude particles with respect to their cores.
-Non-polarizable atoms are considered as cores. Their velocities
-contribute to the temperature of the cores.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6, which can be accessed by indices 1-6, whose components
-are
-
-1. temperature of the centers of mass (temperature units)
-2. temperature of the dipoles (temperature units)
-3. number of degrees of freedom of the centers of mass
-4. number of degrees of freedom of the dipoles
-5. kinetic energy of the centers of mass (energy units)
-6. kinetic energy of the dipoles (energy units)
-
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-Both the scalar value and the first two values of the vector
-calculated by this compute are "intensive". The other 4 vector values
-are "extensive".
-
-Restrictions
-""""""""""""
-
-
-The number of degrees of freedom contributing to the temperature is
-assumed to be constant for the duration of the run unless the
-*fix_modify* command sets the option *dynamic yes*.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix drude <fix_drude>`, :doc:`fix langevin/drude <fix_langevin_drude>`, :doc:`fix drude/transform <fix_drude_transform>`, :doc:`pair_style thole <pair_thole>`, :doc:`compute temp <compute_temp>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_eff.txt b/doc/_sources/compute_temp_eff.txt
deleted file mode 100644
index 81ba026c1..000000000
--- a/doc/_sources/compute_temp_eff.txt
+++ /dev/null
@@ -1,105 +0,0 @@
-.. index:: compute temp/eff
-
-compute temp/eff command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/eff
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/eff = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all temp/eff
- compute myTemp mobile temp/eff
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-nuclei and electrons in the :doc:`electron force field <pair_eff>`
-model. A compute of this style can be used by commands that compute a
-temperature, e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix npt/eff <fix_npt_eff>`, etc.
-
-The temperature is calculated by the formula KE = dim/2 N k T, where
-KE = total kinetic energy of the group of atoms (sum of 1/2 m v^2 for
-nuclei and sum of 1/2 (m v^2 + 3/4 m s^2) for electrons, where s
-includes the radial electron velocity contributions), dim = 2 or 3 =
-dimensionality of the simulation, N = number of atoms (only total
-number of nuclei in the eFF (see the :doc:`pair_eff <pair_style>`
-command) in the group, k = Boltzmann constant, and T = temperature.
-This expression is summed over all nuclear and electronic degrees of
-freedom, essentially by setting the kinetic contribution to the heat
-capacity to 3/2k (where only nuclei contribute). This subtlety is
-valid for temperatures well below the Fermi temperature, which for
-densities two to five times the density of liquid H2 ranges from
-86,000 to 170,000 K.
-
-.. note::
-
- For eFF models, in order to override the default temperature
- reported by LAMMPS in the thermodynamic quantities reported via the
- :doc:`thermo <thermo>` command, the user should apply a
- :doc:`thermo_modify <thermo_modify>` command, as shown in the following
- example:
-
-.. parsed-literal::
-
- compute effTemp all temp/eff
- thermo_style custom step etotal pe ke temp press
- thermo_modify temp effTemp
-
-A 6-component kinetic energy tensor is also calculated by this compute
-for use in the computation of a pressure tensor. The formula for the
-components of the tensor is the same as the above formula, except that
-v^2 is replaced by vx * vy for the xy component, etc. For the eFF,
-again, the radial electronic velocities are also considered.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-**Output info:**
-
-The scalar value calculated by this compute is "intensive", meaning it
-is independent of the number of atoms in the simulation. The vector
-values are "extensive", meaning they scale with the number of atoms in
-the simulation.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp/partial <compute_temp_partial>`, :doc:`compute temp/region <compute_temp_region>`, :doc:`compute pressure <compute_pressure>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_partial.txt b/doc/_sources/compute_temp_partial.txt
deleted file mode 100644
index 269ddcc80..000000000
--- a/doc/_sources/compute_temp_partial.txt
+++ /dev/null
@@ -1,128 +0,0 @@
-.. index:: compute temp/partial
-
-compute temp/partial command
-============================
-
-compute temp/partial/cuda command
-=================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/partial xflag yflag zflag
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/partial = style name of this compute command
-* xflag,yflag,zflag = 0/1 for whether to exclude/include this dimension
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute newT flow temp/partial 1 1 0
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms, after excluding one or more velocity components. A compute of
-this style can be used by any command that computes a temperature,
-e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-The temperature is calculated by the formula KE = dim/2 N k T, where
-KE = total kinetic energy of the group of atoms (sum of 1/2 m v^2),
-dim = dimensionality of the simulation, N = number of atoms in the
-group, k = Boltzmann constant, and T = temperature. The calculation
-of KE excludes the x, y, or z dimensions if xflag, yflag, or zflag =
-0. The dim parameter is adjusted to give the correct number of
-degrees of freedom.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the calculation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-The removal of velocity components by this fix is essentially
-computing the temperature after a "bias" has been removed from the
-velocity of the atoms. If this compute is used with a fix command
-that performs thermostatting then this bias will be subtracted from
-each atom, thermostatting of the remaining thermal velocity will be
-performed, and the bias will be added back in. Thermostatting fixes
-that work in this way include :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute temp/region <compute_temp_region>`, :doc:`compute pressure <compute_pressure>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_profile.txt b/doc/_sources/compute_temp_profile.txt
deleted file mode 100644
index 788774592..000000000
--- a/doc/_sources/compute_temp_profile.txt
+++ /dev/null
@@ -1,198 +0,0 @@
-.. index:: compute temp/profile
-
-compute temp/profile command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/profile xflag yflag zflag binstyle args
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/profile = style name of this compute command
-* xflag,yflag,zflag = 0/1 for whether to exclude/include this dimension
-* binstyle = *x* or *y* or *z* or *xy* or *yz* or *xz* or *xyz*
-.. parsed-literal::
-
- *x* arg = Nx
- *y* arg = Ny
- *z* arg = Nz
- *xy* args = Nx Ny
- *yz* args = Ny Nz
- *xz* args = Nx Nz
- *xyz* args = Nx Ny Nz
- Nx,Ny,Nz = number of velocity bins in x,y,z dimensions
-
-* zero or more keyword/value pairs may be appended
-* keyword = *out*
-.. parsed-literal::
-
- *out* value = *tensor* or *bin*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute myTemp flow temp/profile 1 1 1 x 10
- compute myTemp flow temp/profile 1 1 1 x 10 out bin
- compute myTemp flow temp/profile 0 1 1 xyz 20 20 20
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms, after subtracting out a spatially-averaged center-of-mass
-velocity field, before computing the kinetic energy. This can be
-useful for thermostatting a collection of atoms undergoing a complex
-flow, e.g. via a profile-unbiased thermostat (PUT) as described in
-:ref:`(Evans) <Evans>`. A compute of this style can be used by any command
-that computes a temperature, e.g. :doc:`thermo_modify <thermo_modify>`,
-:doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-The *xflag*, *yflag*, *zflag* settings determine which components of
-average velocity are subtracted out.
-
-The *binstyle* setting and its *Nx*, *Ny*, *Nz* arguments determine
-how bins are setup to perform spatial averaging. "Bins" can be 1d
-slabs, 2d pencils, or 3d bricks depending on which *binstyle* is used.
-The simulation box is partitioned conceptually into *Nx* by *Ny* by
-*Nz* bins. Depending on the *binstyle*, you may only specify one or
-two of these values; the others are effectively set to 1 (no binning
-in that dimension). For non-orthogonal (triclinic) simulation boxes,
-the bins are "tilted" slabs or pencils or bricks that are parallel to
-the tilted faces of the box. See the :doc:`region prism <region>`
-command for a discussion of the geometry of tilted boxes in LAMMPS.
-
-When a temperature is computed, the center-of-mass velocity for the
-set of atoms that are both in the compute group and in the same
-spatial bin is calculated. This bias velocity is then subtracted from
-the velocities of individual atoms in the bin to yield a thermal
-velocity for each atom. Note that if there is only one atom in the
-bin, its thermal velocity will thus be 0.0.
-
-After the spatially-averaged velocity field has been subtracted from
-each atom, the temperature is calculated by the formula KE = (dim/2 N
-- dim*Nx*Ny*Nz) k T, where KE = total kinetic energy of the group of
-atoms (sum of 1/2 m v^2), dim = 2 or 3 = dimensionality of the
-simulation, N = number of atoms in the group, k = Boltzmann constant,
-and T = temperature. The dim*Nx*Ny*Nz term are degrees of freedom
-subtracted to adjust for the removal of the center-of-mass velocity in
-each of Nx*Ny*Nz bins, as discussed in the :ref:`(Evans) <Evans>` paper.
-
-If the *out* keyword is used with a *tensor* value, which is the
-default, a kinetic energy tensor, stored as a 6-element vector, is
-also calculated by this compute for use in the computation of a
-pressure tensor. The formula for the components of the tensor is the
-same as the above formula, except that v^2 is replaced by vx*vy for
-the xy component, etc. The 6 components of the vector are ordered xx,
-yy, zz, xy, xz, yz.
-
-If the *out* keyword is used with a *bin* value, the count of atoms
-and computed temperature for each bin are stored for output, as an
-array of values, as described below. The temperature of each bin is
-calculated as described above, where the bias velocity is subtracted
-and only the remaining thermal velocity of atoms in the bin
-contributes to the temperature. See the note below for how the
-temperature is normalized by the degrees-of-freedom of atoms in the
-bin.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-The removal of the spatially-averaged velocity field by this fix is
-essentially computing the temperature after a "bias" has been removed
-from the velocity of the atoms. If this compute is used with a fix
-command that performs thermostatting then this bias will be subtracted
-from each atom, thermostatting of the remaining thermal velocity will
-be performed, and the bias will be added back in. Thermostatting
-fixes that work in this way include :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-.. note::
-
- When using the *out* keyword with a value of *bin*, the
- calculated temperature for each bin does not include the
- degrees-of-freedom adjustment described in the preceeding paragraph,
- for fixes that constrain molecular motion. It does include the
- adjustment due to the *extra* option, which is applied to each bin.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting. Using this compute in conjunction with a
-thermostatting fix, as explained there, will effectively implement a
-profile-unbiased thermostat (PUT), as described in :ref:`(Evans) <Evans>`.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature). Depending
-on the setting of the *out* keyword, it also calculates a global
-vector or array. For *out* = *tensor*, it calculates a vector of
-length 6 (KE tensor), which can be accessed by indices 1-6. For *out*
-= *bin* it calculates a global array which has 2 columns and N rows,
-where N is the number of bins. The first column contains the number
-of atoms in that bin. The second contains the temperature of that
-bin, calculated as described above. The ordering of rows in the array
-is as follows. Bins in x vary fastest, then y, then z. Thus for a
-10x10x10 3d array of bins, there will be 1000 rows. The bin with
-indices ix,iy,iz = 2,3,4 would map to row M = (iz-1)*10*10 + (iy-1)*10
-+ ix = 322, where the rows are numbered from 1 to 1000 and the bin
-indices are numbered from 1 to 10 in each dimension.
-
-These values can be used by any command that uses global scalar or
-vector or array values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive". The array values are "intensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`. The first column
-of array values are counts; the values in the second column will be in
-temperature :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-You should not use too large a velocity-binning grid, especially in
-3d. In the current implementation, the binned velocity averages are
-summed across all processors, so this will be inefficient if the grid
-is too large, and the operation is performed every timestep, as it
-will be for most thermostats.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute temp/ramp <compute_temp_ramp>`, :doc:`compute temp/deform <compute_temp_deform>`, :doc:`compute pressure <compute_pressure>`
-
-Default
-"""""""
-
-The option default is out = tensor.
-
-
-----------
-
-
-.. _Evans:
-
-
-
-**(Evans)** Evans and Morriss, Phys Rev Lett, 56, 2172-2175 (1986).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_ramp.txt b/doc/_sources/compute_temp_ramp.txt
deleted file mode 100644
index 1f0a09cbd..000000000
--- a/doc/_sources/compute_temp_ramp.txt
+++ /dev/null
@@ -1,122 +0,0 @@
-.. index:: compute temp/ramp
-
-compute temp/ramp command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/ramp vdim vlo vhi dim clo chi keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/ramp = style name of this compute command
-* vdim = *vx* or *vy* or *vz*
-* vlo,vhi = subtract velocities between vlo and vhi (velocity units)
-* dim = *x* or *y* or *z*
-* clo,chi = lower and upper bound of domain to subtract from (distance units)
-* zero or more keyword/value pairs may be appended
-* keyword = *units*
-
-.. parsed-literal::
-
- *units* value = *lattice* or *box*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 2nd middle temp/ramp vx 0 8 y 2 12 units lattice
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms, after subtracting out an ramped velocity profile before
-computing the kinetic energy. A compute of this style can be used by
-any command that computes a temperature,
-e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-The meaning of the arguments for this command which define the
-velocity ramp are the same as for the :doc:`velocity ramp <velocity>`
-command which was presumably used to impose the velocity.
-
-After the ramp velocity has been subtracted from the specified
-dimension for each atom, the temperature is calculated by the formula
-KE = dim/2 N k T, where KE = total kinetic energy of the group of
-atoms (sum of 1/2 m v^2), dim = 2 or 3 = dimensionality of the
-simulation, N = number of atoms in the group, k = Boltzmann constant,
-and T = temperature.
-
-The *units* keyword determines the meaning of the distance units used
-for coordinates (c1,c2) and velocities (vlo,vhi). A *box* value
-selects standard distance units as defined by the :doc:`units <units>`
-command, e.g. Angstroms for units = real or metal. A *lattice* value
-means the distance units are in lattice spacings; e.g. velocity =
-lattice spacings / tau. The :doc:`lattice <lattice>` command must have
-been previously used to define the lattice spacing.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-The removal of the ramped velocity component by this fix is
-essentially computing the temperature after a "bias" has been removed
-from the velocity of the atoms. If this compute is used with a fix
-command that performs thermostatting then this bias will be subtracted
-from each atom, thermostatting of the remaining thermal velocity will
-be performed, and the bias will be added back in. Thermostatting
-fixes that work in this way include :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute temp/profie <compute_temp_profile>`, :doc:`compute temp/deform <compute_temp_deform>`, :doc:`compute pressure <compute_pressure>`
-
-Default
-"""""""
-
-The option default is units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_region.txt b/doc/_sources/compute_temp_region.txt
deleted file mode 100644
index 6a0921363..000000000
--- a/doc/_sources/compute_temp_region.txt
+++ /dev/null
@@ -1,112 +0,0 @@
-.. index:: compute temp/region
-
-compute temp/region command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/region region-ID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/region = style name of this compute command
-* region-ID = ID of region to use for choosing atoms
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute mine flow temp/region boundary
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms in a geometric region. This can be useful for thermostatting
-one portion of the simulation box. E.g. a McDLT simulation where one
-side is cooled, and the other side is heated. A compute of this style
-can be used by any command that computes a temperature,
-e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix temp/rescale <fix_temp_rescale>`, etc.
-
-Note that a *region*-style temperature can be used to thermostat with
-:doc:`fix temp/rescale <fix_temp_rescale>` or :doc:`fix langevin <fix_langevin>`, but should probably not be used with
-Nose/Hoover style fixes (:doc:`fix nvt <fix_nh>`, :doc:`fix npt <fix_nh>`, or :doc:`fix nph <fix_nh>`), if the
-degrees-of-freedom included in the computed T varies with time.
-
-The temperature is calculated by the formula KE = dim/2 N k T, where
-KE = total kinetic energy of the group of atoms (sum of 1/2 m v^2),
-dim = 2 or 3 = dimensionality of the simulation, N = number of atoms
-in both the group and region, k = Boltzmann constant, and T =
-temperature.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is calculated each
-time the temperature is evaluated since it is assumed atoms can
-enter/leave the region. Thus there is no need to use the *dynamic*
-option of the :doc:`compute_modify <compute_modify>` command for this
-compute style.
-
-The removal of atoms outside the region by this fix is essentially
-computing the temperature after a "bias" has been removed, which in
-this case is the velocity of any atoms outside the region. If this
-compute is used with a fix command that performs thermostatting then
-this bias will be subtracted from each atom, thermostatting of the
-remaining thermal velocity will be performed, and the bias will be
-added back in. Thermostatting fixes that work in this way include
-:doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`. This means that when this compute
-is used to calculate the temperature for any of the thermostatting
-fixes via the :doc:`fix modify temp <fix_modify>` command, the thermostat
-will operate only on atoms that are currently in the geometric
-region.
-
-Unlike other compute styles that calculate temperature, this compute
-does not subtract out degrees-of-freedom due to fixes that constrain
-motion, such as :doc:`fix shake <fix_shake>` and :doc:`fix rigid <fix_rigid>`. This is because those degrees of freedom
-(e.g. a constrained bond) could apply to sets of atoms that straddle
-the region boundary, and hence the concept is somewhat ill-defined.
-If needed the number of subtracted degrees-of-freedom can be set
-explicitly using the *extra* option of the
-:doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute pressure <compute_pressure>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_region_eff.txt b/doc/_sources/compute_temp_region_eff.txt
deleted file mode 100644
index d0a0bac43..000000000
--- a/doc/_sources/compute_temp_region_eff.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-.. index:: compute temp/region/eff
-
-compute temp/region/eff command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/region/eff region-ID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/region/eff = style name of this compute command
-* region-ID = ID of region to use for choosing atoms
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute mine flow temp/region/eff boundary
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-nuclei and electrons in the :doc:`electron force field <pair_eff>`
-model, within a geometric region using the electron force field. A
-compute of this style can be used by commands that compute a
-temperature, e.g. :doc:`thermo_modify <thermo_modify>`.
-
-The operation of this compute is exactly like that described by the
-:doc:`compute temp/region <compute_temp_region>` command, except that
-the formula for the temperature itself includes the radial electron
-velocity contributions, as discussed by the :doc:`compute temp/eff <compute_temp_eff>` command.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp/region <compute_temp_region>`, :doc:`compute temp/eff <compute_temp_eff>`, :doc:`compute pressure <compute_pressure>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_rotate.txt b/doc/_sources/compute_temp_rotate.txt
deleted file mode 100644
index 65803d96d..000000000
--- a/doc/_sources/compute_temp_rotate.txt
+++ /dev/null
@@ -1,100 +0,0 @@
-.. index:: compute temp/rotate
-
-compute temp/rotate command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/rotate
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/rotate = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute Tbead bead temp/rotate
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-atoms, after subtracting out the center-of-mass velocity and angular velocity of the group.
-This is useful if the group is expected to have a non-zero net
-velocity and/or global rotation motion for some reason. A compute of this style can be used by any
-command that computes a temperature,
-e.g. :doc:`thermo_modify <thermo_modify>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix npt <fix_nh>`, etc.
-
-After the center-of-mass velocity and angular velocity has been subtracted from each atom,
-the temperature is calculated by the formula KE = dim/2 N k T, where
-KE = total kinetic energy of the group of atoms (sum of 1/2 m v^2),
-dim = 2 or 3 = dimensionality of the simulation, N = number of atoms
-in the group, k = Boltzmann constant, and T = temperature.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute for use in the computation of a pressure
-tensor. The formula for the components of the tensor is the same as
-the above formula, except that v^2 is replaced by vx*vy for the xy
-component, etc. The 6 components of the vector are ordered xx, yy,
-zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-The removal of the center-of-mass velocity and angular velocity by this fix is essentially
-computing the temperature after a "bias" has been removed from the
-velocity of the atoms. If this compute is used with a fix command
-that performs thermostatting then this bias will be subtracted from
-each atom, thermostatting of the remaining thermal velocity will be
-performed, and the bias will be added back in. Thermostatting fixes
-that work in this way include :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`, and :doc:`fix langevin <fix_langevin>`.
-
-This compute subtracts out degrees-of-freedom due to fixes that
-constrain molecular motion, such as :doc:`fix shake <fix_shake>` and
-:doc:`fix rigid <fix_rigid>`. This means the temperature of groups of
-atoms that include these constraints will be computed correctly. If
-needed, the subtracted degrees-of-freedom can be altered using the
-*extra* option of the :doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_temp_sphere.txt b/doc/_sources/compute_temp_sphere.txt
deleted file mode 100644
index d95d17b88..000000000
--- a/doc/_sources/compute_temp_sphere.txt
+++ /dev/null
@@ -1,156 +0,0 @@
-.. index:: compute temp/sphere
-
-compute temp/sphere command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID temp/sphere keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* temp/sphere = style name of this compute command
-* zero or more keyword/value pairs may be appended
-* keyword = *bias* or *dof*
-.. parsed-literal::
-
- *bias* value = bias-ID
- bias-ID = ID of a temperature compute that removes a velocity bias
- *dof* value = *all* or *rotate*
- all = compute temperature of translational and rotational degrees of freedom
- rotate = compute temperature of just rotational degrees of freedom
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all temp/sphere
- compute myTemp mobile temp/sphere bias tempCOM
- compute myTemp mobile temp/sphere dof rotate
-
-Description
-"""""""""""
-
-Define a computation that calculates the temperature of a group of
-spherical particles, including a contribution from both their
-translational and rotational kinetic energy. This differs from the
-usual :doc:`compute temp <compute_temp>` command, which assumes point
-particles with only translational kinetic energy.
-
-Both point and finite-size particles can be included in the group.
-Point particles do not rotate, so they have only 3 translational
-degrees of freedom. For 3d spherical particles, each has 6 degrees of
-freedom (3 translational, 3 rotational). For 2d spherical particles,
-each has 3 degrees of freedom (2 translational, 1 rotational).
-
-.. note::
-
- This choice for degrees of freedom (dof) assumes that all
- finite-size spherical particles in your model will freely rotate,
- sampling all their rotational dof. It is possible to use a
- combination of interaction potentials and fixes that induce no torque
- or otherwise constrain some of all of your particles so that this is
- not the case. Then there are less dof and you should use the
- :doc:`compute_modify extra <compute_modify>` command to adjust the dof
- accordingly.
-
-The translational kinetic energy is computed the same as is described
-by the :doc:`compute temp <compute_temp>` command. The rotational
-kinetic energy is computed as 1/2 I w^2, where I is the moment of
-inertia for a sphere and w is the particle's angular velocity.
-
-.. note::
-
- For :doc:`2d models <dimension>`, particles are treated as
- spheres, not disks, meaning their moment of inertia will be the same
- as in 3d.
-
-A kinetic energy tensor, stored as a 6-element vector, is also
-calculated by this compute. The formula for the components of the
-tensor is the same as the above formulas, except that v^2 and w^2 are
-replaced by vx*vy and wx*wy for the xy component. The 6 components of
-the vector are ordered xx, yy, zz, xy, xz, yz.
-
-The number of atoms contributing to the temperature is assumed to be
-constant for the duration of the run; use the *dynamic* option of the
-:doc:`compute_modify <compute_modify>` command if this is not the case.
-
-This compute subtracts out translational degrees-of-freedom due to
-fixes that constrain molecular motion, such as :doc:`fix shake <fix_shake>` and :doc:`fix rigid <fix_rigid>`. This means the
-temperature of groups of atoms that include these constraints will be
-computed correctly. If needed, the subtracted degrees-of-freedom can
-be altered using the *extra* option of the
-:doc:`compute_modify <compute_modify>` command.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-
-----------
-
-
-The keyword/value option pairs are used in the following ways.
-
-For the *bias* keyword, *bias-ID* refers to the ID of a temperature
-compute that removes a "bias" velocity from each atom. This allows
-compute temp/sphere to compute its thermal temperature after the
-translational kinetic energy components have been altered in a
-prescribed way, e.g. to remove a flow velocity profile. Thermostats
-that use this compute will work with this bias term. See the doc
-pages for individual computes that calculate a temperature and the doc
-pages for fixes that perform thermostatting for more details.
-
-For the *dof* keyword, a setting of *all* calculates a temperature
-that includes both translational and rotational degrees of freedom. A
-setting of *rotate* calculates a temperature that includes only
-rotational degrees of freedom.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar (the temperature) and a global
-vector of length 6 (KE tensor), which can be accessed by indices 1-6.
-These values can be used by any command that uses global scalar or
-vector values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "intensive". The
-vector values are "extensive".
-
-The scalar value will be in temperature :doc:`units <units>`. The
-vector values will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This fix requires that atoms store torque and angular velocity (omega)
-and a radius as defined by the :doc:`atom_style sphere <atom_style>`
-command.
-
-All particles in the group must be finite-size spheres, or point
-particles with radius = 0.0.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute temp/asphere <compute_temp>`
-
-Default
-"""""""
-
-The option defaults are no bias and dof = all.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_ti.txt b/doc/_sources/compute_ti.txt
deleted file mode 100644
index a8ac4bebf..000000000
--- a/doc/_sources/compute_ti.txt
+++ /dev/null
@@ -1,157 +0,0 @@
-.. index:: compute ti
-
-compute ti command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group ti keyword args ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* ti = style name of this compute command
-* one or more attribute/arg pairs may be appended
-* keyword = pair style (lj/cut, gauss, born, etc) or *tail* or *kspace*
-.. parsed-literal::
-
- pair style args = atype v_name1 v_name2
- atype = atom type (see asterisk form below)
- v_name1 = variable with name1 that is energy scale factor and function of lambda
- v_name2 = variable with name2 that is derivative of v_name1 with respect to lambda
- *tail* args = atype v_name1 v_name2
- atype = atom type (see asterisk form below)
- v_name1 = variable with name1 that is energy tail correction scale factor and function of lambda
- v_name2 = variable with name2 that is derivative of v_name1 with respect to lambda
- *kspace* args = atype v_name1 v_name2
- atype = atom type (see asterisk form below)
- v_name1 = variable with name1 that is K-Space scale factor and function of lambda
- v_name2 = variable with name2 that is derivative of v_name1 with respect to lambda
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all ti lj/cut 1 v_lj v_dlj coul/long 2 v_c v_dc kspace 1 v_ks v_dks
- compute 1 all ti lj/cut 1*3 v_lj v_dlj coul/long * v_c v_dc kspace * v_ks v_dks
-
-Description
-"""""""""""
-
-Define a computation that calculates the derivative of the interaction
-potential with respect to *lambda*, the coupling parameter used in a
-thermodynamic integration. This derivative can be used to infer a
-free energy difference resulting from an alchemical simulation, as
-described in :ref:`Eike <Eike>`.
-
-Typically this compute will be used in conjunction with the :doc:`fix adapt <fix_adapt>` command which can perform alchemical
-transformations by adusting the strength of an interaction potential
-as a simulation runs, as defined by one or more
-:doc:`pair_style <pair_style>` or :doc:`kspace_style <kspace_style>`
-commands. This scaling is done via a prefactor on the energy, forces,
-virial calculated by the pair or K-Space style. The prefactor is
-often a function of a *lambda* parameter which may be adjusted from 0
-to 1 (or vice versa) over the course of a :doc:`run <run>`. The
-time-dependent adjustment is what the :doc:`fix adapt <fix_adapt>`
-command does.
-
-Assume that the unscaled energy of a pair_style or kspace_style is
-given by U. Then the scaled energy is
-
-.. parsed-literal::
-
- Us = f(lambda) U
-
-where f() is some function of lambda. What this compute calculates is
-
-.. parsed-literal::
-
- dUs / d(lambda) = U df(lambda)/dlambda = Us / f(lambda) df(lambda)/dlambda
-
-which is the derivative of the system's scaled potential energy Us
-with respect to *lambda*.
-
-To perform this calculation, you provide one or more atom types as
-*atype*. *Atype* can be specified in one of two ways. An explicit
-numeric values can be used, as in the 1st example above. Or a
-wildcard asterisk can be used in place of or in conjunction with the
-*atype* argument to select multiple atom types. This takes the form
-"*" or "*n" or "n*" or "m*n". If N = the number of atom types, then
-an asterisk with no numeric values means all types from 1 to N. A
-leading asterisk means all types from 1 to n (inclusive). A trailing
-asterisk means all types from n to N (inclusive). A middle asterisk
-means all types from m to n (inclusive).
-
-You also specify two functions, as :doc:`equal-style variables <variable>`. The first is specified as *v_name1*, where
-*name1* is the name of the variable, and is f(lambda) in the notation
-above. The second is specified as *v_name2*, where *name2* is the
-name of the variable, and is df(lambda) / dlambda in the notation
-above. I.e. it is the analytic derivative of f() with respect to
-lambda. Note that the *name1* variable is also typically given as an
-argument to the :doc:`fix adapt <fix_adapt>` command.
-
-An alchemical simulation may use several pair potentials together,
-invoked via the :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>`
-command. The total dUs/dlambda for the overall system is calculated
-as the sum of each contributing term as listed by the keywords in the
-compute ti command. Individual pair potentials can be listed, which
-will be sub-styles in the hybrid case. You can also include a K-space
-term via the *kspace* keyword. You can also include a pairwise
-long-range tail correction to the energy via the *tail* keyword.
-
-For each term you can specify a different (or the same) scale factor
-by the two variables that you list. Again, these will typically
-correspond toe the scale factors applied to these various potentials
-and the K-Space contribution via the :doc:`fix adapt <fix_adapt>`
-command.
-
-More details about the exact functional forms for the computation of
-du/dl can be found in the paper by :ref:`Eike <Eike>`.
-
-
-----------
-
-
-**Output info:**
-
-This compute calculates a global scalar, namely dUs/dlambda. This
-value can be used by any command that uses a global scalar value from
-a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The scalar value calculated by this compute is "extensive".
-
-The scalar value will be in energy :doc:`units <units>`.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix adapt <fix_adapt>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Eike:
-
-
-
-**(Eike)** Eike and Maginn, Journal of Chemical Physics, 124, 164503 (2006).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_torque_chunk.txt b/doc/_sources/compute_torque_chunk.txt
deleted file mode 100644
index 13a1106ba..000000000
--- a/doc/_sources/compute_torque_chunk.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-.. index:: compute torque/chunk
-
-compute torque/chunk command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID torque/chunk chunkID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* torque/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid torque/chunk molchunk
-
-Description
-"""""""""""
-
-Define a computation that calculates the torque on multiple chunks of
-atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the 3 components of the torque vector for eqch
-chunk, due to the forces on the individual atoms in the chunk around
-the center-of-mass of the chunk. The calculation includes all effects
-due to atoms passing thru periodic boundaries.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-.. note::
-
- The coordinates of an atom contribute to the chunk's torque in
- "unwrapped" form, by using the image flags associated with each atom.
- See the :doc:`dump custom <dump>` command for a discussion of
- "unwrapped" coordinates. See the Atoms section of the
- :doc:`read_data <read_data>` command for a discussion of image flags and
- how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this compute by using the :doc:`set image <set>` command.
-
-The simplest way to output the results of the compute torque/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all torque/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-3 for the 3 xyz components of the torque for each chunk. These values
-can be accessed by any command that uses global array values from a
-compute as input. See :ref:`Section_howto 15 <howto_15>`
-for an overview of LAMMPS output options.
-
-The array values are "intensive". The array values will be in
-force-distance :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`variable torque() function <variable>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_vacf.txt b/doc/_sources/compute_vacf.txt
deleted file mode 100644
index 2065562b4..000000000
--- a/doc/_sources/compute_vacf.txt
+++ /dev/null
@@ -1,84 +0,0 @@
-.. index:: compute vacf
-
-compute vacf command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID vacf
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* vacf = style name of this compute command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all vacf
- compute 1 upper vacf
-
-Description
-"""""""""""
-
-Define a computation that calculates the velocity auto-correlation
-function (VACF), averaged over a group of atoms. Each atom's
-contribution to the VACF is its current velocity vector dotted into
-its initial velocity vector at the time the compute was specified.
-
-A vector of four quantites is calculated by this compute. The first 3
-elements of the vector are vx * vx0 (and similarly for the y and z
-components), summed and averaged over atoms in the group. Vx is the
-current x-component of velocity for the atom, vx0 is the initial
-x-component of velocity for the atom. The 4th element of the vector
-is the total VACF, i.e. (vx*vx0 + vy*vy0 + vz*vz0), summed and
-averaged over atoms in the group.
-
-The integral of the VACF versus time is proportional to the diffusion
-coefficient of the diffusing atoms. This can be computed in the
-following manner, using the :doc:`variable trap() <variable>` function:
-
-.. parsed-literal::
-
- compute 2 all vacf
- fix 5 all vector 1 c_2[4]
- variable diff equal dt*trap(f_5)
- thermo_style custom step v_diff
-
-.. note::
-
- If you want the quantities calculated by this compute to be
- continuous when running from a :doc:`restart file <read_restart>`, then
- you should use the same ID for this compute, as in the original run.
- This is so that the fix this compute creates to store per-atom
- quantities will also have the same ID, and thus be initialized
- correctly with time=0 atom velocities from the restart file.
-
-**Output info:**
-
-This compute calculates a global vector of length 4, which can be
-accessed by indices 1-4 by any command that uses global vector values
-from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options.
-
-The vector values are "intensive". The vector values will be in
-velocity^2 :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute msd <compute_msd>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_vcm_chunk.txt b/doc/_sources/compute_vcm_chunk.txt
deleted file mode 100644
index 5eb1749ac..000000000
--- a/doc/_sources/compute_vcm_chunk.txt
+++ /dev/null
@@ -1,83 +0,0 @@
-.. index:: compute vcm/chunk
-
-compute vcm/chunk command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID vcm/chunk chunkID
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* vcm/chunk = style name of this compute command
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 fluid vcm/chunk molchunk
-
-Description
-"""""""""""
-
-Define a computation that calculates the center-of-mass velocity for
-multiple chunks of atoms.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-This compute calculates the x,y,z components of the center-of-mass
-velocity for each chunk. This is done by summing mass*velocity for
-each atom in the chunk and dividing the sum by the total mass of the
-chunk.
-
-Note that only atoms in the specified group contribute to the
-calculation. The :doc:`compute chunk/atom <compute_chunk_atom>` command
-defines its own group; atoms will have a chunk ID = 0 if they are not
-in that group, signifying they are not assigned to a chunk, and will
-thus also not contribute to this calculation. You can specify the
-"all" group for this command if you simply want to include atoms with
-non-zero chunk IDs.
-
-The simplest way to output the results of the compute vcm/chunk
-calculation to a file is to use the :doc:`fix ave/time <fix_ave_time>`
-command, for example:
-
-.. parsed-literal::
-
- compute cc1 all chunk/atom molecule
- compute myChunk all vcm/chunk cc1
- fix 1 all ave/time 100 1 100 c_myChunk file tmp.out mode vector
-
-**Output info:**
-
-This compute calculates a global array where the number of rows = the
-number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The number of columns =
-3 for the x,y,z center-of-mass velocity coordinates of each chunk.
-These values can be accessed by any command that uses global array
-values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options.
-
-The array values are "intensive". The array values will be in
-velocity :doc:`units <units>`.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_voronoi_atom.txt b/doc/_sources/compute_voronoi_atom.txt
deleted file mode 100644
index 6e0573c86..000000000
--- a/doc/_sources/compute_voronoi_atom.txt
+++ /dev/null
@@ -1,252 +0,0 @@
-.. index:: compute voronoi/atom
-
-compute voronoi/atom command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID voronoi/atom keyword arg ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* voronoi/atom = style name of this compute command
-* zero or more keyword/value pairs may be appended
-* keyword = *only_group* or *surface* or *radius* or *edge_histo* or *edge_threshold*
- or *face_threshold* or *neighbors* or *peratom*
-.. parsed-literal::
-
- *only_group* = no arg
- *occupation* = no arg
- *surface* arg = sgroup-ID
- sgroup-ID = compute the dividing surface between group-ID and sgroup-ID
- this keyword adds a third column to the compute output
- *radius* arg = v_r
- v_r = radius atom style variable for a poly-disperse Voronoi tessellation
- *edge_histo* arg = maxedge
- maxedge = maximum number of Voronoi cell edges to be accounted in the histogram
- *edge_threshold* arg = minlength
- minlength = minimum length for an edge to be counted
- *face_threshold* arg = minarea
- minarea = minimum area for a face to be counted
- *neighbors* value = *yes* or *no* = store list of all neighbors or no
- *peratom* value = *yes* or *no* = per-atom quantities accessible or no
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all voronoi/atom
- compute 2 precipitate voronoi/atom surface matrix
- compute 3b precipitate voronoi/atom radius v_r
- compute 4 solute voronoi/atom only_group
-
-.. parsed-literal::
-
- compute 5 defects voronoi/atom occupation
-
-compute 6 all voronoi/atom neighbors yes
-
-Description
-"""""""""""
-
-Define a computation that calculates the Voronoi tessellation of the
-atoms in the simulation box. The tessellation is calculated using all
-atoms in the simulation, but non-zero values are only stored for atoms
-in the group.
-
-By default two per-atom quantities are calculated by this compute.
-The first is the volume of the Voronoi cell around each atom. Any
-point in an atom's Voronoi cell is closer to that atom than any other.
-The second is the number of faces of the Voronoi cell. This is
-equal to the number of nearest neighbors of the central atom,
-plus any exterior faces (see note below). If the *peratom* keyword
-is set to "no", the per-atom quantities are still calculated,
-but they are not accessible.
-
-
-----------
-
-
-If the *only_group* keyword is specified the tessellation is performed
-only with respect to the atoms contained in the compute group. This is
-equivalent to deleting all atoms not contained in the group prior to
-evaluating the tessellation.
-
-If the *surface* keyword is specified a third quantity per atom is
-computed: the Voronoi cell surface of the given atom. *surface* takes
-a group ID as an argument. If a group other than *all* is specified,
-only the Voronoi cell facets facing a neighbor atom from the specified
-group are counted towards the surface area.
-
-In the example above, a precipitate embedded in a matrix, only atoms
-at the surface of the precipitate will have non-zero surface area, and
-only the outward facing facets of the Voronoi cells are counted (the
-hull of the precipitate). The total surface area of the precipitate
-can be obtained by running a "reduce sum" compute on c_2[3]
-
-If the *radius* keyword is specified with an atom style variable as
-the argument, a poly-disperse Voronoi tessellation is
-performed. Examples for radius variables are
-
-.. parsed-literal::
-
- variable r1 atom (type==1)*0.1+(type==2)*0.4
- compute radius all property/atom radius
- variable r2 atom c_radius
-
-Here v_r1 specifies a per-type radius of 0.1 units for type 1 atoms
-and 0.4 units for type 2 atoms, and v_r2 accesses the radius property
-present in atom_style sphere for granular models.
-
-The *edge_histo* keyword activates the compilation of a histogram of
-number of edges on the faces of the Voronoi cells in the compute
-group. The argument *maxedge* of the this keyword is the largest number
-of edges on a single Voronoi cell face expected to occur in the
-sample. This keyword adds the generation of a global vector with
-*maxedge*+1 entries. The last entry in the vector contains the number of
-faces with with more than *maxedge* edges. Since the polygon with the
-smallest amount of edges is a triangle, entries 1 and 2 of the vector
-will always be zero.
-
-The *edge_threshold* and *face_threshold* keywords allow the
-suppression of edges below a given minimum length and faces below a
-given minimum area. Ultra short edges and ultra small faces can occur
-as artifacts of the Voronoi tessellation. These keywords will affect
-the neighbor count and edge histogram outputs.
-
-If the *occupation* keyword is specified the tessellation is only
-performed for the first invocation of the compute and then stored.
-For all following invocations of the compute the number of atoms in
-each Voronoi cell in the stored tessellation is counted. In this mode
-the compute returns a per-atom array with 2 columns. The first column
-is the number of atoms currently in the Voronoi volume defined by this
-atom at the time of the first invocation of the compute (note that the
-atom may have moved significantly). The second column contains the
-total number of atoms sharing the Voronoi cell of the stored
-tessellation at the location of the current atom. Numbers in column
-one can be any positive integer including zero, while column two
-values will always be greater than zero. Column one data can be used
-to locate vacancies (the coordinates are given by the atom coordinates
-at the time step when the compute was first invoked), while column two
-data can be used to identify interstitial atoms.
-
-If the *neighbors* value is set to yes, then
-this compute creates a local array with 3 columns. There
-is one row for each face of each Voronoi cell. The
-3 columns are the atom ID of the atom that owns the cell,
-the atom ID of the atom in the neighboring cell
-(or zero if the face is external), and the area of the face.
-The array can be accessed by any command that
-uses local values from a compute as input. See :ref:`this section <howto_15>` for an overview of LAMMPS output
-options. More specifically, the array can be accessed by a
-:doc:`dump local <dump>` command to write a file containing
-all the Voronoi neighbors in a system:
-
-.. parsed-literal::
-
- compute 6 all voronoi/atom neighbors yes
- dump d2 all local 1 dump.neighbors index c_6[1] c_6[2] c_6[3]
-
-If the *face_threshold* keyword is used, then only faces
-with areas greater than the threshold are stored.
-
-
-----------
-
-
-The Voronoi calculation is performed by the freely available `Voro++ package <voronoi_>`_, written by Chris Rycroft at UC Berkeley and LBL,
-which must be installed on your system when building LAMMPS for use
-with this compute. See instructions on obtaining and installing the
-Voro++ software in the src/VORONOI/README file.
-
-.. _voronoi: http://math.lbl.gov/voro++/
-
-
-
-.. note::
-
- The calculation of Voronoi volumes is performed by each
- processor for the atoms it owns, and includes the effect of ghost
- atoms stored by the processor. This assumes that the Voronoi cells of
- owned atoms are not affected by atoms beyond the ghost atom cut-off
- distance. This is usually a good assumption for liquid and solid
- systems, but may lead to underestimation of Voronoi volumes in low
- density systems. By default, the set of ghost atoms stored by each
- processor is determined by the cutoff used for
- :doc:`pair_style <pair_style>` interactions. The cutoff can be set
- explicitly via the :doc:`comm_modify cutoff <comm_modify>` command. The
- Voronoi cells for atoms adjacent to empty regions will extend into
- those regions up to the communication cutoff in x, y, or z. In that
- situation, an exterior face is created at the cutoff distance normal
- to the x, y, or z direction. For triclinic systems, the exterior face
- is parallel to the corresponding reciprocal lattice vector.
-
-.. note::
-
- The Voro++ package performs its calculation in 3d. This will
- still work for a 2d LAMMPS simulation, provided all the atoms have the
- same z coordinate. The Voronoi cell of each atom will be a columnar
- polyhedron with constant cross-sectional area along the z direction
- and two exterior faces at the top and bottom of the simulation box. If
- the atoms do not all have the same z coordinate, then the columnar
- cells will be accordingly distorted. The cross-sectional area of each
- Voronoi cell can be obtained by dividing its volume by the z extent of
- the simulation box. Note that you define the z extent of the
- simulation box for 2d simulations when using the
- :doc:`create_box <create_box>` or :doc:`read_data <read_data>` commands.
-
-**Output info:**
-
-By default, this compute calculates a per-atom array with 2
-columns. In regular dynamic tessellation mode the first column is the
-Voronoi volume, the second is the neighbor count, as described above
-(read above for the output data in case the *occupation* keyword is
-specified). These values can be accessed by any command that uses
-per-atom values from a compute as input. See :ref:`Section_howto 15 <howto_15>` for an overview of LAMMPS output
-options. If the *peratom* keyword is set to "no", the per-atom array
-is still created, but it is not accessible.
-
-If the *edge_histo* keyword is used, then this compute generates a
-global vector of length *maxedge*+1, containing a histogram of the
-number of edges per face.
-
-If the *neighbors* value is set to yes, then this compute calculates a
-local array with 3 columns. There is one row for each face of each
-Voronoi cell.
-
-.. note::
-
- Some LAMMPS commands such as the :doc:`compute reduce <compute_reduce>` command can accept either a per-atom or
- local quantity. If this compute produces both quantities, the command
- may access the per-atom quantity, even if you want to access the local
- quantity. This effect can be eliminated by using the *peratom*
- keyword to turn off the production of the per-atom quantities. For
- the default value *yes* both quantities are produced. For the value
- *no*, only the local array is produced.
-
-The Voronoi cell volume will be in distance :doc:`units <units>` cubed.
-The Voronoi face area will be in distance :doc:`units <units>` squared.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the VORONOI package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`, :doc:`dump local <dump>`
-
-**Default:** *neighbors* no, *peratom* yes
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/compute_xrd.txt b/doc/_sources/compute_xrd.txt
deleted file mode 100644
index 3c8759c0c..000000000
--- a/doc/_sources/compute_xrd.txt
+++ /dev/null
@@ -1,236 +0,0 @@
-.. index:: compute xrd
-
-compute xrd command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- compute ID group-ID xrd lambda type1 type2 ... typeN keyword value ...
-
-* ID, group-ID are documented in :doc:`compute <compute>` command
-* xrd = style name of this compute command
-* lambda = wavelength of incident radiation (length units)
-* type1 type2 ... typeN = chemical symbol of each atom type (see valid options below)
-* zero or more keyword/value pairs may be appended
-* keyword = *2Theta* or *c* or *LP* or *manual* or *echo*
-.. parsed-literal::
-
- *2Theta* values = Min2Theta Max2Theta
- Min2Theta,Max2Theta = minimum and maximum 2 theta range to explore
- (radians or degrees)
- *c* values = c1 c2 c3
- c1,c2,c3 = parameters to adjust the spacing of the reciprocal
- lattice nodes in the h, k, and l directions respectively
- *LP* value = switch to apply Lorentz-polarization factor
- 0/1 = off/on
- *manual* = flag to use manual spacing of reciprocal lattice points
- based on the values of the *c* parameters
- *echo* = flag to provide extra output for debugging purposes
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all xrd 1.541838 Al O 2Theta 0.087 0.87 c 1 1 1 LP 1 echo
- compute 2 all xrd 1.541838 Al O 2Theta 10 100 c 0.05 0.05 0.05 LP 1 manual
-
-.. parsed-literal::
-
- fix 1 all ave/histo/weight 1 1 1 0.087 0.87 250 c_1[1] c_1[2] mode vector file Rad2Theta.xrd
- fix 2 all ave/histo/weight 1 1 1 10 100 250 c_2[1] c_2[2] mode vector file Deg2Theta.xrd
-
-.. parsed-literal::
-
-
-Description
-"""""""""""
-
-Define a computation that calculates x-ray diffraction intensity as described
-in :ref:`(Coleman) <Coleman>` on a mesh of reciprocal lattice nodes defined
-by the entire simulation domain (or manually) using a simulated radiation
-of wavelength lambda.
-
-The x-ray diffraction intensity, I, at each reciprocal lattice point, k,
-is computed from the structure factor, F, using the equations:
-
-.. image:: Eqs/compute_xrd1.jpg
- :align: center
-
-.. image:: Eqs/compute_xrd2.jpg
- :align: center
-
-.. image:: Eqs/compute_xrd3.jpg
- :align: center
-
-.. image:: Eqs/compute_xrd4.jpg
- :align: center
-
-Here, K is the location of the reciprocal lattice node, rj is the
-position of each atom, fj are atomic scattering factors, LP is the
-Lorentz-polarization factor, and theta is the scattering angle of
-diffraction. The Lorentz-polarization factor can be turned off using
-the optional *LP* keyword.
-
-Diffraction intensities are calculated on a three-dimensional mesh of
-reciprocal lattice nodes. The mesh spacing is defined either (a)
-by the entire simulation domain or (b) manually using selected values as
-shown in the 2D diagram below.
-
-.. thumbnail:: JPG/xrd_mesh.jpg
- :align: center
-
-For a mesh defined by the simulation domain, a rectilinear grid is
-constructed with spacing *c**inv(A) along each reciprocal lattice
-axis. Where A are the vectors corresponding to the edges of the
-simulation cell. If one or two directions has non-periodic boundary
-conditions, then the spacing in these directions is defined from the
-average of the (inversed) box lengths with periodic boundary conditions.
-Meshes defined by the simulation domain must contain at least one periodic
-boundary.
-
-If the *manual* flag is included, the mesh of reciprocal lattice nodes
-will defined using the *c* values for the spacing along each
-reciprocal lattice axis. Note that manual mapping of the reciprocal
-space mesh is good for comparing diffraction results from multiple
-simulations; however it can reduce the likelihood that Bragg
-reflections will be satisfied unless small spacing parameters (< 0.05
-Angstrom^(-1)) are implemented. Meshes with manual spacing do not
-require a periodic boundary.
-
-The limits of the reciprocal lattice mesh are determined by range of
-scattering angles explored. The *2Theta* parameters allows the user
-to reduce the scattering angle range to only the region of interest
-which reduces the cost of the computation.
-
-The atomic scattering factors, fj, accounts for the reduction in
-diffraction intensity due to Compton scattering. Compute xrd uses
-analytical approximations of the atomic scattering factors that vary
-for each atom type (type1 type2 ... typeN) and angle of diffraction.
-The analytic approximation is computed using the formula
-:ref:`(Colliex) <Colliex>`:
-
-.. image:: Eqs/compute_xrd5.jpg
- :align: center
-
-Coefficients parameterized by :ref:`(Peng) <Peng>` are assigned for each
-atom type designating the chemical symbol and charge of each atom
-type. Valid chemical symbols for compute xrd are:
-
-H: He1-: He: Li: Li1+:
- Be: Be2+: B: C: Cval:
- N: O: O1-: F: F1-:
- Ne: Na: Na1+: Mg: Mg2+:
- Al: Al3+: Si: Sival: Si4+:
- P: S: Cl: Cl1-: Ar:
- K: Ca: Ca2+: Sc: Sc3+:
- Ti: Ti2+: Ti3+: Ti4+: V:
- V2+: V3+: V5+: Cr: Cr2+:
- Cr3+: Mn: Mn2+: Mn3+: Mn4+:
- Fe: Fe2+: Fe3+: Co: Co2+:
- Co: Ni: Ni2+: Ni3+: Cu:
- Cu1+: Cu2+: Zn: Zn2+: Ga:
- Ga3+: Ge: Ge4+: As: Se:
- Br: Br1-: Kr: Rb: Rb1+:
- Sr: Sr2+: Y: Y3+: Zr:
- Zr4+: Nb: Nb3+: Nb5+: Mo:
- Mo3+: Mo5+: Mo6+: Tc: Ru:
- Ru3+: Ru4+: Rh: Rh3+: Rh4+:
- Pd: Pd2+: Pd4+: Ag: Ag1+:
- Ag2+: Cd: Cd2+: In: In3+:
- Sn: Sn2+: Sn4+: Sb: Sb3+:
- Sb5+: Te: I: I1-: Xe:
- Cs: Cs1+: Ba: Ba2+: La:
- La3+: Ce: Ce3+: Ce4+: Pr:
- Pr3+: Pr4+: Nd: Nd3+: Pm:
- Pm3+: Sm: Sm3+: Eu: Eu2+:
- Eu3+: Gd: Gd3+: Tb: Tb3+:
- Dy: Dy3+: Ho: Ho3+: Er:
- Er3+: Tm: Tm3+: Yb: Yb2+:
- Yb3+: Lu: Lu3+: Hf: Hf4+:
- Ta: Ta5+: W: W6+: Re:
- Os: Os4+: Ir: Ir3+: Ir4+:
- Pt: Pt2+: Pt4+: Au: Au1+:
- Au3+: Hg: Hg1+: Hg2+: Tl:
- Tl1+: Tl3+: Pb: Pb2+: Pb4+:
- Bi: Bi3+: Bi5+: Po: At:
- Rn: Fr: Ra: Ra2+: Ac:
- Ac3+: Th: Th4+: Pa: U:
- U3+: U4+: U6+: Np: Np3+:
- Np4+: Np6+: Pu: Pu3+: Pu4+:
- Pu6+: Am: Cm: Bk: Cf:tb(c=5,s=:)
-
-If the *echo* keyword is specified, compute xrd will provide extra
-reporting information to the screen.
-
-**Output info:**
-
-This compute calculates a global array. The number of rows in the
-array is the number of reciprocal lattice nodes that are explored
-which by the mesh. The global array has 2 columns.
-
-The first column contains the diffraction angle in the units (radians
-or degrees) provided with the *2Theta* values. The second column contains
-the computed diffraction intensities as described above.
-
-The array can be accessed by any command that uses global values from
-a compute as input. See :ref:`this section <howto_15>`
-for an overview of LAMMPS output options.
-
-All array values calculated by this compute are "intensive".
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-DIFFRACTION package. It is only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The compute_xrd command does not work for triclinic cells.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/histo <fix_ave_histo>`,
-:doc:`compute saed <compute_saed>`
-
-Default
-"""""""
-
-The option defaults are 2Theta = 1 179 (degrees), c = 1 1 1, LP = 1,
-no manual flag, no echo flag.
-
-
-----------
-
-
-.. _Coleman:
-
-
-
-**(Coleman)** Coleman, Spearot, Capolungo, MSMSE, 21, 055020
-(2013).
-
-.. _Colliex:
-
-
-
-**(Colliex)** Colliex et al. International Tables for Crystallography
-Volume C: Mathematical and Chemical Tables, 249-429 (2004).
-
-.. _Peng:
-
-
-
-**(Peng)** Peng, Ren, Dudarev, Whelan, Acta Crystallogr. A, 52, 257-76
-(1996).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/create_atoms.txt b/doc/_sources/create_atoms.txt
deleted file mode 100644
index a239f1623..000000000
--- a/doc/_sources/create_atoms.txt
+++ /dev/null
@@ -1,350 +0,0 @@
-.. index:: create_atoms
-
-create_atoms command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- create_atoms type style args keyword values ...
-
-* type = atom type (1-Ntypes) of atoms to create (offset for molecule creation)
-* style = *box* or *region* or *single* or *random*
-.. parsed-literal::
-
- *box* args = none
- *region* args = region-ID
- region-ID = particles will only be created if contained in the region
- *single* args = x y z
- x,y,z = coordinates of a single particle (distance units)
- *random* args = N seed region-ID
- N = number of particles to create
- seed = random # seed (positive integer)
- region-ID = create atoms within this region, use NULL for entire simulation box
-
-* zero or more keyword/value pairs may be appended
-* keyword = *mol* or *basis* or *remap* or *var* or *set* or *units*
-.. parsed-literal::
-
- *mol* value = template-ID seed
- template-ID = ID of molecule template specified in a separate :doc:`molecule <molecule>` command
- seed = random # seed (positive integer)
- *basis* values = M itype
- M = which basis atom
- itype = atom type (1-N) to assign to this basis atom
- *remap* value = *yes* or *no*
- *var* value = name = variable name to evaluate for test of atom creation
- *set* values = dim name
- dim = *x* or *y* or *z*
- name = name of variable to set with x, y, or z atom position
- *rotate* values = Rx Ry Rz theta
- Rx,Ry,Rz = rotation vector for single molecule
- theta = rotation angle for single molecule (degrees)
- *units* value = *lattice* or *box*
- *lattice* = the geometry is defined in lattice units
- *box* = the geometry is defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- create_atoms 1 box
- create_atoms 3 region regsphere basis 2 3
- create_atoms 3 single 0 0 5
- create_atoms 1 box var v set x xpos set y ypos
-
-Description
-"""""""""""
-
-This command creates atoms (or molecules) on a lattice, or a single
-atom (or molecule), or a random collection of atoms (or molecules), as
-an alternative to reading in their coordinates explicitly via a
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-command. A simulation box must already exist, which is typically
-created via the :doc:`create_box <create_box>` command. Before using
-this command, a lattice must also be defined using the
-:doc:`lattice <lattice>` command, unless you specify the *single* style
-with units = box or the *random* style. For the remainder of this doc
-page, a created atom or molecule is referred to as a "particle".
-
-If created particles are individual atoms, they are assigned the
-specified atom *type*, though this can be altered via the *basis*
-keyword as discussed below. If molecules are being created, the type
-of each atom in the created molecule is specified in the file read by
-the :doc:`molecule <molecule>` command, and those values are added to
-the specified atom *type*. E.g. if *type* = 2, and the file specifies
-atom types 1,2,3, then each created molecule will have atom types
-3,4,5.
-
-For the *box* style, the create_atoms command fills the entire
-simulation box with particles on the lattice. If your simulation box
-is periodic, you should insure its size is a multiple of the lattice
-spacings, to avoid unwanted atom overlaps at the box boundaries. If
-your box is periodic and a multiple of the lattice spacing in a
-particular dimension, LAMMPS is careful to put exactly one particle at
-the boundary (on either side of the box), not zero or two.
-
-For the *region* style, a geometric volume is filled with particles on
-the lattice. This volume what is inside the simulation box and is
-also consistent with the region volume. See the :doc:`region <region>`
-command for details. Note that a region can be specified so that its
-"volume" is either inside or outside a geometric boundary. Also note
-that if your region is the same size as a periodic simulation box (in
-some dimension), LAMMPS does not implement the same logic described
-above as for the *box* style, to insure exactly one particle at
-periodic boundaries. if this is what you desire, you should either
-use the *box* style, or tweak the region size to get precisely the
-particles you want.
-
-For the *single* style, a single particle is added to the system at
-the specified coordinates. This can be useful for debugging purposes
-or to create a tiny system with a handful of particles at specified
-positions.
-
-For the *random* style, N particles are added to the system at
-randomly generated coordinates, which can be useful for generating an
-amorphous system. The particles are created one by one using the
-speficied random number *seed*, resulting in the same set of particles
-coordinates, independent of how many processors are being used in the
-simulation. If the *region-ID* argument is specified as NULL, then
-the created particles will be anywhere in the simulation box. If a
-*region-ID* is specified, a geometric volume is filled which is both
-inside the simulation box and is also consistent with the region
-volume. See the :doc:`region <region>` command for details. Note that
-a region can be specified so that its "volume" is either inside or
-outside a geometric boundary.
-
-.. note::
-
- Particles generated by the *random* style will typically be
- highly overlapped which will cause many interatomic potentials to
- compute large energies and forces. Thus you should either perform an
- :doc:`energy minimization <minimize>` or run dynamics with :doc:`fix nve/limit <fix_nve_limit>` to equilibrate such a system, before
- running normal dynamics.
-
-Note that this command adds particles to those that already exist.
-This means it can be used to add particles to a system previously read
-in from a data or restart file. Or the create_atoms command can be
-used multiple times, to add multiple sets of particles to the
-simulation. For example, grain boundaries can be created, by
-interleaving create_atoms with :doc:`lattice <lattice>` commands
-specifying different orientations. By using the create_atoms command
-in conjunction with the :doc:`delete_atoms <delete_atoms>` command,
-reasonably complex geometries can be created, or a protein can be
-solvated with a surrounding box of water molecules.
-
-In all these cases, care should be taken to insure that new atoms do
-not overlap existing atoms inappropriately, especially if molecules
-are being added. The :doc:`delete_atoms <delete_atoms>` command can be
-used to remove overlapping atoms or molecules.
-
-
-----------
-
-
-Individual atoms are inserted by this command, unless the *mol*
-keyword is used. It specifies a *template-ID* previously defined
-using the :doc:`molecule <molecule>` command, which reads a file that
-defines the molecule. The coordinates, atom types, charges, etc, as
-well as any bond/angle/etc and special neighbor information for the
-molecule can be specified in the molecule file. See the
-:doc:`molecule <molecule>` command for details. The only settings
-required to be in this file are the coordinates and types of atoms in
-the molecule.
-
-Using a lattice to add molecules, e.g. via the *box* or *region* or
-*single* styles, is exactly the same as adding atoms on lattice
-points, except that entire molecules are added at each point, i.e. on
-the point defined by each basis atom in the unit cell as it tiles the
-simulation box or region. This is done by placing the geometric
-center of the molecule at the lattice point, and giving the molecule a
-random orientation about the point. The random *seed* specified with
-the *mol* keyword is used for this operation, and the random numbers
-generated by each processor are different. This means the coordinates
-of individual atoms (in the molecules) will be different when running
-on different numbers of processors, unlike when atoms are being
-created in parallel.
-
-Also note that because of the random rotations, it may be important to
-use a lattice with a large enough spacing that adjacent molecules will
-not overlap, regardless of their relative orientations.
-
-.. note::
-
- If the :doc:`create_box <create_box>` command is used to create
- the simulation box, followed by the create_atoms command with its
- *mol* option for adding molecules, then you typically need to use the
- optional keywords allowed by the :doc:`create_box <create_box>` command
- for extra bonds (angles,etc) or extra special neighbors. This is
- because by default, the :doc:`create_box <create_box>` command sets up a
- non-molecular system which doesn't allow molecules to be added.
-
-
-----------
-
-
-This is the meaning of the other allowed keywords.
-
-The *basis* keyword is only used when atoms (not molecules) are being
-created. It specifies an atom type that will be assigned to specific
-basis atoms as they are created. See the :doc:`lattice <lattice>`
-command for specifics on how basis atoms are defined for the unit cell
-of the lattice. By default, all created atoms are assigned the
-argument *type* as their atom type.
-
-The *remap* keyword only applies to the *single* style. If it is set
-to *yes*, then if the specified position is outside the simulation
-box, it will mapped back into the box, assuming the relevant
-dimensions are periodic. If it is set to *no*, no remapping is done
-and no particle is created if its position is outside the box.
-
-The *var* and *set* keywords can be used together to provide a
-criterion for accepting or rejecting the addition of an individual
-atom, based on its coordinates. The *name* specified for the *var*
-keyword is the name of an :doc:`equal-style variable <variable>` which
-should evaluate to a zero or non-zero value based on one or two or
-three variables which will store the x, y, or z coordinates of an atom
-(one variable per coordinate). If used, these other variables must be
-:doc:`equal-style variables <variable>` defined in the input script, but
-their formula can by anything. The *set* keyword is used to identify
-the names of these other variables, one variable for the x-coordinate
-of a created atom, one for y, and one for z.
-
-When an atom is created, its x, y, or z coordinates override the
-formula for any *set* variable that is defined. The *var* variable is
-then evaluated. If the returned value is 0.0, the atom is not
-created. If it is non-zero, the atom is created. After all atoms are
-created, the formulas defined for all of the *set* variables are
-restored to their original strings.
-
-As an example, these commands can be used in a 2d simulation, to
-create a sinusoidal surface. Note that the surface is "rough" due to
-individual lattice points being "above" or "below" the mathematical
-expression for the sinusoidal curve. If a finer lattice were used,
-the sinusoid would appear to be "smoother". Also note the use of the
-"xlat" and "ylat" :doc:`thermo_style <thermo_style>` keywords which
-converts lattice spacings to distance. Click on the image for a
-larger version.
-
-.. parsed-literal::
-
- variable x equal 100
- variable y equal 25
- lattice hex 0.8442
- region box block 0 $x 0 $y -0.5 0.5
- create_box 1 box
-
-.. parsed-literal::
-
- variable xx equal 0.0
- variable yy equal 0.0
- variable v equal "(0.2*v_y*ylat * cos(v_xx/xlat * 2.0*PI*4.0/v_x) + 0.5*v_y*ylat - v_yy) > 0.0"
- create_atoms 1 box var v set x xx set y yy
-
-.. thumbnail:: JPG/sinusoid.jpg
- :align: center
-
-The *rotate* keyword can be used with the *single* style, when adding
-a single molecule to specify the orientation at which the molecule is
-inserted. The axis of rotation is determined by the rotation vector
-(Rx,Ry,Rz) that goes through the insertion point. The specified
-*theta* determines the angle of rotation around that axis. Note that
-the direction of rotation for the atoms around the rotation axis is
-consistent with the right-hand rule: if your right-hand's thumb points
-along *R*, then your fingers wrap around the axis in the direction of
-rotation.
-
-The *units* keyword determines the meaning of the distance units used
-to specify the coordinates of the one particle created by the *single*
-style. A *box* value selects standard distance units as defined by
-the :doc:`units <units>` command, e.g. Angstroms for units = real or
-metal. A *lattice* value means the distance units are in lattice
-spacings.
-
-
-----------
-
-
-Atom IDs are assigned to created atoms in the following way. The
-collection of created atoms are assigned consecutive IDs that start
-immediately following the largest atom ID existing before the
-create_atoms command was invoked. When a simulation is performed on
-different numbers of processors, there is no guarantee a particular
-created atom will be assigned the same ID. If molecules are being
-created, molecule IDs are assigned to created molecules in a similar
-fashion.
-
-Aside from their ID, atom type, and xyz position, other properties of
-created atoms are set to default values, depending on which quantities
-are defined by the chosen :doc:`atom style <atom_style>`. See the :doc:`atom style <atom_style>` command for more details. See the
-:doc:`set <set>` and :doc:`velocity <velocity>` commands for info on how
-to change these values.
-
-* charge = 0.0
-* dipole moment magnitude = 0.0
-* diameter = 1.0
-* shape = 0.0 0.0 0.0
-* density = 1.0
-* volume = 1.0
-* velocity = 0.0 0.0 0.0
-* angular velocity = 0.0 0.0 0.0
-* angular momentum = 0.0 0.0 0.0
-* quaternion = (1,0,0,0)
-* bonds, angles, dihedrals, impropers = none
-
-If molecules are being created, these defaults can be overridden by
-values specified in the file read by the :doc:`molecule <molecule>`
-command. E.g. the file typically defines bonds (angles,etc) between
-atoms in the molecule, and can optionally define charges on each atom.
-
-Note that the *sphere* atom style sets the default particle diameter
-to 1.0 as well as the density. This means the mass for the particle
-is not 1.0, but is PI/6 * diameter^3 = 0.5236.
-
-Note that the *ellipsoid* atom style sets the default particle shape
-to (0.0 0.0 0.0) and the density to 1.0 which means it is a point
-particle, not an ellipsoid, and has a mass of 1.0.
-
-Note that the *peri* style sets the default volume and density to 1.0
-and thus also set the mass for the particle to 1.0.
-
-The :doc:`set <set>` command can be used to override many of these
-default settings.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-An :doc:`atom_style <atom_style>` must be previously defined to use this
-command.
-
-A rotation vector specified for a single molecule must be in
-the z-direction for a 2d model.
-
-Related commands
-""""""""""""""""
-
-:doc:`lattice <lattice>`, :doc:`region <region>`, :doc:`create_box <create_box>`,
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`
-
-Default
-"""""""
-
-The default for the *basis* keyword is that all created atoms are
-assigned the argument *type* as their atom type (when single atoms are
-being created). The other defaults are *remap* = no, *rotate* =
-random, and *units* = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/create_bonds.txt b/doc/_sources/create_bonds.txt
deleted file mode 100644
index 378873d24..000000000
--- a/doc/_sources/create_bonds.txt
+++ /dev/null
@@ -1,120 +0,0 @@
-.. index:: create_bonds
-
-create_bonds command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- create_bonds group-ID group2-ID btype rmin rmax
-
-* group-ID = ID of first group
-* group2-ID = ID of second group, bonds will be between atoms in the 2 groups
-* btype = bond type of created bonds
-* rmin = minimum distance between pair of atoms to bond together
-* rmax = minimum distance between pair of atoms to bond together
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- create_bonds all all 1 1.0 1.2
- create_bonds surf solvent 3 2.0 2.4
-
-Description
-"""""""""""
-
-Create bonds between pairs of atoms that meet specified distance
-criteria. The bond interactions can then be computed during a
-simulation by the bond potential defined by the
-:doc:`bond_style <bond_style>` and :doc:`bond_coeff <bond_coeff>`
-commands. This command is useful for adding bonds to a system,
-e.g. between nearest neighbors in a lattice of atoms, without having
-to enumerate all the bonds in the data file read by the
-:doc:`read_data <read_data>` command.
-
-Note that the flexibility of this command is limited. It can be used
-several times to create different types of bond at different
-distances. But it cannot typically create all the bonds that would
-normally be defined in a complex system of molecules. Also note that
-this command does not add any 3-body or 4-body interactions which,
-depending on your model, may be induced by added bonds,
-e.g. :doc:`angle <angle_style>`, :doc:`dihedral <dihedral_style>`, or
-:doc:`improper <improper_style>` interactions.
-
-All created bonds will be between pairs of atoms I,J where I is in one
-of the two specified groups, and J is in the other. The two groups
-can be the same, e.g. group "all". The created bonds will be of bond
-type *btype*, where *btype* must be a value between 1 and the number
-of bond types defined. This maximum value is set by the "bond types"
-field in the header of the data file read by the
-:doc:`read_data <read_data>` command, or via the optional "bond/types"
-argument of the :doc:`create_box <create_box>` command.
-
-For a bond to be created, an I,J pair of atoms must be a distance D
-apart such that *rmin* <= D <= *rmax*.
-
-The following settings must have been made in an input
-script before this command is used:
-
-* special_bonds weight for 1-2 interactions must be 0.0
-* a :doc:`pair_style <pair_style>` must be defined
-* no :doc:`kspace_style <kspace_style>` defined
-* minimum :doc:`pair_style <pair_style>` cutoff + :doc:`neighbor <neighbor>` skin >= *rmax*
-
-These settings are required so that a neighbor list can be created to
-search for nearby atoms. Pairs of atoms that are already bonded
-cannot appear in the neighbor list, to avoid creation of duplicate
-bonds. The neighbor list for all atom type pairs must also extend to
-a distance that encompasses the *rmax* for new bonds to create.
-
-An additional requirement is that your system must be ready to perform
-a simulation. This means, for example, that all
-:doc:`pair_style <pair_style>` coefficients be set via the
-:doc:`pair_coeff <pair_coeff>` command. A :doc:`bond_style <bond_style>`
-command and all bond coefficients must also be set, even if no bonds
-exist before this command is invoked. This is because the building of
-neighbor list requires initialization and setup of a simulation,
-similar to what a :doc:`run <run>` command would require.
-
-Note that you can change any of these settings after this command
-executes, e.g. if you wish to use long-range Coulombic interactions
-via the :doc:`kspace_style <kspace_style>` command for your subsequent
-simulation.
-
-.. note::
-
- If the system has no bonds to begin with, or if more bonds per
- atom are being added than currently exist, then you must insure that
- the number of bond types and the maximum number of bonds per atom are
- set to large enough values. Otherwise an error may occur when too
- many bonds are added to an atom. If the :doc:`read_data <read_data>`
- command is used to define the system, these 2 parameters can be set
- via the "bond types" and "extra bond per atom" fields in the header
- section of the data file. If the :doc:`create_box <create_box>` command
- is used to define the system, these 2 parameters can be set via its
- optional "bond/types" and "extra/bond/per/atom" arguments. See the
- doc pages for the 2 commands for details.
-
-Restrictions
-""""""""""""
-
-
-This command cannot be used with molecular systems defined using
-molecule template files via the :doc:`molecule <molecule>` and
-:doc:`atom_style template <atom_style>` commands.
-
-Related commands
-""""""""""""""""
-
-:doc:`create_atoms <create_atoms>`, :doc:`delete_bonds <delete_bonds>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/create_box.txt b/doc/_sources/create_box.txt
deleted file mode 100644
index 8cda653ca..000000000
--- a/doc/_sources/create_box.txt
+++ /dev/null
@@ -1,167 +0,0 @@
-.. index:: create_box
-
-create_box command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- create_box N region-ID keyword value ...
-
-* N = # of atom types to use in this simulation
-* region-ID = ID of region to use as simulation domain
-* zero or more keyword/value pairs may be appended
-* keyword = *bond/types* or *angle/types* or *dihedral/types* or *improper/types* or *extra/bond/per/atom* or *extra/angle/per/atom* or *extra/dihedral/per/atom* or *extra/improper/per/atom*
-.. parsed-literal::
-
- *bond/types* value = # of bond types
- *angle/types* value = # of angle types
- *dihedral/types* value = # of dihedral types
- *improper/types* value = # of improper types
- *extra/bond/per/atom* value = # of bonds per atom
- *extra/angle/per/atom* value = # of angles per atom
- *extra/dihedral/per/atom* value = # of dihedrals per atom
- *extra/improper/per/atom* value = # of impropers per atom
- *extra/special/per/atom* value = # of special neighbors per atom
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- create_box 2 mybox
- create_box 2 mybox bond/types 2 extra/bond/per/atom 1
-
-Description
-"""""""""""
-
-This command creates a simulation box based on the specified region.
-Thus a :doc:`region <region>` command must first be used to define a
-geometric domain. It also partitions the simulation box into a
-regular 3d grid of rectangular bricks, one per processor, based on the
-number of processors being used and the settings of the
-:doc:`processors <processors>` command. The partitioning can later be
-changed by the :doc:`balance <balance>` or :doc:`fix balance <fix_balance>` commands.
-
-The argument N is the number of atom types that will be used in the
-simulation.
-
-If the region is not of style *prism*, then LAMMPS encloses the region
-(block, sphere, etc) with an axis-aligned orthogonal bounding box
-which becomes the simulation domain.
-
-If the region is of style *prism*, LAMMPS creates a non-orthogonal
-simulation domain shaped as a parallelepiped with triclinic symmetry.
-As defined by the :doc:`region prism <region>` command, the
-parallelepiped has its "origin" at (xlo,ylo,zlo) and is defined by 3
-edge vectors starting from the origin given by A = (xhi-xlo,0,0); B =
-(xy,yhi-ylo,0); C = (xz,yz,zhi-zlo). *Xy,xz,yz* can be 0.0 or
-positive or negative values and are called "tilt factors" because they
-are the amount of displacement applied to faces of an originally
-orthogonal box to transform it into the parallelipiped.
-
-By default, a *prism* region used with the create_box command must
-have tilt factors (xy,xz,yz) that do not skew the box more than half
-the distance of the parallel box length. For example, if xlo = 2 and
-xhi = 12, then the x box length is 10 and the xy tilt factor must be
-between -5 and 5. Similarly, both xz and yz must be between
--(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is not a limitation,
-since if the maximum tilt factor is 5 (as in this example), then
-configurations with tilt = ..., -15, -5, 5, 15, 25, ... are all
-geometrically equivalent. If you wish to define a box with tilt
-factors that exceed these limits, you can use the :doc:`box tilt <box>`
-command, with a setting of *large*; a setting of *small* is the
-default.
-
-See :ref:`Section_howto 12 <howto_12>` of the doc pages
-for a geometric description of triclinic boxes, as defined by LAMMPS,
-and how to transform these parameters to and from other commonly used
-triclinic representations.
-
-When a prism region is used, the simulation domain should normally be
-periodic in the dimension that the tilt is applied to, which is given
-by the second dimension of the tilt factor (e.g. y for xy tilt). This
-is so that pairs of atoms interacting across that boundary will have
-one of them shifted by the tilt factor. Periodicity is set by the
-:doc:`boundary <boundary>` command. For example, if the xy tilt factor
-is non-zero, then the y dimension should be periodic. Similarly, the
-z dimension should be periodic if xz or yz is non-zero. LAMMPS does
-not require this periodicity, but you may lose atoms if this is not
-the case.
-
-Also note that if your simulation will tilt the box, e.g. via the :doc:`fix deform <fix_deform>` command, the simulation box must be setup to
-be triclinic, even if the tilt factors are initially 0.0. You can
-also change an orthogonal box to a triclinic box or vice versa by
-using the :doc:`change box <change_box>` command with its *ortho* and
-*triclinic* options.
-
-.. note::
-
- If the system is non-periodic (in a dimension), then you should
- not make the lo/hi box dimensions (as defined in your
- :doc:`region <region>` command) radically smaller/larger than the extent
- of the atoms you eventually plan to create, e.g. via the
- :doc:`create_atoms <create_atoms>` command. For example, if your atoms
- extend from 0 to 50, you should not specify the box bounds as -10000
- and 10000. This is because as described above, LAMMPS uses the
- specified box size to layout the 3d grid of processors. A huge
- (mostly empty) box will be sub-optimal for performance when using
- "fixed" boundary conditions (see the :doc:`boundary <boundary>`
- command). When using "shrink-wrap" boundary conditions (see the
- :doc:`boundary <boundary>` command), a huge (mostly empty) box may cause
- a parallel simulation to lose atoms the first time that LAMMPS
- shrink-wraps the box around the atoms.
-
-
-----------
-
-
-The optional keywords can be used to create a system that allows for
-bond (angle, dihedral, improper) interactions, or for molecules with
-special 1-2,1-3,1-4 neighbors to be added later. These optional
-keywords serve the same purpose as the analogous keywords that can be
-used in a data file which are recognized by the
-:doc:`read_data <read_data>` command when it sets up a system.
-
-Note that if these keywords are not used, then the create_box command
-creates an atomic (non-molecular) simulation that does not allow bonds
-between pairs of atoms to be defined, or a :doc:`bond potential <bond_style>` to be specified, or for molecules with
-special neighbors to be added to the system by commands such as
-:doc:`create_atoms mol <create_atoms>`, :doc:`fix deposit <fix_deposit>`
-or :doc:`fix pour <fix_pour>`.
-
-As an example, see the examples/deposit/in.deposit.molecule script,
-which deposits molecules onto a substrate. Initially there are no
-molecules in the system, but they are added later by the :doc:`fix deposit <fix_deposit>` command. The create_box command in the
-script uses the bond/types and extra/bond/per/atom keywords to allow
-this. If the added molecule contained more than 1 special bond
-(allowed by default), an extra/special/per/atom keyword would also
-need to be specified.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-An :doc:`atom_style <atom_style>` and :doc:`region <region>` must have
-been previously defined to use this command.
-
-Related commands
-""""""""""""""""
-
-:doc:`read_data <read_data>`, :doc:`create_atoms <create_atoms>`,
-:doc:`region <region>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/delete_atoms.txt b/doc/_sources/delete_atoms.txt
deleted file mode 100644
index 14d88f933..000000000
--- a/doc/_sources/delete_atoms.txt
+++ /dev/null
@@ -1,163 +0,0 @@
-.. index:: delete_atoms
-
-delete_atoms command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- delete_atoms style args keyword value ...
-
-* style = *group* or *region* or *overlap* or *porosity*
-.. parsed-literal::
-
- *group* args = group-ID
- *region* args = region-ID
- *overlap* args = cutoff group1-ID group2-ID
- cutoff = delete one atom from pairs of atoms within the cutoff (distance units)
- group1-ID = one atom in pair must be in this group
- group2-ID = other atom in pair must be in this group
- *porosity* args = region-ID fraction seed
- region-ID = region within which to perform deletions
- fraction = delete this fraction of atoms
- seed = random number seed (positive integer)
-
-* zero or more keyword/value pairs may be appended
-* keyword = *compress* or *bond* or *mol*
-.. parsed-literal::
-
- *compress* value = *no* or *yes*
- *bond* value = *no* or *yes*
- *mol* value = *no* or *yes*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- delete_atoms group edge
- delete_atoms region sphere compress no
- delete_atoms overlap 0.3 all all
- delete_atoms overlap 0.5 solvent colloid
- delete_atoms porosity cube 0.1 482793 bond yes
-
-Description
-"""""""""""
-
-Delete the specified atoms. This command can be used to carve out
-voids from a block of material or to delete created atoms that are too
-close to each other (e.g. at a grain boundary).
-
-For style *group*, all atoms belonging to the group are deleted.
-
-For style *region*, all atoms in the region volume are deleted.
-Additional atoms can be deleted if they are in a molecule for which
-one or more atoms were deleted within the region; see the *mol*
-keyword discussion below.
-
-For style *overlap* pairs of atoms whose distance of separation is
-within the specified cutoff distance are searched for, and one of the
-2 atoms is deleted. Only pairs where one of the two atoms is in the
-first group specified and the other atom is in the second group are
-considered. The atom that is in the first group is the one that is
-deleted.
-
-Note that it is OK for the two group IDs to be the same (e.g. group
-*all*), or for some atoms to be members of both groups. In these
-cases, either atom in the pair may be deleted. Also note that if
-there are atoms which are members of both groups, the only guarantee
-is that at the end of the deletion operation, enough deletions will
-have occurred that no atom pairs within the cutoff will remain
-(subject to the group restriction). There is no guarantee that the
-minimum number of atoms will be deleted, or that the same atoms will
-be deleted when running on different numbers of processors.
-
-For style *porosity* a specified *fraction* of atoms are deleted
-within the specified region. For example, if fraction is 0.1, then
-10% of the atoms will be deleted. The atoms to delete are chosen
-randomly. There is no guarantee that the exact fraction of atoms will
-be deleted, or that the same atoms will be deleted when running on
-different numbers of processors.
-
-If the *compress* keyword is set to *yes*, then after atoms are
-deleted, then atom IDs are re-assigned so that they run from 1 to the
-number of atoms in the system. Note that this is not done for
-molecular systems (see the :doc:`atom_style <atom_style>` command),
-regardless of the *compress* setting, since it would foul up the bond
-connectivity that has already been assigned.
-
-A molecular system with fixed bonds, angles, dihedrals, or improper
-interactions, is one where the topology of the interactions is
-typically defined in the data file read by the
-:doc:`read_data <read_data>` command, and where the interactions
-themselves are defined with the :doc:`bond_style <bond_style>`,
-:doc:`angle_style <angle_style>`, etc commands. If you delete atoms
-from such a system, you must be careful not to end up with bonded
-interactions that are stored by remaining atoms but which include
-deleted atoms. This will cause LAMMPS to generate a "missing atoms"
-error when the bonded interaction is computed. The *bond* and *mol*
-keywords offer two ways to do that.
-
-It the *bond* keyword is set to *yes* then any bond or angle or
-dihedral or improper interaction that includes a deleted atom is also
-removed from the lists of such interactions stored by non-deleted
-atoms. Note that simply deleting interactions due to dangling bonds
-(e.g. at a surface) may result in a inaccurate or invalid model for
-the remaining atoms.
-
-It the *mol* keyword is set to *yes*, then for every atom that is
-deleted, all other atoms in the same molecule (with the same molecule
-ID) will also be deleted. This is not done for atoms with molecule ID
-= 0, since such an ID is assumed to flag isolated atoms that are not
-part of molecules.
-
-.. note::
-
- The molecule deletion operation in invoked after all individual
- atoms have been deleted using the rules described above for each
- style. This means additional atoms may be deleted that are not in the
- group or region, that are not required by the overlap cutoff
- criterion, or that will create a higher fraction of porosity than was
- requested.
-
-Restrictions
-""""""""""""
-
-
-The *overlap* styles requires inter-processor communication to acquire
-ghost atoms and build a neighbor list. This means that your system
-must be ready to perform a simulation before using this command (force
-fields setup, atom masses set, etc). Since a neighbor list is used to
-find overlapping atom pairs, it also means that you must define a
-:doc:`pair style <pair_style>` with the minimum force cutoff distance
-between any pair of atoms types (plus the :doc:`neighbor <neighbor>`
-skin) >= the specified overlap cutoff.
-
-If the :doc:`special_bonds <special_bonds>` command is used with a
-setting of 0, then a pair of bonded atoms (1-2, 1-3, or 1-4) will not
-appear in the neighbor list, and thus will not be considered for
-deletion by the *overlap* styles. You probably don't want to be
-deleting one atom in a bonded pair anyway.
-
-The *bond yes* option cannot be used with molecular systems defined
-using molecule template files via the :doc:`molecule <molecule>` and
-:doc:`atom_style template <atom_style>` commands.
-
-Related commands
-""""""""""""""""
-
-:doc:`create_atoms <create_atoms>`
-
-Default
-"""""""
-
-The option defaults are compress = yes, bond = no, mol = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/delete_bonds.txt b/doc/_sources/delete_bonds.txt
deleted file mode 100644
index cecdddc06..000000000
--- a/doc/_sources/delete_bonds.txt
+++ /dev/null
@@ -1,165 +0,0 @@
-.. index:: delete_bonds
-
-delete_bonds command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- delete_bonds group-ID style arg keyword ...
-
-* group-ID = group ID
-* style = *multi* or *atom* or *bond* or *angle* or *dihedral* or
- *improper* or *stats*
-.. parsed-literal::
-
- *multi* arg = none
- *atom* arg = an atom type or range of types (see below)
- *bond* arg = a bond type or range of types (see below)
- *angle* arg = an angle type or range of types (see below)
- *dihedral* arg = a dihedral type or range of types (see below)
- *improper* arg = an improper type or range of types (see below)
- *stats* arg = none
-
-* zero or more keywords may be appended
-* keyword = *any* or *undo* or *remove* or *special*
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- delete_bonds frozen multi remove
- delete_bonds all atom 4 special
- delete_bonds all bond 0*3 special
- delete_bonds all stats
-
-Description
-"""""""""""
-
-Turn off (or on) molecular topology interactions, i.e. bonds, angles,
-dihedrals, impropers. This command is useful for deleting
-interactions that have been previously turned off by bond-breaking
-potentials. It is also useful for turning off topology interactions
-between frozen or rigid atoms. Pairwise interactions can be turned
-off via the :doc:`neigh_modify exclude <neigh_modify>` command. The
-:doc:`fix shake <fix_shake>` command also effectively turns off certain
-bond and angle interactions.
-
-For all styles, by default, an interaction is only turned off (or on)
-if all the atoms involved are in the specified group. See the *any*
-keyword to change the behavior.
-
-Several of the styles (*atom*, *bond*, *angle*, *dihedral*,
-*improper*) take a *type* as an argument. The specified *type* should
-be an integer from 0 to N, where N is the number of relevant types
-(atom types, bond types, etc). A value of 0 is only relevant for
-style *bond*; see details below. In all cases, a wildcard asterisk
-can be used in place of or in conjunction with the *type* argument to
-specify a range of types. This takes the form "*" or "*n" or "n*" or
-"m*n". If N = the number of types, then an asterisk with no numeric
-values means all types from 0 to N. A leading asterisk means all
-types from 0 to n (inclusive). A trailing asterisk means all types
-from n to N (inclusive). A middle asterisk means all types from m to
-n (inclusive). Note that it is fine to include a type of 0 for
-non-bond styles; it will simply be ignored.
-
-For style *multi* all bond, angle, dihedral, and improper interactions
-of any type, involving atoms in the group, are turned off.
-
-Style *atom* is the same as style *multi* except that in addition, one
-or more of the atoms involved in the bond, angle, dihedral, or
-improper interaction must also be of the specified atom type.
-
-For style *bond*, only bonds are candidates for turn-off, and the bond
-must also be of the specified type. Styles *angle*, *dihedral*, and
-*improper* are treated similarly.
-
-For style *bond*, you can set the type to 0 to delete bonds that have
-been previously broken by a bond-breaking potential (which sets the
-bond type to 0 when a bond is broken); e.g. see the :doc:`bond_style quartic <bond_style>` command.
-
-For style *stats* no interactions are turned off (or on); the status
-of all interactions in the specified group is simply reported. This
-is useful for diagnostic purposes if bonds have been turned off by a
-bond-breaking potential during a previous run.
-
-The default behavior of the delete_bonds command is to turn off
-interactions by toggling their type to a negative value, but not to
-permanently remove the interaction. E.g. a bond_type of 2 is set to
--2. The neighbor list creation routines will not include such an
-interaction in their interaction lists. The default is also to not
-alter the list of 1-2, 1-3, 1-4 neighbors computed by the
-:doc:`special_bonds <special_bonds>` command and used to weight pairwise
-force and energy calculations. This means that pairwise computations
-will proceed as if the bond (or angle, etc) were still turned on.
-
-Several keywords can be appended to the argument list to alter the
-default behaviors.
-
-The *any* keyword changes the requirement that all atoms in the bond
-(angle, etc) must be in the specified group in order to turn-off the
-interaction. Instead, if any of the atoms in the interaction are in
-the specified group, it will be turned off (or on if the *undo*
-keyword is used).
-
-The *undo* keyword inverts the delete_bonds command so that the
-specified bonds, angles, etc are turned on if they are currently
-turned off. This means a negative value is toggled to positive. For
-example, for style *angle*, if *type* is specified as 2, then all
-angles with current type = -2, are reset to type = 2. Note that the
-:doc:`fix shake <fix_shake>` command also sets bond and angle types
-negative, so this option should not be used on those interactions.
-
-The *remove* keyword is invoked at the end of the delete_bonds
-operation. It causes turned-off bonds (angles, etc) to be removed
-from each atom's data structure and then adjusts the global bond
-(angle, etc) counts accordingly. Removal is a permanent change;
-removed bonds cannot be turned back on via the *undo* keyword.
-Removal does not alter the pairwise 1-2, 1-3, 1-4 weighting list.
-
-The *special* keyword is invoked at the end of the delete_bonds
-operation, after (optional) removal. It re-computes the pairwise 1-2,
-1-3, 1-4 weighting list. The weighting list computation treats
-turned-off bonds the same as turned-on. Thus, turned-off bonds must
-be removed if you wish to change the weighting list.
-
-Note that the choice of *remove* and *special* options affects how
-1-2, 1-3, 1-4 pairwise interactions will be computed across bonds that
-have been modified by the delete_bonds command.
-
-Restrictions
-""""""""""""
-
-
-This command requires inter-processor communication to acquire ghost
-atoms, to coordinate the deleting of bonds, angles, etc between atoms
-shared by multiple processors. This means that your system must be
-ready to perform a simulation before using this command (force fields
-setup, atom masses set, etc). Just as would be needed to run
-dynamics, the force field you define should define a cutoff
-(e.g. through a :doc:`pair_style <pair_style>` command) which is long
-enough for a processor to acquire the ghost atoms its needs to compute
-bond, angle, etc interactions.
-
-If deleted bonds (angles, etc) are removed but the 1-2, 1-3, 1-4
-weighting list is not recomputed, this can cause a later :doc:`fix shake <fix_shake>` command to fail due to an atom's bonds being
-inconsistent with the weighting list. This should only happen if the
-group used in the fix command includes both atoms in the bond, in
-which case you probably should be recomputing the weighting list.
-
-Related commands
-""""""""""""""""
-
-:doc:`neigh_modify <neigh_modify>` exclude,
-:doc:`special_bonds <special_bonds>`, :doc:`fix shake <fix_shake>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dielectric.txt b/doc/_sources/dielectric.txt
deleted file mode 100644
index c9b09437e..000000000
--- a/doc/_sources/dielectric.txt
+++ /dev/null
@@ -1,52 +0,0 @@
-.. index:: dielectric
-
-dielectric command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dielectric value
-
-* value = dielectric constant
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dielectric 2.0
-
-Description
-"""""""""""
-
-Set the dielectric constant for Coulombic interactions (pairwise and
-long-range) to this value. The constant is unitless, since it is used
-to reduce the strength of the interactions. The value is used in the
-denominator of the formulas for Coulombic interactions - e.g. a value
-of 4.0 reduces the Coulombic interactions to 25% of their default
-strength. See the :doc:`pair_style <pair_style>` command for more
-details.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style <pair_style>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- dielectric 1.0
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_charmm.txt b/doc/_sources/dihedral_charmm.txt
deleted file mode 100644
index 4e26eac78..000000000
--- a/doc/_sources/dihedral_charmm.txt
+++ /dev/null
@@ -1,141 +0,0 @@
-.. index:: dihedral_style charmm
-
-dihedral_style charmm command
-=============================
-
-dihedral_style charmm/intel command
-===================================
-
-dihedral_style charmm/kk command
-================================
-
-dihedral_style charmm/omp command
-=================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style charmm
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style charmm
- dihedral_coeff 1 120.0 1 60 0.5
-
-Description
-"""""""""""
-
-The *charmm* dihedral style uses the potential
-
-.. image:: Eqs/dihedral_charmm.jpg
- :align: center
-
-See :ref:`(MacKerell) <MacKerell>` for a description of the CHARMM force
-field. This dihedral style can also be used for the AMBER force field
-(see comment on weighting factors below). See :ref:`(Cornell) <Cornell>`
-for a description of the AMBER force field.
-
-The following coefficients must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-* n (integer >= 0)
-* d (integer value of degrees)
-* weighting factor (0.0 to 1.0)
-
-The weighting factor is applied to pairwise interaction between the
-1st and 4th atoms in the dihedral, which are computed by a CHARMM
-:doc:`pair_style <pair_charmm>` with epsilon and sigma values specified
-with a :doc:`pair_coeff <pair_charmm>` command. Note that this
-weighting factor is unrelated to the weighting factor specified by the
-:doc:`special bonds <special_bonds>` command which applies to all 1-4
-interactions in the system.
-
-For CHARMM force fields, the special_bonds 1-4 weighting factor should
-be set to 0.0. This is because the pair styles that contain "charmm"
-(e.g. :doc:`pair_style lj/charmm/coul/long <pair_charmm>`) define extra
-1-4 interaction coefficients that are used by this dihedral style to
-compute those interactions explicitly. This means that if any of the
-weighting factors defined as dihedral coefficients (4th coeff above)
-are non-zero, then you must use a charmm pair style. Note that if you
-do not set the special_bonds 1-4 weighting factor to 0.0 (which is the
-default) then 1-4 interactions in dihedrals will be computed twice,
-once by the pair routine and once by the dihedral routine, which is
-probably not what you want.
-
-For AMBER force fields, the special_bonds 1-4 weighting factor should
-be set to the AMBER defaults (1/2 and 5/6) and all the dihedral
-weighting factors (4th coeff above) should be set to 0.0. In this
-case, you can use any pair style you wish, since the dihedral does not
-need any 1-4 information.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Cornell:
-
-
-
-**(Cornell)** Cornell, Cieplak, Bayly, Gould, Merz, Ferguson,
-Spellmeyer, Fox, Caldwell, Kollman, JACS 117, 5179-5197 (1995).
-
-.. _MacKerell:
-
-
-
-**(MacKerell)** MacKerell, Bashford, Bellott, Dunbrack, Evanseck, Field,
-Fischer, Gao, Guo, Ha, et al, J Phys Chem B, 102, 3586 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_class2.txt b/doc/_sources/dihedral_class2.txt
deleted file mode 100644
index 4e0ae04ae..000000000
--- a/doc/_sources/dihedral_class2.txt
+++ /dev/null
@@ -1,198 +0,0 @@
-.. index:: dihedral_style class2
-
-dihedral_style class2 command
-=============================
-
-dihedral_style class2/omp command
-=================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style class2
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style class2
- dihedral_coeff 1 100 75 100 70 80 60
- dihedral_coeff * mbt 3.5945 0.1704 -0.5490 1.5228
- dihedral_coeff * ebt 0.3417 0.3264 -0.9036 0.1368 0.0 -0.8080 1.0119 1.1010
- dihedral_coeff 2 at 0.0 -0.1850 -0.7963 -2.0220 0.0 -0.3991 110.2453 105.1270
- dihedral_coeff * aat -13.5271 110.2453 105.1270
- dihedral_coeff * bb13 0.0 1.0119 1.1010
-
-Description
-"""""""""""
-
-The *class2* dihedral style uses the potential
-
-.. image:: Eqs/dihedral_class2.jpg
- :align: center
-
-where Ed is the dihedral term, Embt is a middle-bond-torsion term,
-Eebt is an end-bond-torsion term, Eat is an angle-torsion term, Eaat
-is an angle-angle-torsion term, and Ebb13 is a bond-bond-13 term.
-
-Theta1 and theta2 are equilibrium angles and r1 r2 r3 are equilibrium
-bond lengths.
-
-See :ref:`(Sun) <Sun>` for a description of the COMPASS class2 force field.
-
-Coefficients for the Ed, Embt, Eebt, Eat, Eaat, and Ebb13 formulas
-must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands.
-
-These are the 6 coefficients for the Ed formula:
-
-* K1 (energy)
-* phi1 (degrees)
-* K2 (energy)
-* phi2 (degrees)
-* K3 (energy)
-* phi3 (degrees)
-
-For the Embt formula, each line in a
-:doc:`dihedral_coeff <dihedral_coeff>` command in the input script lists
-5 coefficients, the first of which is "mbt" to indicate they are
-MiddleBondTorsion coefficients. In a data file, these coefficients
-should be listed under a "MiddleBondTorsion Coeffs" heading and you
-must leave out the "mbt", i.e. only list 4 coefficients after the
-dihedral type.
-
-* mbt
-* A1 (energy/distance)
-* A2 (energy/distance)
-* A3 (energy/distance)
-* r2 (distance)
-
-For the Eebt formula, each line in a
-:doc:`dihedral_coeff <dihedral_coeff>` command in the input script lists
-9 coefficients, the first of which is "ebt" to indicate they are
-EndBondTorsion coefficients. In a data file, these coefficients
-should be listed under a "EndBondTorsion Coeffs" heading and you must
-leave out the "ebt", i.e. only list 8 coefficients after the dihedral
-type.
-
-* ebt
-* B1 (energy/distance)
-* B2 (energy/distance)
-* B3 (energy/distance)
-* C1 (energy/distance)
-* C2 (energy/distance)
-* C3 (energy/distance)
-* r1 (distance)
-* r3 (distance)
-
-For the Eat formula, each line in a
-:doc:`dihedral_coeff <dihedral_coeff>` command in the input script lists
-9 coefficients, the first of which is "at" to indicate they are
-AngleTorsion coefficients. In a data file, these coefficients should
-be listed under a "AngleTorsion Coeffs" heading and you must leave out
-the "at", i.e. only list 8 coefficients after the dihedral type.
-
-* at
-* D1 (energy/radian)
-* D2 (energy/radian)
-* D3 (energy/radian)
-* E1 (energy/radian)
-* E2 (energy/radian)
-* E3 (energy/radian)
-* theta1 (degrees)
-* theta2 (degrees)
-
-Theta1 and theta2 are specified in degrees, but LAMMPS converts them
-to radians internally; hence the units of D and E are in
-energy/radian.
-
-For the Eaat formula, each line in a
-:doc:`dihedral_coeff <dihedral_coeff>` command in the input script lists
-4 coefficients, the first of which is "aat" to indicate they are
-AngleAngleTorsion coefficients. In a data file, these coefficients
-should be listed under a "AngleAngleTorsion Coeffs" heading and you
-must leave out the "aat", i.e. only list 3 coefficients after the
-dihedral type.
-
-* aat
-* M (energy/radian^2)
-* theta1 (degrees)
-* theta2 (degrees)
-
-Theta1 and theta2 are specified in degrees, but LAMMPS converts them
-to radians internally; hence the units of M are in energy/radian^2.
-
-For the Ebb13 formula, each line in a
-:doc:`dihedral_coeff <dihedral_coeff>` command in the input script lists
-4 coefficients, the first of which is "bb13" to indicate they are
-BondBond13 coefficients. In a data file, these coefficients should be
-listed under a "BondBond13 Coeffs" heading and you must leave out the
-"bb13", i.e. only list 3 coefficients after the dihedral type.
-
-* bb13
-* N (energy/distance^2)
-* r1 (distance)
-* r3 (distance)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-CLASS2 package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Sun:
-
-
-
-**(Sun)** Sun, J Phys Chem B 102, 7338-7364 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_coeff.txt b/doc/_sources/dihedral_coeff.txt
deleted file mode 100644
index 20aa5911c..000000000
--- a/doc/_sources/dihedral_coeff.txt
+++ /dev/null
@@ -1,130 +0,0 @@
-.. index:: dihedral_coeff
-
-dihedral_coeff command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_coeff N args
-
-* N = dihedral type (see asterisk form below)
-* args = coefficients for one or more dihedral types
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_coeff 1 80.0 1 3
- dihedral_coeff * 80.0 1 3 0.5
- dihedral_coeff 2* 80.0 1 3 0.5
-
-Description
-"""""""""""
-
-
-----------
-
-
-Specify the dihedral force field coefficients for one or more dihedral types.
-The number and meaning of the coefficients depends on the dihedral style.
-Dihedral coefficients can also be set in the data file read by the
-:doc:`read_data <read_data>` command or in a restart file.
-
-N can be specified in one of two ways. An explicit numeric value can
-be used, as in the 1st example above. Or a wild-card asterisk can be
-used to set the coefficients for multiple dihedral types. This takes the
-form "*" or "*n" or "n*" or "m*n". If N = the number of dihedral types,
-then an asterisk with no numeric values means all types from 1 to N. A
-leading asterisk means all types from 1 to n (inclusive). A trailing
-asterisk means all types from n to N (inclusive). A middle asterisk
-means all types from m to n (inclusive).
-
-Note that using a dihedral_coeff command can override a previous setting
-for the same dihedral type. For example, these commands set the coeffs
-for all dihedral types, then overwrite the coeffs for just dihedral type 2:
-
-.. parsed-literal::
-
- dihedral_coeff * 80.0 1 3
- dihedral_coeff 2 200.0 1 3
-
-A line in a data file that specifies dihedral coefficients uses the exact
-same format as the arguments of the dihedral_coeff command in an input
-script, except that wild-card asterisks should not be used since
-coefficients for all N types must be listed in the file. For example,
-under the "Dihedral Coeffs" section of a data file, the line that
-corresponds to the 1st example above would be listed as
-
-.. parsed-literal::
-
- 1 80.0 1 3
-
-The :doc:`dihedral_style class2 <dihedral_class2>` is an exception to
-this rule, in that an additional argument is used in the input script
-to allow specification of the cross-term coefficients. See its doc
-page for details.
-
-.. note::
-
- When comparing the formulas and coefficients for various LAMMPS
- dihedral styles with dihedral equations defined by other force fields,
- note that some force field implementations divide/multiply the energy
- prefactor *K* by the multiple number of torsions that contain the J-K
- bond in an I-J-K-L torsion. LAMMPS does not do this, i.e. the listed
- dihedral equation applies to each individual dihedral. Thus you need
- to define *K* appropriately to account for this difference if
- necessary.
-
-
-----------
-
-
-Here is an alphabetic list of dihedral styles defined in LAMMPS. Click on
-the style to display the formula it computes and coefficients
-specified by the associated :doc:`dihedral_coeff <dihedral_coeff>` command.
-
-Note that there are also additional dihedral styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the dihedral section of
-:ref:`this page <cmd_5>`.
-
-* :doc:`dihedral_style none <dihedral_none>` - turn off dihedral interactions
-* :doc:`dihedral_style hybrid <dihedral_hybrid>` - define multiple styles of dihedral interactions
-
-* :doc:`dihedral_style charmm <dihedral_charmm>` - CHARMM dihedral
-* :doc:`dihedral_style class2 <dihedral_class2>` - COMPASS (class 2) dihedral
-* :doc:`dihedral_style harmonic <dihedral_harmonic>` - harmonic dihedral
-* :doc:`dihedral_style helix <dihedral_helix>` - helix dihedral
-* :doc:`dihedral_style multi/harmonic <dihedral_multi_harmonic>` - multi-harmonic dihedral
-* :doc:`dihedral_style opls <dihedral_opls>` - OPLS dihedral
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command must come after the simulation box is defined by a
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`, or
-:doc:`create_box <create_box>` command.
-
-A dihedral style must be defined before any dihedral coefficients are
-set, either in the input script or in a data file.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_style <dihedral_style>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_cosine_shift_exp.txt b/doc/_sources/dihedral_cosine_shift_exp.txt
deleted file mode 100644
index 613cf25a5..000000000
--- a/doc/_sources/dihedral_cosine_shift_exp.txt
+++ /dev/null
@@ -1,101 +0,0 @@
-.. index:: dihedral_style cosine/shift/exp
-
-dihedral_style cosine/shift/exp command
-=======================================
-
-dihedral_style cosine/shift/exp/omp command
-===========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style cosine/shift/exp
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style cosine/shift/exp
- dihedral_coeff 1 10.0 45.0 2.0
-
-Description
-"""""""""""
-
-The *cosine/shift/exp* dihedral style uses the potential
-
-.. image:: Eqs/dihedral_cosine_shift_exp.jpg
- :align: center
-
-where Umin, theta, and a are defined for each dihedral type.
-
-The potential is bounded between [-Umin:0] and the minimum is located
-at the angle theta0. The a parameter can be both positive or negative
-and is used to control the spring constant at the equilibrium.
-
-The spring constant is given by k=a exp(a) Umin/ [2 (Exp(a)-1)].
-For a>3 k/Umin = a/2 to better than 5% relative error. For negative
-values of the a parameter, the spring constant is essentially zero,
-and anharmonic terms takes over. The potential is furthermore well
-behaved in the limit a->0, where it has been implemented to linear
-order in a for a < 0.001.
-
-The following coefficients must be defined for each dihedral type via
-the :doc:`dihedral_coeff <dihedral_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* umin (energy)
-* theta (angle)
-* A (real number)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`,
-:doc:`angle_cosineshiftexp <angle_cosineshiftexp>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_fourier.txt b/doc/_sources/dihedral_fourier.txt
deleted file mode 100644
index f71f31879..000000000
--- a/doc/_sources/dihedral_fourier.txt
+++ /dev/null
@@ -1,91 +0,0 @@
-.. index:: dihedral_style fourier
-
-dihedral_style fourier command
-==============================
-
-dihedral_style fourier/omp command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style fourier
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style fourier
- dihedral_coeff 1 3 -0.846200 3 0.0 7.578800 1 0 0.138000 2 -180.0
-
-Description
-"""""""""""
-
-The *fourier* dihedral style uses the potential:
-
-.. image:: Eqs/dihedral_fourier.jpg
- :align: center
-
-The following coefficients must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* m (integer >=1)
-* K1 (energy)
-* n1 (integer >= 0)
-* d1 (degrees)
-* ....
-* Km (energy)
-* nm (integer >= 0)
-* dm (degrees)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER_MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_harmonic.txt b/doc/_sources/dihedral_harmonic.txt
deleted file mode 100644
index 8c279565b..000000000
--- a/doc/_sources/dihedral_harmonic.txt
+++ /dev/null
@@ -1,100 +0,0 @@
-.. index:: dihedral_style harmonic
-
-dihedral_style harmonic command
-===============================
-
-dihedral_style harmonic/intel command
-=====================================
-
-dihedral_style harmonic/omp command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style harmonic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style harmonic
- dihedral_coeff 1 80.0 1 2
-
-Description
-"""""""""""
-
-The *harmonic* dihedral style uses the potential
-
-.. image:: Eqs/dihedral_harmonic.jpg
- :align: center
-
-The following coefficients must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K (energy)
-* d (+1 or -1)
-* n (integer >= 0)
-
-.. note::
-
- Here are important points to take note of when defining LAMMPS
- dihedral coefficients for the harmonic style, so that they are
- compatible with how harmonic dihedrals are defined by other force
- fields:
-
-* The LAMMPS convention is that the trans position = 180 degrees, while
- in some force fields trans = 0 degrees.
-* Some force fields reverse the sign convention on *d*.
-* Some force fields let *n* be positive or negative which corresponds to
- *d* = 1 or -1 for the harmonic style.
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_helix.txt b/doc/_sources/dihedral_helix.txt
deleted file mode 100644
index a034610a1..000000000
--- a/doc/_sources/dihedral_helix.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-.. index:: dihedral_style helix
-
-dihedral_style helix command
-============================
-
-dihedral_style helix/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style helix
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style helix
- dihedral_coeff 1 80.0 100.0 40.0
-
-Description
-"""""""""""
-
-The *helix* dihedral style uses the potential
-
-.. image:: Eqs/dihedral_helix.jpg
- :align: center
-
-This coarse-grain dihedral potential is described in :ref:`(Guo) <Guo>`.
-For dihedral angles in the helical region, the energy function is
-represented by a standard potential consisting of three minima, one
-corresponding to the trans (t) state and the other to gauche states
-(g+ and g-). The paper describes how the A,B,C parameters are chosen
-so as to balance secondary (largely driven by local interactions) and
-tertiary structure (driven by long-range interactions).
-
-The following coefficients must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* A (energy)
-* B (energy)
-* C (energy)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Guo:
-
-
-
-**(Guo)** Guo and Thirumalai, Journal of Molecular Biology, 263, 323-43 (1996).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_hybrid.txt b/doc/_sources/dihedral_hybrid.txt
deleted file mode 100644
index a654aedaa..000000000
--- a/doc/_sources/dihedral_hybrid.txt
+++ /dev/null
@@ -1,110 +0,0 @@
-.. index:: dihedral_style hybrid
-
-dihedral_style hybrid command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style hybrid style1 style2 ...
-
-* style1,style2 = list of one or more dihedral styles
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style hybrid harmonic helix
- dihedral_coeff 1 harmonic 6.0 1 3
- dihedral_coeff 2* helix 10 10 10
-
-Description
-"""""""""""
-
-The *hybrid* style enables the use of multiple dihedral styles in one
-simulation. An dihedral style is assigned to each dihedral type. For
-example, dihedrals in a polymer flow (of dihedral type 1) could be
-computed with a *harmonic* potential and dihedrals in the wall
-boundary (of dihedral type 2) could be computed with a *helix*
-potential. The assignment of dihedral type to style is made via the
-:doc:`dihedral_coeff <dihedral_coeff>` command or in the data file.
-
-In the dihedral_coeff commands, the name of a dihedral style must be
-added after the dihedral type, with the remaining coefficients being
-those appropriate to that style. In the example above, the 2
-dihedral_coeff commands set dihedrals of dihedral type 1 to be
-computed with a *harmonic* potential with coefficients 6.0, 1, 3 for
-K, d, n. All other dihedral types (2-N) are computed with a *helix*
-potential with coefficients 10, 10, 10 for A, B, C.
-
-If dihedral coefficients are specified in the data file read via the
-:doc:`read_data <read_data>` command, then the same rule applies.
-E.g. "harmonic" or "helix", must be added after the dihedral type, for
-each line in the "Dihedral Coeffs" section, e.g.
-
-.. parsed-literal::
-
- Dihedral Coeffs
-
-.. parsed-literal::
-
- 1 harmonic 6.0 1 3
- 2 helix 10 10 10
- ...
-
-If *class2* is one of the dihedral hybrid styles, the same rule holds
-for specifying additional AngleTorsion (and EndBondTorsion, etc)
-coefficients either via the input script or in the data file.
-I.e. *class2* must be added to each line after the dihedral type. For
-lines in the AngleTorsion (or EndBondTorsion, etc) section of the data
-file for dihedral types that are not *class2*, you must use an
-dihedral style of *skip* as a placeholder, e.g.
-
-.. parsed-literal::
-
- AngleTorsion Coeffs
-
-.. parsed-literal::
-
- 1 skip
- 2 class2 1.0 1.0 1.0 3.0 3.0 3.0 30.0 50.0
- ...
-
-Note that it is not necessary to use the dihedral style *skip* in the
-input script, since AngleTorsion (or EndBondTorsion, etc) coefficients
-need not be specified at all for dihedral types that are not *class2*.
-
-A dihedral style of *none* with no additional coefficients can be used
-in place of a dihedral style, either in a input script dihedral_coeff
-command or in the data file, if you desire to turn off interactions
-for specific dihedral types.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Unlike other dihedral styles, the hybrid dihedral style does not store
-dihedral coefficient info for individual sub-styles in a :doc:`binary restart files <restart>`. Thus when retarting a simulation from a
-restart file, you need to re-specify dihedral_coeff commands.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_multi_harmonic.txt b/doc/_sources/dihedral_multi_harmonic.txt
deleted file mode 100644
index 2fa1a27e9..000000000
--- a/doc/_sources/dihedral_multi_harmonic.txt
+++ /dev/null
@@ -1,87 +0,0 @@
-.. index:: dihedral_style multi/harmonic
-
-dihedral_style multi/harmonic command
-=====================================
-
-dihedral_style multi/harmonic/omp command
-=========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style multi/harmonic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style multi/harmonic
- dihedral_coeff 1 20 20 20 20 20
-
-Description
-"""""""""""
-
-The *multi/harmonic* dihedral style uses the potential
-
-.. image:: Eqs/dihedral_multi_harmonic.jpg
- :align: center
-
-The following coefficients must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* A1 (energy)
-* A2 (energy)
-* A3 (energy)
-* A4 (energy)
-* A5 (energy)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_nharmonic.txt b/doc/_sources/dihedral_nharmonic.txt
deleted file mode 100644
index 8724f70fd..000000000
--- a/doc/_sources/dihedral_nharmonic.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-.. index:: dihedral_style nharmonic
-
-dihedral_style nharmonic command
-================================
-
-dihedral_style nharmonic/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style nharmonic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style nharmonic
- dihedral_coeff 3 10.0 20.0 30.0
-
-Description
-"""""""""""
-
-The *nharmonic* dihedral style uses the potential:
-
-.. image:: Eqs/dihedral_nharmonic.jpg
- :align: center
-
-The following coefficients must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* n (integer >=1)
-* A1 (energy)
-* A2 (energy)
-* ...
-* An (energy)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER_MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_none.txt b/doc/_sources/dihedral_none.txt
deleted file mode 100644
index bb7b5d835..000000000
--- a/doc/_sources/dihedral_none.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-.. index:: dihedral_style none
-
-dihedral_style none command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style none
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style none
-
-Description
-"""""""""""
-
-Using a dihedral style of none means dihedral forces and energies are
-not computed, even if quadruplets of dihedral atoms were listed in the
-data file read by the :doc:`read_data <read_data>` command.
-
-See the :doc:`dihedral_style zero <dihedral_zero>` command for a way to
-calculate dihedral statistics, but compute no dihedral interactions.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_style zero <dihedral_zero>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_opls.txt b/doc/_sources/dihedral_opls.txt
deleted file mode 100644
index 23f994747..000000000
--- a/doc/_sources/dihedral_opls.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-.. index:: dihedral_style opls
-
-dihedral_style opls command
-===========================
-
-dihedral_style opls/intel command
-=================================
-
-dihedral_style opls/kk command
-==============================
-
-dihedral_style opls/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style opls
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style opls
- dihedral_coeff 1 1.740 -0.157 0.279 0.00 # CT-CT-CT-CT
- dihedral_coeff 2 0.000 0.000 0.366 0.000 # CT-CT-CT-HC
- dihedral_coeff 3 0.000 0.000 0.318 0.000 # HC-CT-CT-HC
-
-Description
-"""""""""""
-
-The *opls* dihedral style uses the potential
-
-.. image:: Eqs/dihedral_opls.jpg
- :align: center
-
-Note that the usual 1/2 factor is not included in the K values.
-
-This dihedral potential is used in the OPLS force field and is
-described in :ref:`(Watkins) <Watkins>`.
-
-The following coefficients must be defined for each dihedral type via the
-:doc:`dihedral_coeff <dihedral_coeff>` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* K1 (energy)
-* K2 (energy)
-* K3 (energy)
-* K4 (energy)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Watkins:
-
-
-
-**(Watkins)** Watkins and Jorgensen, J Phys Chem A, 105, 4118-4125 (2001).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_quadratic.txt b/doc/_sources/dihedral_quadratic.txt
deleted file mode 100644
index 5f680e43c..000000000
--- a/doc/_sources/dihedral_quadratic.txt
+++ /dev/null
@@ -1,89 +0,0 @@
-.. index:: dihedral_style quadratic
-
-dihedral_style quadratic command
-================================
-
-dihedral_style quadratic/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style quadratic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style quadratic
- dihedral_coeff 100.0 80.0
-
-Description
-"""""""""""
-
-The *quadratic* dihedral style uses the potential:
-
-.. image:: Eqs/dihedral_quadratic.jpg
- :align: center
-
-This dihedral potential can be used to keep a dihedral in a predefined
-value (cis=zero, right-hand convention is used).
-
-The following coefficients must be defined for each dihedral type via
-the :doc:`dihedral_coeff <dihedral_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* K (energy/radian^2)
-* phi0 (degrees)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER_MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_style.txt b/doc/_sources/dihedral_style.txt
deleted file mode 100644
index c5e806406..000000000
--- a/doc/_sources/dihedral_style.txt
+++ /dev/null
@@ -1,136 +0,0 @@
-.. index:: dihedral_style
-
-dihedral_style command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style style
-
-* style = *none* or *hybrid* or *charmm* or *class2* or *harmonic* or *helix* or *multi/harmonic* or *opls*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style harmonic
- dihedral_style multi/harmonic
- dihedral_style hybrid harmonic charmm
-
-Description
-"""""""""""
-
-Set the formula(s) LAMMPS uses to compute dihedral interactions
-between quadruplets of atoms, which remain in force for the duration
-of the simulation. The list of dihedral quadruplets is read in by a
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>` command
-from a data or restart file.
-
-Hybrid models where dihedrals are computed using different dihedral
-potentials can be setup using the *hybrid* dihedral style.
-
-The coefficients associated with a dihedral style can be specified in
-a data or restart file or via the :doc:`dihedral_coeff <dihedral_coeff>`
-command.
-
-All dihedral potentials store their coefficient data in binary restart
-files which means dihedral_style and
-:doc:`dihedral_coeff <dihedral_coeff>` commands do not need to be
-re-specified in an input script that restarts a simulation. See the
-:doc:`read_restart <read_restart>` command for details on how to do
-this. The one exception is that dihedral_style *hybrid* only stores
-the list of sub-styles in the restart file; dihedral coefficients need
-to be re-specified.
-
-.. note::
-
- When both a dihedral and pair style is defined, the
- :doc:`special_bonds <special_bonds>` command often needs to be used to
- turn off (or weight) the pairwise interaction that would otherwise
- exist between 4 bonded atoms.
-
-In the formulas listed for each dihedral style, *phi* is the torsional
-angle defined by the quadruplet of atoms. This angle has a sign
-convention as shown in this diagram:
-
-.. image:: Eqs/dihedral_sign.jpg
- :align: center
-
-where the I,J,K,L ordering of the 4 atoms that define the dihedral
-is from left to right.
-
-This sign convention effects several of the dihedral styles listed
-below (e.g. charmm, helix) in the sense that the energy formula
-depends on the sign of phi, which may be reflected in the value of the
-coefficients you specify.
-
-.. note::
-
- When comparing the formulas and coefficients for various LAMMPS
- dihedral styles with dihedral equations defined by other force fields,
- note that some force field implementations divide/multiply the energy
- prefactor *K* by the multiple number of torsions that contain the J-K
- bond in an I-J-K-L torsion. LAMMPS does not do this, i.e. the listed
- dihedral equation applies to each individual dihedral. Thus you need
- to define *K* appropriately via the
- :doc:`dihedral_coeff <dihedral_coeff>` command to account for this
- difference if necessary.
-
-
-----------
-
-
-Here is an alphabetic list of dihedral styles defined in LAMMPS. Click on
-the style to display the formula it computes and coefficients
-specified by the associated :doc:`dihedral_coeff <dihedral_coeff>` command.
-
-Note that there are also additional dihedral styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the dihedral section of
-:ref:`this page <cmd_5>`.
-
-* :doc:`dihedral_style none <dihedral_none>` - turn off dihedral interactions
-* :doc:`dihedral_style zero <dihedral_zero>` - topology but no interactions
-* :doc:`dihedral_style hybrid <dihedral_hybrid>` - define multiple styles of dihedral interactions
-
-* :doc:`dihedral_style charmm <dihedral_charmm>` - CHARMM dihedral
-* :doc:`dihedral_style class2 <dihedral_class2>` - COMPASS (class 2) dihedral
-* :doc:`dihedral_style harmonic <dihedral_harmonic>` - harmonic dihedral
-* :doc:`dihedral_style helix <dihedral_helix>` - helix dihedral
-* :doc:`dihedral_style multi/harmonic <dihedral_multi_harmonic>` - multi-harmonic dihedral
-* :doc:`dihedral_style opls <dihedral_opls>` - OPLS dihedral
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Dihedral styles can only be set for atom styles that allow dihedrals
-to be defined.
-
-Most dihedral styles are part of the MOLECULE package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-The doc pages for individual dihedral potentials tell if it is part of
-a package.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-Default
-"""""""
-
-dihedral_style none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_table.txt b/doc/_sources/dihedral_table.txt
deleted file mode 100644
index 0e3c537b2..000000000
--- a/doc/_sources/dihedral_table.txt
+++ /dev/null
@@ -1,229 +0,0 @@
-.. index:: dihedral_style table
-
-dihedral_style table command
-============================
-
-dihedral_style table/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style table style Ntable
-
-* style = *linear* or *spline* = method of interpolation
-* Ntable = size of the internal lookup table
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style table spline 400
- dihedral_style table linear 1000
- dihedral_coeff 1 file.table DIH_TABLE1
- dihedral_coeff 2 file.table DIH_TABLE2
-
-Description
-"""""""""""
-
-The *table* dihedral style creates interpolation tables of length
-*Ntable* from dihedral potential and derivative values listed in a
-file(s) as a function of the dihedral angle "phi". The files are read
-by the :doc:`dihedral_coeff <dihedral_coeff>` command.
-
-The interpolation tables are created by fitting cubic splines to the
-file values and interpolating energy and derivative values at each of
-*Ntable* dihedral angles. During a simulation, these tables are used
-to interpolate energy and force values on individual atoms as
-needed. The interpolation is done in one of 2 styles: *linear* or
-*spline*.
-
-For the *linear* style, the dihedral angle (phi) is used to find 2
-surrounding table values from which an energy or its derivative is
-computed by linear interpolation.
-
-For the *spline* style, cubic spline coefficients are computed and
-stored at each of the *Ntable* evenly-spaced values in the
-interpolated table. For a given dihedral angle (phi), the appropriate
-coefficients are chosen from this list, and a cubic polynomial is used
-to compute the energy and the derivative at this angle.
-
-The following coefficients must be defined for each dihedral type via
-the :doc:`dihedral_coeff <dihedral_coeff>` command as in the example
-above.
-
-* filename
-* keyword
-
-The filename specifies a file containing tabulated energy and
-derivative values. The keyword specifies a section of the file. The
-format of this file is described below.
-
-
-----------
-
-
-The format of a tabulated file is as follows (without the
-parenthesized comments). It can begin with one or more comment
-or blank lines.
-
-.. parsed-literal::
-
- # Table of the potential and its negative derivative
-
-.. parsed-literal::
-
- DIH_TABLE1 (keyword is the first text on line)
- N 30 DEGREES (N, NOF, DEGREES, RADIANS, CHECKU/F)
- (blank line)
- 1 -168.0 -1.40351172223 -0.0423346818422
- 2 -156.0 -1.70447981034 -0.00811786522531
- 3 -144.0 -1.62956100432 0.0184129719987
- ...
- 30 180.0 -0.707106781187 -0.0719306095245
-
-.. parsed-literal::
-
- # Example 2: table of the potential. Forces omitted
-
-.. parsed-literal::
-
- DIH_TABLE2
- N 30 NOF CHECKU testU.dat CHECKF testF.dat
-
-.. parsed-literal::
-
- 1 -168.0 -1.40351172223
- 2 -156.0 -1.70447981034
- 3 -144.0 -1.62956100432
- ...
- 30 180.0 -0.707106781187
-
-A section begins with a non-blank line whose 1st character is not a
-"#"; blank lines or lines starting with "#" can be used as comments
-between sections. The first line begins with a keyword which
-identifies the section. The line can contain additional text, but the
-initial text must match the argument specified in the
-:doc:`dihedral_coeff <dihedral_coeff>` command. The next line lists (in
-any order) one or more parameters for the table. Each parameter is a
-keyword followed by one or more numeric values.
-
-Following a blank line, the next N lines list the tabulated values. On
-each line, the 1st value is the index from 1 to N, the 2nd value is
-the angle value, the 3rd value is the energy (in energy units), and
-the 4th is -dE/d(phi) also in energy units). The 3rd term is the
-energy of the 4-atom configuration for the specified angle. The 4th
-term (when present) is the negative derivative of the energy with
-respect to the angle (in degrees, or radians depending on whether the
-user selected DEGREES or RADIANS). Thus the units of the last term
-are still energy, not force. The dihedral angle values must increase
-from one line to the next.
-
-Dihedral table splines are cyclic. There is no discontinuity at 180
-degrees (or at any other angle). Although in the examples above, the
-angles range from -180 to 180 degrees, in general, the first angle in
-the list can have any value (positive, zero, or negative). However
-the *range* of angles represented in the table must be *strictly* less
-than 360 degrees (2pi radians) to avoid angle overlap. (You may not
-supply entries in the table for both 180 and -180, for example.) If
-the user's table covers only a narrow range of dihedral angles,
-strange numerical behavior can occur in the large remaining gap.
-
-**Parameters:**
-
-The parameter "N" is required and its value is the number of table
-entries that follow. Note that this may be different than the N
-specified in the :doc:`dihedral_style table <dihedral_style>` command.
-Let *Ntable* is the number of table entries requested dihedral_style
-command, and let *Nfile* be the parameter following "N" in the
-tabulated file ("30" in the sparse example above). What LAMMPS does
-is a preliminary interpolation by creating splines using the *Nfile*
-tabulated values as nodal points. It uses these to interpolate as
-needed to generate energy and derivative values at *Ntable* different
-points (which are evenly spaced over a 360 degree range, even if the
-angles in the file are not). The resulting tables of length *Ntable*
-are then used as described above, when computing energy and force for
-individual dihedral angles and their atoms. This means that if you
-want the interpolation tables of length *Ntable* to match exactly what
-is in the tabulated file (with effectively nopreliminary
-interpolation), you should set *Ntable* = *Nfile*. To insure the
-nodal points in the user's file are aligned with the interpolated
-table entries, the angles in the table should be integer multiples of
-360/*Ntable* degrees, or 2*PI/*Ntable* radians (depending on your
-choice of angle units).
-
-The optional "NOF" keyword allows the user to omit the forces
-(negative energy derivatives) from the table file (normally located in
-the 4th column). In their place, forces will be calculated
-automatically by differentiating the potential energy function
-indicated by the 3rd column of the table (using either linear or
-spline interpolation).
-
-The optional "DEGREES" keyword allows the user to specify angles in
-degrees instead of radians (default).
-
-The optional "RADIANS" keyword allows the user to specify angles in
-radians instead of degrees. (Note: This changes the way the forces
-are scaled in the 4th column of the data file.)
-
-The optional "CHECKU" keyword is followed by a filename. This allows
-the user to save all of the the *Ntable* different entries in the
-interpolated energy table to a file to make sure that the interpolated
-function agrees with the user's expectations. (Note: You can
-temporarily increase the *Ntable* parameter to a high value for this
-purpose. "*Ntable*" is explained above.)
-
-The optional "CHECKF" keyword is analogous to the "CHECKU" keyword.
-It is followed by a filename, and it allows the user to check the
-interpolated force table. This option is available even if the user
-selected the "NOF" option.
-
-Note that one file can contain many sections, each with a tabulated
-potential. LAMMPS reads the file section by section until it finds one
-that matches the specified keyword.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_6>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restrictions
-""""""""""""
-
-
-This dihedral style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <2_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`dihedral_coeff <dihedral_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dihedral_zero.txt b/doc/_sources/dihedral_zero.txt
deleted file mode 100644
index c49d19f9c..000000000
--- a/doc/_sources/dihedral_zero.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-.. index:: dihedral_style zero
-
-dihedral_style zero command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dihedral_style zero *nocoeff*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dihedral_style zero
- dihedral_style zero nocoeff
- dihedral_coeff *
-
-Description
-"""""""""""
-
-Using a dihedral style of zero means dihedral forces and energies are
-not computed, but the geometry of dihedral quadruplets is still
-accessible to other commands.
-
-As an example, the :doc:`compute dihedral/local <compute_dihedral_local>` command can be used to
-compute the theta values for the list of quadruplets of dihedral atoms
-listed in the data file read by the :doc:`read_data <read_data>`
-command. If no dihedral style is defined, this command cannot be
-used.
-
-The optional *nocoeff* flag allows to read data files with a DihedralCoeff
-section for any dihedral style. Similarly, any dihedral_coeff commands
-will only be checked for the dihedral type number and the rest ignored.
-
-Note that the :doc:`dihedral_coeff <dihedral_coeff>` command must be
-used for all dihedral types, though no additional values are
-specified.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-:doc:`dihedral_style none <dihedral_none>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dimension.txt b/doc/_sources/dimension.txt
deleted file mode 100644
index 2a421360b..000000000
--- a/doc/_sources/dimension.txt
+++ /dev/null
@@ -1,63 +0,0 @@
-.. index:: dimension
-
-dimension command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dimension N
-
-* N = 2 or 3
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dimension 2
-
-Description
-"""""""""""
-
-Set the dimensionality of the simulation. By default LAMMPS runs 3d
-simulations. To run a 2d simulation, this command should be used
-prior to setting up a simulation box via the
-:doc:`create_box <create_box>` or :doc:`read_data <read_data>` commands.
-Restart files also store this setting.
-
-See the discussion in :doc:`Section_howto <Section_howto>` for
-additional instructions on how to run 2d simulations.
-
-.. note::
-
- Some models in LAMMPS treat particles as finite-size spheres or
- ellipsoids, as opposed to point particles. In 2d, the particles will
- still be spheres or ellipsoids, not circular disks or ellipses,
- meaning their moment of inertia will be the same as in 3d.
-
-Restrictions
-""""""""""""
-
-
-This command must be used before the simulation box is defined by a
-:doc:`read_data <read_data>` or :doc:`create_box <create_box>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix enforce2d <fix_enforce2d>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- dimension 3
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/displace_atoms.txt b/doc/_sources/displace_atoms.txt
deleted file mode 100644
index 547c5dc29..000000000
--- a/doc/_sources/displace_atoms.txt
+++ /dev/null
@@ -1,163 +0,0 @@
-.. index:: displace_atoms
-
-displace_atoms command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- displace_atoms group-ID style args keyword value ...
-
-* group-ID = ID of group of atoms to displace
-* style = *move* or *ramp* or *random* or *rotate*
-.. parsed-literal::
-
- *move* args = delx dely delz
- delx,dely,delz = distance to displace in each dimension (distance units)
- any of delx,dely,delz can be a variable (see below)
- *ramp* args = ddim dlo dhi dim clo chi
- ddim = *x* or *y* or *z*
- dlo,dhi = displacement distance between dlo and dhi (distance units)
- dim = *x* or *y* or *z*
- clo,chi = lower and upper bound of domain to displace (distance units)
- *random* args = dx dy dz seed
- dx,dy,dz = random displacement magnitude in each dimension (distance units)
- seed = random # seed (positive integer)
- *rotate* args = Px Py Pz Rx Ry Rz theta
- Px,Py,Pz = origin point of axis of rotation (distance units)
- Rx,Ry,Rz = axis of rotation vector
- theta = angle of rotation (degrees)
-
-* zero or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *units*
- value = *box* or *lattice*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- displace_atoms top move 0 -5 0 units box
- displace_atoms flow ramp x 0.0 5.0 y 2.0 20.5
-
-Description
-"""""""""""
-
-Displace a group of atoms. This can be used to move atoms a large
-distance before beginning a simulation or to randomize atoms initially
-on a lattice. For example, in a shear simulation, an initial strain
-can be imposed on the system. Or two groups of atoms can be brought
-into closer proximity.
-
-The *move* style displaces the group of atoms by the specified 3d
-displacement vector. Any of the 3 quantities defining the vector
-components can be specified as an equal-style or atom-style
-:doc:`variable <variable>`. If the value is a variable, it should be
-specified as v_name, where name is the variable name. In this case,
-the variable will be evaluated, and its value(s) used for the
-displacement(s). The scale factor implied by the *units* keyword will
-also be applied to the variable result.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Atom-style variables can specify the same formulas as
-equal-style variables but can also include per-atom values, such as
-atom coordinates or per-atom values read from a file. Note that if
-the variable references other :doc:`compute <compute>` or :doc:`fix <fix>`
-commands, those values must be up-to-date for the current timestep.
-See the "Variable Accuracy" section of the :doc:`variable <variable>`
-doc page for more details.
-
-The *ramp* style displaces atoms a variable amount in one dimension
-depending on the atom's coordinate in a (possibly) different
-dimension. For example, the second example command displaces atoms in
-the x-direction an amount between 0.0 and 5.0 distance units. Each
-atom's displacement depends on the fractional distance its y
-coordinate is between 2.0 and 20.5. Atoms with y-coordinates outside
-those bounds will be moved the minimum (0.0) or maximum (5.0) amount.
-
-The *random* style independently moves each atom in the group by a
-random displacement, uniformly sampled from a value between -dx and
-+dx in the x dimension, and similarly for y and z. Random numbers are
-used in such a way that the displacement of a particular atom is the
-same, regardless of how many processors are being used.
-
-The *rotate* style rotates each atom in the group by the angle *theta*
-around a rotation axis *R* = (Rx,Ry,Rz) that goes thru a point *P* =
-(Px,Py,Pz). The direction of rotation for the atoms around the
-rotation axis is consistent with the right-hand rule: if your
-right-hand thumb points along *R*, then your fingers wrap around the
-axis in the direction of positive theta.
-
-If the defined :doc:`atom_style <atom_style>` assigns an orientation to
-each atom (:doc:`atom styles <atom_style>` ellipsoid, line, tri, body),
-then that property is also updated appropriately to correspond to the
-atom's rotation.
-
-Distance units for displacements and the origin point of the *rotate*
-style are determined by the setting of *box* or *lattice* for the
-*units* keyword. *Box* means distance units as defined by the
-:doc:`units <units>` command - e.g. Angstroms for *real* units.
-*Lattice* means distance units are in lattice spacings. The
-:doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacing.
-
-
-----------
-
-
-.. note::
-
- Care should be taken not to move atoms on top of other atoms.
- After the move, atoms are remapped into the periodic simulation box if
- needed, and any shrink-wrap boundary conditions (see the
- :doc:`boundary <boundary>` command) are enforced which may change the
- box size. Other than this effect, this command does not change the
- size or shape of the simulation box. See the
- :doc:`change_box <change_box>` command if that effect is desired.
-
-.. note::
-
- Atoms can be moved arbitrarily long distances by this command.
- If the simulation box is non-periodic and shrink-wrapped (see the
- :doc:`boundary <boundary>` command), this can change its size or shape.
- This is not a problem, except that the mapping of processors to the
- simulation box is not changed by this command from its initial 3d
- configuration; see the :doc:`processors <processors>` command. Thus, if
- the box size/shape changes dramatically, the mapping of processors to
- the simulation box may not end up as optimal as the initial mapping
- attempted to be.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-You cannot rotate around any rotation vector except the z-axis for a
-2d simulation.
-
-Related commands
-""""""""""""""""
-
-:doc:`lattice <lattice>`, :doc:`change_box <change_box>`,
-:doc:`fix move <fix_move>`
-
-Default
-"""""""
-
-The option defaults are units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dump.txt b/doc/_sources/dump.txt
deleted file mode 100644
index 8a4217241..000000000
--- a/doc/_sources/dump.txt
+++ /dev/null
@@ -1,691 +0,0 @@
-.. index:: dump
-
-dump command
-============
-
-:doc:`dump custom/vtk <dump_custom_vtk>` command
-================================================
-
-:doc:`dump h5md <dump_h5md>` command
-====================================
-
-:doc:`dump image <dump_image>` command
-======================================
-
-:doc:`dump movie <dump_image>` command
-======================================
-
-:doc:`dump molfile <dump_molfile>` command
-==========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dump ID group-ID style N file args
-
-* ID = user-assigned name for the dump
-* group-ID = ID of the group of atoms to be dumped
-* style = *atom* or *atom/gz* or *atom/mpiio* or *cfg* or *cfg/gz* or *cfg/mpiio* or *dcd* or *xtc* or *xyz* or *xyz/gz* or *xyz/mpiio* or *h5md* or *image* or *movie* or *molfile* or *local* or *custom* or *custom/gz* or *custom/mpiio*
-* N = dump every this many timesteps
-* file = name of file to write dump info to
-* args = list of arguments for a particular style
-.. parsed-literal::
-
- *atom* args = none
- *atom/gz* args = none
- *atom/mpiio* args = none
- *cfg* args = same as *custom* args, see below
- *cfg/gz* args = same as *custom* args, see below
- *cfg/mpiio* args = same as *custom* args, see below
- *dcd* args = none
- *xtc* args = none
- *xyz* args = none
-
-.. parsed-literal::
-
- *xyz/gz* args = none
-
-.. parsed-literal::
-
- *xyz/mpiio* args = none
-
-.. parsed-literal::
-
- *custom/vtk* args = similar to custom args below, discussed on :doc:`dump custom/vtk <dump_custom_vtk>` doc page
-
-.. parsed-literal::
-
- *h5md* args = discussed on :doc:`dump h5md <dump_h5md>` doc page
-
-.. parsed-literal::
-
- *image* args = discussed on :doc:`dump image <dump_image>` doc page
-
-.. parsed-literal::
-
- *movie* args = discussed on :doc:`dump image <dump_image>` doc page
-
-.. parsed-literal::
-
- *molfile* args = discussed on :doc:`dump molfile <dump_molfile>` doc page
-
-.. parsed-literal::
-
- *local* args = list of local attributes
- possible attributes = index, c_ID, c_ID[N], f_ID, f_ID[N]
- index = enumeration of local values
- c_ID = local vector calculated by a compute with ID
- c_ID[N] = Nth column of local array calculated by a compute with ID
- f_ID = local vector calculated by a fix with ID
- f_ID[N] = Nth column of local array calculated by a fix with ID
-
-.. parsed-literal::
-
- *custom* or *custom/gz* or *custom/mpiio* args = list of atom attributes
- possible attributes = id, mol, proc, procp1, type, element, mass,
- x, y, z, xs, ys, zs, xu, yu, zu,
- xsu, ysu, zsu, ix, iy, iz,
- vx, vy, vz, fx, fy, fz,
- q, mux, muy, muz, mu,
- radius, diameter, omegax, omegay, omegaz,
- angmomx, angmomy, angmomz, tqx, tqy, tqz,
- c_ID, c_ID[N], f_ID, f_ID[N], v_name
-
-.. parsed-literal::
-
- id = atom ID
- mol = molecule ID
- proc = ID of processor that owns atom
- procp1 = ID+1 of processor that owns atom
- type = atom type
- element = name of atom element, as defined by :doc:`dump_modify <dump_modify>` command
- mass = atom mass
- x,y,z = unscaled atom coordinates
- xs,ys,zs = scaled atom coordinates
- xu,yu,zu = unwrapped atom coordinates
- xsu,ysu,zsu = scaled unwrapped atom coordinates
- ix,iy,iz = box image that the atom is in
- vx,vy,vz = atom velocities
- fx,fy,fz = forces on atoms
- q = atom charge
- mux,muy,muz = orientation of dipole moment of atom
- mu = magnitude of dipole moment of atom
- radius,diameter = radius,diameter of spherical particle
- omegax,omegay,omegaz = angular velocity of spherical particle
- angmomx,angmomy,angmomz = angular momentum of aspherical particle
- tqx,tqy,tqz = torque on finite-size particles
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[N] = Nth column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[N] = Nth column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
- d_name = per-atom floating point vector with name, managed by fix property/atom
- i_name = per-atom integer vector with name, managed by fix property/atom
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dump myDump all atom 100 dump.atom
- dump myDump all atom/mpiio 100 dump.atom.mpiio
- dump myDump all atom/gz 100 dump.atom.gz
- dump 2 subgroup atom 50 dump.run.bin
- dump 2 subgroup atom 50 dump.run.mpiio.bin
- dump 4a all custom 100 dump.myforce.* id type x y vx fx
- dump 4b flow custom 100 dump.%.myforce id type c_myF[3] v_ke
- dump 2 inner cfg 10 dump.snap.*.cfg mass type xs ys zs vx vy vz
- dump snap all cfg 100 dump.config.*.cfg mass type xs ys zs id type c_Stress[2]
- dump 1 all xtc 1000 file.xtc
-
-Description
-"""""""""""
-
-Dump a snapshot of atom quantities to one or more files every N
-timesteps in one of several styles. The *image* and *movie* styles are
-the exception: the *image* style renders a JPG, PNG, or PPM image file
-of the atom configuration every N timesteps while the *movie* style
-combines and compresses them into a movie file; both are discussed in
-detail on the :doc:`dump image <dump_image>` doc page. The timesteps on
-which dump output is written can also be controlled by a variable.
-See the :doc:`dump_modify every <dump_modify>` command.
-
-Only information for atoms in the specified group is dumped. The
-:doc:`dump_modify thresh and region <dump_modify>` commands can also
-alter what atoms are included. Not all styles support all these
-options; see details below.
-
-As described below, the filename determines the kind of output (text
-or binary or gzipped, one big file or one per timestep, one big file
-or multiple smaller files).
-
-.. note::
-
- Because periodic boundary conditions are enforced only on
- timesteps when neighbor lists are rebuilt, the coordinates of an atom
- written to a dump file may be slightly outside the simulation box.
-
-.. note::
-
- Unless the :doc:`dump_modify sort <dump_modify>` option is
- invoked, the lines of atom information written to dump files
- (typically one line per atom) will be in an indeterminate order for
- each snapshot. This is even true when running on a single processor,
- if the :doc:`atom_modify sort <atom_modify>` option is on, which it is
- by default. In this case atoms are re-ordered periodically during a
- simulation, due to spatial sorting. It is also true when running in
- parallel, because data for a single snapshot is collected from
- multiple processors, each of which owns a subset of the atoms.
-
-For the *atom*, *custom*, *cfg*, and *local* styles, sorting is off by
-default. For the *dcd*, *xtc*, *xyz*, and *molfile* styles, sorting by
-atom ID is on by default. See the :doc:`dump_modify <dump_modify>` doc
-page for details.
-
-The *atom/gz*, *cfg/gz*, *custom/gz*, and *xyz/gz* styles are identical
-in command syntax to the corresponding styles without "gz", however,
-they generate compressed files using the zlib library. Thus the filename
-suffix ".gz" is mandatory. This is an alternative approach to writing
-compressed files via a pipe, as done by the regular dump styles, which
-may be required on clusters where the interface to the high-speed network
-disallows using the fork() library call (which is needed for a pipe).
-For the remainder of this doc page, you should thus consider the *atom*
-and *atom/gz* styles (etc) to be inter-changeable, with the exception
-of the required filename suffix.
-
-As explained below, the *atom/mpiio*, *cfg/mpiio*, *custom/mpiio*, and
-*xyz/mpiio* styles are identical in command syntax and in the format
-of the dump files they create, to the corresponding styles without
-"mpiio", except the single dump file they produce is written in
-parallel via the MPI-IO library. For the remainder of this doc page,
-you should thus consider the *atom* and *atom/mpiio* styles (etc) to
-be inter-changeable. The one exception is how the filename is
-specified for the MPI-IO styles, as explained below.
-
-
-----------
-
-
-The *style* keyword determines what atom quantities are written to the
-file and in what format. Settings made via the
-:doc:`dump_modify <dump_modify>` command can also alter the format of
-individual values and the file itself.
-
-The *atom*, *local*, and *custom* styles create files in a simple text
-format that is self-explanatory when viewing a dump file. Many of the
-LAMMPS :doc:`post-processing tools <Section_tools>`, including
-`Pizza.py <http://www.sandia.gov/~sjplimp/pizza.html>`_, work with this
-format, as does the :doc:`rerun <rerun>` command.
-
-For post-processing purposes the *atom*, *local*, and *custom* text
-files are self-describing in the following sense.
-
-The dimensions of the simulation box are included in each snapshot.
-For an orthogonal simulation box this information is is formatted as:
-
-.. parsed-literal::
-
- ITEM: BOX BOUNDS xx yy zz
- xlo xhi
- ylo yhi
- zlo zhi
-
-where xlo,xhi are the maximum extents of the simulation box in the
-x-dimension, and similarly for y and z. The "xx yy zz" represent 6
-characters that encode the style of boundary for each of the 6
-simulation box boundaries (xlo,xhi and ylo,yhi and zlo,zhi). Each of
-the 6 characters is either p = periodic, f = fixed, s = shrink wrap,
-or m = shrink wrapped with a minimum value. See the
-:doc:`boundary <boundary>` command for details.
-
-For triclinic simulation boxes (non-orthogonal), an orthogonal
-bounding box which encloses the triclinic simulation box is output,
-along with the 3 tilt factors (xy, xz, yz) of the triclinic box,
-formatted as follows:
-
-.. parsed-literal::
-
- ITEM: BOX BOUNDS xy xz yz xx yy zz
- xlo_bound xhi_bound xy
- ylo_bound yhi_bound xz
- zlo_bound zhi_bound yz
-
-The presence of the text "xy xz yz" in the ITEM line indicates that
-the 3 tilt factors will be included on each of the 3 following lines.
-This bounding box is convenient for many visualization programs. The
-meaning of the 6 character flags for "xx yy zz" is the same as above.
-
-Note that the first two numbers on each line are now xlo_bound instead
-of xlo, etc, since they repesent a bounding box. See :ref:`this section <howto_12>` of the doc pages for a geometric
-description of triclinic boxes, as defined by LAMMPS, simple formulas
-for how the 6 bounding box extents (xlo_bound,xhi_bound,etc) are
-calculated from the triclinic parameters, and how to transform those
-parameters to and from other commonly used triclinic representations.
-
-The "ITEM: ATOMS" line in each snapshot lists column descriptors for
-the per-atom lines that follow. For example, the descriptors would be
-"id type xs ys zs" for the default *atom* style, and would be the atom
-attributes you specify in the dump command for the *custom* style.
-
-For style *atom*, atom coordinates are written to the file, along with
-the atom ID and atom type. By default, atom coords are written in a
-scaled format (from 0 to 1). I.e. an x value of 0.25 means the atom
-is at a location 1/4 of the distance from xlo to xhi of the box
-boundaries. The format can be changed to unscaled coords via the
-:doc:`dump_modify <dump_modify>` settings. Image flags can also be
-added for each atom via dump_modify.
-
-Style *custom* allows you to specify a list of atom attributes to be
-written to the dump file for each atom. Possible attributes are
-listed above and will appear in the order specified. You cannot
-specify a quantity that is not defined for a particular simulation -
-such as *q* for atom style *bond*, since that atom style doesn't
-assign charges. Dumps occur at the very end of a timestep, so atom
-attributes will include effects due to fixes that are applied during
-the timestep. An explanation of the possible dump custom attributes
-is given below.
-
-For style *local*, local output generated by :doc:`computes <compute>`
-and :doc:`fixes <fix>` is used to generate lines of output that is
-written to the dump file. This local data is typically calculated by
-each processor based on the atoms it owns, but there may be zero or
-more entities per atom, e.g. a list of bond distances. An explanation
-of the possible dump local attributes is given below. Note that by
-using input from the :doc:`compute property/local <compute_property_local>` command with dump local,
-it is possible to generate information on bonds, angles, etc that can
-be cut and pasted directly into a data file read by the
-:doc:`read_data <read_data>` command.
-
-Style *cfg* has the same command syntax as style *custom* and writes
-extended CFG format files, as used by the
-`AtomEye <http://mt.seas.upenn.edu/Archive/Graphics/A>`_ visualization
-package. Since the extended CFG format uses a single snapshot of the
-system per file, a wildcard "*" must be included in the filename, as
-discussed below. The list of atom attributes for style *cfg* must
-begin with either "mass type xs ys zs" or "mass type xsu ysu zsu"
-since these quantities are needed to write the CFG files in the
-appropriate format (though the "mass" and "type" fields do not appear
-explicitly in the file). Any remaining attributes will be stored as
-"auxiliary properties" in the CFG files. Note that you will typically
-want to use the :doc:`dump_modify element <dump_modify>` command with
-CFG-formatted files, to associate element names with atom types, so
-that AtomEye can render atoms appropriately. When unwrapped
-coordinates *xsu*, *ysu*, and *zsu* are requested, the nominal AtomEye
-periodic cell dimensions are expanded by a large factor UNWRAPEXPAND =
-10.0, which ensures atoms that are displayed correctly for up to
-UNWRAPEXPAND/2 periodic boundary crossings in any direction. Beyond
-this, AtomEye will rewrap the unwrapped coordinates. The expansion
-causes the atoms to be drawn farther away from the viewer, but it is
-easy to zoom the atoms closer, and the interatomic distances are
-unaffected.
-
-The *dcd* style writes DCD files, a standard atomic trajectory format
-used by the CHARMM, NAMD, and XPlor molecular dynamics packages. DCD
-files are binary and thus may not be portable to different machines.
-The number of atoms per snapshot cannot change with the *dcd* style.
-The *unwrap* option of the :doc:`dump_modify <dump_modify>` command
-allows DCD coordinates to be written "unwrapped" by the image flags
-for each atom. Unwrapped means that if the atom has passed through
-a periodic boundary one or more times, the value is printed for what
-the coordinate would be if it had not been wrapped back into the
-periodic box. Note that these coordinates may thus be far outside
-the box size stored with the snapshot.
-
-The *xtc* style writes XTC files, a compressed trajectory format used
-by the GROMACS molecular dynamics package, and described
-`here <http://manual.gromacs.org/current/online/xtc.html>`_.
-The precision used in XTC files can be adjusted via the
-:doc:`dump_modify <dump_modify>` command. The default value of 1000
-means that coordinates are stored to 1/1000 nanometer accuracy. XTC
-files are portable binary files written in the NFS XDR data format,
-so that any machine which supports XDR should be able to read them.
-The number of atoms per snapshot cannot change with the *xtc* style.
-The *unwrap* option of the :doc:`dump_modify <dump_modify>` command allows
-XTC coordinates to be written "unwrapped" by the image flags for each
-atom. Unwrapped means that if the atom has passed thru a periodic
-boundary one or more times, the value is printed for what the
-coordinate would be if it had not been wrapped back into the periodic
-box. Note that these coordinates may thus be far outside the box size
-stored with the snapshot.
-
-The *xyz* style writes XYZ files, which is a simple text-based
-coordinate format that many codes can read. Specifically it has
-a line with the number of atoms, then a comment line that is
-usually ignored followed by one line per atom with the atom type
-and the x-, y-, and z-coordinate of that atom. You can use the
-:doc:`dump_modify element <dump_modify>` option to change the output
-from using the (numerical) atom type to an element name (or some
-other label). This will help many visualization programs to guess
-bonds and colors.
-
-Note that *atom*, *custom*, *dcd*, *xtc*, and *xyz* style dump files
-can be read directly by `VMD <http://www.ks.uiuc.edu/Research/vmd>`_, a
-popular molecular viewing program. See :ref:`Section tools <vmd>` of the manual and the
-tools/lmp2vmd/README.txt file for more information about support in
-VMD for reading and visualizing LAMMPS dump files.
-
-
-----------
-
-
-Dumps are performed on timesteps that are a multiple of N (including
-timestep 0) and on the last timestep of a minimization if the
-minimization converges. Note that this means a dump will not be
-performed on the initial timestep after the dump command is invoked,
-if the current timestep is not a multiple of N. This behavior can be
-changed via the :doc:`dump_modify first <dump_modify>` command, which
-can also be useful if the dump command is invoked after a minimization
-ended on an arbitrary timestep. N can be changed between runs by
-using the :doc:`dump_modify every <dump_modify>` command (not allowed
-for *dcd* style). The :doc:`dump_modify every <dump_modify>` command
-also allows a variable to be used to determine the sequence of
-timesteps on which dump files are written. In this mode a dump on the
-first timestep of a run will also not be written unless the
-:doc:`dump_modify first <dump_modify>` command is used.
-
-The specified filename determines how the dump file(s) is written.
-The default is to write one large text file, which is opened when the
-dump command is invoked and closed when an :doc:`undump <undump>`
-command is used or when LAMMPS exits. For the *dcd* and *xtc* styles,
-this is a single large binary file.
-
-Dump filenames can contain two wildcard characters. If a "*"
-character appears in the filename, then one file per snapshot is
-written and the "*" character is replaced with the timestep value.
-For example, tmp.dump.* becomes tmp.dump.0, tmp.dump.10000,
-tmp.dump.20000, etc. This option is not available for the *dcd* and
-*xtc* styles. Note that the :doc:`dump_modify pad <dump_modify>`
-command can be used to insure all timestep numbers are the same length
-(e.g. 00010), which can make it easier to read a series of dump files
-in order with some post-processing tools.
-
-If a "%" character appears in the filename, then each of P processors
-writes a portion of the dump file, and the "%" character is replaced
-with the processor ID from 0 to P-1. For example, tmp.dump.% becomes
-tmp.dump.0, tmp.dump.1, ... tmp.dump.P-1, etc. This creates smaller
-files and can be a fast mode of output on parallel machines that
-support parallel I/O for output. This option is not available for the
-*dcd*, *xtc*, and *xyz* styles.
-
-By default, P = the number of processors meaning one file per
-processor, but P can be set to a smaller value via the *nfile* or
-*fileper* keywords of the :doc:`dump_modify <dump_modify>` command.
-These options can be the most efficient way of writing out dump files
-when running on large numbers of processors.
-
-Note that using the "*" and "%" characters together can produce a
-large number of small dump files!
-
-For the *atom/mpiio*, *cfg/mpiio*, *custom/mpiio*, and *xyz/mpiio*
-styles, a single dump file is written in parallel via the MPI-IO
-library, which is part of the MPI standard for versions 2.0 and above.
-Using MPI-IO requires two steps. First, build LAMMPS with its MPIIO
-package installed, e.g.
-
-.. parsed-literal::
-
- make yes-mpiio # installs the MPIIO package
- make g++ # build LAMMPS for your platform
-
-Second, use a dump filename which contains ".mpiio". Note that it
-does not have to end in ".mpiio", just contain those characters.
-Unlike MPI-IO restart files, which must be both written and read using
-MPI-IO, the dump files produced by these MPI-IO styles are identical
-in format to the files produced by their non-MPI-IO style
-counterparts. This means you can write a dump file using MPI-IO and
-use the :doc:`read_dump <read_dump>` command or perform other
-post-processing, just as if the dump file was not written using
-MPI-IO.
-
-Note that MPI-IO dump files are one large file which all processors
-write to. You thus cannot use the "%" wildcard character described
-above in the filename since that specifies generation of multiple
-files. You can use the ".bin" suffix described below in an MPI-IO
-dump file; again this file will be written in parallel and have the
-same binary format as if it were written without MPI-IO.
-
-If the filename ends with ".bin", the dump file (or files, if "*" or
-"%" is also used) is written in binary format. A binary dump file
-will be about the same size as a text version, but will typically
-write out much faster. Of course, when post-processing, you will need
-to convert it back to text format (see the :ref:`binary2txt tool <binary>`) or write your own code to read the
-binary file. The format of the binary file can be understood by
-looking at the tools/binary2txt.cpp file. This option is only
-available for the *atom* and *custom* styles.
-
-If the filename ends with ".gz", the dump file (or files, if "*" or "%"
-is also used) is written in gzipped format. A gzipped dump file will
-be about 3x smaller than the text version, but will also take longer
-to write. This option is not available for the *dcd* and *xtc*
-styles.
-
-
-----------
-
-
-This section explains the local attributes that can be specified as
-part of the *local* style.
-
-The *index* attribute can be used to generate an index number from 1
-to N for each line written into the dump file, where N is the total
-number of local datums from all processors, or lines of output that
-will appear in the snapshot. Note that because data from different
-processors depend on what atoms they currently own, and atoms migrate
-between processor, there is no guarantee that the same index will be
-used for the same info (e.g. a particular bond) in successive
-snapshots.
-
-The *c_ID* and *c_ID[N]* attributes allow local vectors or arrays
-calculated by a :doc:`compute <compute>` to be output. The ID in the
-attribute should be replaced by the actual ID of the compute that has
-been defined previously in the input script. See the
-:doc:`compute <compute>` command for details. There are computes for
-calculating local information such as indices, types, and energies for
-bonds and angles.
-
-Note that computes which calculate global or per-atom quantities, as
-opposed to local quantities, cannot be output in a dump local command.
-Instead, global quantities can be output by the :doc:`thermo_style custom <thermo_style>` command, and per-atom quantities can be
-output by the dump custom command.
-
-If *c_ID* is used as a attribute, then the local vector calculated by
-the compute is printed. If *c_ID[N]* is used, then N must be in the
-range from 1-M, which will print the Nth column of the M-length local
-array calculated by the compute.
-
-The *f_ID* and *f_ID[N]* attributes allow local vectors or arrays
-calculated by a :doc:`fix <fix>` to be output. The ID in the attribute
-should be replaced by the actual ID of the fix that has been defined
-previously in the input script.
-
-If *f_ID* is used as a attribute, then the local vector calculated by
-the fix is printed. If *f_ID[N]* is used, then N must be in the
-range from 1-M, which will print the Nth column of the M-length local
-array calculated by the fix.
-
-Here is an example of how to dump bond info for a system,
-including the distance and energy of each bond:
-
-.. parsed-literal::
-
- compute 1 all property/local batom1 batom2 btype
- compute 2 all bond/local dist eng
- dump 1 all local 1000 tmp.dump index c_1[1] c_1[2] c_1[3] c_2[1] c_2[2]
-
-
-----------
-
-
-This section explains the atom attributes that can be specified as
-part of the *custom* and *cfg* styles.
-
-The *id*, *mol*, *proc*, *procp1*, *type*, *element*, *mass*, *vx*,
-*vy*, *vz*, *fx*, *fy*, *fz*, *q* attributes are self-explanatory.
-
-*Id* is the atom ID. *Mol* is the molecule ID, included in the data
-file for molecular systems. *Proc* is the ID of the processor (0 to
-Nprocs-1) that currently owns the atom. *Procp1* is the proc ID+1,
-which can be convenient in place of a *type* attribute (1 to Ntypes)
-for coloring atoms in a visualization program. *Type* is the atom
-type (1 to Ntypes). *Element* is typically the chemical name of an
-element, which you must assign to each type via the :doc:`dump_modify element <dump_modify>` command. More generally, it can be any
-string you wish to associated with an atom type. *Mass* is the atom
-mass. *Vx*, *vy*, *vz*, *fx*, *fy*, *fz*, and *q* are components of
-atom velocity and force and atomic charge.
-
-There are several options for outputting atom coordinates. The *x*,
-*y*, *z* attributes write atom coordinates "unscaled", in the
-appropriate distance :doc:`units <units>` (Angstroms, sigma, etc). Use
-*xs*, *ys*, *zs* if you want the coordinates "scaled" to the box size,
-so that each value is 0.0 to 1.0. If the simulation box is triclinic
-(tilted), then all atom coords will still be between 0.0 and 1.0. Use
-*xu*, *yu*, *zu* if you want the coordinates "unwrapped" by the image
-flags for each atom. Unwrapped means that if the atom has passed thru
-a periodic boundary one or more times, the value is printed for what
-the coordinate would be if it had not been wrapped back into the
-periodic box. Note that using *xu*, *yu*, *zu* means that the
-coordinate values may be far outside the box bounds printed with the
-snapshot. Using *xsu*, *ysu*, *zsu* is similar to using *xu*, *yu*, *zu*,
-except that the unwrapped coordinates are scaled by the box size. Atoms
-that have passed through a periodic boundary will have the corresponding
-cooordinate increased or decreased by 1.0.
-
-The image flags can be printed directly using the *ix*, *iy*, *iz*
-attributes. For periodic dimensions, they specify which image of the
-simulation box the atom is considered to be in. An image of 0 means
-it is inside the box as defined. A value of 2 means add 2 box lengths
-to get the true value. A value of -1 means subtract 1 box length to
-get the true value. LAMMPS updates these flags as atoms cross
-periodic boundaries during the simulation.
-
-The *mux*, *muy*, *muz* attributes are specific to dipolar systems
-defined with an atom style of *dipole*. They give the orientation of
-the atom's point dipole moment. The *mu* attribute gives the
-magnitude of the atom's dipole moment.
-
-The *radius* and *diameter* attributes are specific to spherical
-particles that have a finite size, such as those defined with an atom
-style of *sphere*.
-
-The *omegax*, *omegay*, and *omegaz* attributes are specific to
-finite-size spherical particles that have an angular velocity. Only
-certain atom styles, such as *sphere* define this quantity.
-
-The *angmomx*, *angmomy*, and *angmomz* attributes are specific to
-finite-size aspherical particles that have an angular momentum. Only
-the *ellipsoid* atom style defines this quantity.
-
-The *tqx*, *tqy*, *tqz* attributes are for finite-size particles that
-can sustain a rotational torque due to interactions with other
-particles.
-
-The *c_ID* and *c_ID[N]* attributes allow per-atom vectors or arrays
-calculated by a :doc:`compute <compute>` to be output. The ID in the
-attribute should be replaced by the actual ID of the compute that has
-been defined previously in the input script. See the
-:doc:`compute <compute>` command for details. There are computes for
-calculating the per-atom energy, stress, centro-symmetry parameter,
-and coordination number of individual atoms.
-
-Note that computes which calculate global or local quantities, as
-opposed to per-atom quantities, cannot be output in a dump custom
-command. Instead, global quantities can be output by the
-:doc:`thermo_style custom <thermo_style>` command, and local quantities
-can be output by the dump local command.
-
-If *c_ID* is used as a attribute, then the per-atom vector calculated
-by the compute is printed. If *c_ID[N]* is used, then N must be in
-the range from 1-M, which will print the Nth column of the M-length
-per-atom array calculated by the compute.
-
-The *f_ID* and *f_ID[N]* attributes allow vector or array per-atom
-quantities calculated by a :doc:`fix <fix>` to be output. The ID in the
-attribute should be replaced by the actual ID of the fix that has been
-defined previously in the input script. The :doc:`fix ave/atom <fix_ave_atom>` command is one that calculates per-atom
-quantities. Since it can time-average per-atom quantities produced by
-any :doc:`compute <compute>`, :doc:`fix <fix>`, or atom-style
-:doc:`variable <variable>`, this allows those time-averaged results to
-be written to a dump file.
-
-If *f_ID* is used as a attribute, then the per-atom vector calculated
-by the fix is printed. If *f_ID[N]* is used, then N must be in the
-range from 1-M, which will print the Nth column of the M-length
-per-atom array calculated by the fix.
-
-The *v_name* attribute allows per-atom vectors calculated by a
-:doc:`variable <variable>` to be output. The name in the attribute
-should be replaced by the actual name of the variable that has been
-defined previously in the input script. Only an atom-style variable
-can be referenced, since it is the only style that generates per-atom
-values. Variables of style *atom* can reference individual atom
-attributes, per-atom atom attributes, thermodynamic keywords, or
-invoke other computes, fixes, or variables when they are evaluated, so
-this is a very general means of creating quantities to output to a
-dump file.
-
-The *d_name* and *i_name* attributes allow to output custom per atom
-floating point or integer properties that are managed by
-:doc:`fix property/atom <fix_property_atom>`.
-
-See :doc:`Section_modify <Section_modify>` of the manual for information
-on how to add new compute and fix styles to LAMMPS to calculate
-per-atom quantities which could then be output into dump files.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To write gzipped dump files, you must either compile LAMMPS with the
--DLAMMPS_GZIP option or use the styles from the COMPRESS package
-- see the :ref:`Making LAMMPS <start_2>` section of
-the documentation.
-
-The *atom/gz*, *cfg/gz*, *custom/gz*, and *xyz/gz* styles are part
-of the COMPRESS package. They are only enabled if LAMMPS was built
-with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The *atom/mpiio*, *cfg/mpiio*, *custom/mpiio*, and *xyz/mpiio* styles
-are part of the MPIIO package. They are only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The *xtc* style is part of the MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. This is
-because some machines may not support the low-level XDR data format
-that XTC files are written with, which will result in a compile-time
-error when a low-level include file is not found. Putting this style
-in a package makes it easy to exclude from a LAMMPS build for those
-machines. However, the MISC package also includes two compatibility
-header files and associated functions, which should be a suitable
-substitute on machines that do not have the appropriate native header
-files. This option can be invoked at build time by adding
--DLAMMPS_XDR to the CCFLAGS variable in the appropriate low-level
-Makefile, e.g. src/MAKE/Makefile.foo. This compatibility mode has
-been tested successfully on Cray XT3/XT4/XT5 and IBM BlueGene/L
-machines and should also work on IBM BG/P, and Windows XP/Vista/7
-machines.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump h5md <dump_h5md>`, :doc:`dump image <dump_image>`,
-:doc:`dump molfile <dump_molfile>`, :doc:`dump_modify <dump_modify>`,
-:doc:`undump <undump>`
-
-Default
-"""""""
-
-The defaults for the *image* and *movie* styles are listed on the
-:doc:`dump image <dump_image>` doc page.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dump_custom_vtk.txt b/doc/_sources/dump_custom_vtk.txt
deleted file mode 100644
index 17ce51c6e..000000000
--- a/doc/_sources/dump_custom_vtk.txt
+++ /dev/null
@@ -1,360 +0,0 @@
-.. index:: dump custom/vtk
-
-dump custom/vtk command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dump ID group-ID style N file args
-
-* ID = user-assigned name for the dump
-* group-ID = ID of the group of atoms to be dumped
-* style = *custom/vtk*
-* N = dump every this many timesteps
-* file = name of file to write dump info to
-* args = list of arguments for a particular style
-.. parsed-literal::
-
- *custom/vtk* args = list of atom attributes
- possible attributes = id, mol, proc, procp1, type, element, mass,
- x, y, z, xs, ys, zs, xu, yu, zu,
- xsu, ysu, zsu, ix, iy, iz,
- vx, vy, vz, fx, fy, fz,
- q, mux, muy, muz, mu,
- radius, diameter, omegax, omegay, omegaz,
- angmomx, angmomy, angmomz, tqx, tqy, tqz,
- spin, eradius, ervel, erforce,
- c_ID, c_ID[N], f_ID, f_ID[N], v_name
-
-.. parsed-literal::
-
- id = atom ID
- mol = molecule ID
- proc = ID of processor that owns atom
- procp1 = ID+1 of processor that owns atom
- type = atom type
- element = name of atom element, as defined by :doc:`dump_modify <dump_modify_vtk>` command
- mass = atom mass
- x,y,z = unscaled atom coordinates
- xs,ys,zs = scaled atom coordinates
- xu,yu,zu = unwrapped atom coordinates
- xsu,ysu,zsu = scaled unwrapped atom coordinates
- ix,iy,iz = box image that the atom is in
- vx,vy,vz = atom velocities
- fx,fy,fz = forces on atoms
- q = atom charge
- mux,muy,muz = orientation of dipole moment of atom
- mu = magnitude of dipole moment of atom
- radius,diameter = radius,diameter of spherical particle
- omegax,omegay,omegaz = angular velocity of spherical particle
- angmomx,angmomy,angmomz = angular momentum of aspherical particle
- tqx,tqy,tqz = torque on finite-size particles
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[N] = Nth column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[N] = Nth column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dump dmpvtk all custom/vtk 100 dump*.myforce.vtk id type vx fx
- dump dmpvtp flow custom/vtk 100 dump*.%.displace.vtp id type c_myD[1] c_myD[2] c_myD[3] v_ke
- dump e_data all custom/vtk 100 dump*.vtu id type spin eradius fx fy fz eforce
-
-The style *custom/vtk* is similar to the :doc:`custom <dump>` style but
-uses the VTK library to write data to VTK simple legacy or XML format
-depending on the filename extension specified. This can be either
-**.vtk* for the legacy format or **.vtp* and **.vtu*, respectively,
-for the XML format; see the `VTK homepage <http://www.vtk.org/VTK/img/file-formats.pdf>`_ for a detailed
-description of these formats. Since this naming convention conflicts
-with the way binary output is usually specified (see below),
-:doc:`dump_modify binary <dump_modify_vtk>` allows to set the binary
-flag for this dump style explicitly.
-
-Description
-"""""""""""
-
-Dump a snapshot of atom quantities to one or more files every N
-timesteps in a format readable by the `VTK visualization toolkit <http://www.vtk.org>`_ or other visualization tools that use it,
-e.g. `ParaView <http://www.paraview.org>`_. The timesteps on which dump
-output is written can also be controlled by a variable; see the
-:doc:`dump_modify every <dump_modify_vtk>` command for details.
-
-Only information for atoms in the specified group is dumped. The
-:doc:`dump_modify thresh and region <dump_modify_vtk>` commands can also
-alter what atoms are included; see details below.
-
-As described below, special characters ("*", "%") in the filename
-determine the kind of output.
-
-.. warning::
-
- Because periodic boundary conditions are enforced only
- on timesteps when neighbor lists are rebuilt, the coordinates of an
- atom written to a dump file may be slightly outside the simulation
- box.
-
-.. warning::
-
- Unless the :doc:`dump_modify sort <dump_modify_vtk>`
- option is invoked, the lines of atom information written to dump files
- will be in an indeterminate order for each snapshot. This is even
- true when running on a single processor, if the :doc:`atom_modify sort <atom_modify>` option is on, which it is by default. In this
- case atoms are re-ordered periodically during a simulation, due to
- spatial sorting. It is also true when running in parallel, because
- data for a single snapshot is collected from multiple processors, each
- of which owns a subset of the atoms.
-
-For the *custom/vtk* style, sorting is off by default. See the
-:doc:`dump_modify <dump_modify_vtk>` doc page for details.
-
-
-----------
-
-
-The dimensions of the simulation box are written to a separate file
-for each snapshot (either in legacy VTK or XML format depending on
-the format of the main dump file) with the suffix *_boundingBox*
-appended to the given dump filename.
-
-For an orthogonal simulation box this information is saved as a
-rectilinear grid (legacy .vtk or .vtr XML format).
-
-Triclinic simulation boxes (non-orthogonal) are saved as
-hexahedrons in either legacy .vtk or .vtu XML format.
-
-Style *custom/vtk* allows you to specify a list of atom attributes
-to be written to the dump file for each atom. Possible attributes
-are listed above. In contrast to the *custom* style, the attributes
-are rearranged to ensure correct ordering of vector components
-(except for computes and fixes - these have to be given in the right
-order) and duplicate entries are removed.
-
-You cannot specify a quantity that is not defined for a particular
-simulation - such as *q* for atom style *bond*, since that atom style
-doesn't assign charges. Dumps occur at the very end of a timestep,
-so atom attributes will include effects due to fixes that are applied
-during the timestep. An explanation of the possible dump custom/vtk attributes
-is given below. Since position data is required to write VTK files "x y z"
-do not have to be specified explicitly.
-
-The VTK format uses a single snapshot of the system per file, thus
-a wildcard "*" must be included in the filename, as discussed below.
-Otherwise the dump files will get overwritten with the new snapshot
-each time.
-
-
-----------
-
-
-Dumps are performed on timesteps that are a multiple of N (including
-timestep 0) and on the last timestep of a minimization if the
-minimization converges. Note that this means a dump will not be
-performed on the initial timestep after the dump command is invoked,
-if the current timestep is not a multiple of N. This behavior can be
-changed via the :doc:`dump_modify first <dump_modify_vtk>` command, which
-can also be useful if the dump command is invoked after a minimization
-ended on an arbitrary timestep. N can be changed between runs by
-using the :doc:`dump_modify every <dump_modify_vtk>` command.
-The :doc:`dump_modify every <dump_modify_vtk>` command
-also allows a variable to be used to determine the sequence of
-timesteps on which dump files are written. In this mode a dump on the
-first timestep of a run will also not be written unless the
-:doc:`dump_modify first <dump_modify_vtk>` command is used.
-
-Dump filenames can contain two wildcard characters. If a "*"
-character appears in the filename, then one file per snapshot is
-written and the "*" character is replaced with the timestep value.
-For example, tmp.dump*.vtk becomes tmp.dump0.vtk, tmp.dump10000.vtk,
-tmp.dump20000.vtk, etc. Note that the :doc:`dump_modify pad <dump_modify_vtk>`
-command can be used to insure all timestep numbers are the same length
-(e.g. 00010), which can make it easier to read a series of dump files
-in order with some post-processing tools.
-
-If a "%" character appears in the filename, then each of P processors
-writes a portion of the dump file, and the "%" character is replaced
-with the processor ID from 0 to P-1 preceded by an underscore character.
-For example, tmp.dump%.vtp becomes tmp.dump_0.vtp, tmp.dump_1.vtp, ...
-tmp.dump_P-1.vtp, etc. This creates smaller files and can be a fast
-mode of output on parallel machines that support parallel I/O for output.
-
-By default, P = the number of processors meaning one file per
-processor, but P can be set to a smaller value via the *nfile* or
-*fileper* keywords of the :doc:`dump_modify <dump_modify_vtk>` command.
-These options can be the most efficient way of writing out dump files
-when running on large numbers of processors.
-
-For the legacy VTK format "%" is ignored and P = 1, i.e., only
-processor 0 does write files.
-
-Note that using the "*" and "%" characters together can produce a
-large number of small dump files!
-
-If *dump_modify binary* is used, the dump file (or files, if "*" or
-"%" is also used) is written in binary format. A binary dump file
-will be about the same size as a text version, but will typically
-write out much faster.
-
-
-----------
-
-
-This section explains the atom attributes that can be specified as
-part of the *custom/vtk* style.
-
-The *id*, *mol*, *proc*, *procp1*, *type*, *element*, *mass*, *vx*,
-*vy*, *vz*, *fx*, *fy*, *fz*, *q* attributes are self-explanatory.
-
-*id* is the atom ID. *mol* is the molecule ID, included in the data
-file for molecular systems. *type* is the atom type. *element* is
-typically the chemical name of an element, which you must assign to
-each type via the :doc:`dump_modify element <dump_modify_vtk>` command.
-More generally, it can be any string you wish to associate with an
-atom type. *mass* is the atom mass. *vx*, *vy*, *vz*, *fx*, *fy*,
-*fz*, and *q* are components of atom velocity and force and atomic
-charge.
-
-There are several options for outputting atom coordinates. The *x*,
-*y*, *z* attributes are used to write atom coordinates "unscaled", in
-the appropriate distance :doc:`units <units>` (Angstroms, sigma, etc).
-Additionaly, you can use *xs*, *ys*, *zs* if you want to also save the
-coordinates "scaled" to the box size, so that each value is 0.0 to
-1.0. If the simulation box is triclinic (tilted), then all atom
-coords will still be between 0.0 and 1.0. Use *xu*, *yu*, *zu* if you
-want the coordinates "unwrapped" by the image flags for each atom.
-Unwrapped means that if the atom has passed through a periodic
-boundary one or more times, the value is printed for what the
-coordinate would be if it had not been wrapped back into the periodic
-box. Note that using *xu*, *yu*, *zu* means that the coordinate
-values may be far outside the box bounds printed with the snapshot.
-Using *xsu*, *ysu*, *zsu* is similar to using *xu*, *yu*, *zu*, except
-that the unwrapped coordinates are scaled by the box size. Atoms that
-have passed through a periodic boundary will have the corresponding
-cooordinate increased or decreased by 1.0.
-
-The image flags can be printed directly using the *ix*, *iy*, *iz*
-attributes. For periodic dimensions, they specify which image of the
-simulation box the atom is considered to be in. An image of 0 means
-it is inside the box as defined. A value of 2 means add 2 box lengths
-to get the true value. A value of -1 means subtract 1 box length to
-get the true value. LAMMPS updates these flags as atoms cross
-periodic boundaries during the simulation.
-
-The *mux*, *muy*, *muz* attributes are specific to dipolar systems
-defined with an atom style of *dipole*. They give the orientation of
-the atom's point dipole moment. The *mu* attribute gives the
-magnitude of the atom's dipole moment.
-
-The *radius* and *diameter* attributes are specific to spherical
-particles that have a finite size, such as those defined with an atom
-style of *sphere*.
-
-The *omegax*, *omegay*, and *omegaz* attributes are specific to
-finite-size spherical particles that have an angular velocity. Only
-certain atom styles, such as *sphere* define this quantity.
-
-The *angmomx*, *angmomy*, and *angmomz* attributes are specific to
-finite-size aspherical particles that have an angular momentum. Only
-the *ellipsoid* atom style defines this quantity.
-
-The *tqx*, *tqy*, *tqz* attributes are for finite-size particles that
-can sustain a rotational torque due to interactions with other
-particles.
-
-The *spin*, *eradius*, *ervel*, and *erforce* attributes are for
-particles that represent nuclei and electrons modeled with the
-electronic force field (EFF). See :doc:`atom_style electron <atom_style>` and :doc:`pair_style eff <pair_eff>` for more
-details.
-
-The *c_ID* and *c_ID[N]* attributes allow per-atom vectors or arrays
-calculated by a :doc:`compute <compute>` to be output. The ID in the
-attribute should be replaced by the actual ID of the compute that has
-been defined previously in the input script. See the
-:doc:`compute <compute>` command for details. There are computes for
-calculating the per-atom energy, stress, centro-symmetry parameter,
-and coordination number of individual atoms.
-
-Note that computes which calculate global or local quantities, as
-opposed to per-atom quantities, cannot be output in a dump custom/vtk
-command. Instead, global quantities can be output by the
-:doc:`thermo_style custom <thermo_style>` command, and local quantities
-can be output by the dump local command.
-
-If *c_ID* is used as an attribute, then the per-atom vector calculated
-by the compute is printed. If *c_ID[N]* is used, then N must be in
-the range from 1-M, which will print the Nth column of the M-length
-per-atom array calculated by the compute.
-
-The *f_ID* and *f_ID[N]* attributes allow vector or array per-atom
-quantities calculated by a :doc:`fix <fix>` to be output. The ID in the
-attribute should be replaced by the actual ID of the fix that has been
-defined previously in the input script. The :doc:`fix ave/atom <fix_ave_atom>` command is one that calculates per-atom
-quantities. Since it can time-average per-atom quantities produced by
-any :doc:`compute <compute>`, :doc:`fix <fix>`, or atom-style
-:doc:`variable <variable>`, this allows those time-averaged results to
-be written to a dump file.
-
-If *f_ID* is used as a attribute, then the per-atom vector calculated
-by the fix is printed. If *f_ID[N]* is used, then N must be in the
-range from 1-M, which will print the Nth column of the M-length
-per-atom array calculated by the fix.
-
-The *v_name* attribute allows per-atom vectors calculated by a
-:doc:`variable <variable>` to be output. The name in the attribute
-should be replaced by the actual name of the variable that has been
-defined previously in the input script. Only an atom-style variable
-can be referenced, since it is the only style that generates per-atom
-values. Variables of style *atom* can reference individual atom
-attributes, per-atom atom attributes, thermodynamic keywords, or
-invoke other computes, fixes, or variables when they are evaluated, so
-this is a very general means of creating quantities to output to a
-dump file.
-
-See :doc:`Section_modify <Section_modify>` of the manual for information
-on how to add new compute and fix styles to LAMMPS to calculate
-per-atom quantities which could then be output into dump files.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *custom/vtk* style does not support writing of gzipped dump files.
-
-The *custom/vtk* dump style is part of the USER-VTK package. It is
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-To use this dump style, you also must link to the VTK library. See
-the info in lib/vtk/README and insure the Makefile.lammps file in that
-directory is appropriate for your machine.
-
-The *custom/vtk* dump style neither supports buffering nor custom
-format strings.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`dump image <dump_image>`,
-:doc:`dump_modify <dump_modify>`, :doc:`undump <undump>`
-
-Default
-"""""""
-
-By default, files are written in ASCII format. If the file extension
-is not one of .vtk, .vtp or .vtu, the legacy VTK file format is used.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dump_h5md.txt b/doc/_sources/dump_h5md.txt
deleted file mode 100644
index 78085bf13..000000000
--- a/doc/_sources/dump_h5md.txt
+++ /dev/null
@@ -1,153 +0,0 @@
-.. index:: dump h5md
-
-dump h5md command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dump ID group-ID h5md N file.h5 args
-
-* ID = user-assigned name for the dump
-* group-ID = ID of the group of atoms to be imaged
-* h5md = style of dump command (other styles *atom* or *cfg* or *dcd* or *xtc* or *xyz* or *local* or *custom* are discussed on the :doc:`dump <dump>` doc page)
-* N = dump every this many timesteps
-* file.h5 = name of file to write to
-* args = list of data elements to dump, with their dump "subintervals".
- At least one element must be given and image may only be present if
- position is specified first.
-.. parsed-literal::
-
- position options
- image
- velocity options
- force options
- species options
- file_from ID: do not open a new file, re-use the already opened file from dump ID
- box value = *yes* or *no*
- create_group value = *yes* or *no*
- author value = quoted string
-
-For the elements *position*, *velocity*, *force* and *species*, one
-may specify a sub-interval to write the data only every N_element
-iterations of the dump (i.e. every N*N_element time steps). This is
-specified by the option
-
-.. parsed-literal::
-
- every N_element
-
-that follows directly the element declaration.
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dump h5md1 all h5md 100 dump_h5md.h5 position image
- dump h5md1 all h5md 100 dump_h5md.h5 position velocity every 10
- dump h5md1 all h5md 100 dump_h5md.h5 velocity author "John Doe"
-
-Description
-"""""""""""
-
-Dump a snapshot of atom coordinates every N timesteps in the
-`HDF5 <HDF5_ws_>`_ based `H5MD <h5md_>`_ file format :ref:`(de Buyl) <h5md_cpc>`.
-HDF5 files are binary, portable and self-describing. This dump style
-will write only one file, on the root node.
-
-Several dumps may write to the same file, by using file_from and
-referring to a previously defined dump. Several groups may also be
-stored within the same file by defining several dumps. A dump that
-refers (via *file_from*) to an already open dump ID and that concerns
-another particle group must specify *create_group yes*.
-
-.. _h5md: http://nongnu.org/h5md/
-
-
-
-Each data element is written every N*N_element steps. For *image*, no
-subinterval is needed as it must be present at the same interval as
-*position*. *image* must be given after *position* in any case. The
-box information (edges in each dimension) is stored at the same
-interval than the *position* element, if present. Else it is stored
-every N steps.
-
-.. note::
-
- Because periodic boundary conditions are enforced only on
- timesteps when neighbor lists are rebuilt, the coordinates of an atom
- written to a dump file may be slightly outside the simulation box.
-
-**Use from write_dump:**
-
-It is possible to use this dump style with the
-:doc:`write_dump <write_dump>` command. In this case, the subintervals
-must not be set at all. The write_dump command can be used either to
-create a new file or to add current data to an existing dump file by
-using the *file_from* keyword.
-
-Typically, the *species* data is fixed. The following two commands
-store the position data every 100 timesteps, with the image data, and
-store once the species data in the same file.
-
-.. parsed-literal::
-
- dump h5md1 all h5md 100 dump.h5 position image
- write_dump all h5md dump.h5 file_from h5md1 species
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The number of atoms per snapshot cannot change with the h5md style.
-The position data is stored wrapped (box boundaries not enforced, see
-note above). Only orthogonal domains are currently supported. This is
-a limitation of the present dump h5md command and not of H5MD itself.
-
-The *h5md* dump style is part of the USER-H5MD package. It is only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. It also
-requires (i) building the ch5md library provided with LAMMPS (See the
-:ref:`Making LAMMPS <start_3>` section for more info.) and
-(ii) having the `HDF5 <HDF5_ws_>`_ library installed (C bindings are
-sufficient) on your system. The library ch5md is compiled with the
-h5cc wrapper provided by the HDF5 library.
-
-.. _HDF5_ws: http://www.hdfgroup.org/HDF5/
-
-
-
-
-----------
-
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`dump_modify <dump_modify>`, :doc:`undump <undump>`
-
-
-----------
-
-
-.. _h5md_cpc:
-
-
-
-**(de Buyl)** de Buyl, Colberg and Hofling, H5MD: A structured,
-efficient, and portable file format for molecular data,
-Comp. Phys. Comm. 185(6), 1546-1553 (2014) -
-`[arXiv:1308.6382] <http://arxiv.org/abs/1308.6382/>`_.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dump_image.txt b/doc/_sources/dump_image.txt
deleted file mode 100644
index 90f7b78e3..000000000
--- a/doc/_sources/dump_image.txt
+++ /dev/null
@@ -1,674 +0,0 @@
-.. index:: dump image
-
-dump image command
-==================
-
-dump movie command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dump ID group-ID style N file color diameter keyword value ...
-
-* ID = user-assigned name for the dump
-* group-ID = ID of the group of atoms to be imaged
-* style = *image* or *movie* = style of dump command (other styles *atom* or *cfg* or *dcd* or *xtc* or *xyz* or *local* or *custom* are discussed on the :doc:`dump <dump>` doc page)
-* N = dump every this many timesteps
-* file = name of file to write image to
-* color = atom attribute that determines color of each atom
-* diameter = atom attribute that determines size of each atom
-* zero or more keyword/value pairs may be appended
-* keyword = *atom* or *adiam* or *bond* or *line* or *tri* or *body* or *size* or *view* or *center* or *up* or *zoom* or *persp* or *box* or *axes* or *subbox* or *shiny* or *ssao*
-.. parsed-literal::
-
- *atom* = yes/no = do or do not draw atoms
- *adiam* size = numeric value for atom diameter (distance units)
- *bond* values = color width = color and width of bonds
- color = *atom* or *type* or *none*
- width = number or *atom* or *type* or *none*
- number = numeric value for bond width (distance units)
- *line* = color width
- color = *type*
- width = numeric value for line width (distance units)
- *tri* = color tflag width
- color = *type*
- tflag = 1 for just triangle, 2 for just tri edges, 3 for both
- width = numeric value for tringle edge width (distance units)
- *body* = color bflag1 bflag2
- color = *type*
- bflag1,bflag2 = 2 numeric flags to affect how bodies are drawn
- *size* values = width height = size of images
- width = width of image in # of pixels
- height = height of image in # of pixels
- *view* values = theta phi = view of simulation box
- theta = view angle from +z axis (degrees)
- phi = azimuthal view angle (degrees)
- theta or phi can be a variable (see below)
- *center* values = flag Cx Cy Cz = center point of image
- flag = "s" for static, "d" for dynamic
- Cx,Cy,Cz = center point of image as fraction of box dimension (0.5 = center of box)
- Cx,Cy,Cz can be variables (see below)
- *up* values = Ux Uy Uz = direction that is "up" in image
- Ux,Uy,Uz = components of up vector
- Ux,Uy,Uz can be variables (see below)
- *zoom* value = zfactor = size that simulation box appears in image
- zfactor = scale image size by factor > 1 to enlarge, factor < 1 to shrink
- zfactor can be a variable (see below)
- *persp* value = pfactor = amount of "perspective" in image
- pfactor = amount of perspective (0 = none, < 1 = some, > 1 = highly skewed)
- pfactor can be a variable (see below)
- *box* values = yes/no diam = draw outline of simulation box
- yes/no = do or do not draw simulation box lines
- diam = diameter of box lines as fraction of shortest box length
- *axes* values = yes/no length diam = draw xyz axes
- yes/no = do or do not draw xyz axes lines next to simulation box
- length = length of axes lines as fraction of respective box lengths
- diam = diameter of axes lines as fraction of shortest box length
- *subbox* values = yes/no diam = draw outline of processor sub-domains
- yes/no = do or do not draw sub-domain lines
- diam = diameter of sub-domain lines as fraction of shortest box length
- *shiny* value = sfactor = shinyness of spheres and cylinders
- sfactor = shinyness of spheres and cylinders from 0.0 to 1.0
- *ssao* value = yes/no seed dfactor = SSAO depth shading
- yes/no = turn depth shading on/off
- seed = random # seed (positive integer)
- dfactor = strength of shading from 0.0 to 1.0
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dump d0 all image 100 dump.*.jpg type type
- dump d1 mobile image 500 snap.*.png element element ssao yes 4539 0.6
- dump d2 all image 200 img-*.ppm type type zoom 2.5 adiam 1.5 size 1280 720
- dump m0 all movie 1000 movie.mpg type type size 640 480
- dump m1 all movie 1000 movie.avi type type size 640 480
- dump m2 all movie 100 movie.m4v type type zoom 1.8 adiam v_value size 1280 720
-
-Description
-"""""""""""
-
-Dump a high-quality rendered image of the atom configuration every N
-timesteps and save the images either as a sequence of JPEG or PNG or
-PPM files, or as a single movie file. The options for this command as
-well as the :doc:`dump_modify <dump_modify>` command control what is
-included in the image or movie and how it appears. A series of such
-images can easily be manually converted into an animated movie of your
-simulation or the process can be automated without writing the
-intermediate files using the dump movie style; see further details
-below. Other dump styles store snapshots of numerical data asociated
-with atoms in various formats, as discussed on the :doc:`dump <dump>`
-doc page.
-
-Note that a set of images or a movie can be made after a simulation
-has been run, using the :doc:`rerun <rerun>` command to read snapshots
-from an existing dump file, and using these dump commands in the rerun
-script to generate the images/movie.
-
-Here are two sample images, rendered as 1024x1024 JPEG files. Click
-to see the full-size images:
-
-.. raw:: html
-
- <DIV ALIGN=center>
-
-.. thumbnail:: JPG/dump1.jpg
-
-.. thumbnail:: JPG/dump2.jpg
-
-.. raw:: html
-
- </DIV>
-
-Only atoms in the specified group are rendered in the image. The
-:doc:`dump_modify region and thresh <dump_modify>` commands can also
-alter what atoms are included in the image.
-The filename suffix determines whether a JPEG, PNG, or PPM file is
-created with the *image* dump style. If the suffix is ".jpg" or
-".jpeg", then a JPEG format file is created, if the suffix is ".png",
-then a PNG format is created, else a PPM (aka NETPBM) format file is
-created. The JPEG and PNG files are binary; PPM has a text mode
-header followed by binary data. JPEG images have lossy compression;
-PNG has lossless compression; and PPM files are uncompressed but can
-be compressed with gzip, if LAMMPS has been compiled with
--DLAMMPS_GZIP and a ".gz" suffix is used.
-
-Similarly, the format of the resulting movie is chosen with the
-*movie* dump style. This is handled by the underlying FFmpeg converter
-and thus details have to be looked up in the FFmpeg documentation.
-Typical examples are: .avi, .mpg, .m4v, .mp4, .mkv, .flv, .mov, .gif
-Additional settings of the movie compression like bitrate and
-framerate can be set using the :doc:`dump_modify <dump_modify>` command.
-
-To write out JPEG and PNG format files, you must build LAMMPS with
-support for the corresponding JPEG or PNG library. To convert images
-into movies, LAMMPS has to be compiled with the -DLAMMPS_FFMPEG
-flag. See :ref:`this section <start_2_4>` of the manual
-for instructions on how to do this.
-
-.. note::
-
- Because periodic boundary conditions are enforced only on
- timesteps when neighbor lists are rebuilt, the coordinates of an atom
- in the image may be slightly outside the simulation box.
-
-
-----------
-
-
-Dumps are performed on timesteps that are a multiple of N (including
-timestep 0) and on the last timestep of a minimization if the
-minimization converges. Note that this means a dump will not be
-performed on the initial timestep after the dump command is invoked,
-if the current timestep is not a multiple of N. This behavior can be
-changed via the :doc:`dump_modify first <dump_modify>` command, which
-can be useful if the dump command is invoked after a minimization
-ended on an arbitrary timestep. N can be changed between runs by
-using the :doc:`dump_modify every <dump_modify>` command.
-
-Dump *image* filenames must contain a wildcard character "*", so that
-one image file per snapshot is written. The "*" character is replaced
-with the timestep value. For example, tmp.dump.*.jpg becomes
-tmp.dump.0.jpg, tmp.dump.10000.jpg, tmp.dump.20000.jpg, etc. Note
-that the :doc:`dump_modify pad <dump_modify>` command can be used to
-insure all timestep numbers are the same length (e.g. 00010), which
-can make it easier to convert a series of images into a movie in the
-correct ordering.
-
-Dump *movie* filenames on the other hand, must not have any wildcard
-character since only one file combining all images into a single
-movie will be written by the movie encoder.
-
-
-----------
-
-
-The *color* and *diameter* settings determine the color and size of
-atoms rendered in the image. They can be any atom attribute defined
-for the :doc:`dump custom <dump>` command, including *type* and
-*element*. This includes per-atom quantities calculated by a
-:doc:`compute <compute>`, :doc:`fix <fix>`, or :doc:`variable <variable>`,
-which are prefixed by "c_", "f_", or "v_" respectively. Note that the
-*diameter* setting can be overridden with a numeric value applied to
-all atoms by the optional *adiam* keyword.
-
-If *type* is specified for the *color* setting, then the color of each
-atom is determined by its atom type. By default the mapping of types
-to colors is as follows:
-
-* type 1 = red
-* type 2 = green
-* type 3 = blue
-* type 4 = yellow
-* type 5 = aqua
-* type 6 = cyan
-
-and repeats itself for types > 6. This mapping can be changed by the
-:doc:`dump_modify acolor <dump_modify>` command.
-
-If *type* is specified for the *diameter* setting then the diameter of
-each atom is determined by its atom type. By default all types have
-diameter 1.0. This mapping can be changed by the :doc:`dump_modify adiam <dump_modify>` command.
-
-If *element* is specified for the *color* and/or *diameter* setting,
-then the color and/or diameter of each atom is determined by which
-element it is, which in turn is specified by the element-to-type
-mapping specified by the "dump_modify element" command. By default
-every atom type is C (carbon). Every element has a color and diameter
-associated with it, which is the same as the colors and sizes used by
-the `AtomEye <atomeye_>`_ visualization package.
-
-.. _atomeye: http://mt.seas.upenn.edu/Archive/Graphics/A
-
-
-
-If other atom attributes are used for the *color* or *diameter*
-settings, they are interpreted in the following way.
-
-If "vx", for example, is used as the *color* setting, then the color
-of the atom will depend on the x-component of its velocity. The
-association of a per-atom value with a specific color is determined by
-a "color map", which can be specified via the
-:doc:`dump_modify <dump_modify>` command. The basic idea is that the
-atom-attribute will be within a range of values, and every value
-within the range is mapped to a specific color. Depending on how the
-color map is defined, that mapping can take place via interpolation so
-that a value of -3.2 is halfway between "red" and "blue", or
-discretely so that the value of -3.2 is "orange".
-
-If "vx", for example, is used as the *diameter* setting, then the atom
-will be rendered using the x-component of its velocity as the
-diameter. If the per-atom value <= 0.0, them the atom will not be
-drawn. Note that finite-size spherical particles, as defined by
-:doc:`atom_style sphere <atom_style>` define a per-particle radius or
-diameter, which can be used as the *diameter* setting.
-
-
-----------
-
-
-The various kewords listed above control how the image is rendered.
-As listed below, all of the keywords have defaults, most of which you
-will likely not need to change. The :doc:`dump modify <dump_modify>`
-also has options specific to the dump image style, particularly for
-assigning colors to atoms, bonds, and other image features.
-
-
-----------
-
-
-The *atom* keyword allow you to turn off the drawing of all atoms, if
-the specified value is *no*. Note that this will not turn off the
-drawing of particles that are represented as lines, triangles, or
-bodies, as discussed below. These particles can be drawn separately
-if the *line*, *tri*, or *body* keywords are used.
-
-The *adiam* keyword allows you to override the *diameter* setting to
-set a single numeric *size*. All atoms will be drawn with that
-diameter, e.g. 1.5, which is in whatever distance :doc:`units <units>`
-the input script defines, e.g. Angstroms.
-
-The *bond* keyword allows to you to alter how bonds are drawn. A bond
-is only drawn if both atoms in the bond are being drawn due to being
-in the specified group and due to other selection criteria
-(e.g. region, threshhold settings of the
-:doc:`dump_modify <dump_modify>` command). By default, bonds are drawn
-if they are defined in the input data file as read by the
-:doc:`read_data <read_data>` command. Using *none* for both the bond
-*color* and *width* value will turn off the drawing of all bonds.
-
-If *atom* is specified for the bond *color* value, then each bond is
-drawn in 2 halves, with the color of each half being the color of the
-atom at that end of the bond.
-
-If *type* is specified for the *color* value, then the color of each
-bond is determined by its bond type. By default the mapping of bond
-types to colors is as follows:
-
-* type 1 = red
-* type 2 = green
-* type 3 = blue
-* type 4 = yellow
-* type 5 = aqua
-* type 6 = cyan
-
-and repeats itself for bond types > 6. This mapping can be changed by
-the :doc:`dump_modify bcolor <dump_modify>` command.
-
-The bond *width* value can be a numeric value or *atom* or *type* (or
-*none* as indicated above).
-
-If a numeric value is specified, then all bonds will be drawn as
-cylinders with that diameter, e.g. 1.0, which is in whatever distance
-:doc:`units <units>` the input script defines, e.g. Angstroms.
-
-If *atom* is specified for the *width* value, then each bond
-will be drawn with a width corresponding to the minimum diameter
-of the 2 atoms in the bond.
-
-If *type* is specified for the *width* value then the diameter of each
-bond is determined by its bond type. By default all types have
-diameter 0.5. This mapping can be changed by the :doc:`dump_modify bdiam <dump_modify>` command.
-
-The *line* keyword can be used when :doc:`atom_style line <atom_style>`
-is used to define particles as line segments, and will draw them as
-lines. If this keyword is not used, such particles will be drawn as
-spheres, the same as if they were regular atoms. The only setting
-currently allowed for the *color* value is *type*, which will color
-the lines according to the atom type of the particle. By default the
-mapping of types to colors is as follows:
-
-* type 1 = red
-* type 2 = green
-* type 3 = blue
-* type 4 = yellow
-* type 5 = aqua
-* type 6 = cyan
-
-and repeats itself for types > 6. There is not yet an option to
-change this via the :doc:`dump_modify <dump_modify>` command.
-
-The line *width* can only be a numeric value, which specifies that all
-lines will be drawn as cylinders with that diameter, e.g. 1.0, which
-is in whatever distance :doc:`units <units>` the input script defines,
-e.g. Angstroms.
-
-The *tri* keyword can be used when :doc:`atom_style tri <atom_style>` is
-used to define particles as triangles, and will draw them as triangles
-or edges (3 lines) or both, depending on the setting for *tflag*. If
-edges are drawn, the *width* setting determines the diameters of the
-line segments. If this keyword is not used, triangle particles will
-be drawn as spheres, the same as if they were regular atoms. The only
-setting currently allowed for the *color* value is *type*, which will
-color the triangles according to the atom type of the particle. By
-default the mapping of types to colors is as follows:
-
-* type 1 = red
-* type 2 = green
-* type 3 = blue
-* type 4 = yellow
-* type 5 = aqua
-* type 6 = cyan
-
-and repeats itself for types > 6. There is not yet an option to
-change this via the :doc:`dump_modify <dump_modify>` command.
-
-The *body* keyword can be used when :doc:`atom_style body <atom_style>`
-is used to define body particles with internal state
-(e.g. sub-particles), and will drawn them in a manner specific to the
-body style. If this keyword is not used, such particles will be drawn
-as spheres, the same as if they were regular atoms.
-
-The :doc:`body <body>` doc page descibes the body styles LAMMPS
-currently supports, and provides more details as to the kind of body
-particles they represent and how they are drawn by this dump image
-command. For all the body styles, individual atoms can be either a
-body particle or a usual point (non-body) particle. Non-body
-particles will be drawn the same way they would be as a regular atom.
-The *bflag1* and *bflag2* settings are numerical values which are
-passed to the body style to affect how the drawing of a body particle
-is done. See the :doc:`body <body>` doc page for a description of what
-these parameters mean for each body style.
-
-
-----------
-
-
-The *size* keyword sets the width and height of the created images,
-i.e. the number of pixels in each direction.
-
-
-----------
-
-
-The *view*, *center*, *up*, *zoom*, and *persp* values determine how
-3d simulation space is mapped to the 2d plane of the image. Basically
-they control how the simulation box appears in the image.
-
-All of the *view*, *center*, *up*, *zoom*, and *persp* values can be
-specified as numeric quantities, whose meaning is explained below.
-Any of them can also be specified as an :doc:`equal-style variable <variable>`, by using v_name as the value, where "name" is
-the variable name. In this case the variable will be evaluated on the
-timestep each image is created to create a new value. If the
-equal-style variable is time-dependent, this is a means of changing
-the way the simulation box appears from image to image, effectively
-doing a pan or fly-by view of your simulation.
-
-The *view* keyword determines the viewpoint from which the simulation
-box is viewed, looking towards the *center* point. The *theta* value
-is the vertical angle from the +z axis, and must be an angle from 0 to
-180 degrees. The *phi* value is an azimuthal angle around the z axis
-and can be positive or negative. A value of 0.0 is a view along the
-+x axis, towards the *center* point. If *theta* or *phi* are
-specified via variables, then the variable values should be in
-degrees.
-
-The *center* keyword determines the point in simulation space that
-will be at the center of the image. *Cx*, *Cy*, and *Cz* are
-speficied as fractions of the box dimensions, so that (0.5,0.5,0.5) is
-the center of the simulation box. These values do not have to be
-between 0.0 and 1.0, if you want the simulation box to be offset from
-the center of the image. Note, however, that if you choose strange
-values for *Cx*, *Cy*, or *Cz* you may get a blank image. Internally,
-*Cx*, *Cy*, and *Cz* are converted into a point in simulation space.
-If *flag* is set to "s" for static, then this conversion is done once,
-at the time the dump command is issued. If *flag* is set to "d" for
-dynamic then the conversion is performed every time a new image is
-created. If the box size or shape is changing, this will adjust the
-center point in simulation space.
-
-The *up* keyword determines what direction in simulation space will be
-"up" in the image. Internally it is stored as a vector that is in the
-plane perpendicular to the view vector implied by the *theta* and
-*pni* values, and which is also in the plane defined by the view
-vector and user-specified up vector. Thus this internal vector is
-computed from the user-specified *up* vector as
-
-.. parsed-literal::
-
- up_internal = view cross (up cross view)
-
-This means the only restriction on the specified *up* vector is that
-it cannot be parallel to the *view* vector, implied by the *theta* and
-*phi* values.
-
-The *zoom* keyword scales the size of the simulation box as it appears
-in the image. The default *zfactor* value of 1 should display an
-image mostly filled by the atoms in the simulation box. A *zfactor* >
-1 will make the simulation box larger; a *zfactor* < 1 will make it
-smaller. *Zfactor* must be a value > 0.0.
-
-The *persp* keyword determines how much depth perspective is present
-in the image. Depth perspective makes lines that are parallel in
-simulation space appear non-parallel in the image. A *pfactor* value
-of 0.0 means that parallel lines will meet at infininty (1.0/pfactor),
-which is an orthographic rendering with no persepctive. A *pfactor*
-value between 0.0 and 1.0 will introduce more perspective. A *pfactor*
-value > 1 will create a highly skewed image with a large amount of
-perspective.
-
-.. note::
-
- The *persp* keyword is not yet supported as an option.
-
-
-----------
-
-
-The *box* keyword determines if and how the simulation box boundaries
-are rendered as thin cylinders in the image. If *no* is set, then the
-box boundaries are not drawn and the *diam* setting is ignored. If
-*yes* is set, the 12 edges of the box are drawn, with a diameter that
-is a fraction of the shortest box length in x,y,z (for 3d) or x,y (for
-2d). The color of the box boundaries can be set with the :doc:`dump_modify boxcolor <dump_modify>` command.
-
-The *axes* keyword determines if and how the coordinate axes are
-rendered as thin cylinders in the image. If *no* is set, then the
-axes are not drawn and the *length* and *diam* settings are ignored.
-If *yes* is set, 3 thin cylinders are drawn to represent the x,y,z
-axes in colors red,green,blue. The origin of these cylinders will be
-offset from the lower left corner of the box by 10%. The *length*
-setting determines how long the cylinders will be as a fraction of the
-respective box lengths. The *diam* setting determines their thickness
-as a fraction of the shortest box length in x,y,z (for 3d) or x,y (for
-2d).
-
-The *subbox* keyword determines if and how processor sub-domain
-boundaries are rendered as thin cylinders in the image. If *no* is
-set (default), then the sub-domain boundaries are not drawn and the
-*diam* setting is ignored. If *yes* is set, the 12 edges of each
-processor sub-domain are drawn, with a diameter that is a fraction of
-the shortest box length in x,y,z (for 3d) or x,y (for 2d). The color
-of the sub-domain boundaries can be set with the :doc:`dump_modify boxcolor <dump_modify>` command.
-
-
-----------
-
-
-The *shiny* keyword determines how shiny the objects rendered in the
-image will appear. The *sfactor* value must be a value 0.0 <=
-*sfactor* <= 1.0, where *sfactor* = 1 is a highly reflective surface
-and *sfactor* = 0 is a rough non-shiny surface.
-
-The *ssao* keyword turns on/off a screen space ambient occlusion
-(SSAO) model for depth shading. If *yes* is set, then atoms further
-away from the viewer are darkened via a randomized process, which is
-perceived as depth. The calculation of this effect can increase the
-cost of computing the image by roughly 2x. The strength of the effect
-can be scaled by the *dfactor* parameter. If *no* is set, no depth
-shading is performed.
-
-
-----------
-
-
-A series of JPEG, PNG, or PPM images can be converted into a movie
-file and then played as a movie using commonly available tools. Using
-dump style *movie* automates this step and avoids the intermediate
-step of writing (many) image snapshot file. But LAMMPS has to be
-compiled with -DLAMMPS_FFMPEG and an FFmpeg executable have to be
-installed.
-
-To manually convert JPEG, PNG or PPM files into an animated GIF or
-MPEG or other movie file you can use:
-
-* a) Use the ImageMagick convert program.
-.. parsed-literal::
-
- % convert *.jpg foo.gif
- % convert -loop 1 *.ppm foo.mpg
-
-Animated GIF files from ImageMagick are unoptimized. You can use a
-program like gifsicle to optimize and massively shrink them.
-MPEG files created by ImageMagick are in MPEG-1 format with rather
-inefficient compression and low quality.
-
-* b) Use QuickTime.
-Select "Open Image Sequence" under the File menu Load the images into
-QuickTime to animate them Select "Export" under the File menu Save the
-movie as a QuickTime movie (*.mov) or in another format. QuickTime
-can generate very high quality and efficiently compressed movie
-files. Some of the supported formats require to buy a license and some
-are not readable on all platforms until specific runtime libraries are
-installed.
-
-* c) Use FFmpeg
-FFmpeg is a command line tool that is available on many platforms and
-allows extremely flexible encoding and decoding of movies.
-
-.. parsed-literal::
-
- cat snap.*.jpg | ffmpeg -y -f image2pipe -c:v mjpeg -i - -b:v 2000k movie.m4v
- cat snap.*.ppm | ffmpeg -y -f image2pipe -c:v ppm -i - -b:v 2400k movie.avi
-
-Frontends for FFmpeg exist for multiple platforms. For more
-information see the `FFmpeg homepage <http://www.ffmpeg.org/>`_
-
-
-
-
-----------
-
-
-Play the movie:
-
-* a) Use your browser to view an animated GIF movie.
-Select "Open File" under the File menu
-Load the animated GIF file
-
-* b) Use the freely available mplayer or ffplay tool to view a
- movie. Both are available for multiple OSes and support a large
- variety of file formats and decoders.
-.. parsed-literal::
-
- % mplayer foo.mpg
- % ffplay bar.avi
-
-* c) Use the `Pizza.py <http://www.sandia.gov/~sjplimp/pizza.html>`_
- `animate tool <http://www.sandia.gov/~sjplimp/pizza/doc/animate.html>`_,
- which works directly on a series of image files.
-.. parsed-literal::
-
- a = animate("foo*.jpg")
-
-* d) QuickTime and other Windows- or MacOS-based media players can
- obviously play movie files directly. Similarly for corresponding tools
- bundled with Linux desktop environments. However, due to licensing
- issues with some file formats, the formats may require installing
- additional libraries, purchasing a license, or may not be
- supported.
-
-----------
-
-
-See :doc:`Section_modify <Section_modify>` of the manual for information
-on how to add new compute and fix styles to LAMMPS to calculate
-per-atom quantities which could then be output into dump files.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To write JPEG images, you must use the -DLAMMPS_JPEG switch when
-building LAMMPS and link with a JPEG library. To write PNG images, you
-must use the -DLAMMPS_PNG switch when building LAMMPS and link with a
-PNG library.
-
-To write *movie* dumps, you must use the -DLAMMPS_FFMPEG switch when
-building LAMMPS and have the FFmpeg executable available on the
-machine where LAMMPS is being run. Typically it's name is lowercase,
-i.e. ffmpeg.
-
-See the :ref:`Making LAMMPS <start_2_4>` section of the
-documentation for details on how to compile with optional switches.
-
-Note that since FFmpeg is run as an external program via a pipe,
-LAMMPS has limited control over its execution and no knowledge about
-errors and warnings printed by it. Those warnings and error messages
-will be printed to the screen only. Due to the way image data is
-communicated to FFmpeg, it will often print the message
-
-.. parsed-literal::
-
- pipe:: Input/output error
-
-which can be safely ignored. Other warnings
-and errors have to be addressed according to the FFmpeg documentation.
-One known issue is that certain movie file formats (e.g. MPEG level 1
-and 2 format streams) have video bandwith limits that can be crossed
-when rendering too large of image sizes. Typical warnings look like
-this:
-
-.. parsed-literal::
-
- [mpeg @ 0x98b5e0] packet too large, ignoring buffer limits to mux it
- [mpeg @ 0x98b5e0] buffer underflow st=0 bufi=281407 size=285018
- [mpeg @ 0x98b5e0] buffer underflow st=0 bufi=283448 size=285018
-
-In this case it is recommended to either reduce the size of the image
-or encode in a different format that is also supported by your copy of
-FFmpeg, and which does not have this limitation (e.g. .avi, .mkv,
-mp4).
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`dump_modify <dump_modify>`, :doc:`undump <undump>`
-
-Default
-"""""""
-
-The defaults for the keywords are as follows:
-
-* adiam = not specified (use diameter setting)
-* atom = yes
-* bond = none none (if no bonds in system)
-* bond = atom 0.5 (if bonds in system)
-* size = 512 512
-* view = 60 30 (for 3d)
-* view = 0 0 (for 2d)
-* center = s 0.5 0.5 0.5
-* up = 0 0 1 (for 3d)
-* up = 0 1 0 (for 2d)
-* zoom = 1.0
-* persp = 0.0
-* box = yes 0.02
-* axes = no 0.0 0.0
-* subbox no 0.0
-* shiny = 1.0
-* ssao = no
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dump_modify.txt b/doc/_sources/dump_modify.txt
deleted file mode 100644
index 2fec63757..000000000
--- a/doc/_sources/dump_modify.txt
+++ /dev/null
@@ -1,924 +0,0 @@
-.. index:: dump_modify
-
-dump_modify command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dump_modify dump-ID keyword values ...
-
-* dump-ID = ID of dump to modify
-* one or more keyword/value pairs may be appended
-* these keywords apply to various dump styles
-* keyword = *append* or *buffer* or *element* or *every* or *fileper* or *first* or *flush* or *format* or *image* or *label* or *nfile* or *pad* or *precision* or *region* or *scale* or *sort* or *thresh* or *unwrap*
-.. parsed-literal::
-
- *append* arg = *yes* or *no*
- *buffer* arg = *yes* or *no*
- *element* args = E1 E2 ... EN, where N = # of atom types
- E1,...,EN = element name, e.g. C or Fe or Ga
- *every* arg = N
- N = dump every this many timesteps
- N can be a variable (see below)
- *fileper* arg = Np
- Np = write one file for every this many processors
- *first* arg = *yes* or *no*
- *format* arg = C-style format string for one line of output
- *flush* arg = *yes* or *no*
- *image* arg = *yes* or *no*
- *label* arg = string
- string = character string (e.g. BONDS) to use in header of dump local file
- *nfile* arg = Nf
- Nf = write this many files, one from each of Nf processors
- *pad* arg = Nchar = # of characters to convert timestep to
- *precision* arg = power-of-10 value from 10 to 1000000
- *region* arg = region-ID or "none"
- *scale* arg = *yes* or *no*
- *sfactor* arg = coordinate scaling factor (> 0.0)
- *tfactor* arg = time scaling factor (> 0.0)
- *sort* arg = *off* or *id* or N or -N
- off = no sorting of per-atom lines within a snapshot
- id = sort per-atom lines by atom ID
- N = sort per-atom lines in ascending order by the Nth column
- -N = sort per-atom lines in descending order by the Nth column
- *thresh* args = attribute operation value
- attribute = same attributes (x,fy,etotal,sxx,etc) used by dump custom style
- operation = "<" or "<=" or ">" or ">=" or "==" or "!="
- value = numeric value to compare to
- these 3 args can be replaced by the word "none" to turn off thresholding
- *unwrap* arg = *yes* or *no*
-
-* these keywords apply only to the *image* and *movie* :doc:`styles <dump_image>`
-* keyword = *acolor* or *adiam* or *amap* or *backcolor* or *bcolor* or *bdiam* or *boxcolor* or *color* or *bitrate* or *framerate*
-.. parsed-literal::
-
- *acolor* args = type color
- type = atom type or range of types (see below)
- color = name of color or color1/color2/...
- *adiam* args = type diam
- type = atom type or range of types (see below)
- diam = diameter of atoms of that type (distance units)
- *amap* args = lo hi style delta N entry1 entry2 ... entryN
- lo = number or *min* = lower bound of range of color map
- hi = number or *max* = upper bound of range of color map
- style = 2 letters = "c" or "d" or "s" plus "a" or "f"
- "c" for continuous
- "d" for discrete
- "s" for sequential
- "a" for absolute
- "f" for fractional
- delta = binsize (only used for style "s", otherwise ignored)
- binsize = range is divided into bins of this width
- N = # of subsequent entries
- entry = value color (for continuous style)
- value = number or *min* or *max* = single value within range
- color = name of color used for that value
- entry = lo hi color (for discrete style)
- lo/hi = number or *min* or *max* = lower/upper bound of subset of range
- color = name of color used for that subset of values
- entry = color (for sequential style)
- color = name of color used for a bin of values
- *backcolor* arg = color
- color = name of color for background
- *bcolor* args = type color
- type = bond type or range of types (see below)
- color = name of color or color1/color2/...
- *bdiam* args = type diam
- type = bond type or range of types (see below)
- diam = diameter of bonds of that type (distance units)
- *boxcolor* arg = color
- color = name of color for simulation box lines and processor sub-domain lines
- *color* args = name R G B
- name = name of color
- R,G,B = red/green/blue numeric values from 0.0 to 1.0
- *bitrate* arg = rate
- rate = target bitrate for movie in kbps
- *framerate* arg = fps
- fps = frames per second for movie
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dump_modify 1 format "%d %d %20.15g %g %g" scale yes
- dump_modify myDump image yes scale no flush yes
- dump_modify 1 region mySphere thresh x < 0.0 thresh epair >= 3.2
- dump_modify xtcdump precision 10000 sfactor 0.1
- dump_modify 1 every 1000 nfile 20
- dump_modify 1 every v_myVar
- dump_modify 1 amap min max cf 0.0 3 min green 0.5 yellow max blue boxcolor red
-
-Description
-"""""""""""
-
-Modify the parameters of a previously defined dump command. Not all
-parameters are relevant to all dump styles.
-
-As explained on the :doc:`dump <dump>` doc page, the *atom/mpiio*,
-*custom/mpiio*, and *xyz/mpiio* dump styles are identical in command
-syntax and in the format of the dump files they create, to the
-corresponding styles without "mpiio", except the single dump file they
-produce is written in parallel via the MPI-IO library. Thus if a
-dump_modify option below is valid for the *atom* style, it is also
-valid for the *atom/mpiio* style, and similarly for the other styles
-which allow for use of MPI-IO.
-
-
-
-
-
-These keywords apply to various dump styles, including the :doc:`dump image <dump_image>` and :doc:`dump movie <dump_image>` styles. The
-description gives details.
-
-
-----------
-
-
-The *append* keyword applies to all dump styles except *cfg* and *xtc*
-and *dcd*. It also applies only to text output files, not to binary
-or gzipped or image/movie files. If specified as *yes*, then dump
-snapshots are appended to the end of an existing dump file. If
-specified as *no*, then a new dump file will be created which will
-overwrite an existing file with the same name. This keyword can only
-take effect if the dump_modify command is used after the
-:doc:`dump <dump>` command, but before the first command that causes
-dump snapshots to be output, e.g. a :doc:`run <run>` or
-:doc:`minimize <minimize>` command. Once the dump file has been opened,
-this keyword has no further effect.
-
-
-----------
-
-
-The *buffer* keyword applies only to dump styles *atom*, *cfg*,
-*custom*, *local*, and *xyz*. It also applies only to text output
-files, not to binary or gzipped files. If specified as *yes*, which
-is the default, then each processor writes its output into an internal
-text buffer, which is then sent to the processor(s) which perform file
-writes, and written by those processors(s) as one large chunk of text.
-If specified as *no*, each processor sends its per-atom data in binary
-format to the processor(s) which perform file wirtes, and those
-processor(s) format and write it line by line into the output file.
-
-The buffering mode is typically faster since each processor does the
-relatively expensive task of formatting the output for its own atoms.
-However it requires about twice the memory (per processor) for the
-extra buffering.
-
-
-----------
-
-
-The *element* keyword applies only to the the dump *cfg*, *xyz*, and
-*image* styles. It associates element names (e.g. H, C, Fe) with
-LAMMPS atom types. See the list of element names at the bottom of
-this page.
-
-In the case of dump *cfg*, this allows the `AtomEye <atomeye_>`_
-visualization package to read the dump file and render atoms with the
-appropriate size and color.
-
-In the case of dump *image*, the output images will follow the same
-`AtomEye <atomeye_>`_ convention. An element name is specified for each
-atom type (1 to Ntype) in the simulation. The same element name can
-be given to multiple atom types.
-
-In the case of *xyz* format dumps, there are no restrictions to what
-label can be used as an element name. Any whitespace separated text
-will be accepted.
-
-.. _atomeye: http://mt.seas.upenn.edu/Archive/Graphics/A
-
-
-
-
-----------
-
-
-The *every* keyword changes the dump frequency originally specified by
-the :doc:`dump <dump>` command to a new value. The every keyword can be
-specified in one of two ways. It can be a numeric value in which case
-it must be > 0. Or it can be an :doc:`equal-style variable <variable>`,
-which should be specified as v_name, where name is the variable name.
-
-In this case, the variable is evaluated at the beginning of a run to
-determine the next timestep at which a dump snapshot will be written
-out. On that timestep the variable will be evaluated again to
-determine the next timestep, etc. Thus the variable should return
-timestep values. See the stagger() and logfreq() and stride() math
-functions for :doc:`equal-style variables <variable>`, as examples of
-useful functions to use in this context. Other similar math functions
-could easily be added as options for :doc:`equal-style variables <variable>`. Also see the next() function, which allows
-use of a file-style variable which reads successive values from a
-file, each time the variable is evaluated. Used with the *every*
-keyword, if the file contains a list of ascending timesteps, you can
-output snapshots whenever you wish.
-
-Note that when using the variable option with the *every* keyword, you
-need to use the *first* option if you want an initial snapshot written
-to the dump file. The *every* keyword cannot be used with the dump
-*dcd* style.
-
-For example, the following commands will
-write snapshots at timesteps 0,10,20,30,100,200,300,1000,2000,etc:
-
-.. parsed-literal::
-
- variable s equal logfreq(10,3,10)
- dump 1 all atom 100 tmp.dump
- dump_modify 1 every v_s first yes
-
-The following commands would write snapshots at the timesteps listed
-in file tmp.times:
-
-.. parsed-literal::
-
- variable f file tmp.times
- variable s equal next(f)
- dump 1 all atom 100 tmp.dump
- dump_modify 1 every v_s
-
-.. note::
-
- When using a file-style variable with the *every* keyword, the
- file of timesteps must list a first timestep that is beyond the
- current timestep (e.g. it cannot be 0). And it must list one or more
- timesteps beyond the length of the run you perform. This is because
- the dump command will generate an error if the next timestep it reads
- from the file is not a value greater than the current timestep. Thus
- if you wanted output on steps 0,15,100 of a 100-timestep run, the file
- should contain the values 15,100,101 and you should also use the
- dump_modify first command. Any final value > 100 could be used in
- place of 101.
-
-
-----------
-
-
-The *first* keyword determines whether a dump snapshot is written on
-the very first timestep after the dump command is invoked. This will
-always occur if the current timestep is a multiple of N, the frequency
-specified in the :doc:`dump <dump>` command, including timestep 0. But
-if this is not the case, a dump snapshot will only be written if the
-setting of this keyword is *yes*. If it is *no*, which is the
-default, then it will not be written.
-
-
-----------
-
-
-The *flush* keyword determines whether a flush operation is invoked
-after a dump snapshot is written to the dump file. A flush insures
-the output in that file is current (no buffering by the OS), even if
-LAMMPS halts before the simulation completes. Flushes cannot be
-performed with dump style *xtc*.
-
-
-----------
-
-
-The text-based dump styles have a default C-style format string which
-simply specifies %d for integers and %g for floating-point values.
-The *format* keyword can be used to override the default with a new
-C-style format string. Do not include a trailing "\\n" newline
-character in the format string. This option has no effect on the
-*dcd* and *xtc* dump styles since they write binary files. Note that
-for the *cfg* style, the first two fields (atom id and type) are not
-actually written into the CFG file, though you must include formats
-for them in the format string.
-
-.. note::
-
- Any value written to a text-based dump file that is a per-atom
- quantity calculated by a :doc:`compute <compute>` or :doc:`fix <fix>` is
- stored internally as a floating-point value. If the value is actually
- an integer and you wish it to appear in the text dump file as a
- (large) integer, then you need to use an appropriate format. For
- example, these commands:
-
-.. parsed-literal::
-
- compute 1 all property/local batom1 batom2
- dump 1 all local 100 tmp.bonds index c_1[1] c_1[2]
- dump_modify 1 format "%d %0.0f %0.0f"
-
-will output the two atom IDs for atoms in each bond as integers. If
-the dump_modify command were omitted, they would appear as
-floating-point values, assuming they were large integers (more than 6
-digits). The "index" keyword should use the "%d" format since it is
-not generated by a compute or fix, and is stored internally as an
-integer.
-
-
-----------
-
-
-The *fileper* keyword is documented below with the *nfile* keyword.
-
-
-----------
-
-
-The *image* keyword applies only to the dump *atom* style. If the
-image value is *yes*, 3 flags are appended to each atom's coords which
-are the absolute box image of the atom in each dimension. For
-example, an x image flag of -2 with a normalized coord of 0.5 means
-the atom is in the center of the box, but has passed thru the box
-boundary 2 times and is really 2 box lengths to the left of its
-current coordinate. Note that for dump style *custom* these various
-values can be printed in the dump file by using the appropriate atom
-attributes in the dump command itself.
-
-
-----------
-
-
-The *label* keyword applies only to the dump *local* style. When
-it writes local information, such as bond or angle topology
-to a dump file, it will use the specified *label* to format
-the header. By default this includes 2 lines:
-
-.. parsed-literal::
-
- ITEM: NUMBER OF ENTRIES
- ITEM: ENTRIES ...
-
-The word "ENTRIES" will be replaced with the string specified,
-e.g. BONDS or ANGLES.
-
-
-----------
-
-
-The *nfile* or *fileper* keywords can be used in conjunction with the
-"%" wildcard character in the specified dump file name, for all dump
-styles except the *dcd*, *image*, *movie*, *xtc*, and *xyz* styles
-(for which "%" is not allowed). As explained on the :doc:`dump <dump>`
-command doc page, the "%" character causes the dump file to be written
-in pieces, one piece for each of P processors. By default P = the
-number of processors the simulation is running on. The *nfile* or
-*fileper* keyword can be used to set P to a smaller value, which can
-be more efficient when running on a large number of processors.
-
-The *nfile* keyword sets P to the specified Nf value. For example, if
-Nf = 4, and the simulation is running on 100 processors, 4 files will
-be written, by processors 0,25,50,75. Each will collect information
-from itself and the next 24 processors and write it to a dump file.
-
-For the *fileper* keyword, the specified value of Np means write one
-file for every Np processors. For example, if Np = 4, every 4th
-processor (0,4,8,12,etc) will collect information from itself and the
-next 3 processors and write it to a dump file.
-
-
-----------
-
-
-The *pad* keyword only applies when the dump filename is specified
-with a wildcard "*" character which becomes the timestep. If *pad* is
-0, which is the default, the timestep is converted into a string of
-unpadded length, e.g. 100 or 12000 or 2000000. When *pad* is
-specified with *Nchar* > 0, the string is padded with leading zeroes
-so they are all the same length = *Nchar*. For example, pad 7 would
-yield 0000100, 0012000, 2000000. This can be useful so that
-post-processing programs can easily read the files in ascending
-timestep order.
-
-
-----------
-
-
-The *precision* keyword only applies to the dump *xtc* style. A
-specified value of N means that coordinates are stored to 1/N
-nanometer accuracy, e.g. for N = 1000, the coordinates are written to
-1/1000 nanometer accuracy.
-
-
-----------
-
-
-The *sfactor* and *tfactor* keywords only apply to the dump *xtc*
-style. They allow customization of the unit conversion factors used
-when writing to XTC files. By default they are initialized for
-whatever :doc:`units <units>` style is being used, to write out
-coordinates in nanometers and time in picoseconds. I.e. for *real*
-units, LAMMPS defines *sfactor* = 0.1 and *tfactor* = 0.001, since the
-Angstroms and fmsec used by *real* units are 0.1 nm and 0.001 psec
-respectively. If you are using a units system with distance and time
-units far from nm and psec, you may wish to write XTC files with
-different units, since the compression algorithm used in XTC files is
-most effective when the typical magnitude of position data is between
-10.0 and 0.1.
-
-
-----------
-
-
-The *region* keyword only applies to the dump *custom*, *cfg*,
-*image*, and *movie* styles. If specified, only atoms in the region
-will be written to the dump file or included in the image/movie. Only
-one region can be applied as a filter (the last one specified). See
-the :doc:`region <region>` command for more details. Note that a region
-can be defined as the "inside" or "outside" of a geometric shape, and
-it can be the "union" or "intersection" of a series of simpler
-regions.
-
-
-----------
-
-
-The *scale* keyword applies only to the dump *atom* style. A scale
-value of *yes* means atom coords are written in normalized units from
-0.0 to 1.0 in each box dimension. If the simluation box is triclinic
-(tilted), then all atom coords will still be between 0.0 and 1.0. A
-value of *no* means they are written in absolute distance units
-(e.g. Angstroms or sigma).
-
-
-----------
-
-
-The *sort* keyword determines whether lines of per-atom output in a
-snapshot are sorted or not. A sort value of *off* means they will
-typically be written in indeterminate order, either in serial or
-parallel. This is the case even in serial if the :doc:`atom_modify sort <atom_modify>` option is turned on, which it is by default, to
-improve performance. A sort value of *id* means sort the output by
-atom ID. A sort value of N or -N means sort the output by the value
-in the Nth column of per-atom info in either ascending or descending
-order.
-
-The dump *local* style cannot be sorted by atom ID, since there are
-typically multiple lines of output per atom. Some dump styles, such
-as *dcd* and *xtc*, require sorting by atom ID to format the output
-file correctly. If multiple processors are writing the dump file, via
-the "%" wildcard in the dump filename, then sorting cannot be
-performed.
-
-.. note::
-
- Unless it is required by the dump style, sorting dump file
- output requires extra overhead in terms of CPU and communication cost,
- as well as memory, versus unsorted output.
-
-
-----------
-
-
-The *thresh* keyword only applies to the dump *custom*, *cfg*,
-*image*, and *movie* styles. Multiple thresholds can be specified.
-Specifying "none" turns off all threshold criteria. If thresholds are
-specified, only atoms whose attributes meet all the threshold criteria
-are written to the dump file or included in the image. The possible
-attributes that can be tested for are the same as those that can be
-specified in the :doc:`dump custom <dump>` command, with the exception
-of the *element* attribute, since it is not a numeric value. Note
-that different attributes can be output by the dump custom command
-than are used as threshold criteria by the dump_modify command.
-E.g. you can output the coordinates and stress of atoms whose energy
-is above some threshold.
-
-
-----------
-
-
-The *unwrap* keyword only applies to the dump *dcd* and *xtc* styles.
-If set to *yes*, coordinates will be written "unwrapped" by the image
-flags for each atom. Unwrapped means that if the atom has passed thru
-a periodic boundary one or more times, the value is printed for what
-the coordinate would be if it had not been wrapped back into the
-periodic box. Note that these coordinates may thus be far outside the
-box size stored with the snapshot.
-
-
-
-
-
-These keywords apply only to the :doc:`dump image <dump_image>` and
-:doc:`dump movie <dump_image>` styles. Any keyword that affects an
-image, also affects a movie, since the movie is simply a collection of
-images. Some of the keywords only affect the :doc:`dump movie <dump_image>` style. The descriptions give details.
-
-
-----------
-
-
-The *acolor* keyword can be used with the :doc:`dump image <dump_image>`
-command, when its atom color setting is *type*, to set the color that
-atoms of each type will be drawn in the image.
-
-The specified *type* should be an integer from 1 to Ntypes = the
-number of atom types. A wildcard asterisk can be used in place of or
-in conjunction with the *type* argument to specify a range of atom
-types. This takes the form "*" or "*n" or "n*" or "m*n". If N = the
-number of atom types, then an asterisk with no numeric values means
-all types from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive).
-
-The specified *color* can be a single color which is any of the 140
-pre-defined colors (see below) or a color name defined by the
-dump_modify color option. Or it can be two or more colors separated
-by a "/" character, e.g. red/green/blue. In the former case, that
-color is assigned to all the specified atom types. In the latter
-case, the list of colors are assigned in a round-robin fashion to each
-of the specified atom types.
-
-
-----------
-
-
-The *adiam* keyword can be used with the :doc:`dump image <dump_image>`
-command, when its atom diameter setting is *type*, to set the size
-that atoms of each type will be drawn in the image. The specified
-*type* should be an integer from 1 to Ntypes. As with the *acolor*
-keyword, a wildcard asterisk can be used as part of the *type*
-argument to specify a range of atomt types. The specified *diam* is
-the size in whatever distance :doc:`units <units>` the input script is
-using, e.g. Angstroms.
-
-
-----------
-
-
-The *amap* keyword can be used with the :doc:`dump image <dump_image>`
-command, with its *atom* keyword, when its atom setting is an
-atom-attribute, to setup a color map. The color map is used to assign
-a specific RGB (red/green/blue) color value to an individual atom when
-it is drawn, based on the atom's attribute, which is a numeric value,
-e.g. its x-component of velocity if the atom-attribute "vx" was
-specified.
-
-The basic idea of a color map is that the atom-attribute will be
-within a range of values, and that range is associated with a a series
-of colors (e.g. red, blue, green). An atom's specific value (vx =
--3.2) can then mapped to the series of colors (e.g. halfway between
-red and blue), and a specific color is determined via an interpolation
-procedure.
-
-There are many possible options for the color map, enabled by the
-*amap* keyword. Here are the details.
-
-The *lo* and *hi* settings determine the range of values allowed for
-the atom attribute. If numeric values are used for *lo* and/or *hi*,
-then values that are lower/higher than that value are set to the
-value. I.e. the range is static. If *lo* is specified as *min* or
-*hi* as *max* then the range is dynamic, and the lower and/or
-upper bound will be calculated each time an image is drawn, based
-on the set of atoms being visualized.
-
-The *style* setting is two letters, such as "ca". The first letter is
-either "c" for continuous, "d" for discrete, or "s" for sequential.
-The second letter is either "a" for absolute, or "f" for fractional.
-
-A continuous color map is one in which the color changes continuously
-from value to value within the range. A discrete color map is one in
-which discrete colors are assigned to sub-ranges of values within the
-range. A sequential color map is one in which discrete colors are
-assigned to a sequence of sub-ranges of values covering the entire
-range.
-
-An absolute color map is one in which the values to which colors are
-assigned are specified explicitly as values within the range. A
-fractional color map is one in which the values to which colors are
-assigned are specified as a fractional portion of the range. For
-example if the range is from -10.0 to 10.0, and the color red is to be
-assigned to atoms with a value of 5.0, then for an absolute color map
-the number 5.0 would be used. But for a fractional map, the number
-0.75 would be used since 5.0 is 3/4 of the way from -10.0 to 10.0.
-
-The *delta* setting must be specified for all styles, but is only used
-for the sequential style; otherwise the value is ignored. It
-specifies the bin size to use within the range for assigning
-consecutive colors to. For example, if the range is from -10.0 to
-10.0 and a *delta* of 1.0 is used, then 20 colors will be assigned to
-the range. The first will be from -10.0 <= color1 < -9.0, then 2nd
-from -9.0 <= color2 < -8.0, etc.
-
-The *N* setting is how many entries follow. The format of the entries
-depends on whether the color map style is continuous, discrete or
-sequential. In all cases the *color* setting can be any of the 140
-pre-defined colors (see below) or a color name defined by the
-dump_modify color option.
-
-For continuous color maps, each entry has a *value* and a *color*.
-The *value* is either a number within the range of values or *min* or
-*max*. The *value* of the first entry must be *min* and the *value*
-of the last entry must be *max*. Any entries in between must have
-increasing values. Note that numeric values can be specified either
-as absolute numbers or as fractions (0.0 to 1.0) of the range,
-depending on the "a" or "f" in the style setting for the color map.
-
-Here is how the entries are used to determine the color of an
-individual atom, given the value X of its atom attribute. X will fall
-between 2 of the entry values. The color of the atom is linearly
-interpolated (in each of the RGB values) between the 2 colors
-associated with those entries. For example, if X = -5.0 and the 2
-surrounding entries are "red" at -10.0 and "blue" at 0.0, then the
-atom's color will be halfway between "red" and "blue", which happens
-to be "purple".
-
-For discrete color maps, each entry has a *lo* and *hi* value and a
-*color*. The *lo* and *hi* settings are either numbers within the
-range of values or *lo* can be *min* or *hi* can be *max*. The *lo*
-and *hi* settings of the last entry must be *min* and *max*. Other
-entries can have any *lo* and *hi* values and the sub-ranges of
-different values can overlap. Note that numeric *lo* and *hi* values
-can be specified either as absolute numbers or as fractions (0.0 to
-1.0) of the range, depending on the "a" or "f" in the style setting
-for the color map.
-
-Here is how the entries are used to determine the color of an
-individual atom, given the value X of its atom attribute. The entries
-are scanned from first to last. The first time that *lo* <= X <=
-*hi*, X is assigned the color associated with that entry. You can
-think of the last entry as assigning a default color (since it will
-always be matched by X), and the earlier entries as colors that
-override the default. Also note that no interpolation of a color RGB
-is done. All atoms will be drawn with one of the colors in the list
-of entries.
-
-For sequential color maps, each entry has only a *color*. Here is how
-the entries are used to determine the color of an individual atom,
-given the value X of its atom attribute. The range is partitioned
-into N bins of width *binsize*. Thus X will fall in a specific bin
-from 1 to N, say the Mth bin. If it falls on a boundary between 2
-bins, it is considered to be in the higher of the 2 bins. Each bin is
-assigned a color from the E entries. If E < N, then the colors are
-repeated. For example if 2 entries with colors red and green are
-specified, then the odd numbered bins will be red and the even bins
-green. The color of the atom is the color of its bin. Note that the
-sequential color map is really a shorthand way of defining a discrete
-color map without having to specify where all the bin boundaries are.
-
-Here is an example of using a sequential color map to color all the
-atoms in individual molecules with a different color. See the
-examples/pour/in.pour.2d.molecule input script for an example of how
-this is used.
-
-.. parsed-literal::
-
- variable colors string &
- "red green blue yellow white &
- purple pink orange lime gray"
- variable mol atom mol%10
- dump 1 all image 250 image.*.jpg v_mol type &
- zoom 1.6 adiam 1.5
- dump_modify 1 pad 5 amap 0 10 sa 1 10 ${colors}
-
-In this case, 10 colors are defined, and molecule IDs are
-mapped to one of the colors, even if there are 1000s of molecules.
-
-
-----------
-
-
-The *backcolor* sets the background color of the images. The color
-name can be any of the 140 pre-defined colors (see below) or a color
-name defined by the dump_modify color option.
-
-
-----------
-
-
-The *bcolor* keyword can be used with the :doc:`dump image <dump_image>`
-command, with its *bond* keyword, when its color setting is *type*, to
-set the color that bonds of each type will be drawn in the image.
-
-The specified *type* should be an integer from 1 to Nbondtypes = the
-number of bond types. A wildcard asterisk can be used in place of or
-in conjunction with the *type* argument to specify a range of bond
-types. This takes the form "*" or "*n" or "n*" or "m*n". If N = the
-number of bond types, then an asterisk with no numeric values means
-all types from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive).
-
-The specified *color* can be a single color which is any of the 140
-pre-defined colors (see below) or a color name defined by the
-dump_modify color option. Or it can be two or more colors separated
-by a "/" character, e.g. red/green/blue. In the former case, that
-color is assigned to all the specified bond types. In the latter
-case, the list of colors are assigned in a round-robin fashion to each
-of the specified bond types.
-
-
-----------
-
-
-The *bdiam* keyword can be used with the :doc:`dump image <dump_image>`
-command, with its *bond* keyword, when its diam setting is *type*, to
-set the diameter that bonds of each type will be drawn in the image.
-The specified *type* should be an integer from 1 to Nbondtypes. As
-with the *bcolor* keyword, a wildcard asterisk can be used as part of
-the *type* argument to specify a range of bond types. The specified
-*diam* is the size in whatever distance :doc:`units <units>` you are
-using, e.g. Angstroms.
-
-
-----------
-
-
-The *bitrate* keyword can be used with the :doc:`dump movie <dump_image>` command to define the size of the resulting
-movie file and its quality via setting how many kbits per second are
-to be used for the movie file. Higher bitrates require less
-compression and will result in higher quality movies. The quality is
-also determined by the compression format and encoder. The default
-setting is 2000 kbit/s, which will result in average quality with
-older compression formats.
-
-.. note::
-
- Not all movie file formats supported by dump movie allow the
- bitrate to be set. If not, the setting is silently ignored.
-
-
-----------
-
-
-The *boxcolor* keyword sets the color of the simulation box drawn
-around the atoms in each image as well as the color of processor
-sub-domain boundaries. See the "dump image box" command for how to
-specify that a box be drawn via the *box* keyword, and the sub-domain
-boundaries via the *subbox* keyword. The color name can be any of the
-140 pre-defined colors (see below) or a color name defined by the
-dump_modify color option.
-
-
-----------
-
-
-The *color* keyword allows definition of a new color name, in addition
-to the 140-predefined colors (see below), and associates 3
-red/green/blue RGB values with that color name. The color name can
-then be used with any other dump_modify keyword that takes a color
-name as a value. The RGB values should each be floating point values
-between 0.0 and 1.0 inclusive.
-
-When a color name is converted to RGB values, the user-defined color
-names are searched first, then the 140 pre-defined color names. This
-means you can also use the *color* keyword to overwrite one of the
-pre-defined color names with new RBG values.
-
-
-----------
-
-
-The *framerate* keyword can be used with the :doc:`dump movie <dump_image>` command to define the duration of the resulting
-movie file. Movie files written by the dump *movie* command have a
-default frame rate of 24 frames per second and the images generated
-will be converted at that rate. Thus a sequence of 1000 dump images
-will result in a movie of about 42 seconds. To make a movie run
-longer you can either generate images more frequently or lower the
-frame rate. To speed a movie up, you can do the inverse. Using a
-frame rate higher than 24 is not recommended, as it will result in
-simply dropping the rendered images. It is more efficient to dump
-images less frequently.
-
-
-
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`dump image <dump_image>`, :doc:`undump <undump>`
-
-Default
-"""""""
-
-The option defaults are
-
-* append = no
-* buffer = yes for dump styles *atom*, *custom*, *loca*, and *xyz*
-* element = "C" for every atom type
-* every = whatever it was set to via the :doc:`dump <dump>` command
-* fileper = # of processors
-* first = no
-* flush = yes
-* format = %d and %g for each integer or floating point value
-* image = no
-* label = ENTRIES
-* nfile = 1
-* pad = 0
-* precision = 1000
-* region = none
-* scale = yes
-* sort = off for dump styles *atom*, *custom*, *cfg*, and *local*
-* sort = id for dump styles *dcd*, *xtc*, and *xyz*
-* thresh = none
-* unwrap = no
-
-* acolor = * red/green/blue/yellow/aqua/cyan
-* adiam = * 1.0
-* amap = min max cf 0.0 2 min blue max red
-* backcolor = black
-* bcolor = * red/green/blue/yellow/aqua/cyan
-* bdiam = * 0.5
-* bitrate = 2000
-* boxcolor = yellow
-* color = 140 color names are pre-defined as listed below
-* framerate = 24
-
-
-----------
-
-
-These are the standard 109 element names that LAMMPS pre-defines for
-use with the :doc:`dump image <dump_image>` and dump_modify commands.
-
-* 1-10 = "H", "He", "Li", "Be", "B", "C", "N", "O", "F", "Ne"
-* 11-20 = "Na", "Mg", "Al", "Si", "P", "S", "Cl", "Ar", "K", "Ca"
-* 21-30 = "Sc", "Ti", "V", "Cr", "Mn", "Fe", "Co", "Ni", "Cu", "Zn"
-* 31-40 = "Ga", "Ge", "As", "Se", "Br", "Kr", "Rb", "Sr", "Y", "Zr"
-* 41-50 = "Nb", "Mo", "Tc", "Ru", "Rh", "Pd", "Ag", "Cd", "In", "Sn"
-* 51-60 = "Sb", "Te", "I", "Xe", "Cs", "Ba", "La", "Ce", "Pr", "Nd"
-* 61-70 = "Pm", "Sm", "Eu", "Gd", "Tb", "Dy", "Ho", "Er", "Tm", "Yb"
-* 71-80 = "Lu", "Hf", "Ta", "W", "Re", "Os", "Ir", "Pt", "Au", "Hg"
-* 81-90 = "Tl", "Pb", "Bi", "Po", "At", "Rn", "Fr", "Ra", "Ac", "Th"
-* 91-100 = "Pa", "U", "Np", "Pu", "Am", "Cm", "Bk", "Cf", "Es", "Fm"
-* 101-109 = "Md", "No", "Lr", "Rf", "Db", "Sg", "Bh", "Hs", "Mt"
-
-
-----------
-
-
-These are the 140 colors that LAMMPS pre-defines for use with the
-:doc:`dump image <dump_image>` and dump_modify commands. Additional
-colors can be defined with the dump_modify color command. The 3
-numbers listed for each name are the RGB (red/green/blue) values.
-Divide each value by 255 to get the equivalent 0.0 to 1.0 value.
-
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| aliceblue = 240, 248, 255 | antiquewhite = 250, 235, 215 | aqua = 0, 255, 255 | aquamarine = 127, 255, 212 | azure = 240, 255, 255 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| beige = 245, 245, 220 | bisque = 255, 228, 196 | black = 0, 0, 0 | blanchedalmond = 255, 255, 205 | blue = 0, 0, 255 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| blueviolet = 138, 43, 226 | brown = 165, 42, 42 | burlywood = 222, 184, 135 | cadetblue = 95, 158, 160 | chartreuse = 127, 255, 0 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| chocolate = 210, 105, 30 | coral = 255, 127, 80 | cornflowerblue = 100, 149, 237 | cornsilk = 255, 248, 220 | crimson = 220, 20, 60 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| cyan = 0, 255, 255 | darkblue = 0, 0, 139 | darkcyan = 0, 139, 139 | darkgoldenrod = 184, 134, 11 | darkgray = 169, 169, 169 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| darkgreen = 0, 100, 0 | darkkhaki = 189, 183, 107 | darkmagenta = 139, 0, 139 | darkolivegreen = 85, 107, 47 | darkorange = 255, 140, 0 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| darkorchid = 153, 50, 204 | darkred = 139, 0, 0 | darksalmon = 233, 150, 122 | darkseagreen = 143, 188, 143 | darkslateblue = 72, 61, 139 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| darkslategray = 47, 79, 79 | darkturquoise = 0, 206, 209 | darkviolet = 148, 0, 211 | deeppink = 255, 20, 147 | deepskyblue = 0, 191, 255 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| dimgray = 105, 105, 105 | dodgerblue = 30, 144, 255 | firebrick = 178, 34, 34 | floralwhite = 255, 250, 240 | forestgreen = 34, 139, 34 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| fuchsia = 255, 0, 255 | gainsboro = 220, 220, 220 | ghostwhite = 248, 248, 255 | gold = 255, 215, 0 | goldenrod = 218, 165, 32 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| gray = 128, 128, 128 | green = 0, 128, 0 | greenyellow = 173, 255, 47 | honeydew = 240, 255, 240 | hotpink = 255, 105, 180 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| indianred = 205, 92, 92 | indigo = 75, 0, 130 | ivory = 255, 240, 240 | khaki = 240, 230, 140 | lavender = 230, 230, 250 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| lavenderblush = 255, 240, 245 | lawngreen = 124, 252, 0 | lemonchiffon = 255, 250, 205 | lightblue = 173, 216, 230 | lightcoral = 240, 128, 128 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| lightcyan = 224, 255, 255 | lightgoldenrodyellow = 250, 250, 210 | lightgreen = 144, 238, 144 | lightgrey = 211, 211, 211 | lightpink = 255, 182, 193 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| lightsalmon = 255, 160, 122 | lightseagreen = 32, 178, 170 | lightskyblue = 135, 206, 250 | lightslategray = 119, 136, 153 | lightsteelblue = 176, 196, 222 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| lightyellow = 255, 255, 224 | lime = 0, 255, 0 | limegreen = 50, 205, 50 | linen = 250, 240, 230 | magenta = 255, 0, 255 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| maroon = 128, 0, 0 | mediumaquamarine = 102, 205, 170 | mediumblue = 0, 0, 205 | mediumorchid = 186, 85, 211 | mediumpurple = 147, 112, 219 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| mediumseagreen = 60, 179, 113 | mediumslateblue = 123, 104, 238 | mediumspringgreen = 0, 250, 154 | mediumturquoise = 72, 209, 204 | mediumvioletred = 199, 21, 133 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| midnightblue = 25, 25, 112 | mintcream = 245, 255, 250 | mistyrose = 255, 228, 225 | moccasin = 255, 228, 181 | navajowhite = 255, 222, 173 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| navy = 0, 0, 128 | oldlace = 253, 245, 230 | olive = 128, 128, 0 | olivedrab = 107, 142, 35 | orange = 255, 165, 0 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| orangered = 255, 69, 0 | orchid = 218, 112, 214 | palegoldenrod = 238, 232, 170 | palegreen = 152, 251, 152 | paleturquoise = 175, 238, 238 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| palevioletred = 219, 112, 147 | papayawhip = 255, 239, 213 | peachpuff = 255, 239, 213 | peru = 205, 133, 63 | pink = 255, 192, 203 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| plum = 221, 160, 221 | powderblue = 176, 224, 230 | purple = 128, 0, 128 | red = 255, 0, 0 | rosybrown = 188, 143, 143 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| royalblue = 65, 105, 225 | saddlebrown = 139, 69, 19 | salmon = 250, 128, 114 | sandybrown = 244, 164, 96 | seagreen = 46, 139, 87 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| seashell = 255, 245, 238 | sienna = 160, 82, 45 | silver = 192, 192, 192 | skyblue = 135, 206, 235 | slateblue = 106, 90, 205 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| slategray = 112, 128, 144 | snow = 255, 250, 250 | springgreen = 0, 255, 127 | steelblue = 70, 130, 180 | tan = 210, 180, 140 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| teal = 0, 128, 128 | thistle = 216, 191, 216 | tomato = 253, 99, 71 | turquoise = 64, 224, 208 | violet = 238, 130, 238 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-| wheat = 245, 222, 179 | white = 255, 255, 255 | whitesmoke = 245, 245, 245 | yellow = 255, 255, 0 | yellowgreen = 154, 205, 50 |
-+-------------------------------+--------------------------------------+---------------------------------+--------------------------------+--------------------------------+
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/dump_molfile.txt b/doc/_sources/dump_molfile.txt
deleted file mode 100644
index 10be826c5..000000000
--- a/doc/_sources/dump_molfile.txt
+++ /dev/null
@@ -1,146 +0,0 @@
-.. index:: dump molfile
-
-dump molfile command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- dump ID group-ID molfile N file format path
-
-* ID = user-assigned name for the dump
-* group-ID = ID of the group of atoms to be imaged
-* molfile = style of dump command (other styles *atom* or *cfg* or *dcd* or *xtc* or *xyz* or *local* or *custom* are discussed on the :doc:`dump <dump>` doc page)
-* N = dump every this many timesteps
-* file = name of file to write to
-* format = file format to be used
-* path = file path with plugins (optional)
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- dump mf1 all molfile 10 melt1.xml hoomd
- dump mf2 all molfile 10 melt2-*.pdb pdb .
- dump mf3 all molfile 50 melt3.xyz xyz .:/home/akohlmey/vmd/plugins/LINUX/molfile
-
-Description
-"""""""""""
-
-Dump a snapshot of atom coordinates and selected additional quantities
-to one or more files every N timesteps in one of several formats.
-Only information for atoms in the specified group is dumped. This
-specific dump style uses molfile plugins that are bundled with the
-`VMD <http://www.ks.uiuc.edu/Research/vmd>`_ molecular visualization and
-analysis program. See :ref:`Section tools <vmd>` of the
-manual and the tools/lmp2vmd/README.txt file for more information
-about support in VMD for reading and visualizing native LAMMPS dump
-files.
-
-Unless the filename contains a * character, the output will be written
-to one single file with the specified format. Otherwise there will be
-one file per snapshot and the * will be replaced by the time step number
-when the snapshot is written.
-
-.. note::
-
- Because periodic boundary conditions are enforced only on
- timesteps when neighbor lists are rebuilt, the coordinates of an atom
- written to a dump file may be slightly outside the simulation box.
-
-The molfile plugin API has a few restrictions that have to be honored
-by this dump style: the number of atoms must not change, the atoms
-must be sorted, outside of the coordinates no change in atom properties
-(like type, mass, charge) will be recorded.
-
-
-----------
-
-
-The *format* keyword determines what format is used to write out the
-dump. For this to work, LAMMPS must be able to find and load a
-compatible molfile plugin that supports this format. Settings made via
-the :doc:`dump_modify <dump_modify>` command can alter per atom properties
-like element names.
-
-The *path* keyword determines which in directories. This is a "path"
-like other search paths, i.e. it can contain multiple directories
-separated by a colon (or semi-colon on windows). This keyword is
-optional and default to ".", the current directory.
-
-The *unwrap* option of the :doc:`dump_modify <dump_modify>` command allows
-coordinates to be written "unwrapped" by the image flags for each atom.
-Unwrapped means that if the atom has passed through a periodic boundary
-one or more times, the value is printed for what the coordinate would be
-if it had not been wrapped back into the periodic box. Note that these
-coordinates may thus be far outside the box size stored with the
-snapshot.
-
-
-----------
-
-
-Dumps are performed on timesteps that are a multiple of N (including
-timestep 0) and on the last timestep of a minimization if the
-minimization converges. Note that this means a dump will not be
-performed on the initial timestep after the dump command is invoked,
-if the current timestep is not a multiple of N. This behavior can be
-changed via the :doc:`dump_modify first <dump_modify>` command, which can
-be useful if the dump command is invoked after a minimization ended on
-an arbitrary timestep. N can be changed between runs by using the
-:doc:`dump_modify every <dump_modify>` command. The :doc:`dump_modify every <dump_modify>` command also allows a variable to be used to
-determine the sequence of timesteps on which dump files are written.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *molfile* dump style is part of the USER-MOLFILE package. It is
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Molfile plugins provide a consistent programming interface to read and
-write file formats commonly used in molecular simulations. The
-USER-MOLFILE package only provides the interface code, not the plugins.
-These can be obtained from a VMD installation which has to match the
-platform that you are using to compile LAMMPS for. By adding plugins
-to VMD, support for new file formats can be added to LAMMPS (or VMD
-or other programs that use them) without having to recompile the
-application itself. The plugins are installed in the directory:
-<VMDHOME>/plugins/<VMDARCH>/molfile
-
-.. note::
-
- while the programming interface (API) to the plugins is backward
- compatible, the binary interface (ABI) has been changing over time, so
- it is necessary to compile this package with the plugin header files
- from VMD that match the binary plugins. These header files in the
- directory: <VMDHOME>/plugins/include For convenience, the package ships
- with a set of header files that are compatible with VMD 1.9 and 1.9.1
- (June 2012)
-
-
-----------
-
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`dump_modify <dump_modify>`, :doc:`undump <undump>`
-
-Default
-"""""""
-
-The default path is ".". All other properties have to be specified.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/echo.txt b/doc/_sources/echo.txt
deleted file mode 100644
index a3bbead62..000000000
--- a/doc/_sources/echo.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-.. index:: echo
-
-echo command
-============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- echo style
-
-* style = *none* or *screen* or *log* or *both*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- echo both
- echo log
-
-Description
-"""""""""""
-
-This command determines whether LAMMPS echoes each input script
-command to the screen and/or log file as it is read and processed. If
-an input script has errors, it can be useful to look at echoed output
-to see the last command processed.
-
-The :ref:`command-line switch <start_5>` -echo can be used
-in place of this command.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-Default
-"""""""
-
-.. parsed-literal::
-
- echo log
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix.txt b/doc/_sources/fix.txt
deleted file mode 100644
index 5480dfe26..000000000
--- a/doc/_sources/fix.txt
+++ /dev/null
@@ -1,299 +0,0 @@
-.. index:: fix
-
-fix command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style args
-
-* ID = user-assigned name for the fix
-* group-ID = ID of the group of atoms to apply the fix to
-* style = one of a long list of possible style names (see below)
-* args = arguments used by a particular style
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve
- fix 3 all nvt temp 300.0 300.0 0.01
- fix mine top setforce 0.0 NULL 0.0
-
-Description
-"""""""""""
-
-Set a fix that will be applied to a group of atoms. In LAMMPS, a
-"fix" is any operation that is applied to the system during
-timestepping or minimization. Examples include updating of atom
-positions and velocities due to time integration, controlling
-temperature, applying constraint forces to atoms, enforcing boundary
-conditions, computing diagnostics, etc. There are dozens of fixes
-defined in LAMMPS and new ones can be added; see :doc:`this section <Section_modify>` for a discussion.
-
-Fixes perform their operations at different stages of the timestep.
-If 2 or more fixes operate at the same stage of the timestep, they are
-invoked in the order they were specified in the input script.
-
-The ID of a fix can only contain alphanumeric characters and
-underscores.
-
-Fixes can be deleted with the :doc:`unfix <unfix>` command.
-
-.. note::
-
- The :doc:`unfix <unfix>` command is the only way to turn off a
- fix; simply specifying a new fix with a similar style will not turn
- off the first one. This is especially important to realize for
- integration fixes. For example, using a :doc:`fix nve <fix_nve>`
- command for a second run after using a :doc:`fix nvt <fix_nh>` command
- for the first run, will not cancel out the NVT time integration
- invoked by the "fix nvt" command. Thus two time integrators would be
- in place!
-
-If you specify a new fix with the same ID and style as an existing
-fix, the old fix is deleted and the new one is created (presumably
-with new settings). This is the same as if an "unfix" command were
-first performed on the old fix, except that the new fix is kept in the
-same order relative to the existing fixes as the old one originally
-was. Note that this operation also wipes out any additional changes
-made to the old fix via the :doc:`fix_modify <fix_modify>` command.
-
-The :doc:`fix modify <fix_modify>` command allows settings for some
-fixes to be reset. See the doc page for individual fixes for details.
-
-Some fixes store an internal "state" which is written to binary
-restart files via the :doc:`restart <restart>` or
-:doc:`write_restart <write_restart>` commands. This allows the fix to
-continue on with its calculations in a restarted simulation. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file. See the doc pages
-for individual fixes for info on which ones can be restarted.
-
-
-----------
-
-
-Some fixes calculate one of three styles of quantities: global,
-per-atom, or local, which can be used by other commands or output as
-described below. A global quantity is one or more system-wide values,
-e.g. the energy of a wall interacting with particles. A per-atom
-quantity is one or more values per atom, e.g. the displacement vector
-for each atom since time 0. Per-atom values are set to 0.0 for atoms
-not in the specified fix group. Local quantities are calculated by
-each processor based on the atoms it owns, but there may be zero or
-more per atoms.
-
-Note that a single fix may produces either global or per-atom or local
-quantities (or none at all), but never more than one of these.
-
-Global, per-atom, and local quantities each come in three kinds: a
-single scalar value, a vector of values, or a 2d array of values. The
-doc page for each fix describes the style and kind of values it
-produces, e.g. a per-atom vector. Some fixes produce more than one
-kind of a single style, e.g. a global scalar and a global vector.
-
-When a fix quantity is accessed, as in many of the output commands
-discussed below, it can be referenced via the following bracket
-notation, where ID is the ID of the fix:
-
-+------------+--------------------------------------------+
-| f_ID | entire scalar, vector, or array |
-+------------+--------------------------------------------+
-| f_ID[I] | one element of vector, one column of array |
-+------------+--------------------------------------------+
-| f_ID[I][J] | one element of array |
-+------------+--------------------------------------------+
-
-In other words, using one bracket reduces the dimension of the
-quantity once (vector -> scalar, array -> vector). Using two brackets
-reduces the dimension twice (array -> scalar). Thus a command that
-uses scalar fix values as input can also process elements of a vector
-or array.
-
-Note that commands and :doc:`variables <variable>` which use fix
-quantities typically do not allow for all kinds, e.g. a command may
-require a vector of values, not a scalar. This means there is no
-ambiguity about referring to a fix quantity as f_ID even if it
-produces, for example, both a scalar and vector. The doc pages for
-various commands explain the details.
-
-
-----------
-
-
-In LAMMPS, the values generated by a fix can be used in several ways:
-
-* Global values can be output via the :doc:`thermo_style custom <thermo_style>` or :doc:`fix ave/time <fix_ave_time>` command.
- Or the values can be referenced in a :doc:`variable equal <variable>` or
- :doc:`variable atom <variable>` command.
-* Per-atom values can be output via the :doc:`dump custom <dump>` command
- or the :doc:`fix ave/spatial <fix_ave_spatial>` command. Or they can be
- time-averaged via the :doc:`fix ave/atom <fix_ave_atom>` command or
- reduced by the :doc:`compute reduce <compute_reduce>` command. Or the
- per-atom values can be referenced in an :doc:`atom-style variable <variable>`.
-* Local values can be reduced by the :doc:`compute reduce <compute_reduce>` command, or histogrammed by the :doc:`fix ave/histo <fix_ave_histo>` command.
-See this :ref:`howto section <howto_15>` for a summary of
-various LAMMPS output options, many of which involve fixes.
-
-The results of fixes that calculate global quantities can be either
-"intensive" or "extensive" values. Intensive means the value is
-independent of the number of atoms in the simulation,
-e.g. temperature. Extensive means the value scales with the number of
-atoms in the simulation, e.g. total rotational kinetic energy.
-:doc:`Thermodynamic output <thermo_style>` will normalize extensive
-values by the number of atoms in the system, depending on the
-"thermo_modify norm" setting. It will not normalize intensive values.
-If a fix value is accessed in another way, e.g. by a
-:doc:`variable <variable>`, you may want to know whether it is an
-intensive or extensive value. See the doc page for individual fixes
-for further info.
-
-
-----------
-
-
-Each fix style has its own documentation page which describes its
-arguments and what it does, as listed below. Here is an alphabetic
-list of fix styles available in LAMMPS. They are also given in more
-compact form in the Fix section of :ref:`this page <cmd_5>`.
-
-There are also additional fix styles (not listed here) submitted by
-users which are included in the LAMMPS distribution. The list of
-these with links to the individual styles are given in the fix section
-of :ref:`this page <cmd_5>`.
-
-* :doc:`adapt <fix_adapt>` - change a simulation parameter over time
-* :doc:`addforce <fix_addforce>` - add a force to each atom
-* :doc:`append/atoms <fix_append_atoms>` - append atoms to a running simulation
-* :doc:`atom/swap <fix_atom_swap>` - Monte Carlo atom type swapping
-* :doc:`aveforce <fix_aveforce>` - add an averaged force to each atom
-* :doc:`ave/atom <fix_ave_atom>` - compute per-atom time-averaged quantities
-* :doc:`ave/chunk <fix_ave_chunk>` - compute per-chunk time-averaged quantities
-* :doc:`ave/correlate <fix_ave_correlate>` - compute/output time correlations
-* :doc:`ave/histo <fix_ave_histo>` - compute/output time-averaged histograms
-* :doc:`ave/spatial <fix_ave_spatial>` - compute/output time-averaged per-atom quantities by layer
-* :doc:`ave/time <fix_ave_time>` - compute/output global time-averaged quantities
-* :doc:`balance <fix_balance>` - perform dynamic load-balancing
-* :doc:`bond/break <fix_bond_break>` - break bonds on the fly
-* :doc:`bond/create <fix_bond_create>` - create bonds on the fly
-* :doc:`bond/swap <fix_bond_swap>` - Monte Carlo bond swapping
-* :doc:`box/relax <fix_box_relax>` - relax box size during energy minimization
-* :doc:`deform <fix_deform>` - change the simulation box size/shape
-* :doc:`deposit <fix_deposit>` - add new atoms above a surface
-* :doc:`drag <fix_drag>` - drag atoms towards a defined coordinate
-* :doc:`dt/reset <fix_dt_reset>` - reset the timestep based on velocity, forces
-* :doc:`efield <fix_efield>` - impose electric field on system
-* :doc:`enforce2d <fix_enforce2d>` - zero out z-dimension velocity and force
-* :doc:`evaporate <fix_evaporate>` - remove atoms from simulation periodically
-* :doc:`external <fix_external>` - callback to an external driver program
-* :doc:`freeze <fix_freeze>` - freeze atoms in a granular simulation
-* :doc:`gcmc <fix_gcmc>` - grand canonical insertions/deletions
-* :doc:`gld <fix_gcmc>` - generalized Langevin dynamics integrator
-* :doc:`gravity <fix_gravity>` - add gravity to atoms in a granular simulation
-* :doc:`heat <fix_heat>` - add/subtract momentum-conserving heat
-* :doc:`indent <fix_indent>` - impose force due to an indenter
-* :doc:`langevin <fix_langevin>` - Langevin temperature control
-* :doc:`lineforce <fix_lineforce>` - constrain atoms to move in a line
-* :doc:`momentum <fix_momentum>` - zero the linear and/or angular momentum of a group of atoms
-* :doc:`move <fix_move>` - move atoms in a prescribed fashion
-* :doc:`msst <fix_msst>` - multi-scale shock technique (MSST) integration
-* :doc:`neb <fix_neb>` - nudged elastic band (NEB) spring forces
-* :doc:`nph <fix_nh>` - constant NPH time integration via Nose/Hoover
-* :doc:`nphug <fix_nphug>` - constant-stress Hugoniostat integration
-* :doc:`nph/asphere <fix_nph_asphere>` - NPH for aspherical particles
-* :doc:`nph/body <fix_nve_body>` - NPH for body particles
-* :doc:`nph/sphere <fix_nph_sphere>` - NPH for spherical particles
-* :doc:`npt <fix_nh>` - constant NPT time integration via Nose/Hoover
-* :doc:`npt/asphere <fix_npt_asphere>` - NPT for aspherical particles
-* :doc:`npt/body <fix_nve_body>` - NPT for body particles
-* :doc:`npt/sphere <fix_npt_sphere>` - NPT for spherical particles
-* :doc:`nve <fix_nve>` - constant NVE time integration
-* :doc:`nve/asphere <fix_nve_asphere>` - NVE for aspherical particles
-* :doc:`nve/asphere/noforce <fix_nve_asphere_noforce>` - NVE for aspherical particles without forces"
-* :doc:`nve/body <fix_nve_body>` - NVE for body particles
-* :doc:`nve/limit <fix_nve_limit>` - NVE with limited step length
-* :doc:`nve/line <fix_nve_line>` - NVE for line segments
-* :doc:`nve/noforce <fix_nve_noforce>` - NVE without forces (v only)
-* :doc:`nve/sphere <fix_nve_sphere>` - NVE for spherical particles
-* :doc:`nve/tri <fix_nve_tri>` - NVE for triangles
-* :doc:`nvt <fix_nh>` - constant NVT time integration via Nose/Hoover
-* :doc:`nvt/asphere <fix_nvt_asphere>` - NVT for aspherical particles
-* :doc:`nvt/body <fix_nve_body>` - NVT for body particles
-* :doc:`nvt/sllod <fix_nvt_sllod>` - NVT for NEMD with SLLOD equations
-* :doc:`nvt/sphere <fix_nvt_sphere>` - NVT for spherical particles
-* :doc:`oneway <fix_oneway>` - constrain particles on move in one direction
-* :doc:`orient/fcc <fix_orient_fcc>` - add grain boundary migration force
-* :doc:`planeforce <fix_planeforce>` - constrain atoms to move in a plane
-* :doc:`poems <fix_poems>` - constrain clusters of atoms to move as coupled rigid bodies
-* :doc:`pour <fix_pour>` - pour new atoms/molecules into a granular simulation domain
-* :doc:`press/berendsen <fix_press_berendsen>` - pressure control by Berendsen barostat
-* :doc:`print <fix_print>` - print text and variables during a simulation
-* :doc:`property/atom <fix_property_atom>` - add customized per-atom values
-* :doc:`qeq/comb <fix_qeq_comb>` - charge equilibration for COMB potential :doc:`qeq/dynamic <fix_qeq>` - charge equilibration via dynamic method :doc:`qeq/fire <fix_qeq>` - charge equilibration via FIRE minimizer :doc:`qeq/point <fix_qeq>` - charge equilibration via point method :doc:`qeq/shielded <fix_qeq>` - charge equilibration via shielded method :doc:`qeq/slater <fix_qeq>` - charge equilibration via Slater method :doc:`rattle <fix_shake>` - RATTLE constraints on bonds and/or angles
-* :doc:`reax/bonds <fix_reax_bonds>` - write out ReaxFF bond information :doc:`recenter <fix_recenter>` - constrain the center-of-mass position of a group of atoms
-* :doc:`restrain <fix_restrain>` - constrain a bond, angle, dihedral
-* :doc:`rigid <fix_rigid>` - constrain one or more clusters of atoms to move as a rigid body with NVE integration
-* :doc:`rigid/nph <fix_rigid>` - constrain one or more clusters of atoms to move as a rigid body with NPH integration
-* :doc:`rigid/npt <fix_rigid>` - constrain one or more clusters of atoms to move as a rigid body with NPT integration
-* :doc:`rigid/nve <fix_rigid>` - constrain one or more clusters of atoms to move as a rigid body with alternate NVE integration
-* :doc:`rigid/nvt <fix_rigid>` - constrain one or more clusters of atoms to move as a rigid body with NVT integration
-* :doc:`rigid/small <fix_rigid>` - constrain many small clusters of atoms to move as a rigid body with NVE integration
-* :doc:`rigid/small/nph <fix_rigid>` - constrain many small clusters of atoms to move as a rigid body with NPH integration
-* :doc:`rigid/small/npt <fix_rigid>` - constrain many small clusters of atoms to move as a rigid body with NPT integration
-* :doc:`rigid/small/nve <fix_rigid>` - constrain many small clusters of atoms to move as a rigid body with alternate NVE integration
-* :doc:`rigid/small/nvt <fix_rigid>` - constrain many small clusters of atoms to move as a rigid body with NVT integration
-* :doc:`setforce <fix_setforce>` - set the force on each atom
-* :doc:`shake <fix_shake>` - SHAKE constraints on bonds and/or angles
-* :doc:`spring <fix_spring>` - apply harmonic spring force to group of atoms
-* :doc:`spring/rg <fix_spring_rg>` - spring on radius of gyration of group of atoms
-* :doc:`spring/self <fix_spring_self>` - spring from each atom to its origin
-* :doc:`srd <fix_srd>` - stochastic rotation dynamics (SRD)
-* :doc:`store/force <fix_store_force>` - store force on each atom
-* :doc:`store/state <fix_store_state>` - store attributes for each atom
-* :doc:`temp/berendsen <fix_temp_berendsen>` - temperature control by Berendsen thermostat
-* :doc:`temp/csld <fix_temp_csvr>` - canonical sampling thermostat with Langevin dynamics
-* :doc:`temp/csvr <fix_temp_csvr>` - canonical sampling thermostat with Hamiltonian dynamics
-* :doc:`temp/rescale <fix_temp_rescale>` - temperature control by velocity rescaling
-* :doc:`tfmc <fix_tfmc>` - perform force-bias Monte Carlo with time-stamped method
-* :doc:`thermal/conductivity <fix_thermal_conductivity>` - Muller-Plathe kinetic energy exchange for thermal conductivity calculation
-* :doc:`tmd <fix_tmd>` - guide a group of atoms to a new configuration
-* :doc:`ttm <fix_ttm>` - two-temperature model for electronic/atomic coupling
-* :doc:`tune/kspace <fix_tune_kspace>` - auto-tune KSpace parameters
-* :doc:`vector <fix_vector>` - accumulate a global vector every N timesteps
-* :doc:`viscosity <fix_viscosity>` - Muller-Plathe momentum exchange for viscosity calculation
-* :doc:`viscous <fix_viscous>` - viscous damping for granular simulations
-* :doc:`wall/colloid <fix_wall>` - Lennard-Jones wall interacting with finite-size particles
-* :doc:`wall/gran <fix_wall_gran>` - frictional wall(s) for granular simulations
-* :doc:`wall/harmonic <fix_wall>` - harmonic spring wall
-* :doc:`wall/lj1043 <fix_wall>` - Lennard-Jones 10-4-3 wall
-* :doc:`wall/lj126 <fix_wall>` - Lennard-Jones 12-6 wall
-* :doc:`wall/lj93 <fix_wall>` - Lennard-Jones 9-3 wall
-* :doc:`wall/piston <fix_wall_piston>` - moving reflective piston wall
-* :doc:`wall/reflect <fix_wall_reflect>` - reflecting wall(s)
-* :doc:`wall/region <fix_wall_region>` - use region surface as wall
-* :doc:`wall/srd <fix_wall_srd>` - slip/no-slip wall for SRD particles
-
-Restrictions
-""""""""""""
-
-
-Some fix styles are part of specific packages. They are only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-The doc pages for individual fixes tell if it is part of a package.
-
-Related commands
-""""""""""""""""
-
-:doc:`unfix <unfix>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_adapt.txt b/doc/_sources/fix_adapt.txt
deleted file mode 100644
index d3acbb77b..000000000
--- a/doc/_sources/fix_adapt.txt
+++ /dev/null
@@ -1,300 +0,0 @@
-.. index:: fix adapt
-
-fix adapt command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID adapt N attribute args ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* adapt = style name of this fix command
-* N = adapt simulation settings every this many timesteps
-* one or more attribute/arg pairs may be appended
-* attribute = *pair* or *kspace* or *atom*
-.. parsed-literal::
-
- *pair* args = pstyle pparam I J v_name
- pstyle = pair style name, e.g. lj/cut
- pparam = parameter to adapt over time
- I,J = type pair(s) to set parameter for
- v_name = variable with name that calculates value of pparam
- *kspace* arg = v_name
- v_name = variable with name that calculates scale factor on K-space terms
- *atom* args = aparam v_name
- aparam = parameter to adapt over time
- v_name = variable with name that calculates value of aparam
-
-* zero or more keyword/value pairs may be appended
-* keyword = *scale* or *reset*
-.. parsed-literal::
-
- *scale* value = *no* or *yes*
- *no* = the variable value is the new setting
- *yes* = the variable value multiplies the original setting
- *reset* value = *no* or *yes*
- *no* = values will remain altered at the end of a run
- *yes* = reset altered values to their original values at the end of a run
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all adapt 1 pair soft a 1 1 v_prefactor
- fix 1 all adapt 1 pair soft a 2* 3 v_prefactor
- fix 1 all adapt 1 pair lj/cut epsilon * * v_scale1 coul/cut scale 3 3 v_scale2 scale yes reset yes
- fix 1 all adapt 10 atom diameter v_size
-
-Description
-"""""""""""
-
-Change or adapt one or more specific simulation attributes or settings
-over time as a simulation runs. Pair potential and K-space and atom
-attributes which can be varied by this fix are discussed below. Many
-other fixes can also be used to time-vary simulation parameters,
-e.g. the "fix deform" command will change the simulation box
-size/shape and the "fix move" command will change atom positions and
-velocities in a prescribed manner. Also note that many commands allow
-variables as arguments for specific parameters, if described in that
-manner on their doc pages. An equal-style variable can calculate a
-time-dependent quantity, so this is another way to vary a simulation
-parameter over time.
-
-If *N* is specified as 0, the specified attributes are only changed
-once, before the simulation begins. This is all that is needed if the
-associated variables are not time-dependent. If *N* > 0, then changes
-are made every *N* steps during the simulation, presumably with a
-variable that is time-dependent.
-
-Depending on the value of the *reset* keyword, attributes changed by
-this fix will or will not be reset back to their original values at
-the end of a simulation. Even if *reset* is specified as *yes*, a
-restart file written during a simulation will contain the modified
-settings.
-
-If the *scale* keyword is set to *no*, then the value the parameter is
-set to will be whatever the variable generates. If the *scale*
-keyword is set to *yes*, then the value of the altered parameter will
-be the initial value of that parameter multiplied by whatever the
-variable generates. I.e. the variable is now a "scale factor" applied
-in (presumably) a time-varying fashion to the parameter.
-
-Note that whether scale is *no* or *yes*, internally, the parameters
-themselves are actually altered by this fix. Make sure you use the
-*reset yes* option if you want the parameters to be restored to their
-initial values after the run.
-
-
-----------
-
-
-The *pair* keyword enables various parameters of potentials defined by
-the :doc:`pair_style <pair_style>` command to be changed, if the pair
-style supports it. Note that the :doc:`pair_style <pair_style>` and
-:doc:`pair_coeff <pair_coeff>` commands must be used in the usual manner
-to specify these parameters initially; the fix adapt command simply
-overrides the parameters.
-
-The *pstyle* argument is the name of the pair style. If :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>` is used, *pstyle* should be
-a sub-style name. If there are multiple sub-styles using the same
-pair style, then *pstyle* should be specified as "style:N" where N is
-which instance of the pair style you wish to adapt, e.g. the first,
-second, etc. For example, *pstyle* could be specified as "soft" or
-"lubricate" or "lj/cut:1" or "lj/cut:2". The *pparam* argument is the
-name of the parameter to change. This is the current list of pair
-styles and parameters that can be varied by this fix. See the doc
-pages for individual pair styles and their energy formulas for the
-meaning of these parameters:
-
-+-----------------------------------+-------------------------+------------+
-| :doc:`born <pair_born>` | a,b,c | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`buck <pair_buck>` | a,c | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`coul/cut <pair_coul>` | scale | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`coul/debye <pair_coul>` | scale | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`coul/long <pair_coul>` | scale | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`lj/cut <pair_lj>` | epsilon,sigma | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`lj/expand <pair_lj_expand>` | epsilon,sigma,delta | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`lubricate <pair_lubricate>` | mu | global |
-+-----------------------------------+-------------------------+------------+
-| :doc:`gauss <pair_gauss>` | a | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`morse <pair_morse>` | d0,r0,alpha | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`soft <pair_soft>` | a | type pairs |
-+-----------------------------------+-------------------------+------------+
-| :doc:`kim <pair_kim>` | PARAM_FREE_*&#58i,j,... | global |
-+-----------------------------------+-------------------------+------------+
-
-.. note::
-
- It is easy to add new potentials and their parameters to this
- list. All it typically takes is adding an extract() method to the
- pair_*.cpp file associated with the potential.
-
-Some parameters are global settings for the pair style, e.g. the
-viscosity setting "mu" for :doc:`pair_style lubricate <pair_lubricate>`.
-For :doc:`pair_kim <pair_kim>`, all free parameters supported by the
-KIM Model are available (e.g., PARAM_FREE_sigmas provided by the
-LennardJones612_Universal__MO_826355984548_001 Model). If the free
-parameter corresponds to an array, then the particular array element
-to be adapted must be specified (e.g., "PARAM_FREE_sigmas:10", to
-adapt the tenth entry of the sigmas array).
-Other parameters apply to atom type pairs within the pair style,
-e.g. the prefactor "a" for :doc:`pair_style soft <pair_soft>`.
-
-Note that for many of the potentials, the parameter that can be varied
-is effectively a prefactor on the entire energy expression for the
-potential, e.g. the lj/cut epsilon. The parameters listed as "scale"
-are exactly that, since the energy expression for the
-:doc:`coul/cut <pair_coul>` potential (for example) has no labeled
-prefactor in its formula. To apply an effective prefactor to some
-potentials, multiple parameters need to be altered. For example, the
-:doc:`Buckingham potential <pair_buck>` needs both the A and C terms
-altered together. To scale the Buckingham potential, you should thus
-list the pair style twice, once for A and once for C.
-
-If a type pair parameter is specified, the *I* and *J* settings should
-be specified to indicate which type pairs to apply it to. If a global
-parameter is specified, the *I* and *J* settings still need to be
-specified, but are ignored.
-
-Similar to the :doc:`pair_coeff command <pair_coeff>`, I and J can be
-specified in one of two ways. Explicit numeric values can be used for
-each, as in the 1st example above. I <= J is required. LAMMPS sets
-the coefficients for the symmetric J,I interaction to the same values.
-
-A wild-card asterisk can be used in place of or in conjunction with
-the I,J arguments to set the coefficients for multiple pairs of atom
-types. This takes the form "*" or "*n" or "n*" or "m*n". If N = the
-number of atom types, then an asterisk with no numeric values means
-all types from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive). Note that only type pairs with I <= J are considered; if
-asterisks imply type pairs where J < I, they are ignored.
-
-IMPROTANT NOTE: If :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>` is being used, then the *pstyle* will
-be a sub-style name. You must specify I,J arguments that correspond
-to type pair values defined (via the :doc:`pair_coeff <pair_coeff>`
-command) for that sub-style.
-
-The *v_name* argument for keyword *pair* is the name of an
-:doc:`equal-style variable <variable>` which will be evaluated each time
-this fix is invoked to set the parameter to a new value. It should be
-specified as v_name, where name is the variable name. Equal-style
-variables can specify formulas with various mathematical functions,
-and include :doc:`thermo_style <thermo_style>` command keywords for the
-simulation box parameters and timestep and elapsed time. Thus it is
-easy to specify parameters that change as a function of time or span
-consecutive runs in a continuous fashion. For the latter, see the
-*start* and *stop* keywords of the :doc:`run <run>` command and the
-*elaplong* keyword of :doc:`thermo_style custom <thermo_style>` for
-details.
-
-For example, these commands would change the prefactor coefficient of
-the :doc:`pair_style soft <pair_soft>` potential from 10.0 to 30.0 in a
-linear fashion over the course of a simulation:
-
-.. parsed-literal::
-
- variable prefactor equal ramp(10,30)
- fix 1 all adapt 1 pair soft a * * v_prefactor
-
-
-----------
-
-
-The *kspace* keyword used the specified variable as a scale factor on
-the energy, forces, virial calculated by whatever K-Space solver is
-defined by the :doc:`kspace_style <kspace_style>` command. If the
-variable has a value of 1.0, then the solver is unaltered.
-
-The *kspace* keyword works this way whether the *scale* keyword
-is set to *no* or *yes*.
-
-
-----------
-
-
-The *atom* keyword enables various atom properties to be changed. The
-*aparam* argument is the name of the parameter to change. This is the
-current list of atom parameters that can be varied by this fix:
-
-* charge = charge on particle
-* diameter = diameter of particle
-
-The *v_name* argument of the *atom* keyword is the name of an
-:doc:`equal-style variable <variable>` which will be evaluated each time
-this fix is invoked to set the parameter to a new value. It should be
-specified as v_name, where name is the variable name. See the
-discussion above describing the formulas associated with equal-style
-variables. The new value is assigned to the corresponding attribute
-for all atoms in the fix group.
-
-.. note::
-
- The *atom* keyword works this way whether the *scale* keyword is
- set to *no* or *yes*. I.e. the use of scale yes is not yet supported
- by the *atom* keyword.
-
-If the atom parameter is *diameter* and per-atom density and per-atom
-mass are defined for particles (e.g. :doc:`atom_style granular <atom_style>`), then the mass of each particle is also
-changed when the diameter changes (density is assumed to stay
-constant).
-
-For example, these commands would shrink the diameter of all granular
-particles in the "center" group from 1.0 to 0.1 in a linear fashion
-over the course of a 1000-step simulation:
-
-.. parsed-literal::
-
- variable size equal ramp(1.0,0.1)
- fix 1 center adapt 10 atom diameter v_size
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-For :doc:`rRESPA time integration <run_style>`, this fix changes
-parameters on the outermost rRESPA level.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute ti <compute_ti>`
-
-Default
-"""""""
-
-The option defaults are scale = no, reset = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_adapt_fep.txt b/doc/_sources/fix_adapt_fep.txt
deleted file mode 100644
index 9c6bb3f4f..000000000
--- a/doc/_sources/fix_adapt_fep.txt
+++ /dev/null
@@ -1,294 +0,0 @@
-.. index:: fix adapt/fep
-
-fix adapt/fep command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID adapt/fep N attribute args ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* adapt/fep = style name of this fix command
-* N = adapt simulation settings every this many timesteps
-* one or more attribute/arg pairs may be appended
-* attribute = *pair* or *kspace* or *atom*
-.. parsed-literal::
-
- *pair* args = pstyle pparam I J v_name
- pstyle = pair style name, e.g. lj/cut
- pparam = parameter to adapt over time
- I,J = type pair(s) to set parameter for
- v_name = variable with name that calculates value of pparam
- *kspace* arg = v_name
- v_name = variable with name that calculates scale factor on K-space terms
- *atom* args = aparam v_name
- aparam = parameter to adapt over time
- I = type(s) to set parameter for
- v_name = variable with name that calculates value of aparam
-
-* zero or more keyword/value pairs may be appended
-* keyword = *scale* or *reset* or *after*
-.. parsed-literal::
-
- *scale* value = *no* or *yes*
- *no* = the variable value is the new setting
- *yes* = the variable value multiplies the original setting
- *reset* value = *no* or *yes*
- *no* = values will remain altered at the end of a run
- *yes* = reset altered values to their original values at the end
- of a run
- *after* value = *no* or *yes*
- *no* = parameters are adapted at timestep N
- *yes* = parameters are adapted one timestep after N
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all adapt/fep 1 pair soft a 1 1 v_prefactor
- fix 1 all adapt/fep 1 pair soft a 2* 3 v_prefactor
- fix 1 all adapt/fep 1 pair lj/cut epsilon * * v_scale1 coul/cut scale 3 3 v_scale2 scale yes reset yes
- fix 1 all adapt/fep 10 atom diameter 1 v_size
-
-Description
-"""""""""""
-
-Change or adapt one or more specific simulation attributes or settings
-over time as a simulation runs.
-
-This is an enhanced version of the :doc:`fix adapt <fix_adapt>` command
-with two differences,
-
-* It is possible to modify the charges of chosen atom types only,
- instead of scaling all the charges in the system.
-* There is a new option *after* for better compatibility with "fix
- ave/time".
-This version is suited for free energy calculations using
-:doc:`compute ti <compute_ti>` or :doc:`compute fep <compute_fep>`.
-
-If *N* is specified as 0, the specified attributes are only changed
-once, before the simulation begins. This is all that is needed if the
-associated variables are not time-dependent. If *N* > 0, then changes
-are made every *N* steps during the simulation, presumably with a
-variable that is time-dependent.
-
-Depending on the value of the *reset* keyword, attributes changed by
-this fix will or will not be reset back to their original values at
-the end of a simulation. Even if *reset* is specified as *yes*, a
-restart file written during a simulation will contain the modified
-settings.
-
-If the *scale* keyword is set to *no*, then the value the parameter is
-set to will be whatever the variable generates. If the *scale*
-keyword is set to *yes*, then the value of the altered parameter will
-be the initial value of that parameter multiplied by whatever the
-variable generates. I.e. the variable is now a "scale factor" applied
-in (presumably) a time-varying fashion to the parameter. Internally,
-the parameters themselves are actually altered; make sure you use the
-*reset yes* option if you want the parameters to be restored to their
-initial values after the run.
-
-If the *after* keyword is set to *yes*, then the parameters are
-changed one timestep after the multiple of N. In this manner, if a fix
-such as "fix ave/time" is used to calculate averages at every N
-timesteps, all the contributions to the average will be obtained with
-the same values of the parameters.
-
-
-----------
-
-
-The *pair* keyword enables various parameters of potentials defined by
-the :doc:`pair_style <pair_style>` command to be changed, if the pair
-style supports it. Note that the :doc:`pair_style <pair_style>` and
-:doc:`pair_coeff <pair_coeff>` commands must be used in the usual manner
-to specify these parameters initially; the fix adapt command simply
-overrides the parameters.
-
-The *pstyle* argument is the name of the pair style. If :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>` is used, *pstyle* should be
-a sub-style name. For example, *pstyle* could be specified as "soft"
-or "lubricate". The *pparam* argument is the name of the parameter to
-change. This is the current list of pair styles and parameters that
-can be varied by this fix. See the doc pages for individual pair
-styles and their energy formulas for the meaning of these parameters:
-
-+-----------------------------------+---------------------+------------+
-| :doc:`born <pair_born>` | a,b,c | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`buck <pair_buck>` | a,c | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`coul/cut <pair_coul>` | scale | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`coul/debye <pair_coul>` | scale | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`coul/long <pair_coul>` | scale | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`lj/cut <pair_lj>` | epsilon,sigma | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`lj/expand <pair_lj_expand>` | epsilon,sigma,delta | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`lubricate <pair_lubricate>` | mu | global |
-+-----------------------------------+---------------------+------------+
-| :doc:`gauss <pair_gauss>` | a | type pairs |
-+-----------------------------------+---------------------+------------+
-| :doc:`soft <pair_soft>` | a | type pairs |
-+-----------------------------------+---------------------+------------+
-
-.. note::
-
- It is easy to add new potentials and their parameters to this
- list. All it typically takes is adding an extract() method to the
- pair_*.cpp file associated with the potential.
-
-Some parameters are global settings for the pair style, e.g. the
-viscosity setting "mu" for :doc:`pair_style lubricate <pair_lubricate>`.
-Other parameters apply to atom type pairs within the pair style,
-e.g. the prefactor "a" for :doc:`pair_style soft <pair_soft>`.
-
-Note that for many of the potentials, the parameter that can be varied
-is effectively a prefactor on the entire energy expression for the
-potential, e.g. the lj/cut epsilon. The parameters listed as "scale"
-are exactly that, since the energy expression for the
-:doc:`coul/cut <pair_coul>` potential (for example) has no labeled
-prefactor in its formula. To apply an effective prefactor to some
-potentials, multiple parameters need to be altered. For example, the
-:doc:`Buckingham potential <pair_buck>` needs both the A and C terms
-altered together. To scale the Buckingham potential, you should thus
-list the pair style twice, once for A and once for C.
-
-If a type pair parameter is specified, the *I* and *J* settings should
-be specified to indicate which type pairs to apply it to. If a global
-parameter is specified, the *I* and *J* settings still need to be
-specified, but are ignored.
-
-Similar to the :doc:`pair_coeff command <pair_coeff>`, I and J can be
-specified in one of two ways. Explicit numeric values can be used for
-each, as in the 1st example above. I <= J is required. LAMMPS sets
-the coefficients for the symmetric J,I interaction to the same values.
-
-A wild-card asterisk can be used in place of or in conjunction with
-the I,J arguments to set the coefficients for multiple pairs of atom
-types. This takes the form "*" or "*n" or "n*" or "m*n". If N = the
-number of atom types, then an asterisk with no numeric values means
-all types from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive). Note that only type pairs with I <= J are considered; if
-asterisks imply type pairs where J < I, they are ignored.
-
-IMPROTANT NOTE: If :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>` is being used, then the *pstyle* will
-be a sub-style name. You must specify I,J arguments that correspond
-to type pair values defined (via the :doc:`pair_coeff <pair_coeff>`
-command) for that sub-style.
-
-The *v_name* argument for keyword *pair* is the name of an
-:doc:`equal-style variable <variable>` which will be evaluated each time
-this fix is invoked to set the parameter to a new value. It should be
-specified as v_name, where name is the variable name. Equal-style
-variables can specify formulas with various mathematical functions,
-and include :doc:`thermo_style <thermo_style>` command keywords for the
-simulation box parameters and timestep and elapsed time. Thus it is
-easy to specify parameters that change as a function of time or span
-consecutive runs in a continuous fashion. For the latter, see the
-*start* and *stop* keywords of the :doc:`run <run>` command and the
-*elaplong* keyword of :doc:`thermo_style custom <thermo_style>` for
-details.
-
-For example, these commands would change the prefactor coefficient of
-the :doc:`pair_style soft <pair_soft>` potential from 10.0 to 30.0 in a
-linear fashion over the course of a simulation:
-
-.. parsed-literal::
-
- variable prefactor equal ramp(10,30)
- fix 1 all adapt 1 pair soft a * * v_prefactor
-
-
-----------
-
-
-The *kspace* keyword used the specified variable as a scale factor on
-the energy, forces, virial calculated by whatever K-Space solver is
-defined by the :doc:`kspace_style <kspace_style>` command. If the
-variable has a value of 1.0, then the solver is unaltered.
-
-The *kspace* keyword works this way whether the *scale* keyword
-is set to *no* or *yes*.
-
-
-----------
-
-
-The *atom* keyword enables various atom properties to be changed. The
-*aparam* argument is the name of the parameter to change. This is the
-current list of atom parameters that can be varied by this fix:
-
-* charge = charge on particle
-* diameter = diameter of particle
-
-The *I* argument indicates which atom types are affected. A wild-card
-asterisk can be used in place of or in conjunction with the I argument
-to set the coefficients for multiple atom types.
-
-The *v_name* argument of the *atom* keyword is the name of an
-:doc:`equal-style variable <variable>` which will be evaluated each time
-this fix is invoked to set the parameter to a new value. It should be
-specified as v_name, where name is the variable name. See the
-discussion above describing the formulas associated with equal-style
-variables. The new value is assigned to the corresponding attribute
-for all atoms in the fix group.
-
-If the atom parameter is *diameter* and per-atom density and per-atom
-mass are defined for particles (e.g. :doc:`atom_style granular <atom_style>`), then the mass of each particle is also
-changed when the diameter changes (density is assumed to stay
-constant).
-
-For example, these commands would shrink the diameter of all granular
-particles in the "center" group from 1.0 to 0.1 in a linear fashion
-over the course of a 1000-step simulation:
-
-.. parsed-literal::
-
- variable size equal ramp(1.0,0.1)
- fix 1 center adapt 10 atom diameter * v_size
-
-For :doc:`rRESPA time integration <run_style>`, this fix changes
-parameters on the outermost rRESPA level.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute fep <compute_fep>`, :doc:`fix adapt <fix_adapt>`, :doc:`compute ti <compute_ti>`
-
-Default
-"""""""
-
-The option defaults are scale = no, reset = no, after = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_addforce.txt b/doc/_sources/fix_addforce.txt
deleted file mode 100644
index 9e710492a..000000000
--- a/doc/_sources/fix_addforce.txt
+++ /dev/null
@@ -1,194 +0,0 @@
-.. index:: fix addforce
-
-fix addforce command
-====================
-
-fix addforce/cuda command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID addforce fx fy fz keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* addforce = style name of this fix command
-* fx,fy,fz = force component values (force units)
-.. parsed-literal::
-
- any of fx,fy,fz can be a variable (see below)
-
-* zero or more keyword/value pairs may be appended to args
-* keyword = *every* or *region* or *energy*
-.. parsed-literal::
-
- *every* value = Nevery
- Nevery = add force every this many timesteps
- *region* value = region-ID
- region-ID = ID of region atoms must be in to have added force
- *energy* value = v_name
- v_name = variable with name that calculates the potential energy of each atom in the added force field
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix kick flow addforce 1.0 0.0 0.0
- fix kick flow addforce 1.0 0.0 v_oscillate
- fix ff boundary addforce 0.0 0.0 v_push energy v_espace
-
-Description
-"""""""""""
-
-Add fx,fy,fz to the corresponding component of force for each atom in
-the group. This command can be used to give an additional push to
-atoms in a simulation, such as for a simulation of Poiseuille flow in
-a channel.
-
-Any of the 3 quantities defining the force components can be specified
-as an equal-style or atom-style :doc:`variable <variable>`, namely *fx*,
-*fy*, *fz*. If the value is a variable, it should be specified as
-v_name, where name is the variable name. In this case, the variable
-will be evaluated each timestep, and its value(s) used to determine
-the force component.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent force field.
-
-Atom-style variables can specify the same formulas as equal-style
-variables but can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a spatially-dependent force
-field with optional time-dependence as well.
-
-If the *every* keyword is used, the *Nevery* setting determines how
-often the forces are applied. The default value is 1, for every
-timestep.
-
-If the *region* keyword is used, the atom must also be in the
-specified geometric :doc:`region <region>` in order to have force added
-to it.
-
-
-----------
-
-
-Adding a force to atoms implies a change in their potential energy as
-they move due to the applied force field. For dynamics via the "run"
-command, this energy can be optionally added to the system's potential
-energy for thermodynamic output (see below). For energy minimization
-via the "minimize" command, this energy must be added to the system's
-potential energy to formulate a self-consistent minimization problem
-(see below).
-
-The *energy* keyword is not allowed if the added force is a constant
-vector F = (fx,fy,fz), with all components defined as numeric
-constants and not as variables. This is because LAMMPS can compute
-the energy for each atom directly as E = -x dot F = -(x*fx + y*fy +
-z*fz), so that -Grad(E) = F.
-
-The *energy* keyword is optional if the added force is defined with
-one or more variables, and if you are performing dynamics via the
-:doc:`run <run>` command. If the keyword is not used, LAMMPS will set
-the energy to 0.0, which is typically fine for dynamics.
-
-The *energy* keyword is required if the added force is defined with
-one or more variables, and you are performing energy minimization via
-the "minimize" command. The keyword specifies the name of an
-atom-style :doc:`variable <variable>` which is used to compute the
-energy of each atom as function of its position. Like variables used
-for *fx*, *fy*, *fz*, the energy variable is specified as v_name,
-where name is the variable name.
-
-Note that when the *energy* keyword is used during an energy
-minimization, you must insure that the formula defined for the
-atom-style :doc:`variable <variable>` is consistent with the force
-variable formulas, i.e. that -Grad(E) = F. For example, if the force
-were a spring-like F = kx, then the energy formula should be E =
--0.5kx^2. If you don't do this correctly, the minimization will not
-converge properly.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the potential "energy" inferred by the added force to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`. This is a fictitious quantity but is
-needed so that the :doc:`minimize <minimize>` command can include the
-forces added by this fix in a consistent manner. I.e. there is a
-decrease in potential energy when atoms move in the direction of the
-added force.
-
-This fix computes a global scalar and a global 3-vector of forces,
-which can be accessed by various :ref:`output commands <howto_15>`. The scalar is the potential
-energy discussed above. The vector is the total force on the group of
-atoms before the forces on individual atoms are changed by the fix.
-The scalar and vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command. You should not
-specify force components with a variable that has time-dependence for
-use with a minimizer, since the minimizer increments the timestep as
-the iteration count during the minimization.
-
-.. note::
-
- If you want the fictitious potential energy associated with the
- added forces to be included in the total potential energy of the
- system (the quantity being minimized), you MUST enable the
- :doc:`fix_modify <fix_modify>` *energy* option for this fix.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix setforce <fix_setforce>`, :doc:`fix aveforce <fix_aveforce>`
-
-Default
-"""""""
-
-The option default for the every keyword is every = 1.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_addtorque.txt b/doc/_sources/fix_addtorque.txt
deleted file mode 100644
index 58a50c01e..000000000
--- a/doc/_sources/fix_addtorque.txt
+++ /dev/null
@@ -1,101 +0,0 @@
-.. index:: fix addtorque
-
-fix addtorque command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID addtorque Tx Ty Tz
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* addtorque = style name of this fix command
-* Tx,Ty,Tz = torque component values (torque units)
-* any of Tx,Ty,Tz can be a variable (see below)
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix kick bead addtorque 2.0 3.0 5.0
- fix kick bead addtorque 0.0 0.0 v_oscillate
-
-Description
-"""""""""""
-
-Add a set of forces to each atom in
-the group such that:
-
-* the components of the total torque applied on the group (around its
- center of mass) are Tx,Ty,Tz
-* the group would move as a rigid body in the absence of other
- forces.
-This command can be used to drive a group of atoms into rotation.
-
-Any of the 3 quantities defining the torque components can be specified
-as an equal-style :doc:`variable <variable>`, namely *Tx*,
-*Ty*, *Tz*. If the value is a variable, it should be specified as
-v_name, where name is the variable name. In this case, the variable
-will be evaluated each timestep, and its value used to determine the
-torque component.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent torque.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the potential "energy" inferred by the added forces to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`. This is a fictitious quantity but is
-needed so that the :doc:`minimize <minimize>` command can include the
-forces added by this fix in a consistent manner. I.e. there is a
-decrease in potential energy when atoms move in the direction of the
-added forces.
-
-This fix computes a global scalar and a global 3-vector, which can be
-accessed by various :ref:`output commands <howto_15>`.
-The scalar is the potential energy discussed above. The vector is the
-total torque on the group of atoms before the forces on individual
-atoms are changed by the fix. The scalar and vector values calculated
-by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command. You should not
-specify force components with a variable that has time-dependence for
-use with a minimizer, since the minimizer increments the timestep as
-the iteration count during the minimization.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix addforce <fix_addforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_append_atoms.txt b/doc/_sources/fix_append_atoms.txt
deleted file mode 100644
index 907acca70..000000000
--- a/doc/_sources/fix_append_atoms.txt
+++ /dev/null
@@ -1,126 +0,0 @@
-.. index:: fix append/atoms
-
-fix append/atoms command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID append/atoms face ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* append/atoms = style name of this fix command
-* face = *zhi*
-* zero or more keyword/value pairs may be appended
-* keyword = *basis* or *size* or *freq* or *temp* or *random* or *units*
-.. parsed-literal::
-
- *basis* values = M itype
- M = which basis atom
- itype = atom type (1-N) to assign to this basis atom
- *size* args = Lz
- Lz = z size of lattice region appended in a single event(distance units)
- *freq* args = freq
- freq = the number of timesteps between append events
- *temp* args = target damp seed extent
- target = target temperature for the region between zhi-extent and zhi (temperature units)
- damp = damping parameter (time units)
- seed = random number seed for langevin kicks
- extent = extent of thermostated region (distance units)
- *random* args = xmax ymax zmax seed
- *xmax*, *ymax*, *zmax* = maximum displacement in particular direction (distance units)
- *seed* = random number seed for random displacement
- *units* value = *lattice* or *box*
- *lattice* = the wall position is defined in lattice units
- *box* = the wall position is defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all append/atoms zhi size 5.0 freq 295 units lattice
- fix 4 all append/atoms zhi size 15.0 freq 5 units box
- fix A all append/atoms zhi size 1.0 freq 1000 units lattice
-
-Description
-"""""""""""
-
-This fix creates atoms on a lattice, appended on the zhi edge of the
-system box. This can be useful when a shock or wave is propagating
-from zlo. This allows the system to grow with time to accommodate an
-expanding wave. A simulation box must already exist, which is
-typically created via the :doc:`create_box <create_box>` command.
-Before using this command, a lattice must also be defined using the
-:doc:`lattice <lattice>` command.
-
-This fix will automatically freeze atoms on the zhi edge of the
-system, so that overlaps are avoided when new atoms are appended.
-
-The *basis* keyword specifies an atom type that will be assigned to
-specific basis atoms as they are created. See the
-:doc:`lattice <lattice>` command for specifics on how basis atoms are
-defined for the unit cell of the lattice. By default, all created
-atoms are assigned type = 1 unless this keyword specifies differently.
-
-The *size* keyword defines the size in z of the chunk of material to
-be added.
-
-The *random* keyword will give the atoms random displacements around
-their lattice points to simulate some initial temperature.
-
-The *temp* keyword will cause a region to be thermostated with a
-Langevin thermostat on the zhi boundary. The size of the region is
-measured from zhi and is set with the *extent* argument.
-
-The *units* keyword determines the meaning of the distance units used
-to define a wall position, but only when a numeric constant is used.
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacings.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix style is part of the SHOCK package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The boundary on which atoms are added with append/atoms must be
-shrink/minimum. The opposite boundary may be any boundary type other
-than periodic.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix wall/piston <fix_wall_piston>` command
-
-Default
-"""""""
-
-The keyword defaults are size = 0.0, freq = 0, units = lattice. All
-added atoms are of type 1 unless the basis keyword is used.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_atc.txt b/doc/_sources/fix_atc.txt
deleted file mode 100644
index 9450c38c6..000000000
--- a/doc/_sources/fix_atc.txt
+++ /dev/null
@@ -1,312 +0,0 @@
-.. index:: fix atc
-
-fix atc command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix <fixID> <group> atc <type> <parameter_file>
-
-* fixID = name of fix
-* group = name of group fix is to be applied
-* type = *thermal* or *two_temperature* or *hardy* or *field*
-.. parsed-literal::
-
- *thermal* = thermal coupling with fields: temperature
- *two_temperature* = electron-phonon coupling with field: temperature and electron_temperature
- *hardy* = on-the-fly post-processing using kernel localization functions (see "related" section for possible fields)
- *field* = on-the-fly post-processing using mesh-based localization functions (see "related" section for possible fields)
-
-* parameter_file = name of the file with material parameters. Note: Neither hardy nor field requires a parameter file
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix AtC internal atc thermal Ar_thermal.dat
- fix AtC internal atc two_temperature Ar_ttm.mat
- fix AtC internal atc hardy
- fix AtC internal atc field
-
-Description
-"""""""""""
-
-This fix is the beginning to creating a coupled FE/MD simulation and/or an on-the-fly estimation of continuum fields. The coupled versions of this fix do Verlet integration and the post-processing does not. After instantiating this fix, several other fix_modify commands will be needed to set up the problem, e.g. define the finite element mesh and prescribe initial and boundary conditions.
-
-.. image:: JPG/atc_nanotube.jpg
- :align: center
-
-.. parsed-literal::
-
- The following coupling example is typical, but non-exhaustive:
- # ... commands to create and initialize the MD system
-
-.. parsed-literal::
-
- # initial fix to designate coupling type and group to apply it to
- # tag group physics material_file
- fix AtC internal atc thermal Ar_thermal.mat
-
-.. parsed-literal::
-
- # create a uniform 12 x 2 x 2 mesh that covers region contain the group
- # nx ny nz region periodicity
- fix_modify AtC mesh create 12 2 2 mdRegion f p p
-
-.. parsed-literal::
-
- # specify the control method for the type of coupling
- # physics control_type
- fix_modify AtC thermal control flux
-
-.. parsed-literal::
-
- # specify the initial values for the empirical field "temperature"
- # field node_group value
- fix_modify AtC initial temperature all 30
-
-.. parsed-literal::
-
- # create an output stream for nodal fields
- # filename output_frequency
- fix_modify AtC output atc_fe_output 100
-
-.. parsed-literal::
-
- run 1000
-
-likewise for this post-processing example:
-
-.. parsed-literal::
-
- # ... commands to create and initialize the MD system
-
-.. parsed-literal::
-
- # initial fix to designate post-processing and the group to apply it to
- # no material file is allowed nor required
- fix AtC internal atc hardy
-
-.. parsed-literal::
-
- # for hardy fix, specific kernel function (function type and range) to # be used as a localization function
- fix AtC kernel quartic_sphere 10.0
-
-.. parsed-literal::
-
- # create a uniform 1 x 1 x 1 mesh that covers region contain the group
- # with periodicity this effectively creats a system average
- fix_modify AtC mesh create 1 1 1 box p p p
-
-.. parsed-literal::
-
- # change from default lagrangian map to eulerian
- # refreshed every 100 steps
- fix_modify AtC atom_element_map eulerian 100
-
-.. parsed-literal::
-
- # start with no field defined
- # add mass density, potential energy density, stress and temperature
- fix_modify AtC fields add density energy stress temperature
-
-.. parsed-literal::
-
- # create an output stream for nodal fields
- # filename output_frequency
- fix_modify AtC output nvtFE 100 text
-
-.. parsed-literal::
-
- run 1000
-
-the mesh's linear interpolation functions can be used as the localization function
- by using the field option:
-
-fix AtC internal atc field
-
-fix_modify AtC mesh create 1 1 1 box p p p
-
-...
-
-Note coupling and post-processing can be combined in the same simulations using separate fixes.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. The :doc:`fix_modify <fix_modify>` options relevant to this fix are listed below. No global scalar or vector or per-atom quantities are stored by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can be used with the *start/stop* keywords of the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-Thermal and two_temperature (coupling) types use a Verlet time-integration algorithm. The hardy type does not contain its own time-integrator and must be used with a separate fix that does contain one, e.g. nve, nvt, etc.
-
-* Currently,
-* - the coupling is restricted to thermal physics
-* - the FE computations are done in serial on each processor.
-
-Related commands
-""""""""""""""""
-
-After specifying this fix in your input script, several other :doc:`fix_modify <fix_modify>` commands are used to setup the problem, e.g. define the finite element mesh and prescribe initial and boundary conditions.
-
-fix_modify commands for setup:
-
-* :doc:`fix_modify AtC mesh create <USER/atc/man_mesh_create>`
-* :doc:`fix_modify AtC mesh quadrature <USER/atc/man_mesh_quadrature>`
-* :doc:`fix_modify AtC mesh read <USER/atc/man_mesh_read>`
-* :doc:`fix_modify AtC mesh write <USER/atc/man_mesh_write>`
-* :doc:`fix_modify AtC mesh create_nodeset <USER/atc/man_mesh_create_nodeset>`
-* :doc:`fix_modify AtC mesh add_to_nodeset <USER/atc/man_mesh_add_to_nodeset>`
-* :doc:`fix_modify AtC mesh create_faceset box <USER/atc/man_mesh_create_faceset_box>`
-* :doc:`fix_modify AtC mesh create_faceset plane <USER/atc/man_mesh_create_faceset_plane>`
-* :doc:`fix_modify AtC mesh create_elementset <USER/atc/man_mesh_create_elementset>`
-* :doc:`fix_modify AtC mesh delete_elements <USER/atc/man_mesh_delete_elements>`
-* :doc:`fix_modify AtC mesh nodeset_to_elementset <USER/atc/man_mesh_nodeset_to_elementset>`
-* :doc:`fix_modify AtC boundary <USER/atc/man_boundary>`
-* :doc:`fix_modify AtC internal_quadrature <USER/atc/man_internal_quadrature>`
-* :doc:`fix_modify AtC time_integration (thermal) <USER/atc/man_thermal_time_integration>`
-* :doc:`fix_modify AtC time_integration (momentum) <USER/atc/man_momentum_time_integration>`
-* :doc:`fix_modify AtC extrinsic electron_integration <USER/atc/man_electron_integration>`
-* :doc:`fix_modify AtC internal_element_set <USER/atc/man_internal_element_set>`
-* :doc:`fix_modify AtC decomposition <USER/atc/man_decomposition>`
-
-fix_modify commands for boundary and initial conditions:
-
-* :doc:`fix_modify AtC initial <USER/atc/man_initial>`
-* :doc:`fix_modify AtC fix <USER/atc/man_fix_nodes>`
-* :doc:`fix_modify AtC unfix <USER/atc/man_unfix_nodes>`
-* :doc:`fix_modify AtC fix_flux <USER/atc/man_fix_flux>`
-* :doc:`fix_modify AtC unfix_flux <USER/atc/man_unfix_flux>`
-* :doc:`fix_modify AtC source <USER/atc/man_source>`
-* :doc:`fix_modify AtC remove_source <USER/atc/man_remove_source>`
-
-fix_modify commands for control and filtering:
-
-* :doc:`fix_modify AtC control <USER/atc/man_control>`
-* :doc:`fix_modify AtC control thermal <USER/atc/man_control_thermal>`
-* :doc:`fix_modify AtC control thermal correction_max_iterations <USER/atc/man_control_thermal_correction_max_iterations>`
-* :doc:`fix_modify AtC control momentum <USER/atc/man_control_momentum>`
-* :doc:`fix_modify AtC control localized_lambda <USER/atc/man_localized_lambda>`
-* :doc:`fix_modify AtC control lumped_lambda_solve <USER/atc/man_lumped_lambda_solve>`
-* :doc:`fix_modify AtC control mask_direction <USER/atc/man_mask_direction>` control
-* :doc:`fix_modify AtC filter <USER/atc/man_time_filter>`
-* :doc:`fix_modify AtC filter scale <USER/atc/man_filter_scale>`
-* :doc:`fix_modify AtC filter type <USER/atc/man_filter_type>`
-* :doc:`fix_modify AtC equilibrium_start <USER/atc/man_equilibrium_start>`
-* :doc:`fix_modify AtC extrinsic exchange <USER/atc/man_extrinsic_exchange>`
-* :doc:`fix_modify AtC poisson_solver <USER/atc/man_poisson_solver>`
-
-fix_modify commands for output:
-
-* :doc:`fix_modify AtC output <USER/atc/man_output>`
-* :doc:`fix_modify AtC output nodeset <USER/atc/man_output_nodeset>`
-* :doc:`fix_modify AtC output elementset <USER/atc/man_output_elementset>`
-* :doc:`fix_modify AtC output boundary_integral <USER/atc/man_boundary_integral>`
-* :doc:`fix_modify AtC output contour_integral <USER/atc/man_contour_integral>`
-* :doc:`fix_modify AtC mesh output <USER/atc/man_mesh_output>`
-* :doc:`fix_modify AtC write_restart <USER/atc/man_write_restart>`
-* :doc:`fix_modify AtC read_restart <USER/atc/man_read_restart>`
-
-fix_modify commands for post-processing:
-
-* :doc:`fix_modify AtC kernel <USER/atc/man_hardy_kernel>`
-* :doc:`fix_modify AtC fields <USER/atc/man_hardy_fields>`
-* :doc:`fix_modify AtC grdients <USER/atc/man_hardy_gradients>`
-* :doc:`fix_modify AtC rates <USER/atc/man_hardy_rates>`
-* :doc:`fix_modify AtC computes <USER/atc/man_hardy_computes>`
-* :doc:`fix_modify AtC on_the_fly <USER/atc/man_hardy_on_the_fly>`
-* :doc:`fix_modify AtC pair_interactions/bond_interactions <USER/atc/man_pair_interactions>`
-* :doc:`fix_modify AtC sample_frequency <USER/atc/man_sample_frequency>`
-* :doc:`fix_modify AtC set <USER/atc/man_set>`
-
-miscellaneous fix_modify commands:
-
-* :doc:`fix_modify AtC atom_element_map <USER/atc/man_atom_element_map>`
-* :doc:`fix_modify AtC atom_weight <USER/atc/man_atom_weight>`
-* :doc:`fix_modify AtC write_atom_weights <USER/atc/man_write_atom_weights>`
-* :doc:`fix_modify AtC reset_time <USER/atc/man_reset_time>`
-* :doc:`fix_modify AtC reset_atomic_reference_positions <USER/atc/man_reset_atomic_reference_positions>`
-* :doc:`fix_modify AtC fe_md_boundary <USER/atc/man_fe_md_boundary>`
-* :doc:`fix_modify AtC boundary_faceset <USER/atc/man_boundary_faceset>`
-* :doc:`fix_modify AtC consistent_fe_initialization <USER/atc/man_consistent_fe_initialization>`
-* :doc:`fix_modify AtC mass_matrix <USER/atc/man_mass_matrix>`
-* :doc:`fix_modify AtC material <USER/atc/man_material>`
-* :doc:`fix_modify AtC atomic_charge <USER/atc/man_atomic_charge>`
-* :doc:`fix_modify AtC source_integration <USER/atc/man_source_integration>`
-* :doc:`fix_modify AtC temperature_definition <USER/atc/man_temperature_definition>`
-* :doc:`fix_modify AtC track_displacement <USER/atc/man_track_displacement>`
-* :doc:`fix_modify AtC boundary_dynamics <USER/atc/man_boundary_dynamics>`
-* :doc:`fix_modify AtC add_species <USER/atc/man_add_species>`
-* :doc:`fix_modify AtC add_molecule <USER/atc/man_add_molecule>`
-* :doc:`fix_modify AtC remove_species <USER/atc/man_remove_species>`
-* :doc:`fix_modify AtC remove_molecule <USER/atc/man_remove_molecule>`
-
-Note: a set of example input files with the attendant material files are included with this package
-
-Default
-"""""""
-None
-
-
-----------
-
-
-For detailed exposition of the theory and algorithms please see:
-
-.. _Wagner:
-
-
-
-**(Wagner)** Wagner, GJ; Jones, RE; Templeton, JA; Parks, MA, "An atomistic-to-continuum coupling method for heat transfer in solids." Special Issue of Computer Methods and Applied Mechanics (2008) 197:3351.
-
-.. _Zimmeman2004:
-
-
-
-**(Zimmerman2004)** Zimmerman, JA; Webb, EB; Hoyt, JJ;. Jones, RE; Klein, PA; Bammann, DJ, "Calculation of stress in atomistic simulation." Special Issue of Modelling and Simulation in Materials Science and Engineering (2004), 12:S319.
-
-.. _Zimmerman2010:
-
-
-
-**(Zimmerman2010)** Zimmerman, JA; Jones, RE; Templeton, JA, "A material frame approach for evaluating continuum variables in atomistic simulations." Journal of Computational Physics (2010), 229:2364.
-
-.. _Templeton2010:
-
-
-
-**(Templeton2010)** Templeton, JA; Jones, RE; Wagner, GJ, "Application of a field-based method to spatially varying thermal transport problems in molecular dynamics." Modelling and Simulation in Materials Science and Engineering (2010), 18:085007.
-
-.. _Jones:
-
-
-
-**(Jones)** Jones, RE; Templeton, JA; Wagner, GJ; Olmsted, D; Modine, JA, "Electron transport enhanced molecular dynamics for metals and semi-metals." International Journal for Numerical Methods in Engineering (2010), 83:940.
-
-.. _Templeton2011:
-
-
-
-**(Templeton2011)** Templeton, JA; Jones, RE; Lee, JW; Zimmerman, JA; Wong, BM, "A long-range electric field solver for molecular dynamics based on atomistic-to-continuum modeling." Journal of Chemical Theory and Computation (2011), 7:1736.
-
-.. _Mandadapu:
-
-
-
-**(Mandadapu)** Mandadapu, KK; Templeton, JA; Lee, JW, "Polarization as a field variable from molecular dynamics simulations." Journal of Chemical Physics (2013), 139:054115.
-
-Please refer to the standard finite element (FE) texts, e.g. T.J.R Hughes " The finite element method ", Dover 2003, for the basics of FE simulation.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_atom_swap.txt b/doc/_sources/fix_atom_swap.txt
deleted file mode 100644
index e408aee1a..000000000
--- a/doc/_sources/fix_atom_swap.txt
+++ /dev/null
@@ -1,203 +0,0 @@
-.. index:: fix atom/swap
-
-fix atom/swap command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID atom/swap N X seed T keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* atom/swap = style name of this fix command
-* N = invoke this fix every N steps
-* X = number of swaps to attempt every N steps
-* seed = random # seed (positive integer)
-* T = scaling temperature of the MC swaps (temperature units)
-* one or more keyword/value pairs may be appended to args
-* keyword = *types* or *mu* or *ke* or *semi-grand* or *region*
-.. parsed-literal::
-
- *types* values = two or more atom types
- *mu* values = chemical potential of swap types (energy units)
- *ke* value = *no* or *yes*
- *no* = no conservation of kinetic energy after atom swaps
- *yes* = kinetic energy is conserved after atom swaps
- *semi-grand* value = *no* or *yes*
- *no* = particle type counts and fractions conserved
- *yes* = semi-grand canonical ensemble, particle fractions not conserved
- *region* value = region-ID
- region-ID = ID of region to use as an exchange/move volume
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 2 all atom/swap 1 1 29494 300.0 ke no types 1 2
- fix myFix all atom/swap 100 1 12345 298.0 region my_swap_region types 5 6
- fix SGMC all atom/swap 1 100 345 1.0 semi-grand yes types 1 2 3 mu 0.0 4.3 -5.0
-
-Description
-"""""""""""
-
-This fix performs Monte Carlo swaps of atoms of one given atom type
-with atoms of the other given atom types. The specified T is used in
-the Metropolis criterion dictating swap probabilities.
-
-Perform X swaps of atoms of one type with atoms of another type
-according to a Monte Carlo probability. Swap candidates must be in the
-fix group, must be in the region (if specified), and must be of one of
-the listed types. Swaps are attempted between candidates that are
-chosen randomly with equal probability among the candidate
-atoms. Swaps are not attempted between atoms of the same type since
-nothing would happen.
-
-All atoms in the simulation domain can be moved using regular time
-integration displacements, e.g. via :doc:`fix nvt <fix_nh>`, resulting
-in a hybrid MC+MD simulation. A smaller-than-usual timestep size may
-be needed when running such a hybrid simulation, especially if the
-swapped atoms are not well equilibrated.
-
-The *types* keyword is required. At least two atom types must be
-specified.
-
-The *ke* keyword can be set to *no* to turn off kinetic energy
-conservation for swaps. The default is *yes*, which means that swapped
-atoms have their velocities scaled by the ratio of the masses of the
-swapped atom types. This ensures that the kinetic energy of each atom
-is the same after the swap as it was before the swap, even though the
-atom masses have changed.
-
-The *semi-grand* keyword can be set to *yes* to switch to the
-semi-grand canonical ensemble as discussed in :ref:`(Sadigh) <Sadigh>`. This
-means that the total number of each particle type does not need to be
-conserved. The default is *no*, which means that the only kind of swap
-allowed exchanges an atom of one type with an atom of a different
-given type. In other words, the relative mole fractions of the swapped
-atoms remains constant. Whereas in the semi-grand canonical ensemble,
-the composition of the system can change. Note that when using
-*semi-grand*, atoms in the fix group whose type is not listed
-in the *types* keyword are ineligible for attempted
-conversion. An attempt is made to switch
-the selected atom (if eligible) to one of the other listed types
-with equal probability. Acceptance of each attempt depends upon the Metropolis criterion.
-
-The *mu* keyword allows users to specify chemical
-potentials. This is required and allowed only when using *semi-grand*.
-All chemical potentials are absolute, so there is one for
-each swap type listed following the *types* keyword.
-In semi-grand canonical ensemble simulations the chemical composition
-of the system is controlled by the difference in these values. So
-shifting all values by a constant amount will have no effect
-on the simulation.
-
-This command may optionally use the *region* keyword to define swap
-volume. The specified region must have been previously defined with a
-:doc:`region <region>` command. It must be defined with side = *in*.
-Swap attempts occur only between atoms that are both within the
-specified region. Swaps are not otherwise attempted.
-
-You should ensure you do not swap atoms belonging to a molecule, or
-LAMMPS will soon generate an error when it tries to find those atoms.
-LAMMPS will warn you if any of the atoms eligible for swapping have a
-non-zero molecule ID, but does not check for this at the time of
-swapping.
-
-If not using *semi-grand* this fix checks to ensure all atoms of the
-given types have the same atomic charge. LAMMPS doesn't enforce this
-in general, but it is needed for this fix to simplify the
-swapping procedure. Successful swaps will swap the atom type and charge
-of the swapped atoms. Conversely, when using *semi-grand*, it is assumed that all the atom
-types involved in switches have the same charge. Otherwise, charge
-would not be conserved. As a consequence, no checks on atomic charges are
-performed, and successful switches update the atom type but not the
-atom charge. While it is possible to use *semi-grand* with groups of
-atoms that have different charges, these charges will not be changed when the
-atom types change.
-
-Since this fix computes total potential energies before and after
-proposed swaps, so even complicated potential energy calculations are
-OK, including the following:
-
-* long-range electrostatics (kspace)
-* many body pair styles
-* hybrid pair styles
-* eam pair styles
-* triclinic systems
-* need to include potential energy contributions from other fixes
-
-Some fixes have an associated potential energy. Examples of such fixes
-include: :doc:`efield <fix_efield>`, :doc:`gravity <fix_gravity>`,
-:doc:`addforce <fix_addforce>`, :doc:`langevin <fix_langevin>`,
-:doc:`restrain <fix_restrain>`, :doc:`temp/berendsen <fix_temp_berendsen>`,
-:doc:`temp/rescale <fix_temp_rescale>`, and :doc:`wall fixes <fix_wall>`.
-For that energy to be included in the total potential energy of the
-system (the quantity used when performing GCMC moves),
-you MUST enable the :doc:`fix_modify <fix_modify>` *energy* option for
-that fix. The doc pages for individual :doc:`fix <fix>` commands
-specify if this should be done.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the fix to :doc:`binary restart files <restart>`. This includes information about the random
-number generator seed, the next timestep for MC exchanges, etc. See
-the :doc:`read_restart <read_restart>` command for info on how to
-re-specify a fix in an input script that reads a restart file, so that
-the operation of the fix continues in an uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-This fix computes a global vector of length 2, which can be accessed
-by various :ref:`output commands <howto_15>`. The vector
-values are the following global cumulative quantities:
-
-* 1 = swap attempts
-* 2 = swap successes
-
-The vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MC package. It is only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`neighbor <neighbor>`,
-:doc:`fix deposit <fix_deposit>`, :doc:`fix evaporate <fix_evaporate>`,
-:doc:`delete_atoms <delete_atoms>`, :doc:`fix gcmc <fix_gcmc>`
-
-Default
-"""""""
-
-The option defaults are ke = yes, semi-grand = no, mu = 0.0 for
-all atom types.
-
-
-----------
-
-
-.. _Sadigh:
-
-
-
-**(Sadigh)** B Sadigh, P Erhart, A Stukowski, A Caro, E Martinez, and
-L Zepeda-Ruiz, Phys. Rev. B, 85, 184203 (2012).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_atom.txt b/doc/_sources/fix_ave_atom.txt
deleted file mode 100644
index ba4fbf8f1..000000000
--- a/doc/_sources/fix_ave_atom.txt
+++ /dev/null
@@ -1,163 +0,0 @@
-.. index:: fix ave/atom
-
-fix ave/atom command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ave/atom Nevery Nrepeat Nfreq value1 value2 ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ave/atom = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of times to use input values for calculating averages
-* Nfreq = calculate averages every this many timesteps
- one or more input values can be listed
-* value = x, y, z, vx, vy, vz, fx, fy, fz, c_ID, c_ID[i], f_ID, f_ID[i], v_name
-.. parsed-literal::
-
- x,y,z,vx,vy,vz,fx,fy,fz = atom attribute (position, velocity, force component)
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[I] = Ith column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[I] = Ith column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/atom 1 100 100 vx vy vz
- fix 1 all ave/atom 10 20 1000 c_my_stress[1]
-
-Description
-"""""""""""
-
-Use one or more per-atom vectors as inputs every few timesteps, and
-average them atom by atom over longer timescales. The resulting
-per-atom averages can be used by other :ref:`output commands <howto_15>` such as the :doc:`fix ave/spatial <fix_ave_spatial>` or :doc:`dump custom <dump>` commands.
-
-The group specified with the command means only atoms within the group
-have their averages computed. Results are set to 0.0 for atoms not in
-the group.
-
-Each input value can be an atom attribute (position, velocity, force
-component) or can be the result of a :doc:`compute <compute>` or
-:doc:`fix <fix>` or the evaluation of an atom-style
-:doc:`variable <variable>`. In the latter cases, the compute, fix, or
-variable must produce a per-atom vector, not a global quantity or
-local quantity. If you wish to time-average global quantities from a
-compute, fix, or variable, then see the :doc:`fix ave/time <fix_ave_time>` command.
-
-:doc:`Computes <compute>` that produce per-atom vectors or arrays are
-those which have the word *atom* in their style name. See the doc
-pages for individual :doc:`fixes <fix>` to determine which ones produce
-per-atom vectors or arrays. :doc:`Variables <variable>` of style *atom*
-are the only ones that can be used with this fix since they produce
-per-atom vectors.
-
-Each per-atom value of each input vector is averaged independently.
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be used in order to contribute to the
-average. The final averaged quantities are generated on timesteps
-that are a multiple of *Nfreq*. The average is over *Nrepeat*
-quantities, computed in the preceding portion of the simulation every
-*Nevery* timesteps. *Nfreq* must be a multiple of *Nevery* and
-*Nevery* must be non-zero even if *Nrepeat* is 1. Also, the timesteps
-contributing to the average value cannot overlap,
-i.e. Nrepeat*Nevery can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then values on
-timesteps 90,92,94,96,98,100 will be used to compute the final average
-on timestep 100. Similarly for timesteps 190,192,194,196,198,200 on
-timestep 200, etc.
-
-
-----------
-
-
-The atom attribute values (x,y,z,vx,vy,vz,fx,fy,fz) are
-self-explanatory. Note that other atom attributes can be used as
-inputs to this fix by using the :doc:`compute property/atom <compute_property_atom>` command and then specifying
-an input value from that compute.
-
-.. note::
-
- The x,y,z attributes are values that are re-wrapped inside the
- periodic box whenever an atom crosses a periodic boundary. Thus if
- you time average an atom that spends half its time on either side of
- the periodic box, you will get a value in the middle of the box. If
- this is not what you want, consider averaging unwrapped coordinates,
- which can be provided by the :doc:`compute property/atom <compute_property_atom>` command via its xu,yu,zu
- attributes.
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If no bracketed term is
-appended, the per-atom vector calculated by the compute is used. If a
-bracketed term containing an index I is appended, the Ith column of
-the per-atom array calculated by the compute is used. Users can also
-write code for their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If no bracketed term is
-appended, the per-atom vector calculated by the fix is used. If a
-bracketed term containing an index I is appended, the Ith column of
-the per-atom array calculated by the fix is used. Note that some
-fixes only produce their values on certain timesteps, which must be
-compatible with *Nevery*, else an error will result. Users can also
-write code for their own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script as an :doc:`atom-style variable <variable>` Variables of style *atom* can reference
-thermodynamic keywords, or invoke other computes, fixes, or variables
-when they are evaluated, so this is a very general means of generating
-per-atom quantities to time average.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global scalar or vector quantities are
-stored by this fix for access by various :ref:`output commands <howto_15>`.
-
-This fix produces a per-atom vector or array which can be accessed by
-various :ref:`output commands <howto_15>`. A vector is
-produced if only a single quantity is averaged by this fix. If two or
-more quantities are averaged, then an array of values is produced.
-The per-atom values can only be accessed on timesteps that are
-multiples of *Nfreq* since that is when averaging is performed.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix ave/histo <fix_ave_histo>`, :doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`fix ave/time <fix_ave_time>`,
-:doc:`variable <variable>`,
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_chunk.txt b/doc/_sources/fix_ave_chunk.txt
deleted file mode 100644
index ef9253c21..000000000
--- a/doc/_sources/fix_ave_chunk.txt
+++ /dev/null
@@ -1,471 +0,0 @@
-.. index:: fix ave/chunk
-
-fix ave/chunk command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ave/chunk Nevery Nrepeat Nfreq chunkID value1 value2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ave/chunk = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of times to use input values for calculating averages
-* Nfreq = calculate averages every this many timesteps
-* chunkID = ID of :doc:`compute chunk/atom <compute_chunk_atom>` command
-* one or more input values can be listed
-* value = vx, vy, vz, fx, fy, fz, density/mass, density/number, temp, c_ID, c_ID[I], f_ID, f_ID[I], v_name
-.. parsed-literal::
-
- vx,vy,vz,fx,fy,fz = atom attribute (velocity, force component)
- density/number, density/mass = number or mass density
- temp = temperature
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[I] = Ith column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[I] = Ith column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *norm* or *ave* or *bias* or *adof* or *cdof* or *file* or *overwrite* or *title1* or *title2* or *title3*
-.. parsed-literal::
-
- *norm* arg = *all* or *sample* or *none* = how output on *Nfreq* steps is normalized
- all = output is sum of atoms across all *Nrepeat* samples, divided by atom count
- sample = output is sum of *Nrepeat* sample averages, divided by *Nrepeat*
- none = output is sum of *Nrepeat* sample sums, divided by *Nrepeat*
- *ave* args = *one* or *running* or *window M*
- one = output new average value every Nfreq steps
- running = output cumulative average of all previous Nfreq steps
- window M = output average of M most recent Nfreq steps
- *bias* arg = bias-ID
- bias-ID = ID of a temperature compute that removes a velocity bias for temperature calculation
- *adof* value = dof_per_atom
- dof_per_atom = define this many degrees-of-freedom per atom for temperature calculation
- *cdof* value = dof_per_chunk
- dof_per_chunk = define this many degrees-of-freedom per chunk for temperature calculation
- *file* arg = filename
- filename = file to write results to
- *overwrite* arg = none = overwrite output file with only latest output
- *format* arg = string
- string = C-style format string
- *title1* arg = string
- string = text to print as 1st line of output file
- *title2* arg = string
- string = text to print as 2nd line of output file
- *title3* arg = string
- string = text to print as 3rd line of output file
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/chunk 10000 1 10000 binchunk c_myCentro title1 "My output values"
- fix 1 flow ave/chunk 100 10 1000 molchunk vx vz norm sample file vel.profile
- fix 1 flow ave/chunk 100 5 1000 binchunk density/mass ave running
- fix 1 flow ave/chunk 100 5 1000 binchunk density/mass ave running
-
-**NOTE:**
-
-If you are trying to replace an older fix ave/spatial command with the
-newer, more flexible fix ave/chunk and :doc:`compute chunk/atom <compute_chunk_atom>` commands, you simply need to split
-the fix ave/spatial arguments across the two new commands. For
-example, this command:
-
-.. parsed-literal::
-
- fix 1 flow ave/spatial 100 10 1000 y 0.0 1.0 vx vz norm sample file vel.profile
-
-could be replaced by:
-
-.. parsed-literal::
-
- compute cc1 flow chunk/atom bin/1d y 0.0 1.0
- fix 1 flow ave/chunk 100 10 1000 cc1 vx vz norm sample file vel.profile
-
-Description
-"""""""""""
-
-Use one or more per-atom vectors as inputs every few timesteps, sum
-the values over the atoms in each chunk at each timestep, then average
-the per-chunk values over longer timescales. The resulting chunk
-averages can be used by other :ref:`output commands <howto_15>` such as :doc:`thermo_style custom <thermo_style>`, and can also be written to a file.
-
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom <compute_chunk_atom>` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom <compute_chunk_atom>` doc page and ":ref:`Section_howto 23 <howto_23>` for details of how chunks can be
-defined and examples of how they can be used to measure properties of
-a system.
-
-Note that only atoms in the specified group contribute to the summing
-and averaging calculations. The :doc:`compute chunk/atom <compute_chunk_atom>` command defines its own group as
-well as an optional region. Atoms will have a chunk ID = 0, meaning
-they belong to no chunk, if they are not in that group or region.
-Thus you can specify the "all" group for this command if you simply
-want to use the chunk definitions provided by chunkID.
-
-Each specified per-atom value can be an atom attribute (position,
-velocity, force component), a mass or number density, or the result of
-a :doc:`compute <compute>` or :doc:`fix <fix>` or the evaluation of an
-atom-style :doc:`variable <variable>`. In the latter cases, the
-compute, fix, or variable must produce a per-atom quantity, not a
-global quantity. Note that the :doc:`compute property/atom <compute_property_atom>` command provides access to
-any attribute defined and stored by atoms. If you wish to
-time-average global quantities from a compute, fix, or variable, then
-see the :doc:`fix ave/time <fix_ave_time>` command.
-
-:doc:`Computes <compute>` that produce per-atom quantities are those
-which have the word *atom* in their style name. See the doc pages for
-individual :doc:`fixes <fix>` to determine which ones produce per-atom
-quantities. :doc:`Variables <variable>` of style *atom* are the only
-ones that can be used with this fix since all other styles of variable
-produce global quantities.
-
-The per-atom values of each input vector are summed and averaged
-independently of the per-atom values in other input vectors.
-
-.. note::
-
- This fix works by creating an array of size *Nchunk* by Nvalues
- on each processor. *Nchunk* is the number of chunks which is defined
- by the :doc:`compute chunk/atom <doc/compute_chunk_atom>` command.
- Nvalues is the number of input values specified. Each processor loops
- over its atoms, tallying its values to the appropriate chunk. Then
- the entire array is summed across all processors. This means that
- using a large number of chunks will incur an overhead in memory and
- computational cost (summing across processors), so be careful to
- define a reasonable number of chunks.
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be accessed and contribute to the
-average. The final averaged quantities are generated on timesteps
-that are a multiples of *Nfreq*. The average is over *Nrepeat*
-quantities, computed in the preceding portion of the simulation every
-*Nevery* timesteps. *Nfreq* must be a multiple of *Nevery* and
-*Nevery* must be non-zero even if *Nrepeat* is 1. Also, the timesteps
-contributing to the average value cannot overlap, i.e. Nrepeat*Nevery
-can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then values on
-timesteps 90,92,94,96,98,100 will be used to compute the final average
-on timestep 100. Similarly for timesteps 190,192,194,196,198,200 on
-timestep 200, etc. If Nrepeat=1 and Nfreq = 100, then no time
-averaging is done; values are simply generated on timesteps
-100,200,etc.
-
-Each input value can also be averaged over the atoms in each chunk.
-The way the averaging is done across the *Nrepeat* timesteps to
-produce output on the *Nfreq* timesteps, and across multiple *Nfreq*
-outputs, is determined by the *norm* and *ave* keyword settings, as
-discussed below.
-
-.. note::
-
- To perform per-chunk averaging within a *Nfreq* time window, the
- number of chunks *Nchunk* defined by the :doc:`compute chunk/atom <compute_chunk_atom>` command must remain constant. If
- the *ave* keyword is set to *running* or *window* then *Nchunk* must
- remain constant for the duration of the simulation. This fix forces
- the chunk/atom compute specified by chunkID to hold *Nchunk* constant
- for the appropriate time windows, by not allowing it to re-calcualte
- *Nchunk*, which can also affect how it assigns chunk IDs to atoms.
- More details are given on the :doc:`compute chunk/atom <compute_chunk_atom>` doc page.
-
-
-----------
-
-
-The atom attribute values (vx,vy,vz,fx,fy,fz) are self-explanatory.
-As noted above, any other atom attributes can be used as input values
-to this fix by using the :doc:`compute property/atom <compute_property_atom>` command and then specifying
-an input value from that compute.
-
-The *density/number* value means the number density is computed for
-each chunk, i.e. number/volume. The *density/mass* value means the
-mass density is computed for each chunk, i.e. total-mass/volume. The
-output values are in units of 1/volume or density (mass/volume). See
-the :doc:`units <units>` command doc page for the definition of density
-for each choice of units, e.g. gram/cm^3. If the chunks defined by
-the :doc:`compute chunk/atom <compute_chunk_atom>` command are spatial
-bins, the volume is the bin volume. Otherwise it is the volume of the
-entire simulation box.
-
-The *temp* value means the temperature is computed for each chunk, by
-the formula KE = DOF/2 k T, where KE = total kinetic energy of the
-chunk of atoms (sum of 1/2 m v^2), DOF = the total number of degrees
-of freedom for all atoms in the chunk, k = Boltzmann constant, and T =
-temperature.
-
-The DOF is calculated as N*adof + cdof, where N = number of atoms in
-the chunk, adof = degrees of freedom per atom, and cdof = degrees of
-freedom per chunk. By default adof = 2 or 3 = dimensionality of
-system, as set via the :doc:`dimension <dimension>` command, and cdof =
-0.0. This gives the usual formula for temperature.
-
-Note that currently this temperature only includes translational
-degrees of freedom for each atom. No rotational degrees of freedom
-are included for finite-size particles. Also no degrees of freedom
-are subtracted for any velocity bias or constraints that are applied,
-such as :doc:`compute temp/partial <compute_temp_partial>`, or :doc:`fix shake <fix_shake>` or :doc:`fix rigid <fix_rigid>`. This is because
-those degrees of freedom (e.g. a constrained bond) could apply to sets
-of atoms that are both included and excluded from a specific chunk,
-and hence the concept is somewhat ill-defined. In some cases, you can
-use the *adof* and *cdof* keywords to adjust the calculated degress of
-freedom appropriately, as explained below.
-
-Also note that a bias can be subtracted from atom velocities before
-they are used in the above formula for KE, by using the *bias*
-keyword. This allows, for example, a thermal temperature to be
-computed after removal of a flow velocity profile.
-
-Note that the per-chunk temperature calculated by this fix and the
-:doc:`compute temp/chunk <compute_temp_chunk>` command can be different.
-The compute calculates the temperature for each chunk for a single
-snapshot. This fix can do that but can also time average those values
-over many snapshots, or it can compute a temperature as if the atoms
-in the chunk on different timesteps were collected together as one set
-of atoms to calculate their temperature. The compute allows the
-center-of-mass velocity of each chunk to be subtracted before
-calculating the temperature; this fix does not.
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the compute is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the compute is used. Users can also write code for
-their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the fix is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the fix is used. Note that some fixes only produce
-their values on certain timesteps, which must be compatible with
-*Nevery*, else an error results. Users can also write code for their
-own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. Variables of style
-*atom* can reference thermodynamic keywords and various per-atom
-attributes, or invoke other computes, fixes, or variables when they
-are evaluated, so this is a very general means of generating per-atom
-quantities to average within chunks.
-
-
-----------
-
-
-Additional optional keywords also affect the operation of this fix
-and its outputs.
-
-The *norm* keyword affects how averaging is done for the per-chunk
-values that are output every *Nfreq* timesteps.
-
-It the *norm* setting is *all*, which is the default, a chunk value is
-summed over all atoms in all *Nrepeat* samples, as is the count of
-atoms in the chunk. The averaged output value for the chunk on the
-*Nfreq* timesteps is Total-sum / Total-count. In other words it is an
-average over atoms across the entire *Nfreq* timescale.
-
-If the *norm* setting is *sample*, the chunk value is summed over atoms
-for each sample, as is the count, and an "average sample value" is
-computed for each sample, i.e. Sample-sum / Sample-count. The output
-value for the chunk on the *Nfreq* timesteps is the average of the
-*Nrepeat* "average sample values", i.e. the sum of *Nrepeat* "average
-sample values" divided by *Nrepeat*. In other words it is an average
-of an average.
-
-If the *norm* setting is *none*, a similar computation as for the
-*sample* seting is done, except the individual "average sample values"
-are "summed sample values". A summed sample value is simply the chunk
-value summed over atoms in the sample, without dividing by the number
-of atoms in the sample. The output value for the chunk on the
-*Nfreq* timesteps is the average of the *Nrepeat* "summed sample
-values", i.e. the sum of *Nrepeat* "summed sample values" divided by
-*Nrepeat*.
-
-The *ave* keyword determines how the per-chunk values produced every
-*Nfreq* steps are averaged with values produced on previous steps that
-were multiples of *Nfreq*, before they are accessed by another output
-command or written to a file.
-
-If the *ave* setting is *one*, which is the default, then the chunk
-values produced on timesteps that are multiples of *Nfreq* are
-independent of each other; they are output as-is without further
-averaging.
-
-If the *ave* setting is *running*, then the chunk values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged in a
-cumulative sense before being output. Each output chunk value is thus
-the average of the chunk value produced on that timestep with all
-preceding values for the same chunk. This running average begins when
-the fix is defined; it can only be restarted by deleting the fix via
-the :doc:`unfix <unfix>` command, or re-defining the fix by
-re-specifying it.
-
-If the *ave* setting is *window*, then the chunk values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged within
-a moving "window" of time, so that the last M values for the same
-chunk are used to produce the output. E.g. if M = 3 and Nfreq = 1000,
-then the output on step 10000 will be the average of the individual
-chunk values on steps 8000,9000,10000. Outputs on early steps will
-average over less than M values if they are not available.
-
-The *bias* keyword specifies the ID of a temperature compute that
-removes a "bias" velocity from each atom, specified as *bias-ID*. It
-is only used when the *temp* value is calculated, to compute the
-thermal temperature of each chunk after the translational kinetic
-energy components have been altered in a prescribed way, e.g. to
-remove a flow velocity profile. See the doc pages for individual
-computes that calculate a temperature to see which ones implement a
-bias.
-
-The *adof* and *cdof* keywords define the values used in the degree of
-freedom (DOF) formula described above for for temperature calculation
-for each chunk. They are only used when the *temp* value is
-calculated. They can be used to calculate a more appropriate
-temperature for some kinds of chunks. Here are 3 examples:
-
-If spatially binned chunks contain some number of water molecules and
-:doc:`fix shake <fix_shake>` is used to make each molecule rigid, then
-you could calculate a temperature with 6 degrees of freedom (DOF) (3
-translational, 3 rotational) per molecule by setting *adof* to 2.0.
-
-If :doc:`compute temp/partial <compute_temp_partial>` is used with the
-*bias* keyword to only allow the x component of velocity to contribute
-to the temperature, then *adof* = 1.0 would be appropriate.
-
-If each chunk consists of a large molecule, with some number of its
-bonds constrained by :doc:`fix shake <fix_shake>` or the entire molecule
-by :doc:`fix rigid/small <fix_rigid>`, *adof* = 0.0 and *cdof* could be
-set to the remaining degrees of freedom for the entire molecule
-(entire chunk in this case), e.g. 6 for 3d, or 3 for 2d, for a rigid
-molecule.
-
-The *file* keyword allows a filename to be specified. Every *Nfreq*
-timesteps, a section of chunk info will be written to a text file in
-the following format. A line with the timestep and number of chunks
-is written. Then one line per chunk is written, containing the chunk
-ID (1-Nchunk), an optional original ID value, optional coordinate
-values for chunks that represent spatial bins, the number of atoms in
-the chunk, and one or more calculated values. More explanation of the
-optional values is given below. The number of values in each line
-corresponds to the number of values specified in the fix ave/chunk
-command. The number of atoms and the value(s) are summed or average
-quantities, as explained above.
-
-The *overwrite* keyword will continuously overwrite the output file
-with the latest output, so that it only contains one timestep worth of
-output. This option can only be used with the *ave running* setting.
-
-The *format* keyword sets the numeric format of each value when it is
-printed to a file via the *file* keyword. Note that all values are
-floating point quantities. The default format is %g. You can specify
-a higher precision if desired, e.g. %20.16g.
-
-The *title1* and *title2* and *title3* keywords allow specification of
-the strings that will be printed as the first 3 lines of the output
-file, assuming the *file* keyword was used. LAMMPS uses default
-values for each of these, so they do not need to be specified.
-
-By default, these header lines are as follows:
-
-.. parsed-literal::
-
- # Chunk-averaged data for fix ID and group name
- # Timestep Number-of-chunks
- # Chunk (OrigID) (Coord1) (Coord2) (Coord3) Ncount value1 value2 ...
-
-In the first line, ID and name are replaced with the fix-ID and group
-name. The second line describes the two values that are printed at
-the first of each section of output. In the third line the values are
-replaced with the appropriate value names, e.g. fx or c_myCompute**2**.
-
-The words in parenthesis only appear with corresponding columns if the
-chunk style specified for the :doc:`compute chunk/atom <compute_chunk_atom>` command supports them. The OrigID
-column is only used if the *compress* keyword was set to *yes* for the
-:doc:`compute chunk/atom <compute_chunk_atom>` command. This means that
-the original chunk IDs (e.g. molecule IDs) will have been compressed
-to remove chunk IDs with no atoms assigned to them. Thus a compresed
-chunk ID of 3 may correspond to an original chunk ID or molecule ID of
-415. The OrigID column will list 415 for the 3rd chunk.
-
-The CoordN columns only appear if a *binning* style was used in the
-:doc:`compute chunk/atom <compute_chunk_atom>` command. For *bin/1d*,
-*bin/2d*, and *bin/3d* styles the column values are the center point
-of the bin in the corresponding dimension. Just Coord1 is used for
-*bin/1d*, Coord2 is added for *bin/2d*, Coord3 is added for *bin/3d*.
-For *bin/sphere*, just Coord1 is used, and it is the radial
-coordinate. For *bin/cylinder*, Coord1 and Coord2 are used. Coord1
-is the radial coordinate (away from the cylinder axis), and coord2 is
-the coordinate along the cylinder axis.
-
-Note that if the value of the *units* keyword used in the :doc:`compute chunk/atom command <compute_chunk_atom>` is *box* or *lattice*, the
-coordinate values will be in distance :doc:`units <units>`. If the
-value of the *units* keyword is *reduced*, the coordinate values will
-be in unitless reduced units (0-1). This is not true for the Coord1 value
-of style *bin/sphere* or *bin/cylinder* which both represent radial
-dimensions. Those values are always in distance :doc:`units <units>`.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global array of values which can be accessed by
-various :ref:`output commands <howto_15>`. The values can
-only be accessed on timesteps that are multiples of *Nfreq* since that
-is when averaging is performed. The global array has # of rows =
-the number of chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom <compute_chunk_atom>` command. The # of columns =
-M+1+Nvalues, where M = 1 to 4, depending on whether the optional
-columns for OrigID and CoordN are used, as explained above.
-Following the optional columns, the next column contains the count of
-atoms in the chunk, and the remaining columns are the Nvalue
-quantities. When the array is accessed with a row I that exceeds the
-current number of chunks, than a 0.0 is returned by the fix instead of
-an error, since the number of chunks can vary as a simulation runs
-depending on how that value is computed by the compute chunk/atom
-command.
-
-The array values calculated by this fix are treated as "intensive",
-since they are typically already normalized by the count of atoms in
-each chunk.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/histo <fix_ave_histo>`, :doc:`fix ave/time <fix_ave_time>`,
-:doc:`variable <variable>`, :doc:`fix ave/correlate <fix_ave_correlate>`
-
-Default
-"""""""
-
-The option defaults are norm = all, ave = one, bias = none, no file output, and
-title 1,2,3 = strings as described above.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_correlate.txt b/doc/_sources/fix_ave_correlate.txt
deleted file mode 100644
index 08cc696e7..000000000
--- a/doc/_sources/fix_ave_correlate.txt
+++ /dev/null
@@ -1,354 +0,0 @@
-.. index:: fix ave/correlate
-
-fix ave/correlate command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ave/correlate Nevery Nrepeat Nfreq value1 value2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ave/correlate = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of correlation time windows to accumulate
-* Nfreq = calculate time window averages every this many timesteps
-* one or more input values can be listed
-* value = c_ID, c_ID[N], f_ID, f_ID[N], v_name
-.. parsed-literal::
-
- c_ID = global scalar calculated by a compute with ID
- c_ID[I] = Ith component of global vector calculated by a compute with ID
- f_ID = global scalar calculated by a fix with ID
- f_ID[I] = Ith component of global vector calculated by a fix with ID
- v_name = global value calculated by an equal-style variable with name
- v_name[I] = Ith component of a vector-style variable with name
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *type* or *ave* or *start* or *prefactor* or *file* or *overwrite* or *title1* or *title2* or *title3*
-.. parsed-literal::
-
- *type* arg = *auto* or *upper* or *lower* or *auto/upper* or *auto/lower* or *full*
- auto = correlate each value with itself
- upper = correlate each value with each succeeding value
- lower = correlate each value with each preceding value
- auto/upper = auto + upper
- auto/lower = auto + lower
- full = correlate each value with every other value, including itself = auto + upper + lower
- *ave* args = *one* or *running*
- one = zero the correlation accumulation every Nfreq steps
- running = accumulate correlations continuously
- *start* args = Nstart
- Nstart = start accumulating correlations on this timestep
- *prefactor* args = value
- value = prefactor to scale all the correlation data by
- *file* arg = filename
- filename = name of file to output correlation data to
- *overwrite* arg = none = overwrite output file with only latest output
- *title1* arg = string
- string = text to print as 1st line of output file
- *title2* arg = string
- string = text to print as 2nd line of output file
- *title3* arg = string
- string = text to print as 3rd line of output file
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/correlate 5 100 1000 c_myTemp file temp.correlate
- fix 1 all ave/correlate 1 50 10000 &
- c_thermo_press[1] c_thermo_press[2] c_thermo_press[3] &
- type upper ave running title1 "My correlation data"
-
-Description
-"""""""""""
-
-Use one or more global scalar values as inputs every few timesteps,
-calculate time correlations bewteen them at varying time intervals,
-and average the correlation data over longer timescales. The
-resulting correlation values can be time integrated by
-:doc:`variables <variable>` or used by other :ref:`output commands <howto_15>` such as :doc:`thermo_style custom <thermo_style>`, and can also be written to a file. See the
-:doc:`fix ave/correlate/long <fix_ave_correlate_long>` command for an
-alternate method for computing correlation functions efficiently over
-very long time windows.
-
-The group specified with this command is ignored. However, note that
-specified values may represent calculations performed by computes and
-fixes which store their own "group" definitions.
-
-Each listed value can be the result of a :doc:`compute <compute>` or
-:doc:`fix <fix>` or the evaluation of an equal-style or vector-style
-:doc:`variable <variable>`. In each case, the compute, fix, or variable
-must produce a global quantity, not a per-atom or local quantity. If
-you wish to spatial- or time-average or histogram per-atom quantities
-from a compute, fix, or variable, then see the :doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`fix ave/atom <fix_ave_atom>`,
-or :doc:`fix ave/histo <fix_ave_histo>` commands. If you wish to
-convert a per-atom quantity into a single global value, see the
-:doc:`compute reduce <compute_reduce>` command.
-
-:doc:`Computes <compute>` that produce global quantities are those which
-do not have the word *atom* in their style name. Only a few
-:doc:`fixes <fix>` produce global quantities. See the doc pages for
-individual fixes for info on which ones produce such values.
-:doc:`Variables <variable>` of style *equal* and *vector* are the only
-ones that can be used with this fix. Variables of style *atom* cannot
-be used, since they produce per-atom values.
-
-The input values must either be all scalars. What kinds of
-correlations between input values are calculated is determined by the
-*type* keyword as discussed below.
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be used to calculate correlation data.
-The input values are sampled every *Nevery* timesteps. The
-correlation data for the preceding samples is computed on timesteps
-that are a multiple of *Nfreq*. Consider a set of samples from some
-initial time up to an output timestep. The initial time could be the
-beginning of the simulation or the last output time; see the *ave*
-keyword for options. For the set of samples, the correlation value
-Cij is calculated as:
-
-.. parsed-literal::
-
- Cij(delta) = ave(Vi(t)*Vj(t+delta))
-
-which is the correlation value between input values Vi and Vj,
-separated by time delta. Note that the second value Vj in the pair is
-always the one sampled at the later time. The ave() represents an
-average over every pair of samples in the set that are separated by
-time delta. The maximum delta used is of size (*Nrepeat*-1)**Nevery*.
-Thus the correlation between a pair of input values yields *Nrepeat*
-correlation datums:
-
-.. parsed-literal::
-
- Cij(0), Cij(Nevery), Cij(2*Nevery), ..., Cij((Nrepeat-1)*Nevery)
-
-For example, if Nevery=5, Nrepeat=6, and Nfreq=100, then values on
-timesteps 0,5,10,15,...,100 will be used to compute the final averages
-on timestep 100. Six averages will be computed: Cij(0), Cij(5),
-Cij(10), Cij(15), Cij(20), and Cij(25). Cij(10) on timestep 100 will
-be the average of 19 samples, namely Vi(0)*Vj(10), Vi(5)*Vj(15),
-Vi(10)*V j20), Vi(15)*Vj(25), ..., Vi(85)*Vj(95), Vi(90)*Vj(100).
-
-*Nfreq* must be a multiple of *Nevery*; *Nevery* and *Nrepeat* must be
-non-zero. Also, if the *ave* keyword is set to *one* which is the
-default, then *Nfreq* >= (*Nrepeat*-1)**Nevery* is required.
-
-
-----------
-
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If no bracketed term is
-appended, the global scalar calculated by the compute is used. If a
-bracketed term is appended, the Ith element of the global vector
-calculated by the compute is used.
-
-Note that there is a :doc:`compute reduce <compute_reduce>` command
-which can sum per-atom quantities into a global scalar or vector which
-can thus be accessed by fix ave/correlate. Or it can be a compute
-defined not in your input script, but by :doc:`thermodynamic output <thermo_style>` or other fixes such as :doc:`fix nvt <fix_nh>`
-or :doc:`fix temp/rescale <fix_temp_rescale>`. See the doc pages for
-these commands which give the IDs of these computes. Users can also
-write code for their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If no bracketed term is
-appended, the global scalar calculated by the fix is used. If a
-bracketed term is appended, the Ith element of the global vector
-calculated by the fix is used.
-
-Note that some fixes only produce their values on certain timesteps,
-which must be compatible with *Nevery*, else an error will result.
-Users can also write code for their own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. Only equal-style or
-vector-style variables can be referenced; the latter requires a
-bracketed term to specify the Ith element of the vector calculated by
-the variable. See the :doc:`variable <variable>` command for details.
-Note that variables of style *equal* or *vector* define a formula
-which can reference individual atom properties or thermodynamic
-keywords, or they can invoke other computes, fixes, or variables when
-they are evaluated, so this is a very general means of specifying
-quantities to time correlate.
-
-
-----------
-
-
-Additional optional keywords also affect the operation of this fix.
-
-The *type* keyword determines which pairs of input values are
-correlated with each other. For N input values Vi, for i = 1 to N,
-let the number of pairs = Npair. Note that the second value in the
-pair Vi(t)*Vj(t+delta) is always the one sampled at the later time.
-
-* If *type* is set to *auto* then each input value is correlated with
- itself. I.e. Cii = Vi*Vi, for i = 1 to N, so Npair = N.
-* If *type* is set
- to *upper* then each input value is correlated with every succeeding
- value. I.e. Cij = Vi*Vj, for i < j, so Npair = N*(N-1)/2.
-* If *type* is set
- to *lower* then each input value is correlated with every preceeding
- value. I.e. Cij = Vi*Vj, for i > j, so Npair = N*(N-1)/2.
-* If *type* is set to *auto/upper* then each input value is correlated
- with itself and every succeeding value. I.e. Cij = Vi*Vj, for i >= j,
- so Npair = N*(N+1)/2.
-* If *type* is set to *auto/lower* then each input value is correlated
- with itself and every preceding value. I.e. Cij = Vi*Vj, for i <= j,
- so Npair = N*(N+1)/2.
-* If *type* is set to *full* then each input value is correlated with
- itself and every other value. I.e. Cij = Vi*Vj, for i,j = 1,N so
- Npair = N^2.
-The *ave* keyword determines what happens to the accumulation of
-correlation samples every *Nfreq* timesteps. If the *ave* setting is
-*one*, then the accumulation is restarted or zeroed every *Nfreq*
-timesteps. Thus the outputs on successive *Nfreq* timesteps are
-essentially independent of each other. The exception is that the
-Cij(0) = Vi(T)*Vj(T) value at a timestep T, where T is a multiple of
-*Nfreq*, contributes to the correlation output both at time T and at
-time T+Nfreq.
-
-If the *ave* setting is *running*, then the accumulation is never
-zeroed. Thus the output of correlation data at any timestep is the
-average over samples accumulated every *Nevery* steps since the fix
-was defined. it can only be restarted by deleting the fix via the
-:doc:`unfix <unfix>` command, or by re-defining the fix by re-specifying
-it.
-
-The *start* keyword specifies what timestep the accumulation of
-correlation samples will begin on. The default is step 0. Setting it
-to a larger value can avoid adding non-equilibrated data to the
-correlation averages.
-
-The *prefactor* keyword specifies a constant which will be used as a
-multiplier on the correlation data after it is averaged. It is
-effectively a scale factor on Vi*Vj, which can be used to account for
-the size of the time window or other unit conversions.
-
-The *file* keyword allows a filename to be specified. Every *Nfreq*
-steps, an array of correlation data is written to the file. The
-number of rows is *Nrepeat*, as described above. The number of
-columns is the Npair+2, also as described above. Thus the file ends
-up to be a series of these array sections.
-
-The *overwrite* keyword will continuously overwrite the output file
-with the latest output, so that it only contains one timestep worth of
-output. This option can only be used with the *ave running* setting.
-
-The *title1* and *title2* and *title3* keywords allow specification of
-the strings that will be printed as the first 3 lines of the output
-file, assuming the *file* keyword was used. LAMMPS uses default
-values for each of these, so they do not need to be specified.
-
-By default, these header lines are as follows:
-
-.. parsed-literal::
-
- # Time-correlated data for fix ID
- # TimeStep Number-of-time-windows
- # Index TimeDelta Ncount valueI*valueJ valueI*valueJ ...
-
-In the first line, ID is replaced with the fix-ID. The second line
-describes the two values that are printed at the first of each section
-of output. In the third line the value pairs are replaced with the
-appropriate fields from the fix ave/correlate command.
-
-
-----------
-
-
-Let Sij = a set of time correlation data for input values I and J,
-namely the *Nrepeat* values:
-
-.. parsed-literal::
-
- Sij = Cij(0), Cij(Nevery), Cij(2*Nevery), ..., Cij(*Nrepeat-1)*Nevery)
-
-As explained below, these datums are output as one column of a global
-array, which is effectively the correlation matrix.
-
-The *trap* function defined for :doc:`equal-style variables <variable>`
-can be used to perform a time integration of this vector of datums,
-using a trapezoidal rule. This is useful for calculating various
-quantities which can be derived from time correlation data. If a
-normalization factor is needed for the time integration, it can be
-included in the variable formula or via the *prefactor* keyword.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global array of values which can be accessed by
-various :ref:`output commands <howto_15>`. The values can
-only be accessed on timesteps that are multiples of *Nfreq* since that
-is when averaging is performed. The global array has # of rows =
-*Nrepeat* and # of columns = Npair+2. The first column has the time
-delta (in timesteps) between the pairs of input values used to
-calculate the correlation, as described above. The 2nd column has the
-number of samples contributing to the correlation average, as
-described above. The remaining Npair columns are for I,J pairs of the
-N input values, as determined by the *type* keyword, as described
-above.
-
-* For *type* = *auto*, the Npair = N columns are ordered: C11, C22, ...,
- CNN.
-* For *type* = *upper*, the Npair = N*(N-1)/2 columns are ordered: C12,
- C13, ..., C1N, C23, ..., C2N, C34, ..., CN-1N.
-* For *type* = *lower*, the Npair = N*(N-1)/2 columns are ordered: C21,
- C31, C32, C41, C42, C43, ..., CN1, CN2, ..., CNN-1.
-* For *type* = *auto/upper*, the Npair = N*(N+1)/2 columns are ordered:
- C11, C12, C13, ..., C1N, C22, C23, ..., C2N, C33, C34, ..., CN-1N,
- CNN.
-* For *type* = *auto/lower*, the Npair = N*(N+1)/2 columns are ordered:
- C11, C21, C22, C31, C32, C33, C41, ..., C44, CN1, CN2, ..., CNN-1,
- CNN.
-* For *type* = *full*, the Npair = N^2 columns are ordered: C11, C12,
- ..., C1N, C21, C22, ..., C2N, C31, ..., C3N, ..., CN1, ..., CNN-1,
- CNN.
-The array values calculated by this fix are treated as intensive. If
-you need to divide them by the number of atoms, you must do this in a
-later processing step, e.g. when using them in a
-:doc:`variable <variable>`.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/correlate/long <fix_ave_correlate_long>`,
-:doc:`compute <compute>`, :doc:`fix ave/time <fix_ave_time>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/spatial <fix_ave_spatial>`,
-:doc:`fix ave/histo <fix_ave_histo>`, :doc:`variable <variable>`
-
-**Default:** none
-
-The option defaults are ave = one, type = auto, start = 0, no file
-output, title 1,2,3 = strings as described above, and prefactor = 1.0.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_correlate_long.txt b/doc/_sources/fix_ave_correlate_long.txt
deleted file mode 100644
index ae5eb2986..000000000
--- a/doc/_sources/fix_ave_correlate_long.txt
+++ /dev/null
@@ -1,159 +0,0 @@
-.. index:: fix ave/correlate/long
-
-fix ave/correlate/long command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ave/correlate/long Nevery Nfreq value1 value2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ave/correlate/long = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nfreq = save state of the time correlation functions every this many timesteps
-* one or more input values can be listed
-* value = c_ID, c_ID[N], f_ID, f_ID[N], v_name
-.. parsed-literal::
-
- c_ID = global scalar calculated by a compute with ID
- c_ID[I] = Ith component of global vector calculated by a compute with ID
- f_ID = global scalar calculated by a fix with ID
- f_ID[I] = Ith component of global vector calculated by a fix with ID
- v_name = global value calculated by an equal-style variable with name
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *type* or *start* or *file* or *overwrite* or *title1* or *title2* or *ncorr* or *p* or *m*
-.. parsed-literal::
-
- *type* arg = *auto* or *upper* or *lower* or *auto/upper* or *auto/lower* or *full*
- auto = correlate each value with itself
- upper = correlate each value with each succeeding value
- lower = correlate each value with each preceding value
- auto/upper = auto + upper
- auto/lower = auto + lower
- full = correlate each value with every other value, including itself = auto + upper + lower
- *start* args = Nstart
- Nstart = start accumulating correlations on this timestep
- *file* arg = filename
- filename = name of file to output correlation data to
- *overwrite* arg = none = overwrite output file with only latest output
- *title1* arg = string
- string = text to print as 1st line of output file
- *title2* arg = string
- string = text to print as 2nd line of output file
- *ncorr* arg = Ncorrelators
- Ncorrelators = number of correlators to store
- *nlen* args = Nlen
- Nlen = length of each correlator
- *ncount* args = Ncount
- Ncount = number of values over which succesive correlators are averaged
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/correlate/long 5 1000 c_myTemp file temp.correlate
- fix 1 all ave/correlate/long 1 10000 &
- c_thermo_press[1] c_thermo_press[2] c_thermo_press[3] &
- type upper title1 "My correlation data" nlen 15 ncount 3
-
-Description
-"""""""""""
-
-This fix is similar in spirit and syntax to the :doc:`fix ave/correlate <fix_ave_correlate>`. However, this fix allows the
-efficient calculation of time correlation functions on the fly over
-extremely long time windows without too much CPU overhead, using a
-multiple-tau method :ref:`(Ramirez) <Ramirez>` that decreases the resolution
-of the stored correlation function with time.
-
-The group specified with this command is ignored. However, note that
-specified values may represent calculations performed by computes and
-fixes which store their own "group" definitions.
-
-Each listed value can be the result of a compute or fix or the
-evaluation of an equal-style variable. See the :doc:`fix ave/correlate <fix_ave_correlate>` doc page for details.
-
-The *Nevery* and *Nfreq* arguments specify on what timesteps the input
-values will be used to calculate correlation data, and the frequency
-with which the time correlation functions will be output to a file.
-Note that there is no *Nrepeat* argument, unlike the :doc:`fix ave/correlate <fix_ave_correlate>` command.
-
-The optional keywords *ncorr*, *nlen*, and *ncount* are unique to this
-command and determine the number of correlation points calculated and
-the memory and CPU overhead used by this calculation. *Nlen* and
-*ncount* determine the amount of averaging done at longer correlation
-times. The default values *nlen=16*, *ncount=2* ensure that the
-systematic error of the multiple-tau correlator is always below the
-level of the statistical error of a typical simulation (which depends
-on the ensemble size and the simulation length).
-
-The maximum correlation time (in time steps) that can be reached is
-given by the formula (nlen-1) * ncount^(ncorr-1). Longer correlation
-times are discarded and not calculated. With the default values of
-the parameters (ncorr=20, nlen=16 and ncount=2), this corresponds to
-7864320 time steps. If longer correlation times are needed, the value
-of ncorr should be increased. Using nlen=16 and ncount=2, with
-ncorr=30, the maximum number of steps that can be correlated is
-80530636808. If ncorr=40, correlation times in excess of 8e12 time
-steps can be calculated.
-
-The total memory needed for each correlation pair is roughly
-4*ncorr*nlen*8 bytes. With the default values of the parameters, this
-corresponds to about 10 KB.
-
-For the meaning of the additional optional keywords, see the :doc:`fix ave/correlate <fix_ave_correlate>` doc page.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Since this fix in intended for the calculation of time correlation
-functions over very long MD simulations, the information about this
-fix is written automatically to binary restart files, so that the time
-correlation calculation can continue in subsequent simulations. None
-of the fix_modify options are relevant to this fix.
-
-No parameter of this fix can be used with the start/stop keywords of
-the run command. This fix is not invoked during energy minimization.
-
-Restrictions
-""""""""""""
-
-
-This compute is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/correlate <fix_ave_correlate>`
-
-**Default:** none
-
-The option defaults for keywords that are also keywords for the :doc:`fix ave/correlate <fix_ave_correlate>` command are as follows: type =
-auto, start = 0, no file output, title 1,2 = strings as described on
-the :doc:`fix ave/correlate <fix_ave_correlate>` doc page.
-
-The option defaults for keywords unique to this command are as
-follows: ncorr=20, nlen=16, ncount=2.
-
-
-----------
-
-
-.. _Ramirez:
-
-
-
-**(Ramirez)** J. Ramirez, S.K. Sukumaran, B. Vorselaars and
-A.E. Likhtman, J. Chem. Phys. 133, 154103 (2010).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_histo.txt b/doc/_sources/fix_ave_histo.txt
deleted file mode 100644
index 40c93e21d..000000000
--- a/doc/_sources/fix_ave_histo.txt
+++ /dev/null
@@ -1,360 +0,0 @@
-.. index:: fix ave/histo
-
-fix ave/histo command
-=====================
-
-fix ave/histo/weight command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style Nevery Nrepeat Nfreq lo hi Nbin value1 value2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style = *ave/histo* or *ave/histo/weight* = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of times to use input values for calculating histogram
-* Nfreq = calculate histogram every this many timesteps
-* lo,hi = lo/hi bounds within which to histogram
-* Nbin = # of histogram bins
-* one or more input values can be listed
-* value = x, y, z, vx, vy, vz, fx, fy, fz, c_ID, c_ID[N], f_ID, f_ID[N], v_name
-.. parsed-literal::
-
- x,y,z,vx,vy,vz,fx,fy,fz = atom attribute (position, velocity, force component)
- c_ID = scalar or vector calculated by a compute with ID
- c_ID[I] = Ith component of vector or Ith column of array calculated by a compute with ID
- f_ID = scalar or vector calculated by a fix with ID
- f_ID[I] = Ith component of vector or Ith column of array calculated by a fix with ID
- v_name = value(s) calculated by an equal-style or vector-style or atom-style variable with name
- v_name[I] = value calculated by a vector-style variable with name
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *mode* or *file* or *ave* or *start* or *beyond* or *overwrite* or *title1* or *title2* or *title3*
-.. parsed-literal::
-
- *mode* arg = *scalar* or *vector*
- scalar = all input values are scalars
- vector = all input values are vectors
- *file* arg = filename
- filename = name of file to output histogram(s) to
- *ave* args = *one* or *running* or *window*
- one = output a new average value every Nfreq steps
- running = output cumulative average of all previous Nfreq steps
- window M = output average of M most recent Nfreq steps
- *start* args = Nstart
- Nstart = start averaging on this timestep
- *beyond* arg = *ignore* or *end* or *extra*
- ignore = ignore values outside histogram lo/hi bounds
- end = count values outside histogram lo/hi bounds in end bins
- extra = create 2 extra bins for value outside histogram lo/hi bounds
- *overwrite* arg = none = overwrite output file with only latest output
- *title1* arg = string
- string = text to print as 1st line of output file
- *title2* arg = string
- string = text to print as 2nd line of output file
- *title3* arg = string
- string = text to print as 3rd line of output file, only for vector mode
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/histo 100 5 1000 0.5 1.5 50 c_myTemp file temp.histo ave running
- fix 1 all ave/histo 100 5 1000 -5 5 100 c_thermo_press[2] c_thermo_press[3] title1 "My output values"
- fix 1 all ave/histo 1 100 1000 -2.0 2.0 18 vx vy vz mode vector ave running beyond extra
- fix 1 all ave/histo/weight 1 1 1 10 100 2000 c_XRD[1] c_XRD[2]
-
-Description
-"""""""""""
-
-Use one or more values as inputs every few timesteps, histogram them,
-and average the histogram over longer timescales. The resulting
-histogram can be used by other :ref:`output commands <howto_15>`, and can also be written to a
-file. The fix ave/histo/weight command has identical syntax to fix
-ave/histo, except that exactly two values must be specified. See
-details below.
-
-The group specified with this command is ignored for global and local
-input values. For per-atom input values, only atoms in the group
-contribute to the histogram. Note that regardless of the specified
-group, specified values may represent calculations performed by
-computes and fixes which store their own "group" definition.
-
-A histogram is simply a count of the number of values that fall within
-a histogram bin. *Nbins* are defined, with even spacing between *lo*
-and *hi*. Values that fall outside the lo/hi bounds can be treated in
-different ways; see the discussion of the *beyond* keyword below.
-
-Each input value can be an atom attribute (position, velocity, force
-component) or can be the result of a :doc:`compute <compute>` or
-:doc:`fix <fix>` or the evaluation of an equal-style or vector-style or
-atom-style :doc:`variable <variable>`. The set of input values can be
-either all global, all per-atom, or all local quantities. Inputs of
-different kinds (e.g. global and per-atom) cannot be mixed. Atom
-attributes are per-atom vector values. See the doc page for
-individual "compute" and "fix" commands to see what kinds of
-quantities they generate.
-
-The input values must either be all scalars or all vectors (or
-arrays), depending on the setting of the *mode* keyword.
-
-Note that the output of this command is a single histogram for all
-input values combined together, not one histogram per input value.
-See below for details on the format of the output of this fix.
-
-If *mode* = vector, then the input values may either be vectors or
-arrays. If a global array is listed, then it is the same as if the
-individual columns of the array had been listed one by one.
-E.g. these 2 fix ave/histo commands are equivalent, since the :doc:`compute com/chunk <compute_com_chunk>` command creates a global array
-with 3 columns:
-
-.. parsed-literal::
-
- compute myCOM all com/chunk
- fix 1 all ave/histo 100 1 100 c_myCOM file tmp1.com mode vector
- fix 2 all ave/histo 100 1 100 c_myCOM[1] c_myCOM[2] c_myCOM[3] file tmp2.com mode vector
-
-If the fix ave/histo/weight command is used, exactly two values must
-be specified. If the values are vectors, they must be the same
-length. The first value (a scalar or vector) is what is histogrammed
-into bins, in the same manner the fix ave/histo command operates. The
-second value (a scalar or vector) is used as a "weight". This means
-that instead of each value tallying a "1" to its bin, the
-corresponding weight is tallied. E.g. the Nth entry in the first
-vector tallies the Nth entry (weight) in the second vector.
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be used in order to contribute to the
-histogram. The final histogram is generated on timesteps that are
-multiple of *Nfreq*. It is averaged over *Nrepeat* histograms,
-computed in the preceding portion of the simulation every *Nevery*
-timesteps. *Nfreq* must be a multiple of *Nevery* and *Nevery* must
-be non-zero even if *Nrepeat* is 1. Also, the timesteps
-contributing to the histogram value cannot overlap,
-i.e. Nrepeat*Nevery can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then input values
-on timesteps 90,92,94,96,98,100 will be used to compute the final
-histogram on timestep 100. Similarly for timesteps
-190,192,194,196,198,200 on timestep 200, etc. If Nrepeat=1 and Nfreq
-= 100, then no time averaging of the histogram is done; a histogram is
-simply generated on timesteps 100,200,etc.
-
-
-----------
-
-
-The atom attribute values (x,y,z,vx,vy,vz,fx,fy,fz) are
-self-explanatory. Note that other atom attributes can be used as
-inputs to this fix by using the :doc:`compute property/atom <compute_property_atom>` command and then specifying
-an input value from that compute.
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If *mode* = scalar, then if
-no bracketed term is appended, the global scalar calculated by the
-compute is used. If a bracketed term is appended, the Ith element of
-the global vector calculated by the compute is used. If *mode* =
-vector, then if no bracketed term is appended, the global or per-atom
-or local vector calculated by the compute is used. Or if the compute
-calculates an array, all of the columns of the array are used as if
-they had been specified as individual vectors (see description above).
-If a bracketed term is appended, the Ith column of the global or
-per-atom or local array calculated by the compute is used.
-
-Note that there is a :doc:`compute reduce <compute_reduce>` command
-which can sum per-atom quantities into a global scalar or vector which
-can thus be accessed by fix ave/histo. Or it can be a compute defined
-not in your input script, but by :doc:`thermodynamic output <thermo_style>` or other fixes such as :doc:`fix nvt <fix_nh>` or :doc:`fix temp/rescale <fix_temp_rescale>`. See
-the doc pages for these commands which give the IDs of these computes.
-Users can also write code for their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If *mode* = scalar, then if
-no bracketed term is appended, the global scalar calculated by the fix
-is used. If a bracketed term is appended, the Ith element of the
-global vector calculated by the fix is used. If *mode* = vector, then
-if no bracketed term is appended, the global or per-atom or local
-vector calculated by the fix is used. Or if the fix calculates an
-array, all of the columns of the array are used as if they had been
-specified as individual vectors (see description above). If a
-bracketed term is appended, the Ith column of the global or per-atom
-or local array calculated by the fix is used.
-
-Note that some fixes only produce their values on certain timesteps,
-which must be compatible with *Nevery*, else an error will result.
-Users can also write code for their own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. If *mode* = scalar, then
-only equal-style or vector-style variables can be used, which both
-produce global values. In this mode, a vector-style variable requires
-a bracketed term to specify the Ith element of the vector calculated
-by the variable. If *mode* = vector, then only vector-style or
-atom-style variables can be used, which produce a global or per-atom
-vector respectively. The vector-style variable must be used without a
-bracketed term. See the :doc:`variable <variable>` command for details.
-
-Note that variables of style *equal*, *vector*, and *atom* define a
-formula which can reference individual atom properties or
-thermodynamic keywords, or they can invoke other computes, fixes, or
-variables when they are evaluated, so this is a very general means of
-specifying quantities to histogram.
-
-
-----------
-
-
-Additional optional keywords also affect the operation of this fix.
-
-If the *mode* keyword is set to *scalar*, then all input values must
-be global scalars, or elements of global vectors. If the *mode*
-keyword is set to *vector*, then all input values must be global or
-per-atom or local vectors, or columns of global or per-atom or local
-arrays.
-
-The *beyond* keyword determines how input values that fall outside the
-*lo* to *hi* bounds are treated. Values such that *lo* <= value <=
-*hi* are assigned to one bin. Values on a bin boundary are assigned
-to the lower of the 2 bins. If *beyond* is set to *ignore* then
-values < *lo* and values > *hi* are ignored, i.e. they are not binned.
-If *beyond* is set to *end* then values < *lo* are counted in the
-first bin and values > *hi* are counted in the last bin. If *beyond*
-is set to *extend* then two extra bins are created, so that there are
-Nbins+2 total bins. Values < *lo* are counted in the first bin and
-values > *hi* are counted in the last bin (Nbins+1). Values between
-*lo* and *hi* (inclusive) are counted in bins 2 thru Nbins+1. The
-"coordinate" stored and printed for these two extra bins is *lo* and
-*hi*.
-
-The *ave* keyword determines how the histogram produced every *Nfreq*
-steps are averaged with histograms produced on previous steps that
-were multiples of *Nfreq*, before they are accessed by another output
-command or written to a file.
-
-If the *ave* setting is *one*, then the histograms produced on
-timesteps that are multiples of *Nfreq* are independent of each other;
-they are output as-is without further averaging.
-
-If the *ave* setting is *running*, then the histograms produced on
-timesteps that are multiples of *Nfreq* are summed and averaged in a
-cumulative sense before being output. Each bin value in the histogram
-is thus the average of the bin value produced on that timestep with
-all preceding values for the same bin. This running average begins
-when the fix is defined; it can only be restarted by deleting the fix
-via the :doc:`unfix <unfix>` command, or by re-defining the fix by
-re-specifying it.
-
-If the *ave* setting is *window*, then the histograms produced on
-timesteps that are multiples of *Nfreq* are summed within a moving
-"window" of time, so that the last M histograms are used to produce
-the output. E.g. if M = 3 and Nfreq = 1000, then the output on step
-10000 will be the combined histogram of the individual histograms on
-steps 8000,9000,10000. Outputs on early steps will be sums over less
-than M histograms if they are not available.
-
-The *start* keyword specifies what timestep histogramming will begin
-on. The default is step 0. Often input values can be 0.0 at time 0,
-so setting *start* to a larger value can avoid including a 0.0 in
-a running or windowed histogram.
-
-The *file* keyword allows a filename to be specified. Every *Nfreq*
-steps, one histogram is written to the file. This includes a leading
-line that contains the timestep, number of bins, the total count of
-values contributing to the histogram, the count of values that were
-not histogrammed (see the *beyond* keyword), the minimum value
-encountered, and the maximum value encountered. The min/max values
-include values that were not histogrammed. Following the leading
-line, one line per bin is written into the file. Each line contains
-the bin #, the coordinate for the center of the bin (between *lo* and
-*hi*), the count of values in the bin, and the normalized count. The
-normalized count is the bin count divided by the total count (not
-including values not histogrammed), so that the normalized values sum
-to 1.0 across all bins.
-
-The *overwrite* keyword will continuously overwrite the output file
-with the latest output, so that it only contains one timestep worth of
-output. This option can only be used with the *ave running* setting.
-
-The *title1* and *title2* and *title3* keywords allow specification of
-the strings that will be printed as the first 3 lines of the output
-file, assuming the *file* keyword was used. LAMMPS uses default
-values for each of these, so they do not need to be specified.
-
-By default, these header lines are as follows:
-
-.. parsed-literal::
-
- # Histogram for fix ID
- # TimeStep Number-of-bins Total-counts Missing-counts Min-value Max-value
- # Bin Coord Count Count/Total
-
-In the first line, ID is replaced with the fix-ID. The second line
-describes the six values that are printed at the first of each section
-of output. The third describes the 4 values printed for each bin in
-the histogram.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix produces a global vector and global array which can be
-accessed by various :ref:`output commands <howto_15>`.
-The values can only be accessed on timesteps that are multiples of
-*Nfreq* since that is when a histogram is generated. The global
-vector has 4 values:
-
-* 1 = total counts in the histogram
-* 2 = values that were not histogrammed (see *beyond* keyword)
-* 3 = min value of all input values, including ones not histogrammed
-* 4 = max value of all input values, including ones not histogrammed
-
-The global array has # of rows = Nbins and # of columns = 3. The
-first column has the bin coordinate, the 2nd column has the count of
-values in that histogram bin, and the 3rd column has the bin count
-divided by the total count (not including missing counts), so that the
-values in the 3rd column sum to 1.0.
-
-The vector and array values calculated by this fix are all treated as
-intensive. If this is not the case, e.g. due to histogramming
-per-atom input values, then you will need to account for that when
-interpreting the values produced by this fix.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`fix ave/time <fix_ave_time>`,
-:doc:`variable <variable>`, :doc:`fix ave/correlate <fix_ave_correlate>`,
-
-**Default:** none
-
-The option defaults are mode = scalar, ave = one, start = 0, no file
-output, beyond = ignore, and title 1,2,3 = strings as described above.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_spatial.txt b/doc/_sources/fix_ave_spatial.txt
deleted file mode 100644
index a88a61b4b..000000000
--- a/doc/_sources/fix_ave_spatial.txt
+++ /dev/null
@@ -1,447 +0,0 @@
-.. index:: fix ave/spatial
-
-fix ave/spatial command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ave/spatial Nevery Nrepeat Nfreq dim origin delta ... value1 value2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ave/spatial = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of times to use input values for calculating averages
-* Nfreq = calculate averages every this many timesteps
-* dim, origin, delta can be repeated 1, 2, or 3 times for 1d, 2d, or 3d bins
-.. parsed-literal::
-
- dim = *x* or *y* or *z*
- origin = *lower* or *center* or *upper* or coordinate value (distance units)
- delta = thickness of spatial bins in dim (distance units)
-
-* one or more input values can be listed
-* value = vx, vy, vz, fx, fy, fz, density/mass, density/number, c_ID, c_ID[I], f_ID, f_ID[I], v_name
-.. parsed-literal::
-
- vx,vy,vz,fx,fy,fz = atom attribute (velocity, force component)
- density/number, density/mass = number or mass density
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[I] = Ith column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[I] = Ith column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *region* or *bound* or *discard* or *norm* or *ave* or *units* or *file* or *overwrite* or *title1* or *title2* or *title3*
-.. parsed-literal::
-
- *region* arg = region-ID
- *bound* args = x/y/z lo hi
- x/y/z = *x* or *y* or *z* to bound bins in this dimension
- lo = *lower* or coordinate value (distance units)
- hi = *upper* or coordinate value (distance units)
- *discard* arg = *mixed* or *no* or *yes*
- mixed = discard atoms outside bins only if bin bounds are explicitly set
- no = always keep out-of-bounds atoms
- yes = always discard out-of-bounds atoms
- *norm* arg = *all* or *sample*
- region-ID = ID of region atoms must be in to contribute to spatial averaging
- *ave* args = *one* or *running* or *window M*
- one = output new average value every Nfreq steps
- running = output cumulative average of all previous Nfreq steps
- window M = output average of M most recent Nfreq steps
- *units* arg = *box* or *lattice* or *reduced*
- *file* arg = filename
- filename = file to write results to
- *overwrite* arg = none = overwrite output file with only latest output
- *title1* arg = string
- string = text to print as 1st line of output file
- *title2* arg = string
- string = text to print as 2nd line of output file
- *title3* arg = string
- string = text to print as 3rd line of output file
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/spatial 10000 1 10000 z lower 0.02 c_myCentro units reduced &
- title1 "My output values"
- fix 1 flow ave/spatial 100 10 1000 y 0.0 1.0 vx vz norm sample file vel.profile
- fix 1 flow ave/spatial 100 5 1000 z lower 1.0 y 0.0 2.5 density/mass ave running
- fix 1 flow ave/spatial 100 5 1000 z lower 1.0 y 0.0 2.5 density/mass bound y 5.0 20.0 discard yes ave running
-
-**NOTE:**
-
-The fix ave/spatial command has been replaced by the more flexible
-:doc:`fix ave/chunk <fix_ave_chunk>` and :doc:`compute chunk/atom <compute_chunk_atom>` commands. The fix ave/spatial
-command will be removed from LAMMPS sometime in the summer of 2015.
-
-Any fix ave/spatial command can be replaced by the two new commands.
-You simply need to split the fix ave/spatial arguments across the two
-new commands. For example, this command:
-
-.. parsed-literal::
-
- fix 1 flow ave/spatial 100 10 1000 y 0.0 1.0 vx vz norm sample file vel.profile
-
-could be replaced by:
-
-.. parsed-literal::
-
- compute cc1 flow chunk/atom bin/1d y 0.0 1.0
- fix 1 flow ave/chunk 100 10 1000 cc1 vx vz norm sample file vel.profile
-
-Description
-"""""""""""
-
-Use one or more per-atom vectors as inputs every few timesteps, bin
-their values spatially into 1d, 2d, or 3d bins based on current atom
-coordinates, and average the bin values over longer timescales. The
-resulting bin averages can be used by other :ref:`output commands <howto_15>` such as :doc:`thermo_style custom <thermo_style>`, and can also be written to a file.
-
-The group specified with the command means only atoms within the group
-contribute to bin averages. If the *region* keyword is used, the atom
-must be in both the specified group and the specified geometric
-:doc:`region <region>` in order to contribute to bin averages.
-
-Each listed value can be an atom attribute (position, velocity, force
-component), a mass or number density, or the result of a
-:doc:`compute <compute>` or :doc:`fix <fix>` or the evaluation of an
-atom-style :doc:`variable <variable>`. In the latter cases, the
-compute, fix, or variable must produce a per-atom quantity, not a
-global quantity. If you wish to time-average global quantities from a
-compute, fix, or variable, then see the :doc:`fix ave/time <fix_ave_time>` command.
-
-:doc:`Computes <compute>` that produce per-atom quantities are those
-which have the word *atom* in their style name. See the doc pages for
-individual :doc:`fixes <fix>` to determine which ones produce per-atom
-quantities. :doc:`Variables <variable>` of style *atom* are the only
-ones that can be used with this fix since all other styles of variable
-produce global quantities.
-
-The per-atom values of each input vector are binned and averaged
-independently of the per-atom values in other input vectors.
-
-The size and dimensionality of the bins (1d = layers or slabs, 2d =
-pencils, 3d = boxes) are determined by the *dim*, *origin*, and
-*delta* settings and how many times they are specified (1, 2, or 3).
-See details below.
-
-.. note::
-
- This fix works by creating an array of size Nbins by Nvalues on
- each processor. Nbins is the total number of bins; Nvalues is the
- number of input values specified. Each processor loops over its
- atoms, tallying its values to the appropriate bin. Then the entire
- array is summed across all processors. This means that using a large
- number of bins (easy to do for 2d or 3d bins) will incur an overhead
- in memory and computational cost (summing across processors), so be
- careful to use reasonable numbers of bins.
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be used to bin them and contribute to
-the average. The final averaged quantities are generated on timesteps
-that are a multiples of *Nfreq*. The average is over *Nrepeat*
-quantities, computed in the preceding portion of the simulation every
-*Nevery* timesteps. *Nfreq* must be a multiple of *Nevery* and
-*Nevery* must be non-zero even if *Nrepeat* is 1. Also, the timesteps
-contributing to the average value cannot overlap,
-i.e. Nrepeat*Nevery can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then values on
-timesteps 90,92,94,96,98,100 will be used to compute the final average
-on timestep 100. Similarly for timesteps 190,192,194,196,198,200 on
-timestep 200, etc. If Nrepeat=1 and Nfreq = 100, then no time
-averaging is done; values are simply generated on timesteps
-100,200,etc.
-
-
-----------
-
-
-Each per-atom property is also averaged over atoms in each bin. The
-way the averaging is one across the *Nrepeat* timesteps to produce
-output on the *Nfreq* timesteps, and across multiple *Nfreq* outputs,
-is determined by the *norm* and *av* keyword settings, as discussed
-below.
-
-Bins can be 1d layers or slabs, 2d pencils, or 3d boxes. This depends
-on how many times (1, 2, or 3) the *dim*, *origin*, and *delta*
-settings are specified in the fix ave/spatial command. For 2d or 3d
-bins, there is no restriction on specifying dim = x before dim = y, or
-dim = y before dim = z. Bins in a particular *dim* have a bin size in
-that dimension given by *delta*. Every Nfreq steps, when averaging is
-being performed and the per-atom property is calculated for the first
-time, the number of bins and the bin sizes and boundaries are
-computed. Thus if the simulation box changes size during a
-simulation, the number of bins and their boundaries may also change.
-In each dimension, bins are defined relative to a specified *origin*,
-which may be the lower/upper edge of the simulation box in that
-dimension, or its center point, or a specified coordinate value.
-Starting at the origin, sufficient bins are created in both directions
-to completely span the bin extent in that dimension. By default the
-bin extent is the entire simulation box.
-
-The *bound* keyword can be used one or more times to limit the extent
-of bin coverage in specified dimensions, i.e. to only bin a portion of
-the box. If the *lo* setting is *lower* or the *hi* setting is
-*upper*, the bin extent in that direction extends to the box boundary.
-If a numeric value is used for *lo* and/or *hi*, then the bin extent
-in the *lo* or *hi* direction extends only to that value, which is
-assumed to be inside (or at least near) the simulation box boundaries,
-though LAMMPS does not check for this.
-
-On each sampling timestep, each atom is mapped to the bin it currently
-belongs to, based on its current position. Note that the group-ID and
-region keyword can exclude specific atoms from this operation, as
-discussed above. Note that between reneighboring timesteps, atoms can
-move outside the current simulation box. If the box is periodic (in
-that dimension) the atom is remapping into the periodic box for
-purposes of binning. If the box in not periodic, the atom may have
-moved outside the bounds of any bin.
-
-The *discard* keyword determines what is done with any atom which is
-outside the bounds of any bin. If *discard* is set to *yes*, the atom
-will be ignored and not contribute to any bin averages. If *discard*
-is set to *no*, the atom will be counted as if it were in the first or
-last bin in that dimension. If (discard* is set to *mixed*, which is
-the default, it will only be counted in the first or last bin if bins
-extend to the box boundary in that dimension. This is the case if the
-*bound* keyword settings are *lower* and *upper*, which is the
-default. If the *bound* keyword settings are numeric values, then the
-atom will be ignored if it is outside the bounds of any bin. Note
-that in this case, it is possible that the first or last bin extends
-beyond the numeric *bounds* settings, depending on the specified
-*origin*. If this is the case, the atom is only ignored if it is
-outside the first or last bin, not if it is simply outside the numeric
-*bounds* setting.
-
-For orthogonal simulation boxes, the bins are also layers, pencils, or
-boxes aligned with the xyz coordinate axes. For triclinic
-(non-orthogonal) simulation boxes, the bins are so that they are
-parallel to the tilted faces of the simulation box. See :ref:`this section <howto_12>` of the manual for a discussion of
-the geometry of triclinic boxes in LAMMPS. As described there, a
-tilted simulation box has edge vectors a,b,c. In that nomenclature,
-bins in the x dimension have faces with normals in the "b" cross "c"
-direction. Bins in y have faces normal to the "a" cross "c"
-direction. And bins in z have faces normal to the "a" cross "b"
-direction. Note that in order to define the size and position of
-these bins in an unambiguous fashion, the *units* option must be set
-to *reduced* when using a triclinic simulation box, as noted below.
-
-
-----------
-
-
-The atom attribute values (vx,vy,vz,fx,fy,fz) are self-explanatory.
-Note that other atom attributes (including atom postitions x,y,z) can
-be used as inputs to this fix by using the :doc:`compute property/atom <compute_property_atom>` command and then specifying
-an input value from that compute.
-
-The *density/number* value means the number density is computed in
-each bin, i.e. a weighting of 1 for each atom. The *density/mass*
-value means the mass density is computed in each bind, i.e. each atom
-is weighted by its mass. The resulting density is normalized by the
-volume of the bin so that units of number/volume or density are
-output. See the :doc:`units <units>` command doc page for the
-definition of density for each choice of units, e.g. gram/cm^3.
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the compute is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the compute is used. Users can also write code for
-their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the fix is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the fix is used. Note that some fixes only produce
-their values on certain timesteps, which must be compatible with
-*Nevery*, else an error results. Users can also write code for their
-own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. Variables of style
-*atom* can reference thermodynamic keywords and various per-atom
-attributes, or invoke other computes, fixes, or variables when they
-are evaluated, so this is a very general means of generating per-atom
-quantities to spatially average.
-
-
-----------
-
-
-Additional optional keywords also affect the operation of this fix.
-The *region*, *bound*, and *discard* keywords were discussed above.
-
-The *norm* keyword affects how averaging is done for the output
-produced every *Nfreq* timesteps. For an *all* setting, a bin
-quantity is summed over all atoms in all *Nrepeat* samples, as is the
-count of atoms in the bin. The printed value for the bin is
-Total-quantity / Total-count. In other words it is an average over
-the entire *Nfreq* timescale.
-
-For a *sample* setting, the bin quantity is summed over atoms for only
-a single sample, as is the count, and a "average sample value" is
-computed, i.e. Sample-quantity / Sample-count. The printed value for
-the bin is the average of the *Nrepeat* "average sample values", In
-other words it is an average of an average.
-
-The *ave* keyword determines how the bin values produced every *Nfreq*
-steps are averaged with bin values produced on previous steps that
-were multiples of *Nfreq*, before they are accessed by another output
-command or written to a file.
-
-If the *ave* setting is *one*, then the bin values produced on
-timesteps that are multiples of *Nfreq* are independent of each other;
-they are output as-is without further averaging.
-
-If the *ave* setting is *running*, then the bin values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged in a
-cumulative sense before being output. Each output bin value is thus
-the average of the bin value produced on that timestep with all
-preceding values for the same bin. This running average begins when
-the fix is defined; it can only be restarted by deleting the fix via
-the :doc:`unfix <unfix>` command, or re-defining the fix by
-re-specifying it.
-
-If the *ave* setting is *window*, then the bin values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged within
-a moving "window" of time, so that the last M values for the same bin
-are used to produce the output. E.g. if M = 3 and Nfreq = 1000, then
-the output on step 10000 will be the average of the individual bin
-values on steps 8000,9000,10000. Outputs on early steps will average
-over less than M values if they are not available.
-
-The *units* keyword determines the meaning of the distance units used
-for the bin size *delta* and for *origin* and *bounds* values if they
-are coordinate value. For orthogonal simulation boxes, any of the 3
-options may be used. For non-orthogonal (triclinic) simulation boxes,
-only the *reduced* option may be used.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacing. A *reduced* value means normalized
-unitless values between 0 and 1, which represent the lower and upper
-faces of the simulation box respectively. Thus an *origin* value of
-0.5 means the center of the box in any dimension. A *delta* value of
-0.1 means 10 bins span the box in that dimension.
-
-Consider a non-orthogonal box, with bins that are 1d layers or slabs
-in the x dimension. No matter how the box is tilted, an *origin* of
-0.0 means start layers at the lower "b" cross "c" plane of the
-simulation box and an *origin* of 1.0 means to start layers at the
-upper "b" cross "c" face of the box. A *delta* value of 0.1 means
-there will be 10 layers from 0.0 to 1.0, regardless of the current
-size or shape of the simulation box.
-
-The *file* keyword allows a filename to be specified. Every *Nfreq*
-timesteps, a section of bin info will be written to a text file in the
-following format. A line with the timestep and number of bin is
-written. Then one line per bin is written, containing the bin ID
-(1-N), the coordinate of the center of the bin, the number of atoms
-in the bin, and one or more calculated values. The number of values
-in each line corresponds to the number of values specified in the fix
-ave/spatial command. The number of atoms and the value(s) are average
-quantities. If the value of the *units* keyword is *box* or
-*lattice*, the "coord" is printed in box units. If the value of the
-*units* keyword is *reduced*, the "coord" is printed in reduced units
-(0-1).
-
-The *overwrite* keyword will continuously overwrite the output file
-with the latest output, so that it only contains one timestep worth of
-output. This option can only be used with the *ave running* setting.
-
-The *title1* and *title2* and *title3* keywords allow specification of
-the strings that will be printed as the first 3 lines of the output
-file, assuming the *file* keyword was used. LAMMPS uses default
-values for each of these, so they do not need to be specified.
-
-By default, these header lines are as follows:
-
-.. parsed-literal::
-
- # Spatial-averaged data for fix ID and group name
- # Timestep Number-of-bins
- # Bin Coord1 Coord2 Coord3 Count value1 value2 ...
-
-In the first line, ID and name are replaced with the fix-ID and group
-name. The second line describes the two values that are printed at
-the first of each section of output. In the third line the values are
-replaced with the appropriate fields from the fix ave/spatial command.
-The Coord2 and Coord3 entries in the third line only appear for 2d and
-3d bins respectively. For 1d bins, the word Coord1 is replaced by
-just Coord.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global array of values which can be accessed by
-various :ref:`output commands <howto_15>`. The values can
-only be accessed on timesteps that are multiples of *Nfreq* since that
-is when averaging is performed. The global array has # of rows =
-Nbins and # of columns = Ndim+1+Nvalues, where Ndim = 1,2,3 for
-1d,2d,3d bins. The first 1 or 2 or 3 columns have the bin coordinates
-(center of the bin) in the appropriate dimensions, the next column has
-the count of atoms in that bin, and the remaining columns are the
-Nvalue quantities. When the array is accessed with an I that exceeds
-the current number of bins, than a 0.0 is returned by the fix instead
-of an error, since the number of bins can vary as a simulation runs,
-depending on the simulation box size. 2d or 3d bins are ordered so
-that the last dimension(s) vary fastest. The array values calculated
-by this fix are "intensive", since they are already normalized by the
-count of atoms in each bin.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-When the *ave* keyword is set to *running* or *window* then the number
-of bins must remain the same during the simulation, so that the
-appropriate averaging can be done. This will be the case if the
-simulation box size doesn't change or if the *units* keyword is set to
-*reduced*.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/histo <fix_ave_histo>`, :doc:`fix ave/time <fix_ave_time>`,
-:doc:`variable <variable>`, :doc:`fix ave/correlate <fix_ave_correlate>`,
-:doc:`fix ave/spatial/sphere <fix_ave_spatial_sphere>`
-
-Default
-"""""""
-
-The option defaults are bound = lower and upper in all dimensions,
-discard = mixed, norm = all, ave = one, units = lattice, no file
-output, and title 1,2,3 = strings as described above.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_spatial_sphere.txt b/doc/_sources/fix_ave_spatial_sphere.txt
deleted file mode 100644
index ae930c752..000000000
--- a/doc/_sources/fix_ave_spatial_sphere.txt
+++ /dev/null
@@ -1,349 +0,0 @@
-.. index:: fix ave/spatial/sphere
-
-fix ave/spatial/sphere command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ave/spatial/sphere Nevery Nrepeat Nfreq origin_x origin_y origin_z r_min r_max nbins value1 value2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ave/spatial = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of times to use input values for calculating averages
-* Nfreq = calculate averages every this many timesteps
-* origin_x, origin_y, origin_z = center of the sphere. can be the result of variables or computes (see below)
-* r_min = radial distance at which binning begins
-* r_max = radial distance at which binning ends
-* nbins = number of spherical shells to create between r_min and r_max
-* one or more input values can be listed
-* value = vx, vy, vz, fx, fy, fz, density/mass, density/number, c_ID, c_ID[I], f_ID, f_ID[I], v_name
-.. parsed-literal::
-
- vx,vy,vz,fx,fy,fz = atom attribute (velocity, force component)
- density/number, density/mass = number or mass density
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[I] = Ith column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[I] = Ith column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *region* or *norm* or *units* or *ave* or *file* or *overwrite* or *title1* or *title2* or *title3*
-.. parsed-literal::
-
- *region* arg = region-ID
- region-ID = ID of region atoms must be in to contribute to spatial averaging
- *norm* arg = *all* or *sample*
- *units* arg = *box* or *lattice* or *reduced*
- *ave* args = *one* or *running* or *window M*
- one = output new average value every Nfreq steps
- running = output cumulative average of all previous Nfreq steps
- window M = output average of M most recent Nfreq steps
- *file* arg = filename
- filename = file to write results to
- *overwrite* arg = none = overwrite output file with only latest output
- *title1* arg = string
- string = text to print as 1st line of output file
- *title2* arg = string
- string = text to print as 2nd line of output file
- *title3* arg = string
- string = text to print as 3rd line of output file
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/spatial/sphere 10000 1 10000 0.5 0.5 0.5 0.1 0.5 5 density/number vx vy vz units reduced title1 "My output values"
- fix 1 flow ave/spatial/sphere 100 10 1000 20.0 20.0 20.0 0.0 20.0 20 vx vz norm sample file vel.profile
-
-Description
-"""""""""""
-
-Use one or more per-atom vectors as inputs every few timesteps, bin
-their values spatially into spherical shells based on current atom
-coordinates, and average the bin values over longer timescales. The
-resulting bin averages can be used by other :ref:`output commands <howto_15>` such as :doc:`thermo_style custom <thermo_style>`, and can also be written to a file.
-
-The group specified with the command means only atoms within the group
-contribute to bin averages. If the *region* keyword is used, the atom
-must be in both the group and the specified geometric
-:doc:`region <region>` in order to contribute to bin averages.
-
-Each listed value can be an atom attribute (position, velocity, force
-component), a mass or number density, or the result of a
-:doc:`compute <compute>` or :doc:`fix <fix>` or the evaluation of an
-atom-style :doc:`variable <variable>`. In the latter cases, the
-compute, fix, or variable must produce a per-atom quantity, not a
-global quantity. If you wish to time-average global quantities from a
-compute, fix, or variable, then see the :doc:`fix ave/time <fix_ave_time>` command.
-
-:doc:`Computes <compute>` that produce per-atom quantities are those
-which have the word *atom* in their style name. See the doc pages for
-individual :doc:`fixes <fix>` to determine which ones produce per-atom
-quantities. :doc:`Variables <variable>` of style *atom* are the only
-ones that can be used with this fix since all other styles of variable
-produce global quantities.
-
-The per-atom values of each input vector are binned and averaged
-independently of the per-atom values in other input vectors.
-
-*Nbins* specifies the number of spherical shells which will be created
-between r_min and r_max centered at (origin_x, origin_y, origin_z).
-
-.. note::
-
- This fix works by creating an array of size Nbins by Nvalues on
- each processor. Nbins is the total number of bins; Nvalues is the
- number of input values specified. Each processor loops over its
- atoms, tallying its values to the appropriate bin. Then the entire
- array is summed across all processors. This means that using a large
- number of bins will incur an overhead in memory and computational cost
- (summing across processors), so be careful to use reasonable numbers
- of bins.
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be used to bin them and contribute to
-the average. The final averaged quantities are generated on timesteps
-that are a multiples of *Nfreq*. The average is over *Nrepeat*
-quantities, computed in the preceding portion of the simulation every
-*Nevery* timesteps. *Nfreq* must be a multiple of *Nevery* and
-*Nevery* must be non-zero even if *Nrepeat* is 1.
-Also, the timesteps
-contributing to the average value cannot overlap,
-i.e. Nrepeat*Nevery can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then values on
-timesteps 90,92,94,96,98,100 will be used to compute the final average
-on timestep 100. Similarly for timesteps 190,192,194,196,198,200 on
-timestep 200, etc. If Nrepeat=1 and Nfreq = 100, then no time
-averaging is done; values are simply generated on timesteps
-100,200,etc.
-
-
-----------
-
-
-The *origin_x*, *origin_y*, and *origin_z* parameters may be specified
-by either a compute or a variable. This allows, for example, the
-center of the spherical bins to be attached to the center of mass of a
-group of atoms. If a variable origin is used and periodic boundary
-conditions are in effect, then the origin will be wrapped across
-periodic boundaries whenever it changes so that it is always inside
-the simulation box.
-
-
-----------
-
-
-The atom attribute values (vx,vy,vz,fx,fy,fz) are self-explanatory.
-Note that other atom attributes (including atom postitions x,y,z) can
-be used as inputs to this fix by using the :doc:`compute property/atom <compute_property_atom>` command and then specifying
-an input value from that compute.
-
-The *density/number* value means the number density is computed in
-each bin, i.e. a weighting of 1 for each atom. The *density/mass*
-value means the mass density is computed in each bin, i.e. each atom
-is weighted by its mass. The resulting density is normalized by the
-volume of the bin so that units of number/volume or density are
-output. See the :doc:`units <units>` command doc page for the
-definition of density for each choice of units, e.g. gram/cm^3.
-The bin volume will always be calculated in box units, independent
-of the use of the *units* keyword in this command.
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the compute is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the compute is used. Users can also write code for
-their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If no bracketed integer is
-appended, the per-atom vector calculated by the fix is used. If a
-bracketed integer is appended, the Ith column of the per-atom array
-calculated by the fix is used. Note that some fixes only produce
-their values on certain timesteps, which must be compatible with
-*Nevery*, else an error results. Users can also write code for their
-own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. Variables of style
-*atom* can reference thermodynamic keywords and various per-atom
-attributes, or invoke other computes, fixes, or variables when they
-are evaluated, so this is a very general means of generating per-atom
-quantities to spatially average.
-
-
-----------
-
-
-Additional optional keywords also affect the operation of this fix.
-The *region* keyword was discussed above.
-
-The *norm* keyword affects how averaging is done for the output
-produced every *Nfreq* timesteps. For an *all* setting, a bin
-quantity is summed over all atoms in all *Nrepeat* samples, as is the
-count of atoms in the bin. The printed value for the bin is
-Total-quantity / Total-count. In other words it is an average over
-the entire *Nfreq* timescale.
-
-For a *sample* setting, the bin quantity is summed over atoms for only
-a single sample, as is the count, and a "average sample value" is
-computed, i.e. Sample-quantity / Sample-count. The printed value for
-the bin is the average of the *Nrepeat* "average sample values", In
-other words it is an average of an average.
-
-The *ave* keyword determines how the bin values produced every *Nfreq*
-steps are averaged with bin values produced on previous steps that
-were multiples of *Nfreq*, before they are accessed by another output
-command or written to a file.
-
-If the *ave* setting is *one*, then the bin values produced on
-timesteps that are multiples of *Nfreq* are independent of each other;
-they are output as-is without further averaging.
-
-If the *ave* setting is *running*, then the bin values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged in a
-cumulative sense before being output. Each output bin value is thus
-the average of the bin value produced on that timestep with all
-preceding values for the same bin. This running average begins when
-the fix is defined; it can only be restarted by deleting the fix via
-the :doc:`unfix <unfix>` command, or re-defining the fix by
-re-specifying it.
-
-If the *ave* setting is *window*, then the bin values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged within
-a moving "window" of time, so that the last M values for the same bin
-are used to produce the output. E.g. if M = 3 and Nfreq = 1000, then
-the output on step 10000 will be the average of the individual bin
-values on steps 8000,9000,10000. Outputs on early steps will average
-over less than M values if they are not available.
-
-The *units* keyword determines the meaning of the distance units used
-for the sphere origin and the two radial lengths. For orthogonal
-simulation boxes, any of the 3 options may be used. For
-non-orthogonal (triclinic) simulation boxes, only the *reduced* option
-may be used.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacing.
-
-.. note::
-
- The *lattice* style may only be used if the lattice spacing is
- the same in each direction.
-
-A *reduced* value means normalized unitless values between 0 and 1,
-which represent the lower and upper faces of the simulation box
-respectively. Thus an *origin* value of 0.5 means the center of the
-box in any dimension.
-
-The *file* keyword allows a filename to be specified. Every *Nfreq*
-timesteps, a section of bin info will be written to a text file in the
-following format. A line with the timestep and number of bin is
-written. Then one line per bin is written, containing the bin ID
-(1-N), the coordinate of the center of the bin, the number of atoms in
-the bin, and one or more calculated values. The number of values in
-each line corresponds to the number of values specified in the fix
-ave/spatial command. The number of atoms and the value(s) are average
-quantities. If the value of the *units* keyword is *box* or
-*lattice*, the "coord" is printed in box units. If the value of the
-*units* keyword is *reduced*, the "coord" is printed in reduced units
-(0-1).
-
-The *overwrite* keyword will continuously overwrite the output file
-with the latest output, so that it only contains one timestep worth of
-output. This option can only be used with the *ave running* setting.
-
-The *title1* and *title2* and *title3* keywords allow specification of
-the strings that will be printed as the first 3 lines of the output
-file, assuming the *file* keyword was used. LAMMPS uses default
-values for each of these, so they do not need to be specified.
-
-By default, these header lines are as follows:
-
-.. parsed-literal::
-
- # Spatial-averaged data for fix ID and group name
- # Timestep Number-of-bins
- # Bin r Count value1 value2 ...
-
-In the first line, ID and name are replaced with the fix-ID and group
-name. The second line describes the two values that are printed at
-the first of each section of output. In the third line the values are
-replaced with the appropriate fields from the fix ave/spatial command.
-The Coord2 and Coord3 entries in the third line only appear for 2d and
-3d bins respectively. For 1d bins, the word Coord1 is replaced by
-just Coord.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global array of values which can be accessed by
-various :ref:`output commands <howto_15>`. The values can
-only be accessed on timesteps that are multiples of *Nfreq* since that
-is when averaging is performed. The global array has # of rows =
-Nbins and # of columns = 2+Nvalues. The first column contains the
-radius at the center of the shell. For units *reduced*, this is in
-reduced units, while for units *box* and *lattice* this is in box
-units. The next column has the count of atoms in that bin, and the
-remaining columns are the Nvalue quantities. When the array is
-accessed with an I that exceeds the current number of bins, than a 0.0
-is returned by the fix instead of an error. The array values
-calculated by this fix are "intensive", since they are already
-normalized by the count of atoms in each bin.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-When the *ave* keyword is set to *running* or *window* then the number
-of bins must remain the same during the simulation, so that the
-appropriate averaging can be done. This will be the case if the
-simulation box size doesn't change or if the *units* keyword is set to
-*reduced*.
-
-This style is part of the USER-MISC package. It is only enabled if
-LAMMPS is build with that package. See the :ref:`Making of LAMMPS <3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/histo <fix_ave_histo>`, :doc:`fix ave/time <fix_ave_time>`,
-:doc:`variable <variable>`, :doc:`fix ave/correlate <fix_ave_correlate>`,
-:doc:`fix ave/spatial <fix_ave_spatial>`,
-
-Default
-"""""""
-
-The option defaults are norm = all, ave = one, units = lattice, no
-file output, and title 1,2,3 = strings as described above.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ave_time.txt b/doc/_sources/fix_ave_time.txt
deleted file mode 100644
index b69d17597..000000000
--- a/doc/_sources/fix_ave_time.txt
+++ /dev/null
@@ -1,353 +0,0 @@
-.. index:: fix ave/time
-
-fix ave/time command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ave/time Nevery Nrepeat Nfreq value1 value2 ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ave/time = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of times to use input values for calculating averages
-* Nfreq = calculate averages every this many timesteps
-* one or more input values can be listed
-* value = c_ID, c_ID[N], f_ID, f_ID[N], v_name
-.. parsed-literal::
-
- c_ID = global scalar, vector, or array calculated by a compute with ID
- c_ID[I] = Ith component of global vector or Ith column of global array calculated by a compute with ID
- f_ID = global scalar, vector, or array calculated by a fix with ID
- f_ID[I] = Ith component of global vector or Ith column of global array calculated by a fix with ID
- v_name = value(s) calculated by an equal-style or vector-style variable with name
- v_name[I] = value calculated by a vector-style variable with name
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *mode* or *file* or *ave* or *start* or *off* or *overwrite* or *title1* or *title2* or *title3*
-.. parsed-literal::
-
- *mode* arg = *scalar* or *vector*
- scalar = all input values are global scalars
- vector = all input values are global vectors or global arrays
- *ave* args = *one* or *running* or *window M*
- one = output a new average value every Nfreq steps
- running = output cummulative average of all previous Nfreq steps
- window M = output average of M most recent Nfreq steps
- *start* args = Nstart
- Nstart = start averaging on this timestep
- *off* arg = M = do not average this value
- M = value # from 1 to Nvalues
- *file* arg = filename
- filename = name of file to output time averages to
- *overwrite* arg = none = overwrite output file with only latest output
- *format* arg = string
- string = C-style format string
- *title1* arg = string
- string = text to print as 1st line of output file
- *title2* arg = string
- string = text to print as 2nd line of output file
- *title3* arg = string
- string = text to print as 3rd line of output file, only for vector mode
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all ave/time 100 5 1000 c_myTemp c_thermo_temp file temp.profile
- fix 1 all ave/time 100 5 1000 c_thermo_press[2] ave window 20 &
- title1 "My output values"
- fix 1 all ave/time 1 100 1000 f_indent f_indent[1] file temp.indent off 1
-
-Description
-"""""""""""
-
-Use one or more global values as inputs every few timesteps, and
-average them over longer timescales. The resulting averages can be
-used by other :ref:`output commands <howto_15>` such as
-:doc:`thermo_style custom <thermo_style>`, and can also be written to a
-file. Note that if no time averaging is done, this command can be
-used as a convenient way to simply output one or more global values to
-a file.
-
-The group specified with this command is ignored. However, note that
-specified values may represent calculations performed by computes and
-fixes which store their own "group" definitions.
-
-Each listed value can be the result of a :doc:`compute <compute>` or
-:doc:`fix <fix>` or the evaluation of an equal-style or vector-style
-:doc:`variable <variable>`. In each case, the compute, fix, or variable
-must produce a global quantity, not a per-atom or local quantity. If
-you wish to spatial- or time-average or histogram per-atom quantities
-from a compute, fix, or variable, then see the :doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`fix ave/atom <fix_ave_atom>`,
-or :doc:`fix ave/histo <fix_ave_histo>` commands. If you wish to sum a
-per-atom quantity into a single global quantity, see the :doc:`compute reduce <compute_reduce>` command.
-
-:doc:`Computes <compute>` that produce global quantities are those which
-do not have the word *atom* in their style name. Only a few
-:doc:`fixes <fix>` produce global quantities. See the doc pages for
-individual fixes for info on which ones produce such values.
-:doc:`Variables <variable>` of style *equal* and *vector* are the only
-ones that can be used with this fix. Variables of style *atom* cannot
-be used, since they produce per-atom values.
-
-The input values must either be all scalars or all vectors (or
-arrays), depending on the setting of the *mode* keyword. In both
-cases, the averaging is performed independently on each input value.
-I.e. each input scalar is averaged independently and each element of
-each input vector (or array) is averaged independently.
-
-If *mode* = vector, then the input values may either be vectors or
-arrays and all must be the same "length", which is the length of the
-vector or number of rows in the array. If a global array is listed,
-then it is the same as if the individual columns of the array had been
-listed one by one. E.g. these 2 fix ave/time commands are equivalent,
-since the :doc:`compute rdf <compute_rdf>` command creates, in this
-case, a global array with 3 columns, each of length 50:
-
-.. parsed-literal::
-
- compute myRDF all rdf 50 1 2
- fix 1 all ave/time 100 1 100 c_myRDF file tmp1.rdf mode vector
- fix 2 all ave/time 100 1 100 c_myRDF[1] c_myRDF[2] c_myRDF[3] file tmp2.rdf mode vector
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be used in order to contribute to the
-average. The final averaged quantities are generated on timesteps
-that are a mlutiple of *Nfreq*. The average is over *Nrepeat*
-quantities, computed in the preceding portion of the simulation every
-*Nevery* timesteps. *Nfreq* must be a multiple of *Nevery* and
-*Nevery* must be non-zero even if *Nrepeat* is 1. Also, the timesteps
-contributing to the average value cannot overlap,
-i.e. Nrepeat*Nevery can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then values on
-timesteps 90,92,94,96,98,100 will be used to compute the final average
-on timestep 100. Similarly for timesteps 190,192,194,196,198,200 on
-timestep 200, etc. If Nrepeat=1 and Nfreq = 100, then no time
-averaging is done; values are simply generated on timesteps
-100,200,etc.
-
-
-----------
-
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If *mode* = scalar, then if
-no bracketed term is appended, the global scalar calculated by the
-compute is used. If a bracketed term is appended, the Ith element of
-the global vector calculated by the compute is used. If *mode* =
-vector, then if no bracketed term is appended, the global vector
-calculated by the compute is used. Or if the compute calculates an
-array, all of the columns of the global array are used as if they had
-been specified as individual vectors (see description above). If a
-bracketed term is appended, the Ith column of the global array
-calculated by the compute is used.
-
-Note that there is a :doc:`compute reduce <compute_reduce>` command
-which can sum per-atom quantities into a global scalar or vector which
-can thus be accessed by fix ave/time. Or it can be a compute defined
-not in your input script, but by :doc:`thermodynamic output <thermo_style>` or other fixes such as :doc:`fix nvt <fix_nh>` or :doc:`fix temp/rescale <fix_temp_rescale>`. See
-the doc pages for these commands which give the IDs of these computes.
-Users can also write code for their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If *mode* = scalar, then if
-no bracketed term is appended, the global scalar calculated by the fix
-is used. If a bracketed term is appended, the Ith element of the
-global vector calculated by the fix is used. If *mode* = vector, then
-if no bracketed term is appended, the global vector calculated by the
-fix is used. Or if the fix calculates an array, all of the columns of
-the global array are used as if they had been specified as individual
-vectors (see description above). If a bracketed term is appended, the
-Ith column of the global array calculated by the fix is used.
-
-Note that some fixes only produce their values on certain timesteps,
-which must be compatible with *Nevery*, else an error will result.
-Users can also write code for their own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. If *mode* = scalar, then
-only equal-style or vector-style variables can be used, which both
-produce global values. In this mode, a vector-style variable requires
-a bracketed term to specify the Ith element of the vector calculated
-by the variable. If *mode* = vector, then only a vector-style
-variable can be used, without a bracketed term. See the
-:doc:`variable <variable>` command for details.
-
-Note that variables of style *equal* and *vector* define a formula
-which can reference individual atom properties or thermodynamic
-keywords, or they can invoke other computes, fixes, or variables when
-they are evaluated, so this is a very general means of specifying
-quantities to time average.
-
-
-----------
-
-
-Additional optional keywords also affect the operation of this fix.
-
-If the *mode* keyword is set to *scalar*, then all input values must
-be global scalars, or elements of global vectors. If the *mode*
-keyword is set to *vector*, then all input values must be global
-vectors, or columns of global arrays. They can also be global arrays,
-which are converted into a series of global vectors (one per column),
-as explained above.
-
-The *ave* keyword determines how the values produced every *Nfreq*
-steps are averaged with values produced on previous steps that were
-multiples of *Nfreq*, before they are accessed by another output
-command or written to a file.
-
-If the *ave* setting is *one*, then the values produced on timesteps
-that are multiples of *Nfreq* are independent of each other; they are
-output as-is without further averaging.
-
-If the *ave* setting is *running*, then the values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged in a
-cummulative sense before being output. Each output value is thus the
-average of the value produced on that timestep with all preceding
-values. This running average begins when the fix is defined; it can
-only be restarted by deleting the fix via the :doc:`unfix <unfix>`
-command, or by re-defining the fix by re-specifying it.
-
-If the *ave* setting is *window*, then the values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged within
-a moving "window" of time, so that the last M values are used to
-produce the output. E.g. if M = 3 and Nfreq = 1000, then the output
-on step 10000 will be the average of the individual values on steps
-8000,9000,10000. Outputs on early steps will average over less than M
-values if they are not available.
-
-The *start* keyword specifies what timestep averaging will begin on.
-The default is step 0. Often input values can be 0.0 at time 0, so
-setting *start* to a larger value can avoid including a 0.0 in a
-running or windowed average.
-
-The *off* keyword can be used to flag any of the input values. If a
-value is flagged, it will not be time averaged. Instead the most
-recent input value will always be stored and output. This is useful
-if one of more of the inputs produced by a compute or fix or variable
-are effectively constant or are simply current values. E.g. they are
-being written to a file with other time-averaged values for purposes
-of creating well-formatted output.
-
-The *file* keyword allows a filename to be specified. Every *Nfreq*
-steps, one quantity or vector of quantities is written to the file for
-each input value specified in the fix ave/time command. For *mode* =
-scalar, this means a single line is written each time output is
-performed. Thus the file ends up to be a series of lines, i.e. one
-column of numbers for each input value. For *mode* = vector, an array
-of numbers is written each time output is performed. The number of
-rows is the length of the input vectors, and the number of columns is
-the number of values. Thus the file ends up to be a series of these
-array sections.
-
-The *overwrite* keyword will continuously overwrite the output file
-with the latest output, so that it only contains one timestep worth of
-output. This option can only be used with the *ave running* setting.
-
-The *format* keyword sets the numeric format of each value when it is
-printed to a file via the *file* keyword. Note that all values are
-floating point quantities. The default format is %g. You can specify
-a higher precision if desired, e.g. %20.16g.
-
-The *title1* and *title2* and *title3* keywords allow specification of
-the strings that will be printed as the first 2 or 3 lines of the
-output file, assuming the *file* keyword was used. LAMMPS uses
-default values for each of these, so they do not need to be specified.
-
-By default, these header lines are as follows for *mode* = scalar:
-
-.. parsed-literal::
-
- # Time-averaged data for fix ID
- # TimeStep value1 value2 ...
-
-In the first line, ID is replaced with the fix-ID. In the second line
-the values are replaced with the appropriate fields from the fix
-ave/time command. There is no third line in the header of the file,
-so the *title3* setting is ignored when *mode* = scalar.
-
-By default, these header lines are as follows for *mode* = vector:
-
-.. parsed-literal::
-
- # Time-averaged data for fix ID
- # TimeStep Number-of-rows
- # Row value1 value2 ...
-
-In the first line, ID is replaced with the fix-ID. The second line
-describes the two values that are printed at the first of each section
-of output. In the third line the values are replaced with the
-appropriate fields from the fix ave/time command.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix produces a global scalar or global vector or global array
-which can be accessed by various :ref:`output commands <howto_15>`. The values can only be
-accessed on timesteps that are multiples of *Nfreq* since that is when
-averaging is performed.
-
-A scalar is produced if only a single input value is averaged and
-*mode* = scalar. A vector is produced if multiple input values are
-averaged for *mode* = scalar, or a single input value for *mode* =
-vector. In the first case, the length of the vector is the number of
-inputs. In the second case, the length of the vector is the same as
-the length of the input vector. An array is produced if multiple
-input values are averaged and *mode* = vector. The global array has #
-of rows = length of the input vectors and # of columns = number of
-inputs.
-
-If the fix prouduces a scalar or vector, then the scalar and each
-element of the vector can be either "intensive" or "extensive",
-depending on whether the values contributing to the scalar or vector
-element are "intensive" or "extensive". If the fix produces an array,
-then all elements in the array must be the same, either "intensive" or
-"extensive". If a compute or fix provides the value being time
-averaged, then the compute or fix determines whether the value is
-intensive or extensive; see the doc page for that compute or fix for
-further info. Values produced by a variable are treated as intensive.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`fix ave/atom <fix_ave_atom>`, :doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`fix ave/histo <fix_ave_histo>`,
-:doc:`variable <variable>`, :doc:`fix ave/correlate <fix_ave_correlate>`,
-
-Default
-"""""""
-
-The option defaults are mode = scalar, ave = one, start = 0, no file
-output, format = %g, title 1,2,3 = strings as described above, and no
-off settings for any input values.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_aveforce.txt b/doc/_sources/fix_aveforce.txt
deleted file mode 100644
index 03a7e9474..000000000
--- a/doc/_sources/fix_aveforce.txt
+++ /dev/null
@@ -1,135 +0,0 @@
-.. index:: fix aveforce
-
-fix aveforce command
-====================
-
-fix aveforce/cuda command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID aveforce fx fy fz keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* aveforce = style name of this fix command
-* fx,fy,fz = force component values (force units)
-.. parsed-literal::
-
- any of fx,fy,fz can be a variable (see below)
-
-* zero or more keyword/value pairs may be appended to args
-* keyword = *region*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region atoms must be in to have added force
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix pressdown topwall aveforce 0.0 -1.0 0.0
- fix 2 bottomwall aveforce NULL -1.0 0.0 region top
- fix 2 bottomwall aveforce NULL -1.0 v_oscillate region top
-
-Description
-"""""""""""
-
-Apply an additional external force to a group of atoms in such a way
-that every atom experiences the same force. This is useful for
-pushing on wall or boundary atoms so that the structure of the wall
-does not change over time.
-
-The existing force is averaged for the group of atoms, component by
-component. The actual force on each atom is then set to the average
-value plus the component specified in this command. This means each
-atom in the group receives the same force.
-
-Any of the fx,fy,fz values can be specified as NULL which means the
-force in that dimension is not changed. Note that this is not the
-same as specifying a 0.0 value, since that sets all forces to the same
-average value without adding in any additional force.
-
-Any of the 3 quantities defining the force components can be specified
-as an equal-style :doc:`variable <variable>`, namely *fx*, *fy*, *fz*.
-If the value is a variable, it should be specified as v_name, where
-name is the variable name. In this case, the variable will be
-evaluated each timestep, and its value used to determine the average
-force.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent average force.
-
-If the *region* keyword is used, the atom must also be in the
-specified geometric :doc:`region <region>` in order to have force added
-to it.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global 3-vector of forces, which can be accessed
-by various :ref:`output commands <howto_15>`. This is the
-total force on the group of atoms before the forces on individual
-atoms are changed by the fix. The vector values calculated by this
-fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command. You should not
-specify force components with a variable that has time-dependence for
-use with a minimizer, since the minimizer increments the timestep as
-the iteration count during the minimization.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix setforce <fix_setforce>`, :doc:`fix addforce <fix_addforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_balance.txt b/doc/_sources/fix_balance.txt
deleted file mode 100644
index 55deadd39..000000000
--- a/doc/_sources/fix_balance.txt
+++ /dev/null
@@ -1,384 +0,0 @@
-.. index:: fix balance
-
-fix balance command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID balance Nfreq thresh style args keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* balance = style name of this fix command
-* Nfreq = perform dynamic load balancing every this many steps
-* thresh = imbalance threshhold that must be exceeded to perform a re-balance
-* style = *shift* or *rcb*
-.. parsed-literal::
-
- shift args = dimstr Niter stopthresh
- dimstr = sequence of letters containing "x" or "y" or "z", each not more than once
- Niter = # of times to iterate within each dimension of dimstr sequence
- stopthresh = stop balancing when this imbalance threshhold is reached
- rcb args = none
-
-* zero or more keyword/value pairs may be appended
-* keyword = *out*
-.. parsed-literal::
-
- *out* value = filename
- filename = write each processor's sub-domain to a file, at each re-balancing
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 2 all balance 1000 1.05 shift x 10 1.05
- fix 2 all balance 100 0.9 shift xy 20 1.1 out tmp.balance
- fix 2 all balance 1000 1.1 rcb
-
-Description
-"""""""""""
-
-This command adjusts the size and shape of processor sub-domains
-within the simulation box, to attempt to balance the number of
-particles and thus the computational cost (load) evenly across
-processors. The load balancing is "dynamic" in the sense that
-rebalancing is performed periodically during the simulation. To
-perform "static" balancing, before or between runs, see the
-:doc:`balance <balance>` command.
-
-Load-balancing is typically only useful if the particles in the
-simulation box have a spatially-varying density distribution. E.g. a
-model of a vapor/liquid interface, or a solid with an irregular-shaped
-geometry containing void regions. In this case, the LAMMPS default of
-dividing the simulation box volume into a regular-spaced grid of 3d
-bricks, with one equal-volume sub-domain per processor, may assign
-very different numbers of particles per processor. This can lead to
-poor performance when the simulation is run in parallel.
-
-Note that the :doc:`processors <processors>` command allows some control
-over how the box volume is split across processors. Specifically, for
-a Px by Py by Pz grid of processors, it allows choice of Px, Py, and
-Pz, subject to the constraint that Px * Py * Pz = P, the total number
-of processors. This is sufficient to achieve good load-balance for
-some problems on some processor counts. However, all the processor
-sub-domains will still have the same shape and same volume.
-
-On a particular timestep, a load-balancing operation is only performed
-if the current "imbalance factor" in particles owned by each processor
-exceeds the specified *thresh* parameter. The imbalance factor is
-defined as the maximum number of particles owned by any processor,
-divided by the average number of particles per processor. Thus an
-imbalance factor of 1.0 is perfect balance.
-
-As an example, for 10000 particles running on 10 processors, if the
-most heavily loaded processor has 1200 particles, then the factor is
-1.2, meaning there is a 20% imbalance. Note that re-balances can be
-forced even if the current balance is perfect (1.0) be specifying a
-*thresh* < 1.0.
-
-.. note::
-
- This command attempts to minimize the imbalance factor, as
- defined above. But depending on the method a perfect balance (1.0)
- may not be achieved. For example, "grid" methods (defined below) that
- create a logical 3d grid cannot achieve perfect balance for many
- irregular distributions of particles. Likewise, if a portion of the
- system is a perfect lattice, e.g. the initial system is generated by
- the :doc:`create_atoms <create_atoms>` command, then "grid" methods may
- be unable to achieve exact balance. This is because entire lattice
- planes will be owned or not owned by a single processor.
-
-.. note::
-
- The imbalance factor is also an estimate of the maximum speed-up
- you can hope to achieve by running a perfectly balanced simulation
- versus an imbalanced one. In the example above, the 10000 particle
- simulation could run up to 20% faster if it were perfectly balanced,
- versus when imbalanced. However, computational cost is not strictly
- proportional to particle count, and changing the relative size and
- shape of processor sub-domains may lead to additional computational
- and communication overheads, e.g. in the PPPM solver used via the
- :doc:`kspace_style <kspace_style>` command. Thus you should benchmark
- the run times of a simulation before and after balancing.
-
-
-----------
-
-
-The method used to perform a load balance is specified by one of the
-listed styles, which are described in detail below. There are 2 kinds
-of styles.
-
-The *shift* style is a "grid" method which produces a logical 3d grid
-of processors. It operates by changing the cutting planes (or lines)
-between processors in 3d (or 2d), to adjust the volume (area in 2d)
-assigned to each processor, as in the following 2d diagram where
-processor sub-domains are shown and atoms are colored by the processor
-that owns them. The leftmost diagram is the default partitioning of
-the simulation box across processors (one sub-box for each of 16
-processors); the middle diagram is after a "grid" method has been
-applied.
-
-.. thumbnail:: JPG/balance_uniform.jpg
- :align: center
-.. thumbnail:: JPG/balance_nonuniform.jpg
- :align: center
-.. thumbnail:: JPG/balance_rcb.jpg
- :align: center
-The *rcb* style is a "tiling" method which does not produce a logical
-3d grid of processors. Rather it tiles the simulation domain with
-rectangular sub-boxes of varying size and shape in an irregular
-fashion so as to have equal numbers of particles in each sub-box, as
-in the rightmost diagram above.
-
-The "grid" methods can be used with either of the
-:doc:`comm_style <comm_style>` command options, *brick* or *tiled*. The
-"tiling" methods can only be used with :doc:`comm_style tiled <comm_style>`.
-
-When a "grid" method is specified, the current domain partitioning can
-be either a logical 3d grid or a tiled partitioning. In the former
-case, the current logical 3d grid is used as a starting point and
-changes are made to improve the imbalance factor. In the latter case,
-the tiled partitioning is discarded and a logical 3d grid is created
-with uniform spacing in all dimensions. This is the starting point
-for the balancing operation.
-
-When a "tiling" method is specified, the current domain partitioning
-("grid" or "tiled") is ignored, and a new partitioning is computed
-from scratch.
-
-
-----------
-
-
-The *group-ID* is currently ignored. In the future it may be used to
-determine what particles are considered for balancing. Normally it
-would only makes sense to use the *all* group. But in some cases it
-may be useful to balance on a subset of the particles, e.g. when
-modeling large nanoparticles in a background of small solvent
-particles.
-
-The *Nfreq* setting determines how often a rebalance is performed. If
-*Nfreq* > 0, then rebalancing will occur every *Nfreq* steps. Each
-time a rebalance occurs, a reneighboring is triggered, so *Nfreq*
-should not be too small. If *Nfreq* = 0, then rebalancing will be
-done every time reneighboring normally occurs, as determined by the
-the :doc:`neighbor <neighbor>` and :doc:`neigh_modify <neigh_modify>`
-command settings.
-
-On rebalance steps, rebalancing will only be attempted if the current
-imbalance factor, as defined above, exceeds the *thresh* setting.
-
-
-----------
-
-
-The *shift* style invokes a "grid" method for balancing, as described
-above. It changes the positions of cutting planes between processors
-in an iterative fashion, seeking to reduce the imbalance factor.
-
-The *dimstr* argument is a string of characters, each of which must be
-an "x" or "y" or "z". Eacn character can appear zero or one time,
-since there is no advantage to balancing on a dimension more than
-once. You should normally only list dimensions where you expect there
-to be a density variation in the particles.
-
-Balancing proceeds by adjusting the cutting planes in each of the
-dimensions listed in *dimstr*, one dimension at a time. For a single
-dimension, the balancing operation (described below) is iterated on up
-to *Niter* times. After each dimension finishes, the imbalance factor
-is re-computed, and the balancing operation halts if the *stopthresh*
-criterion is met.
-
-A rebalance operation in a single dimension is performed using a
-density-dependent recursive multisectioning algorithm, where the
-position of each cutting plane (line in 2d) in the dimension is
-adjusted independently. This is similar to a recursive bisectioning
-for a single value, except that the bounds used for each bisectioning
-take advantage of information from neighboring cuts if possible, as
-well as counts of particles at the bounds on either side of each cuts,
-which themselves were cuts in previous iterations. The latter is used
-to infer a density of pariticles near each of the current cuts. At
-each iteration, the count of particles on either side of each plane is
-tallied. If the counts do not match the target value for the plane,
-the position of the cut is adjusted based on the local density. The
-low and high bounds are adjusted on each iteration, using new count
-information, so that they become closer together over time. Thus as
-the recursion progresses, the count of particles on either side of the
-plane gets closer to the target value.
-
-The density-dependent part of this algorithm is often an advantage
-when you rebalance a system that is already nearly balanced. It
-typically converges more quickly than the geometric bisectioning
-algorithm used by the :doc:`balance <balance>` command. However, if can
-be a disadvantage if you attempt to rebalance a system that is far
-from balanced, and converge more slowly. In this case you probably
-want to use the :doc:`balance <balance>` command before starting a run,
-so that you begin the run with a balanced system.
-
-Once the rebalancing is complete and final processor sub-domains
-assigned, particles migrate to their new owning processor as part of
-the normal reneighboring procedure.
-
-.. note::
-
- At each rebalance operation, the bisectioning for each cutting
- plane (line in 2d) typcially starts with low and high bounds separated
- by the extent of a processor's sub-domain in one dimension. The size
- of this bracketing region shrinks based on the local density, as
- described above, which should typically be 1/2 or more every
- iteration. Thus if *Niter* is specified as 10, the cutting plane will
- typically be positioned to better than 1 part in 1000 accuracy
- (relative to the perfect target position). For *Niter* = 20, it will
- be accurate to better than 1 part in a million. Thus there is no need
- to set *Niter* to a large value. This is especially true if you are
- rebalancing often enough that each time you expect only an incremental
- adjustement in the cutting planes is necessary. LAMMPS will check if
- the threshold accuracy is reached (in a dimension) is less iterations
- than *Niter* and exit early.
-
-
-----------
-
-
-The *rcb* style invokes a "tiled" method for balancing, as described
-above. It performs a recursive coordinate bisectioning (RCB) of the
-simulation domain. The basic idea is as follows.
-
-The simulation domain is cut into 2 boxes by an axis-aligned cut in
-the longest dimension, leaving one new box on either side of the cut.
-All the processors are also partitioned into 2 groups, half assigned
-to the box on the lower side of the cut, and half to the box on the
-upper side. (If the processor count is odd, one side gets an extra
-processor.) The cut is positioned so that the number of atoms in the
-lower box is exactly the number that the processors assigned to that
-box should own for load balance to be perfect. This also makes load
-balance for the upper box perfect. The positioning is done
-iteratively, by a bisectioning method. Note that counting atoms on
-either side of the cut requires communication between all processors
-at each iteration.
-
-That is the procedure for the first cut. Subsequent cuts are made
-recursively, in exactly the same manner. The subset of processors
-assigned to each box make a new cut in the longest dimension of that
-box, splitting the box, the subset of processsors, and the atoms in
-the box in two. The recursion continues until every processor is
-assigned a sub-box of the entire simulation domain, and owns the atoms
-in that sub-box.
-
-
-----------
-
-
-The *out* keyword writes a text file to the specified *filename* with
-the results of each rebalancing operation. The file contains the
-bounds of the sub-domain for each processor after the balancing
-operation completes. The format of the file is compatible with the
-`Pizza.py <pizza>`_ *mdump* tool which has support for manipulating and
-visualizing mesh files. An example is shown here for a balancing by 4
-processors for a 2d problem:
-
-.. parsed-literal::
-
- ITEM: TIMESTEP
- 0
- ITEM: NUMBER OF NODES
- 16
- ITEM: BOX BOUNDS
- 0 10
- 0 10
- 0 10
- ITEM: NODES
- 1 1 0 0 0
- 2 1 5 0 0
- 3 1 5 5 0
- 4 1 0 5 0
- 5 1 5 0 0
- 6 1 10 0 0
- 7 1 10 5 0
- 8 1 5 5 0
- 9 1 0 5 0
- 10 1 5 5 0
- 11 1 5 10 0
- 12 1 10 5 0
- 13 1 5 5 0
- 14 1 10 5 0
- 15 1 10 10 0
- 16 1 5 10 0
- ITEM: TIMESTEP
- 0
- ITEM: NUMBER OF SQUARES
- 4
- ITEM: SQUARES
- 1 1 1 2 3 4
- 2 1 5 6 7 8
- 3 1 9 10 11 12
- 4 1 13 14 15 16
-
-The coordinates of all the vertices are listed in the NODES section, 5
-per processor. Note that the 4 sub-domains share vertices, so there
-will be duplicate nodes in the list.
-
-The "SQUARES" section lists the node IDs of the 4 vertices in a
-rectangle for each processor (1 to 4).
-
-For a 3d problem, the syntax is similar with 8 vertices listed for
-each processor, instead of 4, and "SQUARES" replaced by "CUBES".
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar which is the imbalance factor
-after the most recent rebalance and a global vector of length 3 with
-additional information about the most recent rebalancing. The 3
-values in the vector are as follows:
-
-* 1 = max # of particles per processor
-* 2 = total # iterations performed in last rebalance
-* 3 = imbalance factor right before the last rebalance was performed
-
-As explained above, the imbalance factor is the ratio of the maximum
-number of particles on any processor to the average number of
-particles per processor.
-
-These quantities can be accessed by various :ref:`output commands <howto_15>`. The scalar and vector values
-calculated by this fix are "intensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-For 2d simulations, a "z" cannot appear in *dimstr* for the *shift*
-style.
-
-Related commands
-""""""""""""""""
-
-:doc:`processors <processors>`, :doc:`balance <balance>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_bond_break.txt b/doc/_sources/fix_bond_break.txt
deleted file mode 100644
index 4473d4054..000000000
--- a/doc/_sources/fix_bond_break.txt
+++ /dev/null
@@ -1,160 +0,0 @@
-.. index:: fix bond/break
-
-fix bond/break command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID bond/break Nevery bondtype Rmax keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* bond/break = style name of this fix command
-* Nevery = attempt bond breaking every this many steps
-* bondtype = type of bonds to break
-* Rmax = bond longer than Rmax can break (distance units)
-* zero or more keyword/value pairs may be appended to args
-* keyword = *prob*
-.. parsed-literal::
-
- *prob* values = fraction seed
- fraction = break a bond with this probability if otherwise eligible
- seed = random number seed (positive integer)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 5 all bond/break 10 2 1.2
- fix 5 polymer bond/break 1 1 2.0 prob 0.5 49829
-
-Description
-"""""""""""
-
-Break bonds between pairs of atoms as a simulation runs according to
-specified criteria. This can be used to model the dissolution of a
-polymer network due to stretching of the simulation box or other
-deformations. In this context, a bond means an interaction between a
-pair of atoms computed by the :doc:`bond_style <bond_style>` command.
-Once the bond is broken it will be permanently deleted, as will all
-angle, dihedral, and improper interactions that bond is part of.
-
-This is different than a :doc:`pairwise <pair_style>` bond-order
-potential such as Tersoff or AIREBO which infers bonds and many-body
-interactions based on the current geometry of a small cluster of atoms
-and effectively creates and destroys bonds and higher-order many-body
-interactions from timestep to timestep as atoms move.
-
-A check for possible bond breakage is performed every *Nevery*
-timesteps. If two bonded atoms I,J are further than a distance *Rmax*
-of each other, if the bond is of type *bondtype*, and if both I and J
-are in the specified fix group, then I,J is labeled as a "possible"
-bond to break.
-
-If several bonds involving an atom are stretched, it may have multiple
-possible bonds to break. Every atom checks its list of possible bonds
-to break and labels the longest such bond as its "sole" bond to break.
-After this is done, if atom I is bonded to atom J in its sole bond,
-and atom J is bonded to atom I in its sole bond, then the I,J bond is
-"eligible" to be broken.
-
-Note that these rules mean an atom will only be part of at most one
-broken bond on a given timestep. It also means that if atom I chooses
-atom J as its sole partner, but atom J chooses atom K is its sole
-partner (due to Rjk > Rij), then this means atom I will not be part of
-a broken bond on this timestep, even if it has other possible bond
-partners.
-
-The *prob* keyword can effect whether an eligible bond is actually
-broken. The *fraction* setting must be a value between 0.0 and 1.0.
-A uniform random number between 0.0 and 1.0 is generated and the
-eligible bond is only broken if the random number < fraction.
-
-When a bond is broken, data structures within LAMMPS that store bond
-topology are updated to reflect the breakage. Likewise, if the bond
-is part of a 3-body (angle) or 4-body (dihedral, improper)
-interaction, that interaction is removed as well. These changes
-typically affect pairwise interactions between atoms that used to be
-part of bonds, angles, etc.
-
-.. note::
-
- One data structure that is not updated when a bond breaks are
- the molecule IDs stored by each atom. Even though one molecule
- becomes two moleclues due to the broken bond, all atoms in both new
- moleclues retain their original molecule IDs.
-
-Computationally, each timestep this fix operates, it loops over all
-the bonds in the system and computes distances between pairs of bonded
-atoms. It also communicates between neighboring processors to
-coordinate which bonds are broken. Moreover, if any bonds are broken,
-neighbor lists must be immediately updated on the same timestep. This
-is to insure that any pairwise interactions that should be turned "on"
-due to a bond breaking, because they are no longer excluded by the
-presence of the bond and the settings of the
-:doc:`special_bonds <special_bonds>` command, will be immediately
-recognized. All of these operations increase the cost of a timestep.
-Thus you should be cautious about invoking this fix too frequently.
-
-You can dump out snapshots of the current bond topology via the :doc:`dump local <dump>` command.
-
-.. note::
-
- Breaking a bond typically alters the energy of a system. You
- should be careful not to choose bond breaking criteria that induce a
- dramatic change in energy. For example, if you define a very stiff
- harmonic bond and break it when 2 atoms are separated by a distance
- far from the equilibribum bond length, then the 2 atoms will be
- dramatically released when the bond is broken. More generally, you
- may need to thermostat your system to compensate for energy changes
- resulting from broken bonds (and angles, dihedrals, impropers).
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes two statistics which it stores in a global vector of
-length 2, which can be accessed by various :ref:`output commands <howto_15>`. The vector values calculated
-by this fix are "intensive".
-
-These are the 2 quantities:
-
-* (1) # of bonds broken on the most recent breakage timestep
-* (2) cummulative # of bonds broken
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MC package. It is only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix bond/create <fix_bond_create>`, :doc:`fix bond/swap <fix_bond_swap>`, :doc:`dump local <dump>`,
-:doc:`special_bonds <special_bonds>`
-
-Default
-"""""""
-
-The option defaults are prob = 1.0.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_bond_create.txt b/doc/_sources/fix_bond_create.txt
deleted file mode 100644
index 77de5bfbd..000000000
--- a/doc/_sources/fix_bond_create.txt
+++ /dev/null
@@ -1,263 +0,0 @@
-.. index:: fix bond/create
-
-fix bond/create command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID bond/create Nevery itype jtype Rmin bondtype keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* bond/create = style name of this fix command
-* Nevery = attempt bond creation every this many steps
-* itype,jtype = atoms of itype can bond to atoms of jtype
-* Rmin = 2 atoms separated by less than Rmin can bond (distance units)
-* bondtype = type of created bonds
-* zero or more keyword/value pairs may be appended to args
-* keyword = *iparam* or *jparam* or *prob* or *atype* or *dtype* or *itype*
-.. parsed-literal::
-
- *iparam* values = maxbond, newtype
- maxbond = max # of bonds of bondtype the itype atom can have
- newtype = change the itype atom to this type when maxbonds exist
- *jparam* values = maxbond, newtype
- maxbond = max # of bonds of bondtype the jtype atom can have
- newtype = change the jtype atom to this type when maxbonds exist
- *prob* values = fraction seed
- fraction = create a bond with this probability if otherwise eligible
- seed = random number seed (positive integer)
- *atype* value = angletype
- angletype = type of created angles
- *dtype* value = dihedraltype
- dihedraltype = type of created dihedrals
- *itype* value = impropertype
- impropertype = type of created impropers
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 5 all bond/create 10 1 2 0.8 1
- fix 5 all bond/create 1 3 3 0.8 1 prob 0.5 85784 iparam 2 3
- fix 5 all bond/create 1 3 3 0.8 1 prob 0.5 85784 iparam 2 3 atype 1 dtype 2
-
-Description
-"""""""""""
-
-Create bonds between pairs of atoms as a simulation runs according to
-specified criteria. This can be used to model cross-linking of
-polymers, the formation of a percolation network, etc. In this
-context, a bond means an interaction between a pair of atoms computed
-by the :doc:`bond_style <bond_style>` command. Once the bond is created
-it will be permanently in place. Optionally, the creation of a bond
-can also create angle, dihedral, and improper interactions that bond
-is part of. See the discussion of the *atype*, *dtype*, and *itype*
-keywords below.
-
-This is different than a :doc:`pairwise <pair_style>` bond-order
-potential such as Tersoff or AIREBO which infers bonds and many-body
-interactions based on the current geometry of a small cluster of atoms
-and effectively creates and destroys bonds and higher-order many-body
-interactions from timestep to timestep as atoms move.
-
-A check for possible new bonds is performed every *Nevery* timesteps.
-If two atoms I,J are within a distance *Rmin* of each other, if I is
-of atom type *itype*, if J is of atom type *jtype*, if both I and J
-are in the specified fix group, if a bond does not already exist
-between I and J, and if both I and J meet their respective *maxbond*
-requirement (explained below), then I,J is labeled as a "possible"
-bond pair.
-
-If several atoms are close to an atom, it may have multiple possible
-bond partners. Every atom checks its list of possible bond partners
-and labels the closest such partner as its "sole" bond partner. After
-this is done, if atom I has atom J as its sole partner, and atom J has
-atom I as its sole partner, then the I,J bond is "eligible" to be
-formed.
-
-Note that these rules mean an atom will only be part of at most one
-created bond on a given timestep. It also means that if atom I
-chooses atom J as its sole partner, but atom J chooses atom K is its
-sole partner (due to Rjk < Rij), then this means atom I will not form
-a bond on this timestep, even if it has other possible bond partners.
-
-It is permissible to have *itype* = *jtype*. *Rmin* must be <= the
-pairwise cutoff distance between *itype* and *jtype* atoms, as defined
-by the :doc:`pair_style <pair_style>` command.
-
-The *iparam* and *jparam* keywords can be used to limit the bonding
-functionality of the participating atoms. Each atom keeps track of
-how many bonds of *bondtype* it already has. If atom I of
-itype already has *maxbond* bonds (as set by the *iparam*
-keyword), then it will not form any more. Likewise for atom J. If
-*maxbond* is set to 0, then there is no limit on the number of bonds
-that can be formed with that atom.
-
-The *newtype* value for *iparam* and *jparam* can be used to change
-the atom type of atom I or J when it reaches *maxbond* number of bonds
-of type *bondtype*. This means it can now interact in a pairwise
-fashion with other atoms in a different way by specifying different
-:doc:`pair_coeff <pair_coeff>` coefficients. If you do not wish the
-atom type to change, simply specify *newtype* as *itype* or *jtype*.
-
-The *prob* keyword can also effect whether an eligible bond is
-actually created. The *fraction* setting must be a value between 0.0
-and 1.0. A uniform random number between 0.0 and 1.0 is generated and
-the eligible bond is only created if the random number < fraction.
-
-Any bond that is created is assigned a bond type of *bondtype*
-
-When a bond is created, data structures within LAMMPS that store bond
-topology are updated to reflect the creation. If the bond is part of
-new 3-body (angle) or 4-body (dihedral, improper) interactions, you
-can choose to create new angles, dihedrals, impropers as well, using
-the *atype*, *dtype*, and *itype* keywords. All of these changes
-typically affect pairwise interactions between atoms that are now part
-of new bonds, angles, etc.
-
-.. note::
-
- One data structure that is not updated when a bond breaks are
- the molecule IDs stored by each atom. Even though two molecules
- become one moleclue due to the created bond, all atoms in the new
- moleclue retain their original molecule IDs.
-
-If the *atype* keyword is used and if an angle potential is defined
-via the :doc:`angle_style <angle>` command, then any new 3-body
-interactions inferred by the creation of a bond will create new angles
-of type *angletype*, with parameters assigned by the corresponding
-:doc:`angle_coeff <angle_coeff>` command. Likewise, the *dtype* and
-*itype* keywords will create new dihedrals and impropers of type
-*dihedraltype* and *impropertype*.
-
-.. note::
-
- To create a new bond, the internal LAMMPS data structures that
- store this information must have space for it. When LAMMPS is
- initialized from a data file, the list of bonds is scanned and the
- maximum number of bonds per atom is tallied. If some atom will
- acquire more bonds than this limit as this fix operates, then the
- "extra bond per atom" parameter must be set to allow for it. Ditto
- for "extra angle per atom", "extra dihedral per atom", and "extra
- improper per atom" if angles, dihedrals, or impropers are being added
- when bonds are created. See the :doc:`read_data <read_data>` or
- :doc:`create_box <create_box>` command for more details. Note that a
- data file with no atoms can be used if you wish to add unbonded atoms
- via the :doc:`create atoms <create_atoms>` command, e.g. for a
- percolation simulation.
-
-.. note::
-
- LAMMPS stores and maintains a data structure with a list of the
- 1st, 2nd, and 3rd neighbors of each atom (within the bond topology of
- the system) for use in weighting pairwise interactions for bonded
- atoms. Note that adding a single bond always adds a new 1st neighbor
- but may also induce *many* new 2nd and 3rd neighbors, depending on the
- molecular topology of your system. The "extra special per atom"
- parameter must typically be set to allow for the new maximum total
- size (1st + 2nd + 3rd neighbors) of this per-atom list. There are 3
- ways to do this. See the :doc:`read_data <read_data>` or
- :doc:`create_box <create_box>` or "special_bonds extra" commands for
- details.
-
-.. note::
-
- Even if you do not use the *atype*, *dtype*, or *itype*
- keywords, the list of topological neighbors is updated for atoms
- affected by the new bond. This in turn affects which neighbors are
- considered for pairwise interactions, using the weighting rules set by
- the :doc:`special_bonds <special_bonds>` command. Consider a new bond
- created between atoms I,J. If J has a bonded neighbor K, then K
- becomes a 2nd neighbor of I. Even if the *atype* keyword is not used
- to create angle I-J-K, the pairwise interaction between I and K will
- be potentially turned off or weighted by the 1-3 weighting specified
- by the :doc:`special_bonds <special_bonds>` command. This is the case
- even if the "angle yes" option was used with that command. The same
- is true for 3rd neighbors (1-4 interactions), the *dtype* keyword, and
- the "dihedral yes" option used with the
- :doc:`special_bonds <special_bonds>` command.
-
-Note that even if your simulation starts with no bonds, you must
-define a :doc:`bond_style <bond_style>` and use the
-:doc:`bond_coeff <bond_coeff>` command to specify coefficients for the
-*bondtype*. Similarly, if new atom types are specified by the
-*iparam* or *jparam* keywords, they must be within the range of atom
-types allowed by the simulation and pairwise coefficients must be
-specified for the new types.
-
-Computationally, each timestep this fix operates, it loops over
-neighbor lists and computes distances between pairs of atoms in the
-list. It also communicates between neighboring processors to
-coordinate which bonds are created. Moreover, if any bonds are
-created, neighbor lists must be immediately updated on the same
-timestep. This is to insure that any pairwise interactions that
-should be turned "off" due to a bond creation, because they are now
-excluded by the presence of the bond and the settings of the
-:doc:`special_bonds <special_bonds>` command, will be immediately
-recognized. All of these operations increase the cost of a timestep.
-Thus you should be cautious about invoking this fix too frequently.
-
-You can dump out snapshots of the current bond topology via the :doc:`dump local <dump>` command.
-
-.. note::
-
- Creating a bond typically alters the energy of a system. You
- should be careful not to choose bond creation criteria that induce a
- dramatic change in energy. For example, if you define a very stiff
- harmonic bond and create it when 2 atoms are separated by a distance
- far from the equilibribum bond length, then the 2 atoms will oscillate
- dramatically when the bond is formed. More generally, you may need to
- thermostat your system to compensate for energy changes resulting from
- created bonds (and angles, dihedrals, impropers).
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes two statistics which it stores in a global vector of
-length 2, which can be accessed by various :ref:`output commands <howto_15>`. The vector values calculated
-by this fix are "intensive".
-
-These are the 2 quantities:
-
-* (1) # of bonds created on the most recent creation timestep
-* (2) cummulative # of bonds created
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MC package. It is only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix bond/break <fix_bond_break>`, :doc:`fix bond/swap <fix_bond_swap>`, :doc:`dump local <dump>`,
-:doc:`special_bonds <special_bonds>`
-
-Default
-"""""""
-
-The option defaults are iparam = (0,itype), jparam = (0,jtype), and
-prob = 1.0.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_bond_swap.txt b/doc/_sources/fix_bond_swap.txt
deleted file mode 100644
index 387c80af9..000000000
--- a/doc/_sources/fix_bond_swap.txt
+++ /dev/null
@@ -1,212 +0,0 @@
-.. index:: fix bond/swap
-
-fix bond/swap command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID bond/swap Nevery fraction cutoff seed
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* bond/swap = style name of this fix command
-* Nevery = attempt bond swapping every this many steps
-* fraction = fraction of group atoms to consider for swapping
-* cutoff = distance at which swapping will be considered (distance units)
-* seed = random # seed (positive integer)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all bond/swap 50 0.5 1.3 598934
-
-Description
-"""""""""""
-
-In a simulation of polymer chains, this command attempts to swap bonds
-between two different chains, effectively grafting the end of one
-chain onto another chain and vice versa. This is done via Monte Carlo
-rules using the Boltzmann acceptance criterion. The purpose is to
-equilibrate the polymer chain conformations more rapidly than dynamics
-alone would do it, by enabling instantaneous large conformational
-changes in a dense polymer melt. The polymer chains should thus more
-rapidly converge to the proper end-to-end distances and radii of
-gyration. It is designed for use with systems of
-:doc:`FENE <bond_fene>` or :doc:`harmonic <bond_harmonic>` bead-spring
-polymer chains where each polymer is a linear chain of monomers, but
-LAMMPS does not enforce this requirement, i.e. any
-:doc:`bond_style <bond_style>` can be used.
-
-A schematic of the kinds of bond swaps that can occur is shown here:
-
-.. image:: JPG/bondswap.jpg
- :align: center
-
-On the left, the red and blue chains have two monomers A1 and B1 close
-to each other, which are currently bonded to monomers A2 and B2
-respectively within their own chains. The bond swap operation will
-attempt to delete the A1-A2 and B1-B2 bonds and replace them with
-A1-B2 and B1-A2 bonds. If the swap is energetically favorable, the
-two chains on the right are the result and each polymer chain has
-undergone a dramatic conformational change. This reference,
-:ref:`(Sides) <Sides>` provides more details on how the algorithm works and
-its application:
-
-The bond swapping operation is invoked every *Nevery* timesteps. If
-any bond is swapped, a re-build of the neighbor lists is triggered,
-since a swap alters the list of which neighbors are considered for
-pairwise interaction. At each invocation, each processor considers a
-random specified *fraction* of its atoms as potential swapping
-monomers for this timestep. Choosing a small *fraction* value can
-reduce the likelihood of a reverse swap occurring soon after an
-initial swap.
-
-For each monomer A1, its neighbors are examined to find a possible B1
-monomer. Both A1 and B1 must be in the fix group, their separation
-must be less than the specified *cutoff*, and the molecule IDs of A1
-and B1 must be the same (see below). If a suitable partner is found,
-the energy change due to swapping the 2 bonds is computed. This
-includes changes in pairwise, bond, and angle energies due to the
-altered connectivity of the 2 chains. Dihedral and improper
-interactions are not allowed to be defined when this fix is used.
-
-If the energy decreases due to the swap operation, the bond swap is
-accepted. If the energy increases it is accepted with probability
-exp(-delta/kT) where delta is the increase in energy, k is the
-Boltzmann constant, and T is the current temperature of the system.
-Whether the swap is accepted or rejected, no other swaps are attempted
-by this processor on this timestep.
-
-The criterion for matching molecule IDs is how bond swaps performed by
-this fix conserve chain length. To use this features you must setup
-the molecule IDs for your polymer chains in a certain way, typically
-in the data file, read by the :doc:`read_data <read_data>` comand.
-Consider a system of 6-mer chains. You have 2 choices. If the
-molecule IDs for monomers on each chain are set to 1,2,3,4,5,6 then
-swaps will conserve chain length. For a particular momoner there will
-be only one other monomer on another chain which is a potential swap
-partner. If the molecule IDs for monomers on each chain are set to
-1,2,3,3,2,1 then swaps will conserve chain length but swaps will be
-able to occur at either end of a chain. Thus for a particular monomer
-there will be 2 possible swap partners on another chain. In this
-scenario, swaps can also occur within a single chain, i.e. the two
-ends of a chain swap with each other.
-
-.. note::
-
- If your simulation uses molecule IDs in the usual way, where all
- monomers on a single chain are assigned the same ID (different for
- each chain), then swaps will only occur within the same chain. If you
- assign the same molecule ID to all monomers in all chains then
- inter-chain swaps will occur, but they will not conserve chain length.
- Neither of these scenarios is probably what you want for this fix.
-
-.. note::
-
- When a bond swap occurs the image flags of monomers in the new
- polymer chains can become inconsistent. See the :doc:`dump <dump>`
- command for a discussion of image flags. This is not an issue for
- running dynamics, but can affect calculation of some diagnostic
- quantities or the printing of unwrapped coordinates to a dump file.
-
-
-----------
-
-
-This fix computes a temperature each time it is invoked for use by the
-Boltzmann criterion. To do this, the fix creates its own compute of
-style *temp*, as if this command had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp
-
-See the :doc:`compute temp <compute_temp>` command for details. Note
-that the ID of the new compute is the fix-ID with underscore + "temp"
-appended and the group for the new compute is "all", so that the
-temperature of the entire system is used.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodyanmic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-
-----------
-
-
-**Restart, fix_modify, thermo output, run start/stop, minimize info:**
-
-No information about this fix is written to :doc:`binary restart files <restart>`. Because the state of the random number generator
-is not saved in restart files, this means you cannot do "exact"
-restarts with this fix, where the simulation continues on the same as
-if no restart had taken place. However, in a statistical sense, a
-restarted simulation should produce the same behavior. Also note that
-each processor generates possible swaps independently of other
-processors. Thus if you repeat the same simulation on a different number
-of processors, the specific swaps performed will be different.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a :doc:`compute <compute>` you have
-defined to this fix which will be used to compute the temperature for
-the Boltzmann criterion.
-
-This fix computes two statistical quantities as a global 2-vector of
-output, which can be accessed by various :ref:`output commands <howto_15>`. The first component of the
-vector is the cummulative number of swaps performed by all processors.
-The second component of the vector is the cummulative number of swaps
-attempted (whether accepted or rejected). Note that a swap "attempt"
-only occurs when swap partners meeting the criteria described above
-are found on a particular timestep. The vector values calculated by
-this fix are "intensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MC package. It is only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The setings of the "special_bond" command must be 0,1,1 in order to
-use this fix, which is typical of bead-spring chains with FENE or
-harmonic bonds. This means that pairwise interactions between bonded
-atoms are turned off, but are turned on between atoms two or three
-hops away along the chain backbone.
-
-Currently, energy changes in dihedral and improper interactions due to
-a bond swap are not considered. Thus a simulation that uses this fix
-cannot use a dihedral or improper potential.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix atom/swap <fix_atom_swap>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Sides:
-
-
-
-**(Sides)** Sides, Grest, Stevens, Plimpton, J Polymer Science B, 42,
-199-208 (2004).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_box_relax.txt b/doc/_sources/fix_box_relax.txt
deleted file mode 100644
index ee273b500..000000000
--- a/doc/_sources/fix_box_relax.txt
+++ /dev/null
@@ -1,406 +0,0 @@
-.. index:: fix box/relax
-
-fix box/relax command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID box/relax keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* box/relax = style name of this fix command
-.. parsed-literal::
-
- one or more keyword value pairs may be appended
- keyword = *iso* or *aniso* or *tri* or *x* or *y* or *z* or *xy* or *yz* or *xz* or *couple* or *nreset* or *vmax* or *dilate* or *scaleyz* or *scalexz* or *scalexy* or *fixedpoint*
- *iso* or *aniso* or *tri* value = Ptarget = desired pressure (pressure units)
- *x* or *y* or *z* or *xy* or *yz* or *xz* value = Ptarget = desired pressure (pressure units)
- *couple* = *none* or *xyz* or *xy* or *yz* or *xz*
- *nreset* value = reset reference cell every this many minimizer iterations
- *vmax* value = fraction = max allowed volume change in one iteration
- *dilate* value = *all* or *partial*
- *scaleyz* value = *yes* or *no* = scale yz with lz
- *scalexz* value = *yes* or *no* = scale xz with lz
- *scalexy* value = *yes* or *no* = scale xy with ly
- *fixedpoint* values = x y z
- x,y,z = perform relaxation dilation/contraction around this point (distance units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all box/relax iso 0.0 vmax 0.001
- fix 2 water box/relax aniso 0.0 dilate partial
- fix 2 ice box/relax tri 0.0 couple xy nreset 100
-
-Description
-"""""""""""
-
-Apply an external pressure or stress tensor to the simulation box
-during an :doc:`energy minimization <minimize>`. This allows the box
-size and shape to vary during the iterations of the minimizer so that
-the final configuration will be both an energy minimum for the
-potential energy of the atoms, and the system pressure tensor will be
-close to the specified external tensor. Conceptually, specifying a
-positive pressure is like squeezing on the simulation box; a negative
-pressure typically allows the box to expand.
-
-
-----------
-
-
-The external pressure tensor is specified using one or more of the
-*iso*, *aniso*, *tri*, *x*, *y*, *z*, *xy*, *xz*, *yz*, and *couple*
-keywords. These keywords give you the ability to specify all 6
-components of an external stress tensor, and to couple various of
-these components together so that the dimensions they represent are
-varied together during the mimimization.
-
-Orthogonal simulation boxes have 3 adjustable dimensions (x,y,z).
-Triclinic (non-orthogonal) simulation boxes have 6 adjustable
-dimensions (x,y,z,xy,xz,yz). The :doc:`create_box <create_box>`, :doc:`read data <read_data>`, and :doc:`read_restart <read_restart>` commands
-specify whether the simulation box is orthogonal or non-orthogonal
-(triclinic) and explain the meaning of the xy,xz,yz tilt factors.
-
-The target pressures *Ptarget* for each of the 6 components of the
-stress tensor can be specified independently via the *x*, *y*, *z*,
-*xy*, *xz*, *yz* keywords, which correspond to the 6 simulation box
-dimensions. For example, if the *y* keyword is used, the y-box length
-will change during the minimization. If the *xy* keyword is used, the
-xy tilt factor will change. A box dimension will not change if that
-component is not specified.
-
-Note that in order to use the *xy*, *xz*, or *yz* keywords, the
-simulation box must be triclinic, even if its initial tilt factors are
-0.0.
-
-When the size of the simulation box changes, all atoms are re-scaled
-to new positions, unless the keyword *dilate* is specified with a
-value of *partial*, in which case only the atoms in the fix group are
-re-scaled. This can be useful for leaving the coordinates of atoms in
-a solid substrate unchanged and controlling the pressure of a
-surrounding fluid.
-
-The *scaleyz*, *scalexz*, and *scalexy* keywords control whether or
-not the corresponding tilt factors are scaled with the associated box
-dimensions when relaxing triclinic periodic cells. The default
-values *yes* will turn on scaling, which corresponds to adjusting the
-linear dimensions of the cell while preserving its shape. Choosing
-*no* ensures that the tilt factors are not scaled with the box
-dimensions. See below for restrictions and default values in different
-situations. In older versions of LAMMPS, scaling of tilt factors was
-not performed. The old behavior can be recovered by setting all three
-scale keywords to *no*.
-
-The *fixedpoint* keyword specifies the fixed point for cell relaxation.
-By default, it is the center of the box. Whatever point is
-chosen will not move during the simulation. For example, if the lower
-periodic boundaries pass through (0,0,0), and this point is provided
-to *fixedpoint*, then the lower periodic boundaries will remain at
-(0,0,0), while the upper periodic boundaries will move twice as
-far. In all cases, the particle positions at each iteration are
-unaffected by the chosen value, except that all particles are
-displaced by the same amount, different on each iteration.
-
-.. note::
-
- Appling an external pressure to tilt dimensions *xy*, *xz*, *yz*
- can sometimes result in arbitrarily large values of the tilt factors,
- i.e. a dramatically deformed simulation box. This typically indicates
- that there is something badly wrong with how the simulation was
- constructed. The two most common sources of this error are applying a
- shear stress to a liquid system or specifying an external shear stress
- tensor that exceeds the yield stress of the solid. In either case the
- minimization may converge to a bogus conformation or not converge at
- all. Also note that if the box shape tilts to an extreme shape,
- LAMMPS will run less efficiently, due to the large volume of
- communication needed to acquire ghost atoms around a processor's
- irregular-shaped sub-domain. For extreme values of tilt, LAMMPS may
- also lose atoms and generate an error.
-
-.. note::
-
- Performing a minimization with this fix is not a mathematically
- well-defined minimization problem. This is because the objective
- function being minimized changes if the box size/shape changes. In
- practice this means the minimizer can get "stuck" before you have
- reached the desired tolerance. The solution to this is to restart the
- minmizer from the new adjusted box size/shape, since that creates a
- new objective function valid for the new box size/shape. Repeat as
- necessary until the box size/shape has reached its new equilibrium.
-
-
-
-
-
-
-----------
-
-
-The *couple* keyword allows two or three of the diagonal components of
-the pressure tensor to be "coupled" together. The value specified
-with the keyword determines which are coupled. For example, *xz*
-means the *Pxx* and *Pzz* components of the stress tensor are coupled.
-*Xyz* means all 3 diagonal components are coupled. Coupling means two
-things: the instantaneous stress will be computed as an average of the
-corresponding diagonal components, and the coupled box dimensions will
-be changed together in lockstep, meaning coupled dimensions will be
-dilated or contracted by the same percentage every timestep. The
-*Ptarget* values for any coupled dimensions must be identical.
-*Couple xyz* can be used for a 2d simulation; the *z* dimension is
-simply ignored.
-
-
-----------
-
-
-The *iso*, *aniso*, and *tri* keywords are simply shortcuts that are
-equivalent to specifying several other keywords together.
-
-The keyword *iso* means couple all 3 diagonal components together when
-pressure is computed (hydrostatic pressure), and dilate/contract the
-dimensions together. Using "iso Ptarget" is the same as specifying
-these 4 keywords:
-
-.. parsed-literal::
-
- x Ptarget
- y Ptarget
- z Ptarget
- couple xyz
-
-The keyword *aniso* means *x*, *y*, and *z* dimensions are controlled
-independently using the *Pxx*, *Pyy*, and *Pzz* components of the
-stress tensor as the driving forces, and the specified scalar external
-pressure. Using "aniso Ptarget" is the same as specifying these 4
-keywords:
-
-.. parsed-literal::
-
- x Ptarget
- y Ptarget
- z Ptarget
- couple none
-
-The keyword *tri* means *x*, *y*, *z*, *xy*, *xz*, and *yz* dimensions
-are controlled independently using their individual stress components
-as the driving forces, and the specified scalar pressure as the
-external normal stress. Using "tri Ptarget" is the same as specifying
-these 7 keywords:
-
-.. parsed-literal::
-
- x Ptarget
- y Ptarget
- z Ptarget
- xy 0.0
- yz 0.0
- xz 0.0
- couple none
-
-
-----------
-
-
-The *vmax* keyword can be used to limit the fractional change in the
-volume of the simulation box that can occur in one iteration of the
-minimizer. If the pressure is not settling down during the
-minimization this can be because the volume is fluctuating too much.
-The specified fraction must be greater than 0.0 and should be << 1.0.
-A value of 0.001 means the volume cannot change by more than 1/10 of a
-percent in one iteration when *couple xyz* has been specified. For
-any other case it means no linear dimension of the simulation box can
-change by more than 1/10 of a percent.
-
-
-----------
-
-
-With this fix, the potential energy used by the minimizer is augmented
-by an additional energy provided by the fix. The overall objective
-function then is:
-
-.. image:: Eqs/fix_box_relax1.jpg
- :align: center
-
-where *U* is the system potential energy, *P*_t is the desired
-hydrostatic pressure, *V* and *V*_0 are the system and reference
-volumes, respectively. *E*_*strain* is the strain energy expression
-proposed by Parrinello and Rahman :ref:`(Parrinello1981) <Parrinello1981>`.
-Taking derivatives of *E* w.r.t. the box dimensions, and setting these
-to zero, we find that at the minimum of the objective function, the
-global system stress tensor **P** will satisfy the relation:
-
-.. image:: Eqs/fix_box_relax2.jpg
- :align: center
-
-where **I** is the identity matrix, **h**_0 is the box dimension tensor of
-the reference cell, and **h**_0*d* is the diagonal part of
-**h**_0. **S**_*t* is a symmetric stress tensor that is chosen by LAMMPS
-so that the upper-triangular components of **P** equal the stress tensor
-specified by the user.
-
-This equation only applies when the box dimensions are equal to those
-of the reference dimensions. If this is not the case, then the
-converged stress tensor will not equal that specified by the user. We
-can resolve this problem by periodically resetting the reference
-dimensions. The keyword *nreset_ref* controls how often this is done.
-If this keyword is not used, or is given a value of zero, then the
-reference dimensions are set to those of the initial simulation domain
-and are never changed. A value of *nstep* means that every *nstep*
-minimization steps, the reference dimensions are set to those of the
-current simulation domain. Note that resetting the reference
-dimensions changes the objective function and gradients, which
-sometimes causes the minimization to fail. This can be resolved by
-changing the value of *nreset*, or simply continuing the minimization
-from a restart file.
-
-.. note::
-
- As normally computed, pressure includes a kinetic- energy or
- temperature-dependent component; see the :doc:`compute pressure <compute_pressure>` command. However, atom velocities are
- ignored during a minimization, and the applied pressure(s) specified
- with this command are assumed to only be the virial component of the
- pressure (the non-kinetic portion). Thus if atoms have a non-zero
- temperature and you print the usual thermodynamic pressure, it may not
- appear the system is converging to your specified pressure. The
- solution for this is to either (a) zero the velocities of all atoms
- before performing the minimization, or (b) make sure you are
- monitoring the pressure without its kinetic component. The latter can
- be done by outputting the pressure from the fix this command creates
- (see below) or a pressure fix you define yourself.
-
-.. note::
-
- Because pressure is often a very sensitive function of volume,
- it can be difficult for the minimizer to equilibrate the system the
- desired pressure with high precision, particularly for solids. Some
- techniques that seem to help are (a) use the "min_modify line
- quadratic" option when minimizing with box relaxations, (b) minimize
- several times in succession if need be, to drive the pressure closer
- to the target pressure, (c) relax the atom positions before relaxing
- the box, and (d) relax the box to the target hydrostatic pressure
- before relaxing to a target shear stress state. Also note that some
- systems (e.g. liquids) will not sustain a non-hydrostatic applied
- pressure, which means the minimizer will not converge.
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. The
-temperature is used to compute the kinetic contribution to the
-pressure, even though this is subsequently ignored by default. To do
-this, the fix creates its own computes of style "temp" and "pressure",
-as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
- compute fix-ID_press group-ID pressure fix-ID_temp virial
-
-See the :doc:`compute temp <compute_temp>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is the same
-as the fix group. Also note that the pressure compute does not
-include a kinetic component.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its temperature and pressure calculation, as described above. Note
-that as described above, if you assign a pressure compute to this fix
-that includes a kinetic energy component it will affect the
-minimization, most likely in an undesirable way.
-
-.. note::
-
- If both the *temp* and *press* keywords are used in a single
- thermo_modify command (or in two separate commands), then the order in
- which the keywords are specified is important. Note that a :doc:`pressure compute <compute_pressure>` defines its own temperature compute as
- an argument when it is specified. The *temp* keyword will override
- this (for the pressure compute being used by fix npt), but only if the
- *temp* keyword comes after the *press* keyword. If the *temp* keyword
- comes before the *press* keyword, then the new pressure compute
- specified by the *press* keyword will be unaffected by the *temp*
- setting.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-pressure-volume energy, plus the strain energy, if it exists.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-This fix is invoked during :doc:`energy minimization <minimize>`, but
-not for the purpose of adding a contribution to the energy or forces
-being minimized. Instead it alters the simulation box geometry as
-described above.
-
-Restrictions
-""""""""""""
-
-
-Only dimensions that are available can be adjusted by this fix.
-Non-periodic dimensions are not available. *z*, *xz*, and *yz*, are
-not available for 2D simulations. *xy*, *xz*, and *yz* are only
-available if the simulation domain is non-orthogonal. The
-:doc:`create_box <create_box>`, :doc:`read data <read_data>`, and
-:doc:`read_restart <read_restart>` commands specify whether the
-simulation box is orthogonal or non-orthogonal (triclinic) and explain
-the meaning of the xy,xz,yz tilt factors.
-
-The *scaleyz yes* and *scalexz yes* keyword/value pairs can not be used
-for 2D simulations. *scaleyz yes*, *scalexz yes*, and *scalexy yes* options
-can only be used if the 2nd dimension in the keyword is periodic,
-and if the tilt factor is not coupled to the barostat via keywords
-*tri*, *yz*, *xz*, and *xy*.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix npt <fix_nh>`, :doc:`minimize <minimize>`
-
-Default
-"""""""
-
-The keyword defaults are dilate = all, vmax = 0.0001, nreset = 0.
-
-
-----------
-
-
-.. _Parrinello1981:
-
-
-
-**(Parrinello1981)** Parrinello and Rahman, J Appl Phys, 52, 7182 (1981).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_colvars.txt b/doc/_sources/fix_colvars.txt
deleted file mode 100644
index fc7e845dc..000000000
--- a/doc/_sources/fix_colvars.txt
+++ /dev/null
@@ -1,158 +0,0 @@
-.. index:: fix colvars
-
-fix colvars command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID colvars configfile keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* colvars = style name of this fix command
-* configfile = the configuration file for the colvars module
-* keyword = *input* or *output* or *seed* or *tstat*
-.. parsed-literal::
-
- *input* arg = colvars.state file name or prefix or NULL (default: NULL)
- *output* arg = output filename prefix (default: out)
- *seed* arg = seed for random number generator (default: 1966)
- *unwrap* arg = *yes* or *no*
- use unwrapped coordinates in collective variables (default: yes)
- *tstat* arg = fix id of a thermostat or NULL (default: NULL)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix mtd all colvars peptide.colvars.inp seed 2122 input peptide.colvars.state output peptide
- fix abf all colvars colvars.inp tstat 1
-
-Description
-"""""""""""
-
-This fix interfaces LAMMPS to a "collective variables" or "colvars"
-module library which allows to calculate potentials of mean force
-(PMFs) for any set of colvars, using different sampling methods:
-currently implemented are the Adaptive Biasing Force (ABF) method,
-metadynamics, Steered Molecular Dynamics (SMD) and Umbrella Sampling
-(US) via a flexible harmonic restraint bias. The colvars library is
-hosted at `http://colvars.github.io/ <http://colvars.github.io/>`_
-
-This documentation describes only the fix colvars command itself and
-LAMMPS specific parts of the code. The full documentation of the
-colvars library is available as `this supplementary PDF document <PDF/colvars-refman-lammps.pdf>`_
-
-A detailed discussion of the implementation of the portable collective
-variable library is in :ref:`(Fiorin) <Fiorin>`. Additional information can
-be found in :ref:`(Henin) <Henin>`.
-
-There are some example scripts for using this package with LAMMPS in the
-examples/USER/colvars directory.
-
-
-----------
-
-
-The only mandatory argument to the fix is the filename to the colvars
-input file that contains the input that is independent from the MD
-program in which the colvars library has been integrated.
-
-The *group-ID* entry is ignored. The collective variable module will
-always apply to the entire system and there can only be one instance
-of the colvars fix at a time. The colvars fix will only communicate
-the minimum information necessary and the colvars library supports
-multiple, completely independent collective variables, so there is
-no restriction to functionaliry by limiting the number of colvars fixes.
-
-The *input* keyword allows to specify a state file that would contain
-the restart information required in order to continue a calculation from
-a prerecorded state. Fix colvars records it state in :doc:`binary restart <restart>`
-files, so when using the :doc:`read_restart <read_restart>` command,
-this is usually not needed.
-
-The *output* keyword allows to specify the output prefix. All output
-files generated will use this prefix followed by the ".colvars." and
-a word like "state" or "traj".
-
-The *seed* keyword contains the seed for the random number generator
-that will be used in the colvars module.
-
-The *unwrap* keyword controls whether wrapped or unwrapped coordinates
-are passed to the colvars library for calculation of the collective
-variables and the resulting forces. The default is *yes*, i.e. to use
-the image flags to reconstruct the absolute atom positions.
-Setting this to *no* will use the current local coordinates that are
-wrapped back into the simulation cell at each re-neighboring instead.
-
-The *tstat* keyword can be either NULL or the label of a thermostating
-fix that thermostats all atoms in the fix colvars group. This will be
-used to provide the colvars module with the current thermostat target
-temperature.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the current status of the colvars module into
-:doc:`binary restart files <restart>`. This is in addition to the text
-mode status file that is written by the colvars module itself and the
-kind of information in both files is identical.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change from the biasing force added by the fix
-to the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to this fix. The scalar value
-calculated by this fix is "extensive".
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-COLVARS package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-There can only be one colvars fix active at a time. Since the interface
-communicates only the minimum amount of information and colvars module
-itself can handle an arbitrary number of collective variables, this is
-not a limitation of functionality.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix smd <fix_smd>`
-
-Default
-"""""""
-
-The default options are input = NULL, output = out, seed = 1966, unwrap yes,
-and tstat = NULL.
-
-
-----------
-
-
-.. _Fiorin:
-
-
-
-**(Fiorin)** Fiorin , Klein, Henin, Mol. Phys., DOI:10.1080/00268976.2013.813594
-
-.. _Henin:
-
-
-
-**(Henin)** Henin, Fiorin, Chipot, Klein, J. Chem. Theory Comput., 6,
-35-47 (2010)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_deform.txt b/doc/_sources/fix_deform.txt
deleted file mode 100644
index b2a35d860..000000000
--- a/doc/_sources/fix_deform.txt
+++ /dev/null
@@ -1,628 +0,0 @@
-.. index:: fix deform
-
-fix deform command
-==================
-
-fix deform/kk command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID deform N parameter args ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* deform = style name of this fix command
-* N = perform box deformation every this many timesteps
-* one or more parameter/arg pairs may be appended
-.. parsed-literal::
-
- parameter = *x* or *y* or *z* or *xy* or *xz* or *yz*
- *x*, *y*, *z* args = style value(s)
- style = *final* or *delta* or *scale* or *vel* or *erate* or *trate* or *volume* or *wiggle* or *variable*
- *final* values = lo hi
- lo hi = box boundaries at end of run (distance units)
- *delta* values = dlo dhi
- dlo dhi = change in box boundaries at end of run (distance units)
- *scale* values = factor
- factor = multiplicative factor for change in box length at end of run
- *vel* value = V
- V = change box length at this velocity (distance/time units),
- effectively an engineering strain rate
- *erate* value = R
- R = engineering strain rate (1/time units)
- *trate* value = R
- R = true strain rate (1/time units)
- *volume* value = none = adjust this dim to preserve volume of system
- *wiggle* values = A Tp
- A = amplitude of oscillation (distance units)
- Tp = period of oscillation (time units)
- *variable* values = v_name1 v_name2
- v_name1 = variable with name1 for box length change as function of time
- v_name2 = variable with name2 for change rate as function of time
- *xy*, *xz*, *yz* args = style value
- style = *final* or *delta* or *vel* or *erate* or *trate* or *wiggle*
- *final* value = tilt
- tilt = tilt factor at end of run (distance units)
- *delta* value = dtilt
- dtilt = change in tilt factor at end of run (distance units)
- *vel* value = V
- V = change tilt factor at this velocity (distance/time units),
- effectively an engineering shear strain rate
- *erate* value = R
- R = engineering shear strain rate (1/time units)
- *trate* value = R
- R = true shear strain rate (1/time units)
- *wiggle* values = A Tp
- A = amplitude of oscillation (distance units)
- Tp = period of oscillation (time units)
- *variable* values = v_name1 v_name2
- v_name1 = variable with name1 for tilt change as function of time
- v_name2 = variable with name2 for change rate as function of time
-
-* zero or more keyword/value pairs may be appended
-* keyword = *remap* or *flip* or *units*
-.. parsed-literal::
-
- *remap* value = *x* or *v* or *none*
- x = remap coords of atoms in group into deforming box
- v = remap velocities of all atoms when they cross periodic boundaries
- none = no remapping of x or v
- *flip* value = *yes* or *no*
- allow or disallow box flips when it becomes highly skewed
- *units* value = *lattice* or *box*
- lattice = distances are defined in lattice units
- box = distances are defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all deform 1 x final 0.0 9.0 z final 0.0 5.0 units box
- fix 1 all deform 1 x trate 0.1 y volume z volume
- fix 1 all deform 1 xy erate 0.001 remap v
- fix 1 all deform 10 y delta -0.5 0.5 xz vel 1.0
-
-Description
-"""""""""""
-
-Change the volume and/or shape of the simulation box during a dynamics
-run. Orthogonal simulation boxes have 3 adjustable parameters
-(x,y,z). Triclinic (non-orthogonal) simulation boxes have 6
-adjustable parameters (x,y,z,xy,xz,yz). Any or all of them can be
-adjusted independently and simultaneously by this command. This fix
-can be used to perform non-equilibrium MD (NEMD) simulations of a
-continuously strained system. See the :doc:`fix nvt/sllod <fix_nvt_sllod>` and :doc:`compute temp/deform <compute_temp_deform>` commands for more details.
-
-For the *x*, *y*, *z* parameters, the associated dimension cannot be
-shrink-wrapped. For the *xy*, *yz*, *xz* parameters, the associated
-2nd dimension cannot be shrink-wrapped. Dimensions not varied by this
-command can be periodic or non-periodic. Dimensions corresponding to
-unspecified parameters can also be controlled by a :doc:`fix npt <fix_nh>` or :doc:`fix nph <fix_nh>` command.
-
-The size and shape of the simulation box at the beginning of the
-simulation run were either specified by the
-:doc:`create_box <create_box>` or :doc:`read_data <read_data>` or
-:doc:`read_restart <read_restart>` command used to setup the simulation
-initially if it is the first run, or they are the values from the end
-of the previous run. The :doc:`create_box <create_box>`, :doc:`read data <read_data>`, and :doc:`read_restart <read_restart>` commands
-specify whether the simulation box is orthogonal or non-orthogonal
-(triclinic) and explain the meaning of the xy,xz,yz tilt factors. If
-fix deform changes the xy,xz,yz tilt factors, then the simulation box
-must be triclinic, even if its initial tilt factors are 0.0.
-
-As described below, the desired simulation box size and shape at the
-end of the run are determined by the parameters of the fix deform
-command. Every Nth timestep during the run, the simulation box is
-expanded, contracted, or tilted to ramped values between the initial
-and final values.
-
-
-----------
-
-
-For the *x*, *y*, and *z* parameters, this is the meaning of their
-styles and values.
-
-The *final*, *delta*, *scale*, *vel*, and *erate* styles all change
-the specified dimension of the box via "constant displacement" which
-is effectively a "constant engineering strain rate". This means the
-box dimension changes linearly with time from its initial to final
-value.
-
-For style *final*, the final lo and hi box boundaries of a dimension
-are specified. The values can be in lattice or box distance units.
-See the discussion of the units keyword below.
-
-For style *delta*, plus or minus changes in the lo/hi box boundaries
-of a dimension are specified. The values can be in lattice or box
-distance units. See the discussion of the units keyword below.
-
-For style *scale*, a multiplicative factor to apply to the box length
-of a dimension is specified. For example, if the initial box length
-is 10, and the factor is 1.1, then the final box length will be 11. A
-factor less than 1.0 means compression.
-
-For style *vel*, a velocity at which the box length changes is
-specified in units of distance/time. This is effectively a "constant
-engineering strain rate", where rate = V/L0 and L0 is the initial box
-length. The distance can be in lattice or box distance units. See
-the discussion of the units keyword below. For example, if the
-initial box length is 100 Angstroms, and V is 10 Angstroms/psec, then
-after 10 psec, the box length will have doubled. After 20 psec, it
-will have tripled.
-
-The *erate* style changes a dimension of the the box at a "constant
-engineering strain rate". The units of the specified strain rate are
-1/time. See the :doc:`units <units>` command for the time units
-associated with different choices of simulation units,
-e.g. picoseconds for "metal" units). Tensile strain is unitless and
-is defined as delta/L0, where L0 is the original box length and delta
-is the change relative to the original length. The box length L as a
-function of time will change as
-
-.. parsed-literal::
-
- L(t) = L0 (1 + erate*dt)
-
-where dt is the elapsed time (in time units). Thus if *erate* R is
-specified as 0.1 and time units are picoseconds, this means the box
-length will increase by 10% of its original length every picosecond.
-I.e. strain after 1 psec = 0.1, strain after 2 psec = 0.2, etc. R =
--0.01 means the box length will shrink by 1% of its original length
-every picosecond. Note that for an "engineering" rate the change is
-based on the original box length, so running with R = 1 for 10
-picoseconds expands the box length by a factor of 11 (strain of 10),
-which is different that what the *trate* style would induce.
-
-The *trate* style changes a dimension of the box at a "constant true
-strain rate". Note that this is not an "engineering strain rate", as
-the other styles are. Rather, for a "true" rate, the rate of change
-is constant, which means the box dimension changes non-linearly with
-time from its initial to final value. The units of the specified
-strain rate are 1/time. See the :doc:`units <units>` command for the
-time units associated with different choices of simulation units,
-e.g. picoseconds for "metal" units). Tensile strain is unitless and
-is defined as delta/L0, where L0 is the original box length and delta
-is the change relative to the original length.
-
-The box length L as a function of time will change as
-
-.. parsed-literal::
-
- L(t) = L0 exp(trate*dt)
-
-where dt is the elapsed time (in time units). Thus if *trate* R is
-specified as ln(1.1) and time units are picoseconds, this means the
-box length will increase by 10% of its current (not original) length
-every picosecond. I.e. strain after 1 psec = 0.1, strain after 2 psec
-= 0.21, etc. R = ln(2) or ln(3) means the box length will double or
-triple every picosecond. R = ln(0.99) means the box length will
-shrink by 1% of its current length every picosecond. Note that for a
-"true" rate the change is continuous and based on the current length,
-so running with R = ln(2) for 10 picoseconds does not expand the box
-length by a factor of 11 as it would with *erate*, but by a factor of
-1024 since the box length will double every picosecond.
-
-Note that to change the volume (or cross-sectional area) of the
-simulation box at a constant rate, you can change multiple dimensions
-via *erate* or *trate*. E.g. to double the box volume in a picosecond
-picosecond, you could set "x erate M", "y erate M", "z erate M", with
-M = pow(2,1/3) - 1 = 0.26, since if each box dimension grows by 26%,
-the box volume doubles. Or you could set "x trate M", "y trate M", "z
-trate M", with M = ln(1.26) = 0.231, and the box volume would double
-every picosecond.
-
-The *volume* style changes the specified dimension in such a way that
-the box volume remains constant while other box dimensions are changed
-explicitly via the styles discussed above. For example, "x scale 1.1
-y scale 1.1 z volume" will shrink the z box length as the x,y box
-lengths increase, to keep the volume constant (product of x,y,z
-lengths). If "x scale 1.1 z volume" is specified and parameter *y* is
-unspecified, then the z box length will shrink as x increases to keep
-the product of x,z lengths constant. If "x scale 1.1 y volume z
-volume" is specified, then both the y,z box lengths will shrink as x
-increases to keep the volume constant (product of x,y,z lengths). In
-this case, the y,z box lengths shrink so as to keep their relative
-aspect ratio constant.
-
-For solids or liquids, note that when one dimension of the box is
-expanded via fix deform (i.e. tensile strain), it may be physically
-undesirable to hold the other 2 box lengths constant (unspecified by
-fix deform) since that implies a density change. Using the *volume*
-style for those 2 dimensions to keep the box volume constant may make
-more physical sense, but may also not be correct for materials and
-potentials whose Poisson ratio is not 0.5. An alternative is to use
-:doc:`fix npt aniso <fix_nh>` with zero applied pressure on those 2
-dimensions, so that they respond to the tensile strain dynamically.
-
-The *wiggle* style oscillates the specified box length dimension
-sinusoidally with the specified amplitude and period. I.e. the box
-length L as a function of time is given by
-
-.. parsed-literal::
-
- L(t) = L0 + A sin(2*pi t/Tp)
-
-where L0 is its initial length. If the amplitude A is a positive
-number the box initially expands, then contracts, etc. If A is
-negative then the box initially contracts, then expands, etc. The
-amplitude can be in lattice or box distance units. See the discussion
-of the units keyword below.
-
-The *variable* style changes the specified box length dimension by
-evaluating a variable, which presumably is a function of time. The
-variable with *name1* must be an :doc:`equal-style variable <variable>`
-and should calculate a change in box length in units of distance.
-Note that this distance is in box units, not lattice units; see the
-discussion of the *units* keyword below. The formula associated with
-variable *name1* can reference the current timestep. Note that it
-should return the "change" in box length, not the absolute box length.
-This means it should evaluate to 0.0 when invoked on the initial
-timestep of the run following the definition of fix deform. It should
-evaluate to a value > 0.0 to dilate the box at future times, or a
-value < 0.0 to compress the box.
-
-The variable *name2* must also be an :doc:`equal-style variable <variable>` and should calculate the rate of box length
-change, in units of distance/time, i.e. the time-derivative of the
-*name1* variable. This quantity is used internally by LAMMPS to reset
-atom velocities when they cross periodic boundaries. It is computed
-internally for the other styles, but you must provide it when using an
-arbitrary variable.
-
-Here is an example of using the *variable* style to perform the same
-box deformation as the *wiggle* style formula listed above, where we
-assume that the current timestep = 0.
-
-.. parsed-literal::
-
- variable A equal 5.0
- variable Tp equal 10.0
- variable displace equal "v_A * sin(2*PI * step*dt/v_Tp)"
- variable rate equal "2*PI*v_A/v_Tp * cos(2*PI * step*dt/v_Tp)"
- fix 2 all deform 1 x variable v_displace v_rate remap v
-
-For the *scale*, *vel*, *erate*, *trate*, *volume*, *wiggle*, and
-*variable* styles, the box length is expanded or compressed around its
-mid point.
-
-
-----------
-
-
-For the *xy*, *xz*, and *yz* parameters, this is the meaning of their
-styles and values. Note that changing the tilt factors of a triclinic
-box does not change its volume.
-
-The *final*, *delta*, *vel*, and *erate* styles all change the shear
-strain at a "constant engineering shear strain rate". This means the
-tilt factor changes linearly with time from its initial to final
-value.
-
-For style *final*, the final tilt factor is specified. The value
-can be in lattice or box distance units. See the discussion of the
-units keyword below.
-
-For style *delta*, a plus or minus change in the tilt factor is
-specified. The value can be in lattice or box distance units. See
-the discussion of the units keyword below.
-
-For style *vel*, a velocity at which the tilt factor changes is
-specified in units of distance/time. This is effectively an
-"engineering shear strain rate", where rate = V/L0 and L0 is the
-initial box length perpendicular to the direction of shear. The
-distance can be in lattice or box distance units. See the discussion
-of the units keyword below. For example, if the initial tilt factor
-is 5 Angstroms, and the V is 10 Angstroms/psec, then after 1 psec, the
-tilt factor will be 15 Angstroms. After 2 psec, it will be 25
-Angstroms.
-
-The *erate* style changes a tilt factor at a "constant engineering
-shear strain rate". The units of the specified shear strain rate are
-1/time. See the :doc:`units <units>` command for the time units
-associated with different choices of simulation units,
-e.g. picoseconds for "metal" units). Shear strain is unitless and is
-defined as offset/length, where length is the box length perpendicular
-to the shear direction (e.g. y box length for xy deformation) and
-offset is the displacement distance in the shear direction (e.g. x
-direction for xy deformation) from the unstrained orientation.
-
-The tilt factor T as a function of time will change as
-
-.. parsed-literal::
-
- T(t) = T0 + L0*erate*dt
-
-where T0 is the initial tilt factor, L0 is the original length of the
-box perpendicular to the shear direction (e.g. y box length for xy
-deformation), and dt is the elapsed time (in time units). Thus if
-*erate* R is specified as 0.1 and time units are picoseconds, this
-means the shear strain will increase by 0.1 every picosecond. I.e. if
-the xy shear strain was initially 0.0, then strain after 1 psec = 0.1,
-strain after 2 psec = 0.2, etc. Thus the tilt factor would be 0.0 at
-time 0, 0.1*ybox at 1 psec, 0.2*ybox at 2 psec, etc, where ybox is the
-original y box length. R = 1 or 2 means the tilt factor will increase
-by 1 or 2 every picosecond. R = -0.01 means a decrease in shear
-strain by 0.01 every picosecond.
-
-The *trate* style changes a tilt factor at a "constant true shear
-strain rate". Note that this is not an "engineering shear strain
-rate", as the other styles are. Rather, for a "true" rate, the rate
-of change is constant, which means the tilt factor changes
-non-linearly with time from its initial to final value. The units of
-the specified shear strain rate are 1/time. See the
-:doc:`units <units>` command for the time units associated with
-different choices of simulation units, e.g. picoseconds for "metal"
-units). Shear strain is unitless and is defined as offset/length,
-where length is the box length perpendicular to the shear direction
-(e.g. y box length for xy deformation) and offset is the displacement
-distance in the shear direction (e.g. x direction for xy deformation)
-from the unstrained orientation.
-
-The tilt factor T as a function of time will change as
-
-.. parsed-literal::
-
- T(t) = T0 exp(trate*dt)
-
-where T0 is the initial tilt factor and dt is the elapsed time (in
-time units). Thus if *trate* R is specified as ln(1.1) and time units
-are picoseconds, this means the shear strain or tilt factor will
-increase by 10% every picosecond. I.e. if the xy shear strain was
-initially 0.1, then strain after 1 psec = 0.11, strain after 2 psec =
-0.121, etc. R = ln(2) or ln(3) means the tilt factor will double or
-triple every picosecond. R = ln(0.99) means the tilt factor will
-shrink by 1% every picosecond. Note that the change is continuous, so
-running with R = ln(2) for 10 picoseconds does not change the tilt
-factor by a factor of 10, but by a factor of 1024 since it doubles
-every picosecond. Note that the initial tilt factor must be non-zero
-to use the *trate* option.
-
-Note that shear strain is defined as the tilt factor divided by the
-perpendicular box length. The *erate* and *trate* styles control the
-tilt factor, but assume the perpendicular box length remains constant.
-If this is not the case (e.g. it changes due to another fix deform
-parameter), then this effect on the shear strain is ignored.
-
-The *wiggle* style oscillates the specified tilt factor sinusoidally
-with the specified amplitude and period. I.e. the tilt factor T as a
-function of time is given by
-
-.. parsed-literal::
-
- T(t) = T0 + A sin(2*pi t/Tp)
-
-where T0 is its initial value. If the amplitude A is a positive
-number the tilt factor initially becomes more positive, then more
-negative, etc. If A is negative then the tilt factor initially
-becomes more negative, then more positive, etc. The amplitude can be
-in lattice or box distance units. See the discussion of the units
-keyword below.
-
-The *variable* style changes the specified tilt factor by evaluating a
-variable, which presumably is a function of time. The variable with
-*name1* must be an :doc:`equal-style variable <variable>` and should
-calculate a change in tilt in units of distance. Note that this
-distance is in box units, not lattice units; see the discussion of the
-*units* keyword below. The formula associated with variable *name1*
-can reference the current timestep. Note that it should return the
-"change" in tilt factor, not the absolute tilt factor. This means it
-should evaluate to 0.0 when invoked on the initial timestep of the run
-following the definition of fix deform.
-
-The variable *name2* must also be an :doc:`equal-style variable <variable>` and should calculate the rate of tilt change,
-in units of distance/time, i.e. the time-derivative of the *name1*
-variable. This quantity is used internally by LAMMPS to reset atom
-velocities when they cross periodic boundaries. It is computed
-internally for the other styles, but you must provide it when using an
-arbitrary variable.
-
-Here is an example of using the *variable* style to perform the same
-box deformation as the *wiggle* style formula listed above, where we
-assume that the current timestep = 0.
-
-.. parsed-literal::
-
- variable A equal 5.0
- variable Tp equal 10.0
- variable displace equal "v_A * sin(2*PI * step*dt/v_Tp)"
- variable rate equal "2*PI*v_A/v_Tp * cos(2*PI * step*dt/v_Tp)"
- fix 2 all deform 1 xy variable v_displace v_rate remap v
-
-
-----------
-
-
-All of the tilt styles change the xy, xz, yz tilt factors during a
-simulation. In LAMMPS, tilt factors (xy,xz,yz) for triclinic boxes
-are normally bounded by half the distance of the parallel box length.
-See the discussion of the *flip* keyword below, to allow this bound to
-be exceeded, if desired.
-
-For example, if xlo = 2 and xhi = 12, then the x box length is 10 and
-the xy tilt factor must be between -5 and 5. Similarly, both xz and
-yz must be between -(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is
-not a limitation, since if the maximum tilt factor is 5 (as in this
-example), then configurations with tilt = ..., -15, -5, 5, 15, 25,
-... are all equivalent.
-
-To obey this constraint and allow for large shear deformations to be
-applied via the *xy*, *xz*, or *yz* parameters, the following
-algorithm is used. If *prd* is the associated parallel box length (10
-in the example above), then if the tilt factor exceeds the accepted
-range of -5 to 5 during the simulation, then the box is flipped to the
-other limit (an equivalent box) and the simulation continues. Thus
-for this example, if the initial xy tilt factor was 0.0 and "xy final
-100.0" was specified, then during the simulation the xy tilt factor
-would increase from 0.0 to 5.0, the box would be flipped so that the
-tilt factor becomes -5.0, the tilt factor would increase from -5.0 to
-5.0, the box would be flipped again, etc. The flip occurs 10 times
-and the final tilt factor at the end of the simulation would be 0.0.
-During each flip event, atoms are remapped into the new box in the
-appropriate manner.
-
-The one exception to this rule is if the 1st dimension in the tilt
-factor (x for xy) is non-periodic. In that case, the limits on the
-tilt factor are not enforced, since flipping the box in that dimension
-does not change the atom positions due to non-periodicity. In this
-mode, if you tilt the system to extreme angles, the simulation will
-simply become inefficient due to the highly skewed simulation box.
-
-
-----------
-
-
-Each time the box size or shape is changed, the *remap* keyword
-determines whether atom positions are remapped to the new box. If
-*remap* is set to *x* (the default), atoms in the fix group are
-remapped; otherwise they are not. Note that their velocities are not
-changed, just their positions are altered. If *remap* is set to *v*,
-then any atom in the fix group that crosses a periodic boundary will
-have a delta added to its velocity equal to the difference in
-velocities between the lo and hi boundaries. Note that this velocity
-difference can include tilt components, e.g. a delta in the x velocity
-when an atom crosses the y periodic boundary. If *remap* is set to
-*none*, then neither of these remappings take place.
-
-Conceptually, setting *remap* to *x* forces the atoms to deform via an
-affine transformation that exactly matches the box deformation. This
-setting is typically appropriate for solids. Note that though the
-atoms are effectively "moving" with the box over time, it is not due
-to their having a velocity that tracks the box change, but only due to
-the remapping. By contrast, setting *remap* to *v* is typically
-appropriate for fluids, where you want the atoms to respond to the
-change in box size/shape on their own and acquire a velocity that
-matches the box change, so that their motion will naturally track the
-box without explicit remapping of their coordinates.
-
-.. note::
-
- When non-equilibrium MD (NEMD) simulations are performed using
- this fix, the option "remap v" should normally be used. This is
- because :doc:`fix nvt/sllod <fix_nvt_sllod>` adjusts the atom positions
- and velocities to induce a velocity profile that matches the changing
- box size/shape. Thus atom coordinates should NOT be remapped by fix
- deform, but velocities SHOULD be when atoms cross periodic boundaries,
- since that is consistent with maintaining the velocity profile already
- created by fix nvt/sllod. LAMMPS will warn you if the *remap* setting
- is not consistent with fix nvt/sllod.
-
-.. note::
-
- For non-equilibrium MD (NEMD) simulations using "remap v" it is
- usually desirable that the fluid (or flowing material, e.g. granular
- particles) stream with a velocity profile consistent with the
- deforming box. As mentioned above, using a thermostat such as :doc:`fix nvt/sllod <fix_nvt_sllod>` or :doc:`fix lavgevin <doc/fix_langevin>`
- (with a bias provided by :doc:`compute temp/deform <compute_temp_deform>`), will typically accomplish
- that. If you do not use a thermostat, then there is no driving force
- pushing the atoms to flow in a manner consistent with the deforming
- box. E.g. for a shearing system the box deformation velocity may vary
- from 0 at the bottom to 10 at the top of the box. But the stream
- velocity profile of the atoms may vary from -5 at the bottom to +5 at
- the top. You can monitor these effects using the :doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`compute temp/deform <compute_temp_deform>`, and :doc:`compute temp/profile <compute_temp_profile>` commands. One way to induce
- atoms to stream consistent with the box deformation is to give them an
- initial velocity profile, via the :doc:`velocity ramp <velocity>`
- command, that matches the box deformation rate. This also typically
- helps the system come to equilibrium more quickly, even if a
- thermostat is used.
-
-.. note::
-
- If a :doc:`fix rigid <fix_rigid>` is defined for rigid bodies, and
- *remap* is set to *x*, then the center-of-mass coordinates of rigid
- bodies will be remapped to the changing simulation box. This will be
- done regardless of whether atoms in the rigid bodies are in the fix
- deform group or not. The velocity of the centers of mass are not
- remapped even if *remap* is set to *v*, since :doc:`fix nvt/sllod <fix_nvt_sllod>` does not currently do anything special
- for rigid particles. If you wish to perform a NEMD simulation of
- rigid particles, you can either thermostat them independently or
- include a background fluid and thermostat the fluid via :doc:`fix nvt/sllod <fix_nvt_sllod>`.
-
-The *flip* keyword allows the tilt factors for a triclinic box to
-exceed half the distance of the parallel box length, as discussed
-above. If the *flip* value is set to *yes*, the bound is enforced by
-flipping the box when it is exceeded. If the *flip* value is set to
-*no*, the tilt will continue to change without flipping. Note that if
-you apply large deformations, this means the box shape can tilt
-dramatically LAMMPS will run less efficiently, due to the large volume
-of communication needed to acquire ghost atoms around a processor's
-irregular-shaped sub-domain. For extreme values of tilt, LAMMPS may
-also lose atoms and generate an error.
-
-The *units* keyword determines the meaning of the distance units used
-to define various arguments. A *box* value selects standard distance
-units as defined by the :doc:`units <units>` command, e.g. Angstroms for
-units = real or metal. A *lattice* value means the distance units are
-in lattice spacings. The :doc:`lattice <lattice>` command must have
-been previously used to define the lattice spacing. Note that the
-units choice also affects the *vel* style parameters since it is
-defined in terms of distance/time. Also note that the units keyword
-does not affect the *variable* style. You should use the *xlat*,
-*ylat*, *zlat* keywords of the :doc:`thermo_style <thermo_style>`
-command if you want to include lattice spacings in a variable formula.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`.
-
-This fix can perform deformation over multiple runs, using the *start*
-and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-You cannot apply x, y, or z deformations to a dimension that is
-shrink-wrapped via the :doc:`boundary <boundary>` comamnd.
-
-You cannot apply xy, yz, or xz deformations to a 2nd dimension (y in
-xy) that is shrink-wrapped via the :doc:`boundary <boundary>` comamnd.
-
-Related commands
-""""""""""""""""
-
-:doc:`change_box <change_box>`
-
-Default
-"""""""
-
-The option defaults are remap = x, flip = yes, and units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_deposit.txt b/doc/_sources/fix_deposit.txt
deleted file mode 100644
index 49b048495..000000000
--- a/doc/_sources/fix_deposit.txt
+++ /dev/null
@@ -1,293 +0,0 @@
-.. index:: fix deposit
-
-fix deposit command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID deposit N type M seed keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* deposit = style name of this fix command
-* N = # of atoms or molecules to insert
-* type = atom type to assign to inserted atoms (offset for moleclue insertion)
-* M = insert a single atom or molecule every M steps
-* seed = random # seed (positive integer)
-* one or more keyword/value pairs may be appended to args
-* keyword = *region* or *id* or *global* or *local* or *near* or *attempt* or *rate* or *vx* or *vy* or *vz* or *mol* or *rigid* or *shake* or *units*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region to use as insertion volume
- *id* value = *max* or *next*
- max = atom ID for new atom(s) is max ID of all current atoms plus one
- next = atom ID for new atom(s) increments by one for every deposition
- *global* values = lo hi
- lo,hi = put new atom/molecule a distance lo-hi above all other atoms (distance units)
- *local* values = lo hi delta
- lo,hi = put new atom/molecule a distance lo-hi above any nearby atom beneath it (distance units)
- delta = lateral distance within which a neighbor is considered "nearby" (distance units)
- *near* value = R
- R = only insert atom/molecule if further than R from existing particles (distance units)
- *attempt* value = Q
- Q = attempt a single insertion up to Q times
- *rate* value = V
- V = z velocity (y in 2d) at which insertion volume moves (velocity units)
- *vx* values = vxlo vxhi
- vxlo,vxhi = range of x velocities for inserted atom/molecule (velocity units)
- *vy* values = vylo vyhi
- vylo,vyhi = range of y velocities for inserted atom/molecule (velocity units)
- *vz* values = vzlo vzhi
- vzlo,vzhi = range of z velocities for inserted atom/molecule (velocity units)
- *target* values = tx ty tz
- tx,ty,tz = location of target point (distance units)
- *mol* value = template-ID
- template-ID = ID of molecule template specified in a separate :doc:`molecule <molecule>` command
- *molfrac* values = f1 f2 ... fN
- f1 to fN = relative probability of creating each of N molecules in template-ID
- *rigid* value = fix-ID
- fix-ID = ID of :doc:`fix rigid/small <fix_rigid>` command
- *shake* value = fix-ID
- fix-ID = ID of :doc:`fix shake <fix_shake>` command
- *units* value = *lattice* or *box*
- lattice = the geometry is defined in lattice units
- box = the geometry is defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 all deposit 1000 2 100 29494 region myblock local 1.0 1.0 1.0 units box
- fix 2 newatoms deposit 10000 1 500 12345 region disk near 2.0 vz -1.0 -0.8
- fix 4 sputter deposit 1000 2 500 12235 region sphere vz -1.0 -1.0 target 5.0 5.0 0.0 units lattice
-
-Description
-"""""""""""
-
-Insert a single atom or molecule into the simulation domain every M
-timesteps until N atoms or molecules have been inserted. This is
-useful for simulating deposition onto a surface. For the remainder of
-this doc page, a single inserted atom or molecule is referred to as a
-"particle".
-
-If inserted particles are individual atoms, they are assigned the
-specified atom type. If they are molecules, the type of each atom in
-the inserted molecule is specified in the file read by the
-:doc:`molecule <molecule>` command, and those values are added to the
-specified atom type. E.g. if the file specifies atom types 1,2,3, and
-those are the atom types you want for inserted molecules, then specify
-*type* = 0. If you specify *type* = 2, the in the inserted molecule
-will have atom types 3,4,5.
-
-All atoms in the inserted particle are assigned to two groups: the
-default group "all" and the group specified in the fix deposit command
-(which can also be "all").
-
-If you are computing temperature values which include inserted
-particles, you will want to use the
-:doc:`compute_modify <compute_modify>` dynamic option, which insures the
-current number of atoms is used as a normalizing factor each time the
-temperature is computed.
-
-Care must be taken that inserted particles are not too near existing
-atoms, using the options described below. When inserting particles
-above a surface in a non-periodic box (see the
-:doc:`boundary <boundary>` command), the possibility of a particle
-escaping the surface and flying upward should be considered, since the
-particle may be lost or the box size may grow infinitely large. A
-:doc:`fix wall/reflect <fix_wall_reflect>` command can be used to
-prevent this behavior. Note that if a shrink-wrap boundary is used,
-it is OK to insert the new particle outside the box, however the box
-will immediately be expanded to include the new particle. When
-simulating a sputtering experiment it is probably more realistic to
-ignore those atoms using the :doc:`thermo_modify <thermo_modify>`
-command with the *lost ignore* option and a fixed
-:doc:`boundary <boundary>`.
-
-The fix deposit command must use the *region* keyword to define an
-insertion volume. The specified region must have been previously
-defined with a :doc:`region <region>` command. It must be defined with
-side = *in*.
-
-.. note::
-
- LAMMPS checks that the specified region is wholly inside the
- simulation box. It can do this correctly for orthonormal simulation
- boxes. However for :ref:`triclinic boxes <howto_12>`, it
- only tests against the larger orthonormal box that bounds the tilted
- simulation box. If the specified region includes volume outside the
- tilted box, then an insertion will likely fail, leading to a "lost
- atoms" error. Thus for triclinic boxes you should insure the
- specified region is wholly inside the simulation box.
-
-Individual atoms are inserted, unless the *mol* keyword is used. It
-specifies a *template-ID* previously defined using the
-:doc:`molecule <molecule>` command, which reads files that define one or
-more molecules. The coordinates, atom types, charges, etc, as well as
-any bond/angle/etc and special neighbor information for the molecule
-can be specified in the molecule file. See the
-:doc:`molecule <molecule>` command for details. The only settings
-required to be in each file are the coordinates and types of atoms in
-the molecule.
-
-If the molecule template contains more than one molecule, the relative
-probability of depositing each molecule can be specified by the
-*molfrac* keyword. N relative probablities, each from 0.0 to 1.0, are
-specified, where N is the number of molecules in the template. Each
-time a molecule is deposited, a random number is used to sample from
-the list of relative probabilities. The N values must sum to 1.0.
-
-If you wish to insert molecules via the *mol* keyword, that will be
-treated as rigid bodies, use the *rigid* keyword, specifying as its
-value the ID of a separate :doc:`fix rigid/small <fix_rigid_small>`
-command which also appears in your input script.
-
-If you wish to insert molecules via the *mol* keyword, that will have
-their bonds or angles constrained via SHAKE, use the *shake* keyword,
-specifying as its value the ID of a separate :doc:`fix shake <fix_shake>` command which also appears in your input script.
-
-Each timestep a particle is inserted, the coordinates for its atoms
-are chosen as follows. For insertion of individual atoms, the
-"position" referred to in the following description is the coordinate
-of the atom. For insertion of molecule, the "position" is the
-geometric center of the molecule; see the :doc:`molecule <molecule>` doc
-page for details. A random rotation of the molecule around its center
-point is performed, which determines the coordinates all the
-individual atoms.
-
-A random position within the region insertion volume is generated. If
-neither the *global* or *local* keyword is used, the random position
-is the trial position. If the *global* keyword is used, the random
-x,y values are used, but the z position of the new particle is set
-above the highest current atom in the simulation by a distance
-randomly chosen between lo/hi. (For a 2d simulation, this is done for
-the y position.) If the *local* keyword is used, the z position is
-set a distance between lo/hi above the highest current atom in the
-simulation that is "nearby" the chosen x,y position. In this context,
-"nearby" means the lateral distance (in x,y) between the new and old
-particles is less than the *delta* setting.
-
-Once a trial x,y,z position has been selected, the insertion is only
-performed if no current atom in the simulation is within a distance R
-of any atom in the new particle, including the effect of periodic
-boundary conditions if applicable. R is defined by the *near*
-keyword. Note that the default value for R is 0.0, which will allow
-atoms to strongly overlap if you are inserting where other atoms are
-present. This distance test is performed independently for each atom
-in an inserted molecule, based on the randomly rotated configuration
-of the molecule. If this test fails, a new random position within the
-insertion volume is chosen and another trial is made. Up to Q
-attempts are made. If the particle is not successfully inserted,
-LAMMPS prints a warning message.
-
-.. note::
-
- If you are inserting finite size particles or a molecule or
- rigid body consisting of finite-size particles, then you should
- typically set R larger than the distance at which any inserted
- particle may overlap with either a previouly inserted particle or an
- existing particle. LAMMPS will issue a warning if R is smaller than
- this value, based on the radii of existing and inserted particles.
-
-The *rate* option moves the insertion volume in the z direction (3d)
-or y direction (2d). This enables particles to be inserted from a
-successively higher height over time. Note that this parameter is
-ignored if the *global* or *local* keywords are used, since those
-options choose a z-coordinate for insertion independently.
-
-The vx, vy, and vz components of velocity for the inserted particle
-are set using the values specified for the *vx*, *vy*, and *vz*
-keywords. Note that normally, new particles should be a assigned a
-negative vertical velocity so that they move towards the surface. For
-molecules, the same velocity is given to every particle (no rotation
-or bond vibration).
-
-If the *target* option is used, the velocity vector of the inserted
-particle is changed so that it points from the insertion position
-towards the specified target point. The magnitude of the velocity is
-unchanged. This can be useful, for example, for simulating a
-sputtering process. E.g. the target point can be far away, so that
-all incident particles strike the surface as if they are in an
-incident beam of particles at a prescribed angle.
-
-The *id* keyword determines how atom IDs and molecule IDs are assigned
-to newly deposited particles. Molecule IDs are only assigned if
-molecules are being inserted. For the *max* setting, the atom and
-molecule IDs of all current atoms are checked. Atoms in the new
-particle are assigned IDs starting with the current maximum plus one.
-If a molecule is inserted it is assigned an ID = current maximum plus
-one. This means that if particles leave the system, the new IDs may
-replace the lost ones. For the *next* setting, the maximum ID of any
-atom and molecule is stored at the time the fix is defined. Each time
-a new particle is added, this value is incremented to assign IDs to
-the new atom(s) or molecule. Thus atom and molecule IDs for deposited
-particles will be consecutive even if particles leave the system over
-time.
-
-The *units* keyword determines the meaning of the distance units used
-for the other deposition parameters. A *box* value selects standard
-distance units as defined by the :doc:`units <units>` command,
-e.g. Angstroms for units = real or metal. A *lattice* value means the
-distance units are in lattice spacings. The :doc:`lattice <lattice>`
-command must have been previously used to define the lattice spacing.
-Note that the units choice affects all the keyword values that have
-units of distance or velocity.
-
-.. note::
-
- If you are monitoring the temperature of a system where the atom
- count is changing due to adding particles, you typically should use
- the :doc:`compute_modify dynamic yes <compute_modify>` command for the
- temperature compute you are using.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the deposition to :doc:`binary restart files <restart>`. This includes information about how many
-particles have been depositied, the random number generator seed, the
-next timestep for deposition, etc. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix. No global or per-atom quantities are stored by this fix for
-access by various :ref:`output commands <howto_15>`. No
-parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The specified insertion region cannot be a "dynamic" region, as
-defined by the :doc:`region <region>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix pour <fix_pour>`, :doc:`region <region>`
-
-Default
-"""""""
-
-Insertions are performed for individual atoms, i.e. no *mol* setting
-is defined. If the *mol* keyword is used, the default for *molfrac*
-is an equal probabilities for all molecules in the template.
-Additional option defaults are id = max, delta = 0.0, near = 0.0,
-attempt = 10, rate = 0.0, vx = 0.0 0.0, vy = 0.0 0.0, vz = 0.0 0.0,
-and units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_drag.txt b/doc/_sources/fix_drag.txt
deleted file mode 100644
index 1344615d6..000000000
--- a/doc/_sources/fix_drag.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-.. index:: fix drag
-
-fix drag command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID drag x y z fmag delta
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* drag = style name of this fix command
-* x,y,z = coord to drag atoms towards
-* fmag = magnitude of force to apply to each atom (force units)
-* delta = cutoff distance inside of which force is not applied (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix center small-molecule drag 0.0 10.0 0.0 5.0 2.0
-
-Description
-"""""""""""
-
-Apply a force to each atom in a group to drag it towards the point
-(x,y,z). The magnitude of the force is specified by fmag. If an atom
-is closer than a distance delta to the point, then the force is not
-applied.
-
-Any of the x,y,z values can be specified as NULL which means do not
-include that dimension in the distance calculation or force
-application.
-
-This command can be used to steer one or more atoms to a new location
-in the simulation.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global 3-vector of forces, which can be accessed
-by various :ref:`output commands <howto_15>`. This is the
-total force on the group of atoms by the drag force. The vector
-values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix spring <fix_spring>`, :doc:`fix spring/self <fix_spring_self>`,
-:doc:`fix spring/rg <fix_spring_rg>`, :doc:`fix smd <fix_smd>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_drude.txt b/doc/_sources/fix_drude.txt
deleted file mode 100644
index 4cc41f791..000000000
--- a/doc/_sources/fix_drude.txt
+++ /dev/null
@@ -1,57 +0,0 @@
-.. index:: fix drude
-
-fix drude command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID drude flag1 flag2 ... flagN
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* drude = style name of this fix command
-* flag1 flag2 ... flagN = Drude flag for each atom type (1 to N) in the system
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all drude 1 1 0 1 0 2 2 2
- fix 1 all drude C C N C N D D D
-
-Description
-"""""""""""
-
-Assign each atom type in the system to be one of 3 kinds of atoms
-within the Drude polarization model. This fix is designed to be
-used with the :doc:`thermalized Drude oscillator model <tutorial_drude>`. Polarizable models in LAMMPS
-are described in :ref:`this Section <howto_25>`.
-
-The three possible types can be designated with an integer (0,1,2)
-or capital letter (N,C,D):
-
-* 0 or N = non-polarizable atom (not part of Drude model)
-* 1 or C = Drude core
-* 2 or D = Drude electron
-
-Restrictions
-""""""""""""
-
-
-This fix should be invoked before any other commands that implement
-the Drude oscillator model, such as :doc:`fix langevin/drude <fix_langevin_drude>`, :doc:`fix drude/transform <fix_drude_transform>`, :doc:`compute temp/drude <compute_temp_drude>`, :doc:`pair_style thole <pair_thole>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin/drude <fix_langevin_drude>`, :doc:`fix drude/transform <fix_drude_transform>`, :doc:`compute temp/drude <compute_temp_drude>`, :doc:`pair_style thole <pair_thole>`
-
-**Default:** None
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_drude_transform.txt b/doc/_sources/fix_drude_transform.txt
deleted file mode 100644
index 4a6a641bb..000000000
--- a/doc/_sources/fix_drude_transform.txt
+++ /dev/null
@@ -1,227 +0,0 @@
-.. index:: fix drude/transform/direct
-
-fix drude/transform/direct command
-==================================
-
-fix drude/transform/inverse command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style = *drude/transform/direct* or *drude/transform/inverse*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 all drude/transform/direct
- fix 1 all drude/transform/inverse
-
-Description
-"""""""""""
-
-Transform the coordinates of Drude oscillators from real to reduced
-and back for thermalizing the Drude oscillators as described in
-:ref:`(Lamoureux) <Lamoureux>` using a Nose-Hoover thermostat. This fix is
-designed to be used with the :doc:`thermalized Drude oscillator model <tutorial_drude>`. Polarizable models in LAMMPS are
-described in :ref:`this Section <howto_25>`.
-
-Drude oscillators are a pair of atoms representing a single
-polarizable atom. Ideally, the mass of Drude particles would vanish
-and their positions would be determined self-consistently by iterative
-minimization of the energy, the cores' positions being fixed. It is
-however more efficient and it yields comparable results, if the Drude
-oscillators (the motion of the Drude particle relative to the core)
-are thermalized at a low temperature. In that case, the Drude
-particles need a small mass.
-
-The thermostats act on the reduced degrees of freedom, which are
-defined by the following equations. Note that in these equations
-upper case denotes atomic or center of mass values and lower case
-denotes Drude particle or dipole values. Primes denote the transformed
-(reduced) values, while bare letters denote the original values.
-
-Masses:
-
-.. math::
-
- \begin{equation} M' = M + m \end{equation}
-
-
-.. math::
-
- \begin{equation} m' = \frac {M\, m } {M'} \end{equation}
-
-Positions:
-
-.. math::
-
- \begin{equation} X' = \frac {M\, X + m\, x} {M'}\end{equation}
-
-
-.. math::
-
- \begin{equation} x' = x - X \end{equation}
-
-Velocities:
-
-.. math::
-
- \begin{equation} V' = \frac {M\, V + m\, v} {M'}\end{equation}
-
-
-.. math::
-
- \begin{equation} v' = v - V \end{equation}
-
-Forces:
-
-.. math::
-
- \begin{equation} F' = F + f \end{equation}
-
-
-.. math::
-
- \begin{equation} f' = \frac { M\, f - m\, F} {M'}\end{equation}
-
-This transform conserves the total kinetic energy
-
-.. math::
-
- \begin{equation} \frac 1 2 \, (M\, V^2\ + m\, v^2)
- = \frac 1 2 \, (M'\, V'^2\ + m'\, v'^2) \end{equation}
-
-and the virial defined with absolute positions
-
-.. math::
-
- \begin{equation} X\, F + x\, f = X'\, F' + x'\, f' \end{equation}
-
-
-----------
-
-
-This fix requires each atom know whether it is a Drude particle or
-not. You must therefore use the :doc:`fix drude <fix_drude>` command to
-specify the Drude status of each atom type.
-
-.. note::
-
- only the Drude core atoms need to be in the group specified for
- this fix. A Drude electron will be transformed together with its core
- even if it is not itself in the group. It is safe to include Drude
- electrons or non-polarizable atoms in the group. The non-polarizable
- atoms will simply not be transformed.
-
-
-----------
-
-
-This fix does NOT perform time integration. It only transform masses,
-coordinates, velocities and forces. Thus you must use separate time
-integration fixes, like :doc:`fix nve <fix_nve>` or :doc:`fix npt <fix_nh>` to actually update the velocities and positions of
-atoms. In order to thermalize the reduced degrees of freedom at
-different temperatures, two Nose-Hoover thermostats must be defined,
-acting on two distinct groups.
-
-.. note::
-
- The *fix drude/transform/direct* command must appear before any
- Nose-Hoover thermostating fixes. The *fix drude/transform/inverse*
- command must appear after any Nose-Hoover thermostating fixes.
-
-Example:
-
-.. parsed-literal::
-
- fix fDIRECT all drude/transform/direct
- fix fNVT gCORES nvt temp 300.0 300.0 100
- fix fNVT gDRUDES nvt temp 1.0 1.0 100
- fix fINVERSE all drude/transform/inverse
- compute TDRUDE all temp/drude
- thermo_style custom step cpu etotal ke pe ebond ecoul elong press vol temp c_TDRUDE[1] c_TDRUDE[2]
-
-In this example, *gCORES* is the group of the atom cores and *gDRUDES*
-is the group of the Drude particles (electrons). The centers of mass
-of the Drude oscillators will be thermostated at 300.0 and the
-internal degrees of freedom will be thermostated at 1.0. The
-temperatures of cores and Drude particles, in center-of-mass and
-relative coordinates, are calculated using :doc:`compute temp/drude <compute_temp_drude>`
-
-In addition, if you want to use a barostat to simulate a system at
-constant pressure, only one of the Nose-Hoover fixes must be *npt*,
-the other one should be *nvt*. You must add a *compute temp/com* and a
-*fix_modify* command so that the temperature of the *npt* fix be just
-that of its group (the Drude cores) but the pressure be the overall
-pressure *thermo_press*.
-
-Example:
-
-.. parsed-literal::
-
- compute cTEMP_CORE gCORES temp/com
- fix fDIRECT all drude/transform/direct
- fix fNPT gCORES npt temp 298.0 298.0 100 iso 1.0 1.0 500
- fix_modify fNPT temp cTEMP_CORE press thermo_press
- fix fNVT gDRUDES nvt temp 5.0 5.0 100
- fix fINVERSE all drude/transform/inverse
-
-In this example, *gCORES* is the group of the atom cores and *gDRUDES*
-is the group of the Drude particles. The centers of mass of the Drude
-oscillators will be thermostated at 298.0 and the internal degrees of
-freedom will be thermostated at 5.0. The whole system will be
-barostated at 1.0.
-
-In order to avoid the flying ice cube problem (irreversible transfer
-of linear momentum to the center of mass of the system), you may need
-to add a *fix momentum* command:
-
-.. parsed-literal::
-
- fix fMOMENTUM all momentum 100 linear 1 1 1
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix drude <fix_drude>`,
-:doc:`fix langevin/drude <fix_langevin_drude>`,
-:doc:`compute temp/drude <compute_temp_drude>`,
-:doc:`pair_style thole <pair_thole>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Lamoureux:
-
-
-
-**(Lamoureux)** Lamoureux and Roux, J Chem Phys, 119, 3025-3039 (2003).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_dt_reset.txt b/doc/_sources/fix_dt_reset.txt
deleted file mode 100644
index 32be80744..000000000
--- a/doc/_sources/fix_dt_reset.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-.. index:: fix dt/reset
-
-fix dt/reset command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID dt/reset N Tmin Tmax Xmax keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* dt/reset = style name of this fix command
-* N = recompute dt every N timesteps
-* Tmin = minimum dt allowed which can be NULL (time units)
-* Tmax = maximum dt allowed which can be NULL (time units)
-* Xmax = maximum distance for an atom to move in one timestep (distance units)
-* zero or more keyword/value pairs may be appended
-* keyword = *units*
-
-.. parsed-literal::
-
- *units* value = *lattice* or *box*
- lattice = Xmax is defined in lattice units
- box = Xmax is defined in simulation box units
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 5 all dt/reset 10 1.0e-5 0.01 0.1
- fix 5 all dt/reset 10 0.01 2.0 0.2 units box
-
-Description
-"""""""""""
-
-Reset the timestep size every N steps during a run, so that no atom
-moves further than Xmax, based on current atom velocities and forces.
-This can be useful when starting from a configuration with overlapping
-atoms, where forces will be large. Or it can be useful when running
-an impact simulation where one or more high-energy atoms collide with
-a solid, causing a damage cascade.
-
-This fix overrides the timestep size setting made by the
-:doc:`timestep <timestep>` command. The new timestep size *dt* is
-computed in the following manner.
-
-For each atom, the timestep is computed that would cause it to
-displace *Xmax* on the next integration step, as a function of its
-current velocity and force. Since performing this calculation exactly
-would require the solution to a quartic equation, a cheaper estimate
-is generated. The estimate is conservative in that the atom's
-displacement is guaranteed not to exceed *Xmax*, though it may be
-smaller.
-
-Given this putative timestep for each atom, the minimum timestep value
-across all atoms is computed. Then the *Tmin* and *Tmax* bounds are
-applied, if specified. If one (or both) is specified as NULL, it is
-not applied.
-
-When the :doc:`run style <run_style>` is *respa*, this fix resets the
-outer loop (largest) timestep, which is the same timestep that the
-:doc:`timestep <timestep>` command sets.
-
-Note that the cumulative simulation time (in time units), which
-accounts for changes in the timestep size as a simulation proceeds,
-can be accessed by the :doc:`thermo_style time <thermo_style>` keyword.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar stores
-the last timestep on which the timestep was reset to a new value.
-
-The scalar value calculated by this fix is "intensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`timestep <timestep>`
-
-Default
-"""""""
-
-The option defaults is units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_efield.txt b/doc/_sources/fix_efield.txt
deleted file mode 100644
index 4337e8d29..000000000
--- a/doc/_sources/fix_efield.txt
+++ /dev/null
@@ -1,175 +0,0 @@
-.. index:: fix efield
-
-fix efield command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID efield ex ey ez keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* efield = style name of this fix command
-* ex,ey,ez = E-field component values (electric field units)
-* any of ex,ey,ez can be a variable (see below)
-* zero or more keyword/value pairs may be appended to args
-* keyword = *region* or *energy*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region atoms must be in to have added force
- *energy* value = v_name
- v_name = variable with name that calculates the potential energy of each atom in the added E-field
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix kick external-field efield 1.0 0.0 0.0
- fix kick external-field efield 0.0 0.0 v_oscillate
-
-Description
-"""""""""""
-
-Add a force F = qE to each charged atom in the group due to an
-external electric field being applied to the system. If the system
-contains point-dipoles, also add a torque on the dipoles due to the
-external electric field.
-
-For charges, any of the 3 quantities defining the E-field components
-can be specified as an equal-style or atom-style
-:doc:`variable <variable>`, namely *ex*, *ey*, *ez*. If the value is a
-variable, it should be specified as v_name, where name is the variable
-name. In this case, the variable will be evaluated each timestep, and
-its value used to determine the E-field component.
-
-For point-dipoles, equal-style variables can be used, but atom-style
-variables are not currently supported, since they imply a spatial
-gradient in the electric field which means additional terms with
-gradients of the field are required for the force and torque on
-dipoles.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent E-field.
-
-Atom-style variables can specify the same formulas as equal-style
-variables but can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a spatially-dependent E-field
-with optional time-dependence as well.
-
-If the *region* keyword is used, the atom must also be in the
-specified geometric :doc:`region <region>` in order to have force added
-to it.
-
-
-----------
-
-
-Adding a force or torque to atoms implies a change in their potential
-energy as they move or rotate due to the applied E-field.
-
-For dynamics via the "run" command, this energy can be optionally
-added to the system's potential energy for thermodynamic output (see
-below). For energy minimization via the "minimize" command, this
-energy must be added to the system's potential energy to formulate a
-self-consistent minimization problem (see below).
-
-The *energy* keyword is not allowed if the added field is a constant
-vector (ex,ey,ez), with all components defined as numeric constants
-and not as variables. This is because LAMMPS can compute the energy
-for each charged particle directly as E = -x dot qE = -q (x*ex + y*ey
-+ z*ez), so that -Grad(E) = F. Similarly for point-dipole particles
-the energy can be computed as E = -mu dot E = -(mux*ex + muy*ey +
-muz*ez).
-
-The *energy* keyword is optional if the added force is defined with
-one or more variables, and if you are performing dynamics via the
-:doc:`run <run>` command. If the keyword is not used, LAMMPS will set
-the energy to 0.0, which is typically fine for dynamics.
-
-The *energy* keyword is required if the added force is defined with
-one or more variables, and you are performing energy minimization via
-the "minimize" command for charged particles. It is not required for
-point-dipoles, but a warning is issued since the minimizer in LAMMPS
-does not rotate dipoles, so you should not expect to be able to
-minimize the orientation of dipoles in an applied electric field.
-
-The *energy* keyword specifies the name of an atom-style
-:doc:`variable <variable>` which is used to compute the energy of each
-atom as function of its position. Like variables used for *ex*, *ey*,
-*ez*, the energy variable is specified as v_name, where name is the
-variable name.
-
-Note that when the *energy* keyword is used during an energy
-minimization, you must insure that the formula defined for the
-atom-style :doc:`variable <variable>` is consistent with the force
-variable formulas, i.e. that -Grad(E) = F. For example, if the force
-due to the electric field were a spring-like F = kx, then the energy
-formula should be E = -0.5kx^2. If you don't do this correctly, the
-minimization will not converge properly.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the potential "energy" inferred by the added force due to
-the electric field to the system's potential energy as part of
-:doc:`thermodynamic output <thermo_style>`. This is a fictitious
-quantity but is needed so that the :doc:`minimize <minimize>` command
-can include the forces added by this fix in a consistent manner.
-I.e. there is a decrease in potential energy when atoms move in the
-direction of the added force due to the electric field.
-
-This fix computes a global scalar and a global 3-vector of forces,
-which can be accessed by various :ref:`output commands <howto_15>`. The scalar is the potential
-energy discussed above. The vector is the total force added to the
-group of atoms. The scalar and vector values calculated by this fix
-are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command. You should not
-specify force components with a variable that has time-dependence for
-use with a minimizer, since the minimizer increments the timestep as
-the iteration count during the minimization.
-
-.. note::
-
- If you want the fictitious potential energy associated with the
- added forces to be included in the total potential energy of the
- system (the quantity being minimized), you MUST enable the
- :doc:`fix_modify <fix_modify>` *energy* option for this fix.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix addforce <fix_addforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_enforce2d.txt b/doc/_sources/fix_enforce2d.txt
deleted file mode 100644
index 98b0cbc4b..000000000
--- a/doc/_sources/fix_enforce2d.txt
+++ /dev/null
@@ -1,80 +0,0 @@
-.. index:: fix enforce2d
-
-fix enforce2d command
-=====================
-
-fix enforce2d/cuda command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID enforce2d
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* enforce2d = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 5 all enforce2d
-
-Description
-"""""""""""
-
-Zero out the z-dimension velocity and force on each atom in the group.
-This is useful when running a 2d simulation to insure that atoms do
-not move from their initial z coordinate.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_eos_cv.txt b/doc/_sources/fix_eos_cv.txt
deleted file mode 100644
index 70e1d21e9..000000000
--- a/doc/_sources/fix_eos_cv.txt
+++ /dev/null
@@ -1,74 +0,0 @@
-.. index:: fix eos/cv
-
-fix eos/cv command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID eos/cv cv
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* eos/cv = style name of this fix command
-* cv = constant-volume heat capacity (energy/temperature units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all eos/cv 0.01
-
-Description
-"""""""""""
-
-Fix *eos/cv* applies a mesoparticle equation of state to relate the
-particle internal energy (u_i) to the particle internal temperature
-(dpdTheta_i). The *eos/cv* mesoparticle equation of state requires
-the constant-volume heat capacity, and is defined as follows:
-
-.. image:: Eqs/fix_eos-cv.jpg
- :align: center
-
-where Cv is the constant-volume heat capacity, u_cond is the internal
-conductive energy, and u_mech is the internal mechanical energy. Note
-that alternative definitions of the mesoparticle equation of state are
-possible.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The fix *eos/cv* is only available if LAMMPS is built with the
-USER-DPD package.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix shardlow <fix_shardlow>`, :doc:`pair dpd/fdt <pair_dpd_fdt>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Larentzos:
-
-
-
-**(Larentzos)** J.P. Larentzos, J.K. Brennan, J.D. Moore, and
-W.D. Mattson, "LAMMPS Implementation of Constant Energy Dissipative
-Particle Dynamics (DPD-E)", ARL-TR-6863, U.S. Army Research
-Laboratory, Aberdeen Proving Ground, MD (2014).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_eos_table.txt b/doc/_sources/fix_eos_table.txt
deleted file mode 100644
index 854409302..000000000
--- a/doc/_sources/fix_eos_table.txt
+++ /dev/null
@@ -1,130 +0,0 @@
-.. index:: fix eos/table
-
-fix eos/table command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID eos/table style file N keyword
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* eos/table = style name of this fix command
-* style = *linear* = method of interpolation
-* file = filename containing the tabulated equation of state
-* N = use N values in *linear* tables
-* keyword = name of table keyword correponding to table file
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all eos/table linear eos.table 100000 KEYWORD
-
-Description
-"""""""""""
-
-Fix *eos/table* applies a tabulated mesoparticle equation of state to
-relate the particle internal energy (u_i) to the particle internal
-temperature (dpdTheta_i).
-
-Fix *eos/table* creates interpolation tables of length *N* from
-internal energy values listed in a file as a function of internal
-temperature.
-
-The interpolation tables are created by fitting cubic splines to the
-file values and interpolating energy values at each of *N* internal
-temperatures, and vice-versa. During a simulation, these tables are
-used to interpolate internal energy or temperature values as needed.
-The interpolation is done with the *linear* style.
-
-For the *linear* style, the internal temperature is used to find 2
-surrounding table values from which an internal energy is computed by
-linear interpolation, and vice-versa.
-
-The filename specifies a file containing tabulated internal
-temperature and internal energy values. The keyword specifies a
-section of the file. The format of this file is described below.
-
-
-----------
-
-
-The format of a tabulated file is as follows (without the
-parenthesized comments):
-
-.. parsed-literal::
-
- # EOS TABLE (one or more comment or blank lines)
-
-.. parsed-literal::
-
- KEYWORD (keyword is first text on line)
- N 500 (N parameter)
- (blank)
- 1 1.00 0.000 (index, internal temperature, internal energy)
- 2 1.02 0.001
- ...
- 500 10.0 0.500
-
-A section begins with a non-blank line whose 1st character is not a
-"#"; blank lines or lines starting with "#" can be used as comments
-between sections. The first line begins with a keyword which
-identifies the section. The line can contain additional text, but the
-initial text must match the argument specified in the fix command.
-
-The next line lists the number of table entries. The parameter "N" is
-required and its value is the number of table entries that follow.
-Note that this may be different than the *N* specified in the :doc:`fix eos/table <fix_style>` command. Let Ntable = *N* in the fix
-command, and Nfile = "N" in the tabulated file. What LAMMPS does is a
-preliminary interpolation by creating splines using the Nfile
-tabulated values as nodal points. It uses these to interpolate as
-needed to generate energy and temperature values at Ntable different
-points. The resulting tables of length Ntable are then used as
-described above, when computing energy and temperature relationships.
-This means that if you want the interpolation tables of length Ntable
-to match exactly what is in the tabulated file (with effectively no
-preliminary interpolation), you should set Ntable = Nfile.
-
-Following a blank line, the next N lines list the tabulated values.
-On each line, the 1st value is the index from 1 to N, the 2nd value is
-the internal temperature (in temperature units), the 3rd value is the
-internal energy (in energy units).
-
-Note that the internal temperature and internal energy values must
-increase from one line to the next.
-
-Note that one file can contain many sections, each with a tabulated
-potential. LAMMPS reads the file section by section until it finds
-one that matches the specified keyword.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The fix *eos/table* is only available if LAMMPS is built with the
-USER-DPD package.
-
-The equation of state must be a monotonically increasing function.
-
-An exit error will occur if the internal temperature or internal
-energies are not within the table cutoffs.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix shardlow <fix_shardlow>`, :doc:`pair dpd/fdt <dpd_fdt>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_evaporate.txt b/doc/_sources/fix_evaporate.txt
deleted file mode 100644
index f9634d2be..000000000
--- a/doc/_sources/fix_evaporate.txt
+++ /dev/null
@@ -1,110 +0,0 @@
-.. index:: fix evaporate
-
-fix evaporate command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID evaporate N M region-ID seed
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* evaporate = style name of this fix command
-* N = delete atoms every this many timesteps
-* M = number of atoms to delete each time
-* region-ID = ID of region within which to perform deletions
-* seed = random number seed to use for choosing atoms to delete
-* zero or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *molecule*
- *molecule* value = *no* or *yes*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 solvent evaporate 1000 10 surface 49892
- fix 1 solvent evaporate 1000 10 surface 38277 molecule yes
-
-Description
-"""""""""""
-
-Remove M atoms from the simulation every N steps. This can be used,
-for example, to model evaporation of solvent particles or moleclues
-(i.e. drying) of a system. Every N steps, the number of atoms in the
-fix group and within the specifed region are counted. M of these are
-chosen at random and deleted. If there are less than M eligible
-particles, then all of them are deleted.
-
-If the setting for the *molecule* keyword is *no*, then only single
-atoms are deleted. In this case, you should insure you do not delete
-only a portion of a molecule (only some of its atoms), or LAMMPS will
-soon generate an error when it tries to find those atoms. LAMMPS will
-warn you if any of the atoms eligible for deletion have a non-zero
-molecule ID, but does not check for this at the time of deletion.
-
-If the setting for the *molecule* keyword is *yes*, then when an atom
-is chosen for deletion, the entire molecule it is part of is deleted.
-The count of deleted atoms is incremented by the number of atoms in
-the molecule, which may make it exceed *M*. If the molecule ID of the
-chosen atom is 0, then it is assumed to not be part of a molecule, and
-just the single atom is deleted.
-
-As an example, if you wish to delete 10 water molecules every *N*
-steps, you should set *M* to 30. If only the water's oxygen atoms
-were in the fix group, then two hydrogen atoms would be deleted when
-an oxygen atom is selected for deletion, whether the hydrogens are
-inside the evaporation region or not.
-
-Note that neighbor lists are re-built on timesteps that atoms are
-removed. Thus you should not remove atoms too frequently or you will
-incur overhead due to the cost of building neighbor lists.
-
-.. note::
-
- If you are monitoring the temperature of a system where the atom
- count is changing due to evaporation, you typically should use the
- :doc:`compute_modify dynamic yes <compute_modify>` command for the
- temperature compute you are using.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar, which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative number of deleted atoms. The scalar value calculated by
-this fix is "intensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix deposit <fix_deposit>`
-
-Default
-"""""""
-
-The option defaults are molecule = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_external.txt b/doc/_sources/fix_external.txt
deleted file mode 100644
index 253c357a4..000000000
--- a/doc/_sources/fix_external.txt
+++ /dev/null
@@ -1,179 +0,0 @@
-.. index:: fix external
-
-fix external command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID external mode args
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* external = style name of this fix command
-* mode = *pf/callback* or *pf/array*
-.. parsed-literal::
-
- *pf/callback* args = Ncall Napply
- Ncall = make callback every Ncall steps
- Napply = apply callback forces every Napply steps
- *pf/array* args = Napply
- Napply = apply array forces every Napply steps
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all external pf/callback 1 1
- fix 1 all external pf/callback 100 1
- fix 1 all external pf/array 10
-
-Description
-"""""""""""
-
-This fix allows external programs that are running LAMMPS through its
-:ref:`library interface <howto_19>` to modify certain
-LAMMPS properties on specific timesteps, similar to the way other
-fixes do. The external driver can be a :ref:`C/C++ or Fortran program <howto_19>` or a :doc:`Python script <Section_python>`.
-
-
-----------
-
-
-If mode is *pf/callback* then the fix will make a callback every
-*Ncall* timesteps or minimization iterations to the external program.
-The external program computes forces on atoms by setting values in an
-array owned by the fix. The fix then adds these forces to each atom
-in the group, once every *Napply* steps, similar to the way the :doc:`fix addforce <fix_addforce>` command works. Note that if *Ncall* >
-*Napply*, the force values produced by one callback will persist, and
-be used multiple times to update atom forces.
-
-The callback function "foo" is invoked by the fix as:
-
-.. parsed-literal::
-
- foo(void *ptr, bigint timestep, int nlocal, int *ids, double **x, double **fexternal);
-
-The arguments are as follows:
-
-* ptr = pointer provided by and simply passed back to external driver
-* timestep = current LAMMPS timestep
-* nlocal = # of atoms on this processor
-* ids = list of atom IDs on this processor
-* x = coordinates of atoms on this processor
-* fexternal = forces to add to atoms on this processor
-
-Note that timestep is a "bigint" which is defined in src/lmptype.h,
-typically as a 64-bit integer.
-
-Fexternal are the forces returned by the driver program.
-
-The fix has a set_callback() method which the external driver can call
-to pass a pointer to its foo() function. See the
-couple/lammps_quest/lmpqst.cpp file in the LAMMPS distribution for an
-example of how this is done. This sample application performs
-classical MD using quantum forces computed by a density functional
-code `Quest <quest_>`_.
-
-.. _quest: http://dft.sandia.gov/Quest
-
-
-
-
-----------
-
-
-If mode is *pf/array* then the fix simply stores force values in an
-array. The fix adds these forces to each atom in the group, once
-every *Napply* steps, similar to the way the :doc:`fix addforce <fix_addforce>` command works.
-
-The name of the public force array provided by the FixExternal
-class is
-
-.. parsed-literal::
-
- double **fexternal;
-
-It is allocated by the FixExternal class as an (N,3) array where N is
-the number of atoms owned by a processor. The 3 corresponds to the
-fx, fy, fz components of force.
-
-It is up to the external program to set the values in this array to
-the desired quantities, as often as desired. For example, the driver
-program might perform an MD run in stages of 1000 timesteps each. In
-between calls to the LAMMPS :doc:`run <run>` command, it could retrieve
-atom coordinates from LAMMPS, compute forces, set values in fexternal,
-etc.
-
-
-----------
-
-
-To use this fix during energy minimization, the energy corresponding
-to the added forces must also be set so as to be consistent with the
-added forces. Otherwise the minimization will not converge correctly.
-
-This can be done from the external driver by calling this public
-method of the FixExternal class:
-
-.. parsed-literal::
-
- void set_energy(double eng);
-
-where eng is the potential energy. Eng is an extensive quantity,
-meaning it should be the sum over per-atom energies of all affected
-atoms. It should also be provided in :doc:`energy units <units>`
-consistent with the simulation. See the details below for how to
-insure this energy setting is used appropriately in a minimization.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the potential "energy" set by the external driver to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`. This is a fictitious quantity but is
-needed so that the :doc:`minimize <minimize>` command can include the
-forces added by this fix in a consistent manner. I.e. there is a
-decrease in potential energy when atoms move in the direction of the
-added force.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-potential energy discussed above. The scalar stored by this fix
-is "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-.. note::
-
- If you want the fictitious potential energy associated with the
- added forces to be included in the total potential energy of the
- system (the quantity being minimized), you MUST enable the
- :doc:`fix_modify <fix_modify>` *energy* option for this fix.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_freeze.txt b/doc/_sources/fix_freeze.txt
deleted file mode 100644
index 1ad656071..000000000
--- a/doc/_sources/fix_freeze.txt
+++ /dev/null
@@ -1,99 +0,0 @@
-.. index:: fix freeze
-
-fix freeze command
-==================
-
-fix freeze/cuda command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID freeze
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* freeze = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 2 bottom freeze
-
-Description
-"""""""""""
-
-Zero out the force and torque on a granular particle. This is useful
-for preventing certain particles from moving in a simulation. The
-:doc:`granular pair styles <pair_gran>` also detect if this fix has been
-defined and compute interactions between frozen and non-frozen
-particles appropriately, as if the frozen particle has infinite mass.
-A similar functionality for normal (point) particles can be obtained
-using :doc:`fix setforce <fix_setforce>`.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global 3-vector of forces, which can be accessed
-by various :ref:`output commands <howto_15>`. This is the
-total force on the group of atoms before the forces on individual
-atoms are changed by the fix. The vector values calculated by this
-fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the GRANULAR package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-There can only be a single freeze fix defined. This is because other
-the :doc:`granular pair styles <pair_gran>` treat frozen particles
-differently and need to be able to reference a single group to which
-this fix is applied.
-
-Related commands
-""""""""""""""""
-
-:doc:`atom_style sphere <atom_style>`, :doc:`fix setforce <fix_setforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_gcmc.txt b/doc/_sources/fix_gcmc.txt
deleted file mode 100644
index 87257a863..000000000
--- a/doc/_sources/fix_gcmc.txt
+++ /dev/null
@@ -1,371 +0,0 @@
-.. index:: fix gcmc
-
-fix gcmc command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID gcmc N X M type seed T mu displace keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* gcmc = style name of this fix command
-* N = invoke this fix every N steps
-* X = average number of GCMC exchanges to attempt every N steps
-* M = average number of MC moves to attempt every N steps
-* type = atom type for inserted atoms (must be 0 if mol keyword used)
-* seed = random # seed (positive integer)
-* T = temperature of the ideal gas reservoir (temperature units)
-* mu = chemical potential of the ideal gas reservoir (energy units)
-* translate = maximum Monte Carlo translation distance (length units)
-* zero or more keyword/value pairs may be appended to args
-.. parsed-literal::
-
- keyword = *mol*, *region*, *maxangle*, *pressure*, *fugacity_coeff*, *full_energy*, *charge*, *group*, *grouptype*, *intra_energy*, or *tfac_insert*
- *mol* value = template-ID
- template-ID = ID of molecule template specified in a separate :doc:`molecule <molecule>` command
- *shake* value = fix-ID
- fix-ID = ID of :doc:`fix shake <fix_shake>` command
- *region* value = region-ID
- region-ID = ID of region where MC moves are allowed
- *maxangle* value = maximum molecular rotation angle (degrees)
- *pressure* value = pressure of the gas reservoir (pressure units)
- *fugacity_coeff* value = fugacity coefficient of the gas reservoir (unitless)
- *full_energy* = compute the entire system energy when performing MC moves
- *charge* value = charge of inserted atoms (charge units)
- *group* value = group-ID
- group-ID = group-ID for inserted atoms (string)
- *grouptype* values = type group-ID
- type = atom type (int)
- group-ID = group-ID for inserted atoms (string)
- *intra_energy* value = intramolecular energy (energy units)
- *tfac_insert* value = scale up/down temperature of inserted atoms (unitless)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 2 gas gcmc 10 1000 1000 2 29494 298.0 -0.5 0.01
- fix 3 water gcmc 10 100 100 0 3456543 3.0 -2.5 0.1 mol my_one_water maxangle 180 full_energy
- fix 4 my_gas gcmc 1 10 10 1 123456543 300.0 -12.5 1.0 region disk
-
-Description
-"""""""""""
-
-This fix performs grand canonical Monte Carlo (GCMC) exchanges of
-atoms or molecules of the given type with an imaginary ideal gas reservoir at
-the specified T and chemical potential (mu) as discussed in
-:ref:`(Frenkel) <Frenkel>`. If used with the :doc:`fix nvt <fix_nh>` command,
-simulations in the grand canonical ensemble (muVT, constant chemical
-potential, constant volume, and constant temperature) can be
-performed. Specific uses include computing isotherms in microporous
-materials, or computing vapor-liquid coexistence curves.
-
-Every N timesteps the fix attempts a number of GCMC exchanges (insertions
-or deletions) of gas atoms or molecules of
-the given type between the simulation cell and the imaginary
-reservoir. It also attempts a number of Monte Carlo
-moves (translations and molecule rotations) of gas of the given type
-within the simulation cell or region. The average number of
-attempted GCMC exchanges is X. The average number of attempted MC moves is M.
-M should typically be chosen to be
-approximately equal to the expected number of gas atoms or molecules
-of the given type within the simulation cell or region,
-which will result in roughly one
-MC translation per atom or molecule per MC cycle.
-
-For MC moves of molecular gasses, rotations and translations are each
-attempted with 50% probability. For MC moves of atomic gasses,
-translations are attempted 100% of the time. For MC exchanges of
-either molecular or atomic gasses, deletions and insertions are each
-attempted with 50% probability.
-
-All inserted particles are always assigned to two groups: the default group
-"all" and the group specified in the fix gcmc command (which can also
-be "all"). In addition, particles are also added to any groups specified
-by the *group* and *grouptype* keywords.
-If inserted particles are individual atoms, they are
-assigned the atom type given by the type argument. If they are molecules,
-the type argument has no effect and must be set to zero. Instead,
-the type of each atom in the inserted molecule is specified
-in the file read by the :doc:`molecule <molecule>` command.
-
-This fix cannot be used to perform MC insertions of gas atoms or
-molecules other than the exchanged type, but MC deletions,
-translations, and rotations can be performed on any atom/molecule in
-the fix group. All atoms in the simulation cell can be moved using
-regular time integration translations, e.g. via
-:doc:`fix nvt <fix_nh>`, resulting in a hybrid GCMC+MD simulation. A
-smaller-than-usual timestep size may be needed when running such a
-hybrid simulation, especially if the inserted molecules are not well
-equilibrated.
-
-This command may optionally use the *region* keyword to define an
-exchange and move volume. The specified region must have been
-previously defined with a :doc:`region <region>` command. It must be
-defined with side = *in*. Insertion attempts occur only within the
-specified region. For non-rectangular regions, random trial
-points are generated within the rectangular bounding box until a point is found
-that lies inside the region. If no valid point is generated after 1000 trials,
-no insertion is performed, but it is counted as an attempted insertion.
-Move and deletion attempt candidates are selected
-from gas atoms or molecules within the region. If there are no candidates,
-no move or deletion is performed, but it is counted as an attempt move
-or deletion. If an attempted move places the atom or molecule center-of-mass outside
-the specified region, a new attempted move is generated. This process is repeated
-until the atom or molecule center-of-mass is inside the specified region.
-
-If used with :doc:`fix nvt <fix_nh>`, the temperature of the imaginary
-reservoir, T, should be set to be equivalent to the target temperature
-used in fix nvt. Otherwise, the imaginary reservoir
-will not be in thermal equilibrium with the simulation cell. Also,
-it is important that the temperature used by fix nvt be dynamic,
-which can be achieved as follows:
-
-.. parsed-literal::
-
- compute mdtemp mdatoms temp
- compute_modify mdtemp dynamic yes
- fix mdnvt mdatoms nvt temp 300.0 300.0 10.0
- fix_modify mdnvt temp mdtemp
-
-Note that neighbor lists are re-built every timestep that this fix is
-invoked, so you should not set N to be too small. However, periodic
-rebuilds are necessary in order to avoid dangerous rebuilds and missed
-interactions. Specifically, avoid performing so many MC translations
-per timestep that atoms can move beyond the neighbor list skin
-distance. See the :doc:`neighbor <neighbor>` command for details.
-
-When an atom or molecule is to be inserted, its
-coordinates are chosen at a random position within the current
-simulation cell or region, and new atom velocities are randomly chosen from
-the specified temperature distribution given by T. The effective
-temperature for new atom velocities can be increased or decreased
-using the optional keyword *tfac_insert* (see below). Relative
-coordinates for atoms in a molecule are taken from the template
-molecule provided by the user. The center of mass of the molecule
-is placed at the insertion point. The orientation of the molecule
-is chosen at random by rotating about this point.
-
-Individual atoms are inserted, unless the *mol* keyword is used. It
-specifies a *template-ID* previously defined using the
-:doc:`molecule <molecule>` command, which reads a file that defines the
-molecule. The coordinates, atom types, charges, etc, as well as any
-bond/angle/etc and special neighbor information for the molecule can
-be specified in the molecule file. See the :doc:`molecule <molecule>`
-command for details. The only settings required to be in this file
-are the coordinates and types of atoms in the molecule.
-
-When not using the *mol* keyword, you should ensure you do not delete
-atoms that are bonded to other atoms, or LAMMPS will
-soon generate an error when it tries to find bonded neighbors. LAMMPS will
-warn you if any of the atoms eligible for deletion have a non-zero
-molecule ID, but does not check for this at the time of deletion.
-
-If you wish to insert molecules via the *mol* keyword, that will have
-their bonds or angles constrained via SHAKE, use the *shake* keyword,
-specifying as its value the ID of a separate :doc:`fix shake <fix_shake>` command which also appears in your input script.
-
-Optionally, users may specify the maximum rotation angle for
-molecular rotations using the *maxangle* keyword and specifying
-the angle in degrees. Rotations are performed by generating a random
-point on the unit sphere and a random rotation angle on the
-range [0,maxangle). The molecule is then rotated by that angle about an
-axis passing through the molecule center of mass. The axis is parallel
-to the unit vector defined by the point on the unit sphere.
-The same procedure is used for randomly rotating molecules when they
-are inserted, except that the maximum angle is 360 degrees.
-
-Note that fix GCMC does not use configurational bias
-MC or any other kind of sampling of intramolecular degrees of freedom.
-Inserted molecules can have different orientations, but they will all
-have the same intramolecular configuration,
-which was specified in the molecule command input.
-
-For atomic gasses, inserted atoms have the specified atom type, but
-deleted atoms are any atoms that have been inserted or that belong
-to the user-specified fix group. For molecular gasses, exchanged
-molecules use the same atom types as in the template molecule
-supplied by the user. In both cases, exchanged
-atoms/molecules are assigned to two groups: the default group "all"
-and the group specified in the fix gcmc command (which can also be
-"all").
-
-The gas reservoir pressure can be specified using the *pressure*
-keyword, in which case the user-specified chemical potential is
-ignored. For non-ideal gas reservoirs, the user may also specify the
-fugacity coefficient using the *fugacity_coeff* keyword.
-
-The *full_energy* option means that fix GCMC will compute the total
-potential energy of the entire simulated system. The total system
-energy before and after the proposed GCMC move is then used in the
-Metropolis criterion to determine whether or not to accept the
-proposed GCMC move. By default, this option is off, in which case
-only partial energies are computed to determine the difference in
-energy that would be caused by the proposed GCMC move.
-
-The *full_energy* option is needed for systems with complicated
-potential energy calculations, including the following:
-
-* long-range electrostatics (kspace)
-* many-body pair styles
-* hybrid pair styles
-* eam pair styles
-* triclinic systems
-* need to include potential energy contributions from other fixes
-
-In these cases, LAMMPS will automatically apply the *full_energy*
-keyword and issue a warning message.
-
-When the *mol* keyword is used, the *full_energy* option also includes
-the intramolecular energy of inserted and deleted molecules. If this
-is not desired, the *intra_energy* keyword can be used to define an
-amount of energy that is subtracted from the final energy when a molecule
-is inserted, and added to the initial energy when a molecule is
-deleted. For molecules that have a non-zero intramolecular energy, this
-will ensure roughly the same behavior whether or not the *full_energy*
-option is used.
-
-Inserted atoms and molecules are assigned random velocities based on the
-specified temperature T. Because the relative velocity of
-all atoms in the molecule is zero, this may result in inserted molecules
-that are systematically too cold. In addition, the intramolecular potential
-energy of the inserted molecule may cause the kinetic energy
-of the molecule to quickly increase or decrease after insertion.
-The *tfac_insert* keyword allows the user to counteract these effects
-by changing the temperature used to assign velocities to
-inserted atoms and molecules by a constant factor. For a
-particular application, some experimentation may be required
-to find a value of *tfac_insert* that results in inserted molecules that
-equilibrate quickly to the correct temperature.
-
-Some fixes have an associated potential energy. Examples of such fixes
-include: :doc:`efield <fix_efield>`, :doc:`gravity <fix_gravity>`,
-:doc:`addforce <fix_addforce>`, :doc:`langevin <fix_langevin>`,
-:doc:`restrain <fix_restrain>`, :doc:`temp/berendsen <fix_temp_berendsen>`,
-:doc:`temp/rescale <fix_temp_rescale>`, and :doc:`wall fixes <fix_wall>`.
-For that energy to be included in the total potential energy of the
-system (the quantity used when performing GCMC moves),
-you MUST enable the :doc:`fix_modify <fix_modify>` *energy* option for
-that fix. The doc pages for individual :doc:`fix <fix>` commands
-specify if this should be done.
-
-Use the *charge* option to insert atoms with a user-specified point
-charge. Note that doing so will cause the system to become non-neutral.
-LAMMPS issues a warning when using long-range electrostatics (kspace)
-with non-neutral systems. See the
-:doc:`compute group/group <compute_group_group>` documentation for more
-details about simulating non-neutral systems with kspace on.
-
-Use of this fix typically will cause the number of atoms to fluctuate,
-therefore, you will want to use the
-:doc:`compute_modify <compute_modify>` command to insure that the
-current number of atoms is used as a normalizing factor each time
-temperature is computed. Here is the necessary command:
-
-.. parsed-literal::
-
- compute_modify thermo_temp dynamic yes
-
-If LJ units are used, note that a value of 0.18292026 is used by this
-fix as the reduced value for Planck's constant. This value was
-derived from LJ parameters for argon, where h* = h/sqrt(sigma^2 *
-epsilon * mass), sigma = 3.429 angstroms, epsilon/k = 121.85 K, and
-mass = 39.948 amu.
-
-The *group* keyword assigns all inserted atoms to the :doc:`group <group>`
-of the group-ID value. The *grouptype* keyword assigns all
-inserted atoms of the specified type to the :doc:`group <group>`
-of the group-ID value.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the fix to :doc:`binary restart files <restart>`. This includes information about the random
-number generator seed, the next timestep for MC exchanges, etc. See
-the :doc:`read_restart <read_restart>` command for info on how to
-re-specify a fix in an input script that reads a restart file, so that
-the operation of the fix continues in an uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-This fix computes a global vector of length 8, which can be accessed
-by various :ref:`output commands <howto_15>`. The vector
-values are the following global cumulative quantities:
-
-* 1 = translation attempts
-* 2 = translation successes
-* 3 = insertion attempts
-* 4 = insertion successes
-* 5 = deletion attempts
-* 6 = deletion successes
-* 7 = rotation attempts
-* 8 = rotation successes
-
-The vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MC package. It is only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Do not set "neigh_modify once yes" or else this fix will never be
-called. Reneighboring is required.
-
-Can be run in parallel, but aspects of the GCMC part will not scale
-well in parallel. Only usable for 3D simulations.
-
-Note that very lengthy simulations involving insertions/deletions of
-billions of gas molecules may run out of atom or molecule IDs and
-trigger an error, so it is better to run multiple shorter-duration
-simulations. Likewise, very large molecules have not been tested
-and may turn out to be problematic.
-
-Use of multiple fix gcmc commands in the same input script can be
-problematic if using a template molecule. The issue is that the
-user-referenced template molecule in the second fix gcmc command
-may no longer exist since it might have been deleted by the first
-fix gcmc command. An existing template molecule will need to be
-referenced by the user for each subsequent fix gcmc command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix atom/swap <fix_atom_swap>`,
-:doc:`fix nvt <fix_nh>`, :doc:`neighbor <neighbor>`,
-:doc:`fix deposit <fix_deposit>`, :doc:`fix evaporate <fix_evaporate>`,
-:doc:`delete_atoms <delete_atoms>`
-
-Default
-"""""""
-
-The option defaults are mol = no, maxangle = 10, full_energy = no,
-except for the situations where full_energy is required, as
-listed above.
-
-
-----------
-
-
-.. _Frenkel:
-
-
-
-**(Frenkel)** Frenkel and Smit, Understanding Molecular Simulation,
-Academic Press, London, 2002.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_gld.txt b/doc/_sources/fix_gld.txt
deleted file mode 100644
index 314fe1909..000000000
--- a/doc/_sources/fix_gld.txt
+++ /dev/null
@@ -1,178 +0,0 @@
-.. index:: fix gld
-
-fix gld command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID gld Tstart Tstop N_k seed series c_1 tau_1 ... c_N_k tau_N_k keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* gld = style name of this fix command
-* Tstart,Tstop = desired temperature at start/end of run (temperature units)
-* N_k = number of terms in the Prony series representation of the memory kernel
-* seed = random number seed to use for white noise (positive integer)
-* series = *pprony* is presently the only available option
-* c_k = the weight of the kth term in the Prony series (mass per time units)
-* tau_k = the time constant of the kth term in the Prony series (time units)
-* zero or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *frozen* or *zero*
- *frozen* value = *no* or *yes*
- *no* = initialize extended variables using values drawn from equilibrium distribution at Tstart
- *yes* = initialize extended variables to zero (i.e., from equilibrium distribution at zero temperature)
- *zero* value = *no* or *yes*
- *no* = do not set total random force to zero
- *yes* = set total random force to zero
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all gld 1.0 1.0 2 82885 pprony 0.5 1.0 1.0 2.0 frozen yes zero yes
- fix 3 rouse gld 7.355 7.355 4 48823 pprony 107.1 0.02415 186.0 0.04294 428.6 0.09661 1714 0.38643
-
-Description
-"""""""""""
-
-Applies Generalized Langevin Dynamics to a group of atoms, as
-described in :ref:`(Baczewski) <Baczewski>`. This is intended to model the
-effect of an implicit solvent with a temporally non-local dissipative
-force and a colored Gaussian random force, consistent with the
-Fluctuation-Dissipation Theorem. The functional form of the memory
-kernel associated with the temporally non-local force is constrained
-to be a Prony series.
-
-.. note::
-
- While this fix bears many similarities to :doc:`fix langevin <fix_langevin>`, it has one significant
- difference. Namely, :doc:`fix gld <fix_gld>` performs time integration,
- whereas :doc:`fix langevin <fix_langevin>` does NOT. To this end, the
- specification of another fix to perform time integration, such as :doc:`fix nve <fix_nve>`, is NOT necessary.
-
-With this fix active, the force on the *j*th atom is given as
-
-.. image:: Eqs/fix_gld1.jpg
- :align: center
-
-Here, the first term is representative of all conservative (pairwise,
-bonded, etc) forces external to this fix, the second is the temporally
-non-local dissipative force given as a Prony series, and the third is
-the colored Gaussian random force.
-
-The Prony series form of the memory kernel is chosen to enable an
-extended variable formalism, with a number of exemplary mathematical
-features discussed in :ref:`(Baczewski) <Baczewski>`. In particular, 3N_k
-extended variables are added to each atom, which effect the action of
-the memory kernel without having to explicitly evaluate the integral
-over time in the second term of the force. This also has the benefit
-of requiring the generation of uncorrelated random forces, rather than
-correlated random forces as specified in the third term of the force.
-
-Presently, the Prony series coefficients are limited to being greater
-than or equal to zero, and the time constants are limited to being
-greater than zero. To this end, the value of series MUST be set to
-*pprony*, for now. Future updates will allow for negative coefficients
-and other representations of the memory kernel. It is with these
-updates in mind that the series option was included.
-
-The units of the Prony series coefficients are chosen to be mass per
-time to ensure that the numerical integration scheme stably approaches
-the Newtonian and Langevin limits. Details of these limits, and the
-associated numerical concerns are discussed in
-:ref:`(Baczewski) <Baczewski>`.
-
-The desired temperature at each timestep is ramped from *Tstart* to
-*Tstop* over the course of the next run.
-
-The random # *seed* must be a positive integer. A Marsaglia random
-number generator is used. Each processor uses the input seed to
-generate its own unique seed and its own stream of random
-numbers. Thus the dynamics of the system will not be identical on two
-runs on different numbers of processors.
-
-
-----------
-
-
-The keyword/value option pairs are used in the following ways.
-
-The keyword *frozen* can be used to specify how the extended variables
-associated with the GLD memory kernel are initialized. Specifying no
-(the default), the initial values are drawn at random from an
-equilibrium distribution at *Tstart*, consistent with the
-Fluctuation-Dissipation Theorem. Specifying yes, initializes the
-extended variables to zero.
-
-The keyword *zero* can be used to eliminate drift due to the
-thermostat. Because the random forces on different atoms are
-independent, they do not sum exactly to zero. As a result, this fix
-applies a small random force to the entire system, and the
-center-of-mass of the system undergoes a slow random walk. If the
-keyword *zero* is set to *yes*, the total random force is set exactly
-to zero by subtracting off an equal part of it from each atom in the
-group. As a result, the center-of-mass of a system with zero initial
-momentum will not drift over time.
-
-
-----------
-
-
-**Restart, run start/stop, minimize info:**
-
-The instantaneous values of the extended variables are written to
-:doc:`binary restart files <restart>`. Because the state of the random
-number generator is not saved in restart files, this means you cannot
-do "exact" restarts with this fix, where the simulation continues on
-the same as if no restart had taken place. However, in a statistical
-sense, a restarted simulation should produce the same behavior.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix. No global or per-atom quantities are stored by this fix for
-access by various :ref:`output commands <howto_15>`.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin <fix_langevin>`, :doc:`fix viscous <fix_viscous>`,
-:doc:`pair_style dpd/tstat <pair_dpd>`
-
-Default
-"""""""
-
-The option defaults are frozen = no, zero = no.
-
-
-----------
-
-
-.. _Baczewski:
-
-
-
-**(Baczewski)** A.D. Baczewski and S.D. Bond, J. Chem. Phys. 139, 044107 (2013).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_gle.txt b/doc/_sources/fix_gle.txt
deleted file mode 100644
index dd9c0b2df..000000000
--- a/doc/_sources/fix_gle.txt
+++ /dev/null
@@ -1,171 +0,0 @@
-.. index:: fix gle
-
-fix gle command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID id-group gle Ns Tstart Tstop seed Amatrix [noneq Cmatrix] [every stride]
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* gle = style name of this fix command
-* Ns = number of additional fictitious momenta
-* Tstart, Tstop = temperature ramp during the run
-* Amatrix = file to read the drift matrix A from
-* seed = random number seed to use for generating noise (positive integer)
-* zero or more keyword/value pairs may be appended
-keyword = *noneq* and/or *every*
- *noneq* Cmatrix = file to read the non-equilibrium covariance matrix from
- *every* stride = apply the GLE once every time steps. Reduces the accuracy
- of the integration of the GLE, but has *no effect* on the accuracy of equilibrium
- sampling. It might change sampling properties when used together with *noneq*.
-
-
-Examples
-""""""""
-
-fix 3 boundary gle 6 300 300 31415 smart.A
-fix 1 all gle 6 300 300 31415 qt-300k.A noneq qt-300k.C
-
-Description
-"""""""""""
-
-Apply a Generalized Langevin Equation (GLE) thermostat as described
-in :ref:`(Ceriotti) <Ceriotti>`. The formalism allows one to obtain a number
-of different effects ranging from efficient sampling of all
-vibrational modes in the system to inexpensive (approximate)
-modelling of nuclear quantum effects. Contrary to
-:doc:`fix langevin <fix_langevin>`, this fix performs both
-thermostatting and evolution of the Hamiltonian equations of motion, so it
-should not be used together with :doc:`fix nve <fix_nve>` -- at least not
-on the same atom groups.
-
-Each degree of freedom in the thermostatted group is supplemented
-with Ns additional degrees of freedom s, and the equations of motion
-become
-
-dq/dt=p/m
-d(p,s)/dt=(F,0) - A(p,s) + B dW/dt
-
-where F is the physical force, A is the drift matrix (that generalizes
-the friction in Langevin dynamics), B is the diffusion term and dW/dt
-un-correlated Gaussian random forces. The A matrix couples the physical
-(q,p) dynamics with that of the additional degrees of freedom,
-and makes it possible to obtain effectively a history-dependent
-noise and friction kernel.
-
-The drift matrix should be given as an external file *Afile*,
-as a (Ns+1 x Ns+1) matrix in inverse time units. Matrices that are
-optimal for a given application and the system of choice can be
-obtained from :ref:`(GLE4MD) <GLE4MD>`.
-
-Equilibrium sampling a temperature T is obtained by specifiying the
-target value as the *Tstart* and *Tstop* arguments, so that the diffusion
-matrix that gives canonical sampling for a given A is computed automatically.
-However, the GLE framework also allow for non-equilibrium sampling, that
-can be used for instance to model inexpensively zero-point energy
-effects :ref:`(Ceriotti2) <Ceriotti2>`. This is achieved specifying the
-*noneq* keyword followed by the name of the file that contains the
-static covariance matrix for the non-equilibrium dynamics.
-
-Since integrating GLE dynamics can be costly when used together with
-simple potentials, one can use the *every* optional keyword to
-apply the Langevin terms only once every several MD steps, in a
-multiple time-step fashion. This should be used with care when doing
-non-equilibrium sampling, but should have no effect on equilibrium
-averages when using canonical sampling.
-
-The random number *seed* must be a positive integer. A Marsaglia random
-number generator is used. Each processor uses the input seed to
-generate its own unique seed and its own stream of random numbers.
-Thus the dynamics of the system will not be identical on two runs on
-different numbers of processors.
-
-Note also that the Generalized Langevin Dynamics scheme that is
-implemented by the :doc:`fix gld <fix_gld>` scheme is closely related
-to the present one. In fact, it should be always possible to cast the
-Prony series form of the memory kernel used by GLD into an appropriate
-input matrix for :doc:`fix gle <fix_gle>`. While the GLE scheme is more
-general, the form used by :doc:`fix gld <fix_gld>` can be more directly
-related to the representation of an implicit solvent environment.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-The instantaneous values of the extended variables are written to
-:doc:`binary restart files <restart>`. Because the state of the random
-number generator is not saved in restart files, this means you cannot
-do "exact" restarts with this fix, where the simulation continues on
-the same as if no restart had taken place. However, in a statistical
-sense, a restarted simulation should produce the same behavior.
-Note however that you should use a different seed each time you
-restart, otherwise the same sequence of random numbers will be used
-each time, which might lead to stochastic synchronization and
-subtle artefacts in the sampling.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Langevin thermostatting to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to this fix. The scalar value
-calculated by this fix is "extensive".
-
-Restrictions
-""""""""""""
-
-
-The GLE thermostat in its current implementation should not be used
-with rigid bodies, SHAKE or RATTLE. It is expected that all the
-thermostatted degrees of freedom are fully flexible, and the sampled
-ensemble will not be correct otherwise.
-
-In order to perform constant-pressure simulations please use
-:doc:`fix press/berendsen <fix_press_berendsen>`, rather than
-:doc:`fix npt <fix_nh>`, to avoid duplicate integration of the
-equations of motion.
-
-This fix is part of the USER-MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix viscous <fix_viscous>`, :doc:`fix nvt <fix_nh>`, :doc:`pair_style dpd/tstat <pair_dpd>`, :doc:`fix gld <fix_gld>`
-
-
-----------
-
-
-.. _Ceriotti:
-
-
-
-**(Ceriotti)** Ceriotti, Bussi and Parrinello, J Chem Theory Comput 6,
-1170-80 (2010)
-
-.. _GLE4MD:
-
-
-
-**(GLE4MD)** `http://epfl-cosmo.github.io/gle4md/ <http://epfl-cosmo.github.io/gle4md/>`_
-
-.. _Ceriotti2:
-
-
-
-**(Ceriotti2)** Ceriotti, Bussi and Parrinello, Phys Rev Lett 103,
-030603 (2009)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_gravity.txt b/doc/_sources/fix_gravity.txt
deleted file mode 100644
index 41050aae7..000000000
--- a/doc/_sources/fix_gravity.txt
+++ /dev/null
@@ -1,158 +0,0 @@
-.. index:: fix gravity
-
-fix gravity command
-===================
-
-fix gravity/cuda command
-========================
-
-fix gravity/omp command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group gravity magnitude style args
-
-* ID, group are documented in :doc:`fix <fix>` command
-* gravity = style name of this fix command
-* magnitude = size of acceleration (force/mass units)
-* magnitude can be a variable (see below)
-* style = *chute* or *spherical* or *gradient* or *vector*
-.. parsed-literal::
-
- *chute* args = angle
- angle = angle in +x away from -z or -y axis in 3d/2d (in degrees)
- angle can be a variable (see below)
- *spherical* args = phi theta
- phi = azimuthal angle from +x axis (in degrees)
- theta = angle from +z or +y axis in 3d/2d (in degrees)
- phi or theta can be a variable (see below)
- *vector* args = x y z
- x y z = vector direction to apply the acceleration
- x or y or z can be a variable (see below)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all gravity 1.0 chute 24.0
- fix 1 all gravity v_increase chute 24.0
- fix 1 all gravity 1.0 spherical 0.0 -180.0
- fix 1 all gravity 10.0 spherical v_phi v_theta
- fix 1 all gravity 100.0 vector 1 1 0
-
-Description
-"""""""""""
-
-Impose an additional acceleration on each particle in the group. This
-fix is typically used with granular systems to include a "gravity"
-term acting on the macroscopic particles. More generally, it can
-represent any kind of driving field, e.g. a pressure gradient inducing
-a Poiseuille flow in a fluid. Note that this fix operates differently
-than the :doc:`fix addforce <fix_addforce>` command. The addforce fix
-adds the same force to each atom, independent of its mass. This
-command imparts the same acceleration to each atom (force/mass).
-
-The *magnitude* of the acceleration is specified in force/mass units.
-For granular systems (LJ units) this is typically 1.0. See the
-:doc:`units <units>` command for details.
-
-Style *chute* is typically used for simulations of chute flow where
-the specified *angle* is the chute angle, with flow occurring in the +x
-direction. For 3d systems, the tilt is away from the z axis; for 2d
-systems, the tilt is away from the y axis.
-
-Style *spherical* allows an arbitrary 3d direction to be specified for
-the acceleration vector. *Phi* and *theta* are defined in the usual
-spherical coordinates. Thus for acceleration acting in the -z
-direction, *theta* would be 180.0 (or -180.0). *Theta* = 90.0 and
-*phi* = -90.0 would mean acceleration acts in the -y direction. For
-2d systems, *phi* is ignored and *theta* is an angle in the xy plane
-where *theta* = 0.0 is the y-axis.
-
-Style *vector* imposes an acceleration in the vector direction given
-by (x,y,z). Only the direction of the vector is important; it's
-length is ignored. For 2d systems, the *z* component is ignored.
-
-Any of the quantities *magnitude*, *angle*, *phi*, *theta*, *x*, *y*,
-*z* which define the gravitational magnitude and direction, can be
-specified as an equal-style :doc:`variable <variable>`. If the value is
-a variable, it should be specified as v_name, where name is the
-variable name. In this case, the variable will be evaluated each
-timestep, and its value used to determine the quantity. You should
-insure that the variable calculates a result in the approriate units,
-e.g. force/mass or degrees.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent gravitational
-field.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the gravitational potential energy of the system to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. This scalar is the
-gravitational potential energy of the particles in the defined field,
-namely mass * (g dot x) for each particles, where x and mass are the
-particles position and mass, and g is the gravitational field. The
-scalar value calculated by this fix is "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`atom_style sphere <atom_style>`, :doc:`fix addforce <fix_addforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_heat.txt b/doc/_sources/fix_heat.txt
deleted file mode 100644
index 7323157cc..000000000
--- a/doc/_sources/fix_heat.txt
+++ /dev/null
@@ -1,136 +0,0 @@
-.. index:: fix heat
-
-fix heat command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID heat N eflux
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* heat = style name of this fix command
-* N = add/subtract heat every this many timesteps
-* eflux = rate of heat addition or subtraction (energy/time units)
-* eflux can be a variable (see below)
-* zero or more keyword/value pairs may be appended to args
-* keyword = *region*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region atoms must be in to have added force
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 qin heat 1 1.0
- fix 3 qin heat 10 v_flux
- fix 4 qout heat 1 -1.0 region top
-
-Description
-"""""""""""
-
-Add non-translational kinetic energy (heat) to a group of atoms in a
-manner that conserves their aggregate momentum. Two of these fixes
-can be used to establish a temperature gradient across a simulation
-domain by adding heat (energy) to one group of atoms (hot reservoir)
-and subtracting heat from another (cold reservoir). E.g. a simulation
-sampling from the McDLT ensemble.
-
-If the *region* keyword is used, the atom must be in both the group
-and the specified geometric :doc:`region <region>` in order to have
-energy added or subtracted to it. If not specified, then the atoms in
-the group are affected wherever they may move to.
-
-Heat addition/subtraction is performed every N timesteps. The *eflux*
-parameter can be specified as a numeric constant or as a variable (see
-below). If it is a numeric constant or equal-style variable which
-evaluates to a scalar value, then the *eflux* determines the change in
-aggregate energy of the entire group of atoms per unit time, e.g. in
-eV/psec for :doc:`metal units <units>`. In this case it is an
-"extensive" quantity, meaning its magnitude should be scaled with the
-number of atoms in the group. Note that since *eflux* has per-time
-units (i.e. it is a flux), this means that a larger value of N will
-add/subtract a larger amount of energy each time the fix is invoked.
-
-If *eflux* is specified as an atom-style variable (see below), then
-the variable computes one value per atom. In this case, each value is
-the energy flux for a single atom, again in units of energy per unit
-time. In this case, each value is an "intensive" quantity, which need
-not be scaled with the number of atoms in the group.
-
-As mentioned above, the *eflux* parameter can be specified as an
-equal-style or atom_style :doc:`variable <variable>`. If the value is a
-variable, it should be specified as v_name, where name is the variable
-name. In this case, the variable will be evaluated each timestep, and
-its value(s) used to determine the flux.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent flux.
-
-Atom-style variables can specify the same formulas as equal-style
-variables but can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a spatially-dependent flux
-with optional time-dependence as well.
-
-.. note::
-
- If heat is subtracted from the system too aggressively so that
- the group's kinetic energy would go to zero, or any individual atom's
- kinetic energy would go to zero for the case where *eflux* is an
- atom-style variable, then LAMMPS will halt with an error message.
-
-Fix heat is different from a thermostat such as :doc:`fix nvt <fix_nh>`
-or :doc:`fix temp/rescale <fix_temp_rescale>` in that energy is
-added/subtracted continually. Thus if there isn't another mechanism
-in place to counterbalance this effect, the entire system will heat or
-cool continuously. You can use multiple heat fixes so that the net
-energy change is 0.0 or use :doc:`fix viscous <fix_viscous>` to drain
-energy from the system.
-
-This fix does not change the coordinates of its atoms; it only scales
-their velocities. Thus you must still use an integration fix
-(e.g. :doc:`fix nve <fix_nve>`) on the affected atoms. This fix should
-not normally be used on atoms that have their temperature controlled
-by another fix - e.g. :doc:`fix nvt <fix_nh>` or :doc:`fix langevin <fix_langevin>` fix.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. This scalar is the
-most recent value by which velocites were scaled. The scalar value
-calculated by this fix is "intensive". If *eflux* is specified as
-an atom-style variable, this fix computes the average value by which
-the velocities were scaled for all of the atoms that had their
-velocities scaled.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute temp <compute_temp>`, :doc:`compute temp/region <compute_temp_region>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_imd.txt b/doc/_sources/fix_imd.txt
deleted file mode 100644
index f75eea127..000000000
--- a/doc/_sources/fix_imd.txt
+++ /dev/null
@@ -1,179 +0,0 @@
-.. index:: fix imd
-
-fix imd command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID imd trate port keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* imd = style name of this fix command
-* port = port number on which the fix listens for an IMD client
-* keyword = *unwrap* or *fscale* or *trate*
-.. parsed-literal::
-
- *unwrap* arg = *on* or *off*
- off = coordinates are wrapped back into the principal unit cell (default)
- on = "unwrapped" coordinates using the image flags used
- *fscale* arg = factor
- factor = floating point number to scale IMD forces (default: 1.0)
- *trate* arg = transmission rate of coordinate data sets (default: 1)
- *nowait* arg = *on* or *off*
- off = LAMMPS waits to be connected to an IMD client before continuing (default)
- on = LAMMPS listens for an IMD client, but continues with the run
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix vmd all imd 5678
- fix comm all imd 8888 trate 5 unwrap on fscale 10.0
-
-Description
-"""""""""""
-
-This fix implements the "Interactive MD" (IMD) protocol which allows
-realtime visualization and manipulation of MD simulations through the
-IMD protocol, as initially implemented in VMD and NAMD. Specifically
-it allows LAMMPS to connect an IMD client, for example the `VMD visualization program <VMD_>`_, so that it can monitor the progress of the
-simulation and interactively apply forces to selected atoms.
-
-If LAMMPS is compiled with the preprocessor flag -DLAMMPS_ASYNC_IMD
-then fix imd will use POSIX threads to spawn a IMD communication
-thread on MPI rank 0 in order to offload data reading and writing
-from the main execution thread and potentially lower the inferred
-latencies for slow communication links. This feature has only been
-tested under linux.
-
-There are example scripts for using this package with LAMMPS in
-examples/USER/imd. Additional examples and a driver for use with the
-Novint Falcon game controller as haptic device can be found at:
-http://sites.google.com/site/akohlmey/software/vrpn-icms.
-
-The source code for this fix includes code developed by the
-Theoretical and Computational Biophysics Group in the Beckman
-Institute for Advanced Science and Technology at the University of
-Illinois at Urbana-Champaign. We thank them for providing a software
-interface that allows codes like LAMMPS to hook to `VMD <VMD_>`_.
-
-Upon initialization of the fix, it will open a communication port on
-the node with MPI task 0 and wait for an incoming connection. As soon
-as an IMD client is connected, the simulation will continue and the
-fix will send the current coordinates of the fix's group to the IMD
-client at every trate MD step. When using r-RESPA, trate applies to
-the steps of the outmost RESPA level. During a run with an active IMD
-connection also the IMD client can request to apply forces to selected
-atoms of the fix group.
-
-The port number selected must be an available network port number. On
-many machines, port numbers < 1024 are reserved for accounts with
-system manager privilege and specific applications. If multiple imd
-fixes would be active at the same time, each needs to use a different
-port number.
-
-The *nowait* keyword controls the behavior of the fix when no IMD
-client is connected. With the default setting of *off*, LAMMPS will
-wait until a connection is made before continuing with the
-execution. Setting *nowait* to *on* will have the LAMMPS code be ready
-to connect to a client, but continue with the simulation. This can for
-example be used to monitor the progress of an ongoing calculation
-without the need to be permanently connected or having to download a
-trajectory file.
-
-The *trate* keyword allows to select how often the coordinate data is
-sent to the IMD client. It can also be changed on request of the IMD
-client through an IMD protocol message. The *unwrap* keyword allows
-to send "unwrapped" coordinates to the IMD client that undo the
-wrapping back of coordinates into the principle unit cell, as done by
-default in LAMMPS. The *fscale* keyword allows to apply a scaling
-factor to forces transmitted by the IMD client. The IMD protocols
-stipulates that forces are transferred in kcal/mol/angstrom under the
-assumption that coordinates are given in angstrom. For LAMMPS runs
-with different units or as a measure to tweak the forces generated by
-the manipulation of the IMD client, this option allows to make
-adjustments.
-
-To connect VMD to a listening LAMMPS simulation on the same machine
-with fix imd enabled, one needs to start VMD and load a coordinate or
-topology file that matches the fix group. When the VMD command
-prompts appears, one types the command line:
-
-.. parsed-literal::
-
- imd connect localhost 5678
-
-This assumes that *fix imd* was started with 5678 as a port
-number for the IMD protocol.
-
-The steps to do interactive manipulation of a running simulation in
-VMD are the following:
-
-In the Mouse menu of the VMD Main window, select "Mouse -> Force ->
-Atom". You may alternately select "Residue", or "Fragment" to apply
-forces to whole residues or fragments. Your mouse can now be used to
-apply forces to your simulation. Click on an atom, residue, or
-fragment and drag to apply a force. Click quickly without moving the
-mouse to turn the force off. You can also use a variety of 3D position
-trackers to apply forces to your simulation. Game controllers or haptic
-devices with force-feedback such as the Novint Falcon or Sensable
-PHANTOM allow you to feel the resistance due to inertia or interactions
-with neighbors that the atoms experience you are trying to move, as if
-they were real objects. See the `VMD IMD Homepage <imdvmd_>`_ and the
-`VRPN-ICMS Homepage <vrpnicms_>`_ for more details.
-
-If IMD control messages are received, a line of text describing the
-message and its effect will be printed to the LAMMPS output screen, if
-screen output is active.
-
-.. _VMD: http://www.ks.uiuc.edu/Research/vmd
-
-
-
-.. _imdvmd: http://www.ks.uiuc.edu/Research/vmd/imd/
-
-
-
-.. _vrpnicms: http://sites.google.com/site/akohlmey/software/vrpn-icms
-
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global scalar or vector or per-atom
-quantities are stored by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-When used in combination with VMD, a topology or coordinate file has
-to be loaded, which matches (in number and ordering of atoms) the
-group the fix is applied to. The fix internally sorts atom IDs by
-ascending integer value; in VMD (and thus the IMD protocol) those will
-be assigned 0-based consecutive index numbers.
-
-When using multiple active IMD connections at the same time, each
-needs to use a different port number.
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_indent.txt b/doc/_sources/fix_indent.txt
deleted file mode 100644
index 34af67890..000000000
--- a/doc/_sources/fix_indent.txt
+++ /dev/null
@@ -1,223 +0,0 @@
-.. index:: fix indent
-
-fix indent command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID indent K keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* indent = style name of this fix command
-* K = force constant for indenter surface (force/distance^2 units)
-* one or more keyword/value pairs may be appended
-* keyword = *sphere* or *cylinder* or *plane* or *side* or *units*
-.. parsed-literal::
-
- *sphere* args = x y z R
- x,y,z = initial position of center of indenter (distance units)
- R = sphere radius of indenter (distance units)
- any of x,y,z,R can be a variable (see below)
- *cylinder* args = dim c1 c2 R
- dim = *x* or *y* or *z* = axis of cylinder
- c1,c2 = coords of cylinder axis in other 2 dimensions (distance units)
- R = cylinder radius of indenter (distance units)
- any of c1,c2,R can be a variable (see below)
- *plane* args = dim pos side
- dim = *x* or *y* or *z* = plane perpendicular to this dimension
- pos = position of plane in dimension x, y, or z (distance units)
- pos can be a variable (see below)
- side = *lo* or *hi*
- *side* value = *in* or *out*
- *in* = the indenter acts on particles inside the sphere or cylinder
- *out* = the indenter acts on particles outside the sphere or cylinder
- *units* value = *lattice* or *box*
- lattice = the geometry is defined in lattice units
- box = the geometry is defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all indent 10.0 sphere 0.0 0.0 15.0 3.0
- fix 1 all indent 10.0 sphere v_x v_y 0.0 v_radius side in
- fix 2 flow indent 10.0 cylinder z 0.0 0.0 10.0 units box
-
-Description
-"""""""""""
-
-Insert an indenter within a simulation box. The indenter repels all
-atoms in the group that touch it, so it can be used to push into a
-material or as an obstacle in a flow. Or it can be used as a
-constraining wall around a simulation; see the discussion of the
-*side* keyword below.
-
-The indenter can either be spherical or cylindrical or planar. You
-must set one of those 3 keywords.
-
-A spherical indenter exerts a force of magnitude
-
-.. parsed-literal::
-
- F(r) = - K (r - R)^2
-
-on each atom where *K* is the specified force constant, *r* is the
-distance from the atom to the center of the indenter, and *R* is the
-radius of the indenter. The force is repulsive and F(r) = 0 for *r* >
-*R*.
-
-A cylindrical indenter exerts the same force, except that *r* is the
-distance from the atom to the center axis of the cylinder. The
-cylinder extends infinitely along its axis.
-
-Spherical and cylindrical indenters account for periodic boundaries in
-two ways. First, the center point of a spherical indenter (x,y,z) or
-axis of a cylindrical indenter (c1,c2) is remapped back into the
-simulation box, if the box is periodic in a particular dimension.
-This occurs every timestep if the indenter geometry is specified with
-a variable (see below), e.g. it is moving over time. Second, the
-calculation of distance to the indenter center or axis accounts for
-periodic boundaries. Both of these mean that an indenter can
-effectively move through and straddle one or more periodic boundaries.
-
-A planar indenter is really an axis-aligned infinite-extent wall
-exerting the same force on atoms in the system, where *R* is the
-position of the plane and *r-R* is the distance from the plane. If
-the *side* parameter of the plane is specified as *lo* then it will
-indent from the lo end of the simulation box, meaning that atoms with
-a coordinate less than the plane's current position will be pushed
-towards the hi end of the box and atoms with a coordinate higher than
-the plane's current position will feel no force. Vice versa if *side*
-is specified as *hi*.
-
-Any of the 4 quantities defining a spherical indenter's geometry can
-be specified as an equal-style :doc:`variable <variable>`, namely *x*,
-*y*, *z*, or *R*. Similarly, for a cylindrical indenter, any of *c1*,
-*c2*, or *R*, can be a variable. For a planar indenter, *pos* can be
-a variable. If the value is a variable, it should be specified as
-v_name, where name is the variable name. In this case, the variable
-will be evaluated each timestep, and its value used to define the
-indenter geometry.
-
-Note that equal-style variables can specify formulas with various
-mathematical functions, and include :doc:`thermo_style <thermo_style>`
-command keywords for the simulation box parameters and timestep and
-elapsed time. Thus it is easy to specify indenter properties that
-change as a function of time or span consecutive runs in a continuous
-fashion. For the latter, see the *start* and *stop* keywords of the
-:doc:`run <run>` command and the *elaplong* keyword of :doc:`thermo_style custom <thermo_style>` for details.
-
-For example, if a spherical indenter's x-position is specfied as v_x,
-then this variable definition will keep it's center at a relative
-position in the simulation box, 1/4 of the way from the left edge to
-the right edge, even if the box size changes:
-
-.. parsed-literal::
-
- variable x equal "xlo + 0.25*lx"
-
-Similarly, either of these variable definitions will move the indenter
-from an initial position at 2.5 at a constant velocity of 5:
-
-.. parsed-literal::
-
- variable x equal "2.5 + 5*elaplong*dt"
- variable x equal vdisplace(2.5,5)
-
-If a spherical indenter's radius is specified as v_r, then these
-variable definitions will grow the size of the indenter at a specfied
-rate.
-
-.. parsed-literal::
-
- variable r0 equal 0.0
- variable rate equal 1.0
- variable r equal "v_r0 + step*dt*v_rate"
-
-If the *side* keyword is specified as *out*, which is the default,
-then particles outside the indenter are pushded away from its outer
-surface, as described above. This only applies to spherical or
-cylindrical indenters. If the *side* keyword is specified as *in*,
-the action of the indenter is reversed. Particles inside the indenter
-are pushed away from its inner surface. In other words, the indenter
-is now a containing wall that traps the particles inside it. If the
-radius shrinks over time, it will squeeze the particles.
-
-The *units* keyword determines the meaning of the distance units used
-to define the indenter geometry. A *box* value selects standard
-distance units as defined by the :doc:`units <units>` command,
-e.g. Angstroms for units = real or metal. A *lattice* value means the
-distance units are in lattice spacings. The :doc:`lattice <lattice>`
-command must have been previously used to define the lattice spacing.
-The (x,y,z) coords of the indenter position are scaled by the x,y,z
-lattice spacings respectively. The radius of a spherical or
-cylindrical indenter is scaled by the x lattice spacing.
-
-Note that the units keyword only affects indenter geometry parameters
-specified directly with numbers, not those specified as variables. In
-the latter case, you should use the *xlat*, *ylat*, *zlat* keywords of
-the :doc:`thermo_style <thermo_style>` command if you want to include
-lattice spacings in a variable formula.
-
-The force constant *K* is not affected by the *units* keyword. It is
-always in force/distance^2 units where force and distance are defined
-by the :doc:`units <units>` command. If you wish K to be scaled by the
-lattice spacing, you can define K with a variable whose formula
-contains *xlat*, *ylat*, *zlat* keywords of the
-:doc:`thermo_style <thermo_style>` command, e.g.
-
-.. parsed-literal::
-
- variable k equal 100.0/xlat/xlat
- fix 1 all indent $k sphere ...
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy of interaction between atoms and the indenter to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`. The energy of each particle interacting
-with the indenter is K/3 (r - R)^3.
-
-This fix computes a global scalar energy and a global 3-vector of
-forces (on the indenter), which can be accessed by various :ref:`output commands <howto_15>`. The scalar and vector values
-calculated by this fix are "extensive".
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command. Note that if you
-define the indenter geometry with a variable using a time-dependent
-formula, LAMMPS uses the iteration count in the minimizer as the
-timestep. But it is almost certainly a bad idea to have the indenter
-change its position or size during a minimization. LAMMPS does not
-check if you have done this.
-
-.. note::
-
- If you want the atom/indenter interaction energy to be included
- in the total potential energy of the system (the quantity being
- minimized), you must enable the :doc:`fix_modify <fix_modify>` *energy*
- option for this fix.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-Default
-"""""""
-
-The option defaults are side = out and units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ipi.txt b/doc/_sources/fix_ipi.txt
deleted file mode 100644
index d4786cd5b..000000000
--- a/doc/_sources/fix_ipi.txt
+++ /dev/null
@@ -1,107 +0,0 @@
-.. index:: fix ipi
-
-fix ipi command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ipi address port [unix]
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ipi = style name of this fix command
-* address = internet address (FQDN or IP), or UNIX socket name
-* port = port number (ignored for UNIX sockets)
-* optional keyword = *unix*, if present uses a unix socket
-
-Examples
-""""""""
-
-fix 1 all ipi my.server.com 12345
-fix 1 all ipi mysocket 666 unix
-
-Description
-"""""""""""
-
-This fix enables LAMMPS to be run as a client for the i-PI Python
-wrapper :ref:`(IPI) <IPI>` for performing a path integral molecular dynamics
-(PIMD) simulation. The philosophy behind i-PI is described in the
-following publication :ref:`(IPI-CPC) <IPICPC>`.
-
-A version of the i-PI package, containing only files needed for use
-with LAMMPS, is provided in the tools/i-pi directory. See the
-tools/i-pi/manual.pdf for an introduction to i-PI. The
-examples/USER/i-pi directory contains example scripts for using i-PI
-with LAMMPS.
-
-In brief, the path integral molecular dynamics is performed by the
-Python wrapper, while the client (LAMMPS in this case) simply computes
-forces and energy for each configuration. The communication between
-the two components takes place using sockets, and is reduced to the
-bare minimum. All the parameters of the dynamics are specified in the
-input of i-PI, and all the parameters of the force field must be
-specified as LAMMPS inputs, preceding the *fix ipi* command.
-
-The server address must be specified by the *address* argument, and
-can be either the IP address, the fully-qualified name of the server,
-or the name of a UNIX socket for local, faster communication. In the
-case of internet sockets, the *port* argument specifies the port
-number on which i-PI is listening, while the *unix* optional switch
-specifies that the socket is a UNIX socket.
-
-Note that there is no check of data integrity, or that the atomic
-configurations make sense. It is assumed that the species in the i-PI
-input are listed in the same order as in the data file of LAMMPS. The
-initial configuration is ignored, as it will be substituted with the
-coordinates received from i-PI before forces are ever evaluated.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-There is no restart information associated with this fix, since all
-the dynamical parameters are dealt with by i-PI.
-
-Restrictions
-""""""""""""
-
-
-Using this fix on anything other than all atoms requires particular
-care, since i-PI will know nothing on atoms that are not those whose
-coordinates are transferred. However, one could use this strategy to
-define an external potential acting on the atoms that are moved by
-i-PI.
-
-This fix is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. Because of
-the use of UNIX domain sockets, this fix will only work in a UNIX
-environment.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`
-
-
-----------
-
-
-.. _IPICPC:
-
-
-
-**(IPI-CPC)** Ceriotti, More and Manolopoulos, Comp Phys Comm, 185,
-1019-1026 (2014).
-
-.. _IPI:
-
-
-
-**(IPI)**
-`http://epfl-cosmo.github.io/gle4md/index.html?page=ipi <http://epfl-cosmo.github.io/gle4md/index.html?page=ipi>`_
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_langevin.txt b/doc/_sources/fix_langevin.txt
deleted file mode 100644
index a789f45ac..000000000
--- a/doc/_sources/fix_langevin.txt
+++ /dev/null
@@ -1,374 +0,0 @@
-.. index:: fix langevin
-
-fix langevin command
-====================
-
-fix langevin/kk command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID langevin Tstart Tstop damp seed keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* langevin = style name of this fix command
-* Tstart,Tstop = desired temperature at start/end of run (temperature units)
-* Tstart can be a variable (see below)
-* damp = damping parameter (time units)
-* seed = random number seed to use for white noise (positive integer)
-* zero or more keyword/value pairs may be appended
-* keyword = *angmom* or *omega* or *scale* or *tally* or *zero*
-.. parsed-literal::
-
- *angmom* value = *no* or factor
- *no* = do not thermostat rotational degrees of freedom via the angular momentum
- factor = do thermostat rotational degrees of freedom via the angular momentum and apply numeric scale factor as discussed below
- *gjf* value = *no* or *yes*
- *no* = use standard formulation
- *yes* = use Gronbech-Jensen/Farago formulation
- *omega* value = *no* or *yes*
- *no* = do not thermostat rotational degrees of freedom via the angular velocity
- *yes* = do thermostat rotational degrees of freedom via the angular velocity
- *scale* values = type ratio
- type = atom type (1-N)
- ratio = factor by which to scale the damping coefficient
- *tally* value = *no* or *yes*
- *no* = do not tally the energy added/subtracted to atoms
- *yes* = do tally the energy added/subtracted to atoms
- *zero* value = *no* or *yes*
- *no* = do not set total random force to zero
- *yes* = set total random force to zero
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 boundary langevin 1.0 1.0 1000.0 699483
- fix 1 all langevin 1.0 1.1 100.0 48279 scale 3 1.5
- fix 1 all langevin 1.0 1.1 100.0 48279 angmom 3.333
-
-Description
-"""""""""""
-
-Apply a Langevin thermostat as described in :ref:`(Schneider) <Schneider>`
-to a group of atoms which models an interaction with a background
-implicit solvent. Used with :doc:`fix nve <fix_nve>`, this command
-performs Brownian dynamics (BD), since the total force on each atom
-will have the form:
-
-.. parsed-literal::
-
- F = Fc + Ff + Fr
- Ff = - (m / damp) v
- Fr is proportional to sqrt(Kb T m / (dt damp))
-
-Fc is the conservative force computed via the usual inter-particle
-interactions (:doc:`pair_style <pair_style>`,
-:doc:`bond_style <bond_style>`, etc).
-
-The Ff and Fr terms are added by this fix on a per-particle basis.
-See the :doc:`pair_style dpd/tstat <pair_dpd>` command for a
-thermostatting option that adds similar terms on a pairwise basis to
-pairs of interacting particles.
-
-Ff is a frictional drag or viscous damping term proportional to the
-particle's velocity. The proportionality constant for each atom is
-computed as m/damp, where m is the mass of the particle and damp is
-the damping factor specified by the user.
-
-Fr is a force due to solvent atoms at a temperature T randomly bumping
-into the particle. As derived from the fluctuation/dissipation
-theorem, its magnitude as shown above is proportional to sqrt(Kb T m /
-dt damp), where Kb is the Boltzmann constant, T is the desired
-temperature, m is the mass of the particle, dt is the timestep size,
-and damp is the damping factor. Random numbers are used to randomize
-the direction and magnitude of this force as described in
-:ref:`(Dunweg) <Dunweg>`, where a uniform random number is used (instead of
-a Gaussian random number) for speed.
-
-Note that unless you use the *omega* or *angmom* keywords, the
-thermostat effect of this fix is applied to only the translational
-degrees of freedom for the particles, which is an important
-consideration for finite-size particles, which have rotational degrees
-of freedom, are being thermostatted. The translational degrees of
-freedom can also have a bias velocity removed from them before
-thermostatting takes place; see the description below.
-
-.. note::
-
- Unlike the :doc:`fix nvt <fix_nh>` command which performs
- Nose/Hoover thermostatting AND time integration, this fix does NOT
- perform time integration. It only modifies forces to effect
- thermostatting. Thus you must use a separate time integration fix,
- like :doc:`fix nve <fix_nve>` to actually update the velocities and
- positions of atoms using the modified forces. Likewise, this fix
- should not normally be used on atoms that also have their temperature
- controlled by another fix - e.g. by :doc:`fix nvt <fix_nh>` or :doc:`fix temp/rescale <fix_temp_rescale>` commands.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-The desired temperature at each timestep is a ramped value during the
-run from *Tstart* to *Tstop*.
-
-*Tstart* can be specified as an equal-style or atom-style
-:doc:`variable <variable>`. In this case, the *Tstop* setting is
-ignored. If the value is a variable, it should be specified as
-v_name, where name is the variable name. In this case, the variable
-will be evaluated each timestep, and its value used to determine the
-target temperature.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent temperature.
-
-Atom-style variables can specify the same formulas as equal-style
-variables but can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a spatially-dependent
-temperature with optional time-dependence as well.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that remove a "bias" from the
-atom velocities. E.g. removing the center-of-mass velocity from a
-group of atoms or removing the x-component of velocity from the
-calculation. This is not done by default, but only if the
-:doc:`fix_modify <fix_modify>` command is used to assign a temperature
-compute to this fix that includes such a bias term. See the doc pages
-for individual :doc:`compute commands <compute>` to determine which ones
-include a bias. In this case, the thermostat works in the following
-manner: bias is removed from each atom, thermostatting is performed on
-the remaining thermal degrees of freedom, and the bias is added back
-in.
-
-The *damp* parameter is specified in time units and determines how
-rapidly the temperature is relaxed. For example, a value of 100.0
-means to relax the temperature in a timespan of (roughly) 100 time
-units (tau or fmsec or psec - see the :doc:`units <units>` command).
-The damp factor can be thought of as inversely related to the
-viscosity of the solvent. I.e. a small relaxation time implies a
-hi-viscosity solvent and vice versa. See the discussion about gamma
-and viscosity in the documentation for the :doc:`fix viscous <fix_viscous>` command for more details.
-
-The random # *seed* must be a positive integer. A Marsaglia random
-number generator is used. Each processor uses the input seed to
-generate its own unique seed and its own stream of random numbers.
-Thus the dynamics of the system will not be identical on two runs on
-different numbers of processors.
-
-
-----------
-
-
-The keyword/value option pairs are used in the following ways.
-
-The keyword *angmom* and *omega* keywords enable thermostatting of
-rotational degrees of freedom in addition to the usual translational
-degrees of freedom. This can only be done for finite-size particles.
-
-A simulation using atom_style sphere defines an omega for finite-size
-spheres. A simulation using atom_style ellipsoid defines a finite
-size and shape for aspherical particles and an angular momentum.
-The Langevin formulas for thermostatting the rotational degrees of
-freedom are the same as those above, where force is replaced by
-torque, m is replaced by the moment of inertia I, and v is replaced by
-omega (which is derived from the angular momentum in the case of
-aspherical particles).
-
-The rotational temperature of the particles can be monitored by the
-:doc:`compute temp/sphere <compute_temp_sphere>` and :doc:`compute temp/asphere <compute_temp_asphere>` commands with their rotate
-options.
-
-For the *omega* keyword there is also a scale factor of 10.0/3.0 that
-is applied as a multiplier on the Ff (damping) term in the equation
-above and of sqrt(10.0/3.0) as a multiplier on the Fr term. This does
-not affect the thermostatting behaviour of the Langevin formalism but
-insures that the randomized rotational diffusivity of spherical
-particles is correct.
-
-For the *angmom* keyword a similar scale factor is needed which is
-10.0/3.0 for spherical particles, but is anisotropic for aspherical
-particles (e.g. ellipsoids). Currently LAMMPS only applies an
-isotropic scale factor, and you can choose its magnitude as the
-specified value of the *angmom* keyword. If your aspherical particles
-are (nearly) spherical than a value of 10.0/3.0 = 3.333 is a good
-choice. If they are highly aspherical, a value of 1.0 is as good a
-choice as any, since the effects on rotational diffusivity of the
-particles will be incorrect regardless. Note that for any reasonable
-scale factor, the thermostatting effect of the *angmom* keyword on the
-rotational temperature of the aspherical particles should still be
-valid.
-
-The keyword *scale* allows the damp factor to be scaled up or down by
-the specified factor for atoms of that type. This can be useful when
-different atom types have different sizes or masses. It can be used
-multiple times to adjust damp for several atom types. Note that
-specifying a ratio of 2 increases the relaxation time which is
-equivalent to the solvent's viscosity acting on particles with 1/2 the
-diameter. This is the opposite effect of scale factors used by the
-:doc:`fix viscous <fix_viscous>` command, since the damp factor in fix
-*langevin* is inversely related to the gamma factor in fix *viscous*.
-Also note that the damping factor in fix *langevin* includes the
-particle mass in Ff, unlike fix *viscous*. Thus the mass and size of
-different atom types should be accounted for in the choice of ratio
-values.
-
-The keyword *tally* enables the calculation of the cumulative energy
-added/subtracted to the atoms as they are thermostatted. Effectively
-it is the energy exchanged between the infinite thermal reservoir and
-the particles. As described below, this energy can then be printed
-out or added to the potential energy of the system to monitor energy
-conservation.
-
-.. note::
-
- this accumulated energy does NOT include kinetic energy removed
- by the *zero* flag. LAMMPS will print a warning when both options are
- active.
-
-The keyword *zero* can be used to eliminate drift due to the
-thermostat. Because the random forces on different atoms are
-independent, they do not sum exactly to zero. As a result, this fix
-applies a small random force to the entire system, and the
-center-of-mass of the system undergoes a slow random walk. If the
-keyword *zero* is set to *yes*, the total random force is set exactly
-to zero by subtracting off an equal part of it from each atom in the
-group. As a result, the center-of-mass of a system with zero initial
-momentum will not drift over time.
-
-The keyword *gjf* can be used to run the :ref:`Gronbech-Jensen/Farago <Gronbech-Jensen>` time-discretization of the Langevin model. As
-described in the papers cited below, the purpose of this method is to
-enable longer timesteps to be used (up to the numerical stability
-limit of the integrator), while still producing the correct Boltzmann
-distribution of atom positions. It is implemented within LAMMPS, by
-changing how the the random force is applied so that it is composed of
-the average of two random forces representing half-contributions from
-the previous and current time intervals.
-
-In common with all methods based on Verlet integration, the
-discretized velocities generated by this method in conjunction with
-velocity-Verlet time integration are not exactly conjugate to the
-positions. As a result the temperature (computed from the discretized
-velocities) will be systematically lower than the target temperature,
-by a small amount which grows with the timestep. Nonetheless, the
-distribution of atom positions will still be consistent with the
-target temperature.
-
-As an example of using the *gjf* keyword, for molecules containing C-H
-bonds, configurational properties generated with dt = 2.5 fs and tdamp
-= 100 fs are indistinguishable from dt = 0.5 fs. Because the velocity
-distribution systematically decreases with increasing timestep, the
-method should not be used to generate properties that depend on the
-velocity distribution, such as the velocity autocorrelation function
-(VACF). In this example, the velocity distribution at dt = 2.5fs
-generates an average temperature of 220 K, instead of 300 K.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. Because the state of the random number generator
-is not saved in restart files, this means you cannot do "exact"
-restarts with this fix, where the simulation continues on the same as
-if no restart had taken place. However, in a statistical sense, a
-restarted simulation should produce the same behavior.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a temperature :doc:`compute <compute>`
-you have defined to this fix which will be used in its thermostatting
-procedure, as described above. For consistency, the group used by
-this fix and by the compute should be the same.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Langevin thermostatting to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`. Note that use of this option requires
-setting the *tally* keyword to *yes*.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to this fix. The scalar value
-calculated by this fix is "extensive". Note that calculation of this
-quantity requires setting the *tally* keyword to *yes*.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix viscous <fix_viscous>`, :doc:`fix nvt <fix_nh>`, :doc:`pair_style dpd/tstat <pair_dpd>`
-
-Default
-"""""""
-
-The option defaults are angmom = no, omega = no, scale = 1.0 for all
-types, tally = no, zero = no, gjf = no.
-
-
-----------
-
-
-.. _Dunweg:
-
-
-
-**(Dunweg)** Dunweg and Paul, Int J of Modern Physics C, 2, 817-27 (1991).
-
-.. _Schneider:
-
-
-
-**(Schneider)** Schneider and Stoll, Phys Rev B, 17, 1302 (1978).
-
-.. _Gronbech-Jensen:
-
-
-
-**(Gronbech-Jensen)** Gronbech-Jensen and Farago, Mol Phys, 111, 983
-(2013); Gronbech-Jensen, Hayre, and Farago, Comp Phys Comm,
-185, 524 (2014)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_langevin_drude.txt b/doc/_sources/fix_langevin_drude.txt
deleted file mode 100644
index 80d08c5fd..000000000
--- a/doc/_sources/fix_langevin_drude.txt
+++ /dev/null
@@ -1,318 +0,0 @@
-.. index:: fix langevin/drude
-
-fix langevin/drude command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID langevin/drude Tcom damp_com seed_com Tdrude damp_drude seed_drude keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* langevin/drude = style name of this fix command
-* Tcom = desired temperature of the centers of mass (temperature units)
-* damp_com = damping parameter for the thermostat on centers of mass (time units)
-* seed_com = random number seed to use for white noise of the thermostat on centers of mass (positive integer)
-* Tdrude = desired temperature of the Drude oscillators (temperature units)
-* damp_drude = damping parameter for the thermostat on Drude oscillators (time units)
-* seed_drude = random number seed to use for white noise of the thermostat on Drude oscillators (positive integer)
-* zero or more keyword/value pairs may be appended
-* keyword = *zero*
-.. parsed-literal::
-
- *zero* value = *no* or *yes*
- *no* = do not set total random force on centers of mass to zero
- *yes* = set total random force on centers of mass to zero
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 all langevin/drude 300.0 100.0 19377 1.0 20.0 83451
- fix 1 all langevin/drude 298.15 100.0 19377 5.0 10.0 83451 zero yes
-
-Description
-"""""""""""
-
-Apply two Langevin thermostats as described in :ref:`(Jiang) <Jiang>` for
-thermalizing the reduced degrees of freedom of Drude oscillators.
-This link describes how to use the :doc:`thermalized Drude oscillator model <tutorial_drude>` in LAMMPS and polarizable models in LAMMPS
-are discussed in :ref:`this Section <howto_25>`.
-
-Drude oscillators are a way to simulate polarizables atoms, by
-splitting them into a core and a Drude particle bound by a harmonic
-bond. The thermalization works by transforming the particles degrees
-of freedom by these equations. In these equations upper case denotes
-atomic or center of mass values and lower case denotes Drude particle
-or dipole values. Primes denote the transformed (reduced) values,
-while bare letters denote the original values.
-
-Velocities:
-
-.. math::
-
- \begin{equation} V' = \frac {M\, V + m\, v} {M'} \end{equation}
-
-
-.. math::
-
- \begin{equation} v' = v - V \end{equation}
-
-Masses:
-
-.. math::
-
- \begin{equation} M' = M + m \end{equation}
-
-
-.. math::
-
- \begin{equation} m' = \frac {M\, m } {M'} \end{equation}
-
-The Langevin forces are computed as
-
-.. math::
-
- \begin{equation} F' = - \frac {M'} {\mathtt{damp\_com}}\, V' + F_r' \end{equation}
-
-
-.. math::
-
- \begin{equation} f' = - \frac {m'} {\mathtt{damp\_drude}}\, v' + f_r' \end{equation}
-
-:math:`F_r'` is a random force proportional to
-:math:`\sqrt { \frac {2\, k_B \mathtt{Tcom}\, m'} {\mathrm dt\, \mathtt{damp\_com} } }`. :b:math:`f_r'` is a random force proportional to
-:math:`\sqrt { \frac {2\, k_B \mathtt{Tdrude}\, m'} {\mathrm dt\, \mathtt{damp\_drude} } }`.
-Then the real forces acting on the particles are computed from the inverse
-transform:
-
-.. math::
-
- \begin{equation} F = \frac M {M'}\, F' - f' \end{equation}
-
-
-.. math::
-
- \begin{equation} f = \frac m {M'}\, F' + f' \end{equation}
-
-This fix also thermostates non-polarizable atoms in the group at
-temperature *Tcom*, as if they had a massless Drude partner. The
-Drude particles themselves need not be in the group. The center of
-mass and the dipole are thermostated iff the core atom is in the
-group.
-
-Note that the thermostat effect of this fix is applied to only the
-translational degrees of freedom of the particles, which is an
-important consideration if finite-size particles, which have
-rotational degrees of freedom, are being thermostated. The
-translational degrees of freedom can also have a bias velocity removed
-from them before thermostating takes place; see the description below.
-
-.. note::
-
- Like the :doc:`fix langevin <fix_langevin>` command, this fix does
- NOT perform time integration. It only modifies forces to effect
- thermostating. Thus you must use a separate time integration fix, like
- :doc:`fix nve <fix_nve>` or :doc:`fix nph <fix_nh>` to actually update the
- velocities and positions of atoms using the modified forces.
- Likewise, this fix should not normally be used on atoms that also have
- their temperature controlled by another fix - e.g. by :doc:`fix nvt <fix_nh>` or :doc:`fix temp/rescale <fix_temp_rescale>` commands.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostating.
-
-
-----------
-
-
-This fix requires each atom know whether it is a Drude particle or
-not. You must therefore use the :doc:`fix drude <fix_drude>` command to
-specify the Drude status of each atom type.
-
-.. note::
-
- only the Drude core atoms need to be in the group specified for
- this fix. A Drude electron will be transformed together with its cores
- even if it is not itself in the group. It is safe to include Drude
- electrons or non-polarizable atoms in the group. The non-polarizable
- atoms will simply be thermostatted as if they had a massless Drude
- partner (electron).
-
-.. note::
-
- Ghost atoms need to know their velocity for this fix to act
- correctly. You must use the :doc:`comm_modify <comm_modify>` command to
- enable this, e.g.
-
-.. parsed-literal::
-
- comm_modify vel yes
-
-
-----------
-
-
-*Tcom* is the target temperature of the centers of mass, which would
-be used to thermostate the non-polarizable atoms. *Tdrude* is the
-(normally low) target temperature of the core-Drude particle pairs
-(dipoles). *Tcom* and *Tdrude* can be specified as an equal-style
-:doc:`variable <variable>`. If the value is a variable, it should be
-specified as v_name, where name is the variable name. In this case,
-the variable will be evaluated each timestep, and its value used to
-determine the target temperature.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent temperature.
-
-Like other fixes that perform thermostating, this fix can be used with
-:doc:`compute commands <compute>` that remove a "bias" from the atom
-velocities. E.g. removing the center-of-mass velocity from a group of
-atoms. This is not done by default, but only if the
-:doc:`fix_modify <fix_modify>` command is used to assign a temperature
-compute to this fix that includes such a bias term. See the doc pages
-for individual :doc:`compute commands <compute>` to determine which ones
-include a bias. In this case, the thermostat works in the following
-manner: bias is removed from each atom, thermostating is performed on
-the remaining thermal degrees of freedom, and the bias is added back
-in. NOTE: this feature has not been tested.
-
-Note: The temperature thermostating the core-Drude particle pairs
-should be chosen low enough, so as to mimic as closely as possible the
-self-consistent minimization. It must however be high enough, so that
-the dipoles can follow the local electric field exerted by the
-neighbouring atoms. The optimal value probably depends on the
-temperature of the centers of mass and on the mass of the Drude
-particles.
-
-*damp_com* is the characteristic time for reaching thermal equilibrium
-of the centers of mass. For example, a value of 100.0 means to relax
-the temperature of the centers of mass in a timespan of (roughly) 100
-time units (tau or fmsec or psec - see the :doc:`units <units>`
-command). *damp_drude* is the characteristic time for reaching
-thermal equilibrium of the dipoles. It is typically a few timesteps.
-
-The number *seed_com* and *seed_drude* are positive integers. They set
-the seeds of the Marsaglia random number generators used for
-generating the random forces on centers of mass and on the
-dipoles. Each processor uses the input seed to generate its own unique
-seed and its own stream of random numbers. Thus the dynamics of the
-system will not be identical on two runs on different numbers of
-processors.
-
-The keyword *zero* can be used to eliminate drift due to the
-thermostat on centers of mass. Because the random forces on different
-centers of mass are independent, they do not sum exactly to zero. As
-a result, this fix applies a small random force to the entire system,
-and the momentum of the total center of mass of the system undergoes a
-slow random walk. If the keyword *zero* is set to *yes*, the total
-random force on the centers of mass is set exactly to zero by
-subtracting off an equal part of it from each center of mass in the
-group. As a result, the total center of mass of a system with zero
-initial momentum will not drift over time.
-
-The actual temperatures of cores and Drude particles, in
-center-of-mass and relative coordinates, respectively, can be
-calculated using the :doc:`compute temp/drude <compute_temp_drude>`
-command.
-
-
-----------
-
-
-Usage example for rigid bodies in the NPT ensemble:
-
-.. parsed-literal::
-
- comm_modify vel yes
- fix TEMP all langevin/drude 300. 100. 1256 1. 20. 13977 zero yes
- fix NPH ATOMS rigid/nph/small molecule iso 1. 1. 500.
- fix NVE DRUDES nve
- compute TDRUDE all temp/drude
- thermo_style custom step cpu etotal ke pe ebond ecoul elong press vol temp c_TDRUDE[1] c_TDRUDE[2]
-
-Comments:
-
-* Drude particles should not be in the rigid group, otherwise the Drude
- oscillators will be frozen and the system will lose its
- polarizability.
-* *zero yes* avoids a drift of the center of mass of
- the system, but is a bit slower.
-* Use two different random seeds to avoid unphysical correlations.
-* Temperature is controlled by the fix *langevin/drude*, so the
- time-integration fixes do not thermostate. Don't forget to
- time-integrate both cores and Drude particles.
-* Pressure is time-integrated only once by using *nve* for Drude
- particles and *nph* for atoms/cores (or vice versa). Do not use *nph*
- for both.
-* The temperatures of cores and Drude particles are calculated by
- :doc:`compute temp/drude <compute_temp_drude>`
-* Contrary to the alternative thermostating using Nose-Hoover thermostat
- fix *npt* and :doc:`fix drude/transform <fix_drude_transform>`, the
- *fix_modify* command is not required here, because the fix *nph*
- computes the global pressure even if its group is *ATOMS*. This is
- what we want. If we thermostated *ATOMS* using *npt*, the pressure
- should be the global one, but the temperature should be only that of
- the cores. That's why the command *fix_modify* should be called in
- that case.
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. Because the state of the random number generator
-is not saved in restart files, this means you cannot do "exact"
-restarts with this fix, where the simulation continues on the same as
-if no restart had taken place. However, in a statistical sense, a
-restarted simulation should produce the same behavior.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a temperature :doc:`compute <compute>`
-you have defined to this fix which will be used in its thermostating
-procedure, as described above. For consistency, the group used by the
-compute should include the group of this fix and the Drude particles.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin <fix_langevin>`,
-:doc:`fix drude <fix_drude>`,
-:doc:`fix drude/transform <fix_drude_transform>`,
-:doc:`compute temp/drude <compute_temp_drude>`,
-:doc:`pair_style thole <pair_thole>`
-
-Default
-"""""""
-
-The option defaults are zero = no.
-
-
-----------
-
-
-.. _Jiang:
-
-
-
-**(Jiang)** Jiang, Hardy, Phillips, MacKerell, Schulten, and Roux, J
-Phys Chem Lett, 2, 87-92 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_langevin_eff.txt b/doc/_sources/fix_langevin_eff.txt
deleted file mode 100644
index 08f95ed04..000000000
--- a/doc/_sources/fix_langevin_eff.txt
+++ /dev/null
@@ -1,136 +0,0 @@
-.. index:: fix langevin/eff
-
-fix langevin/eff command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID langevin/eff Tstart Tstop damp seed keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* langevin/eff = style name of this fix command
-* Tstart,Tstop = desired temperature at start/end of run (temperature units)
-* damp = damping parameter (time units)
-* seed = random number seed to use for white noise (positive integer)
-* zero or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *scale* or *tally* or *zero*
- *scale* values = type ratio
- type = atom type (1-N)
- ratio = factor by which to scale the damping coefficient
- *tally* values = *no* or *yes*
- *no* = do not tally the energy added/subtracted to atoms
- *yes* = do tally the energy added/subtracted to atoms
-
-.. parsed-literal::
-
- *zero* value = *no* or *yes*
- *no* = do not set total random force to zero
- *yes* = set total random force to zero
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 boundary langevin/eff 1.0 1.0 10.0 699483
- fix 1 all langevin/eff 1.0 1.1 10.0 48279 scale 3 1.5
-
-Description
-"""""""""""
-
-Apply a Langevin thermostat as described in :ref:`(Schneider) <Schneider>`
-to a group of nuclei and electrons in the :doc:`electron force field <pair_eff>` model. Used with :doc:`fix nve/eff <fix_nve_eff>`,
-this command performs Brownian dynamics (BD), since the total force on
-each atom will have the form:
-
-.. parsed-literal::
-
- F = Fc + Ff + Fr
- Ff = - (m / damp) v
- Fr is proportional to sqrt(Kb T m / (dt damp))
-
-Fc is the conservative force computed via the usual inter-particle
-interactions (:doc:`pair_style <pair_style>`).
-
-The Ff and Fr terms are added by this fix on a per-particle basis.
-
-The operation of this fix is exactly like that described by the :doc:`fix langevin <fix_langevin>` command, except that the thermostatting
-is also applied to the radial electron velocity for electron
-particles.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. Because the state of the random number generator
-is not saved in restart files, this means you cannot do "exact"
-restarts with this fix, where the simulation continues on the same as
-if no restart had taken place. However, in a statistical sense, a
-restarted simulation should produce the same behavior.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a temperature :doc:`compute <compute>`
-you have defined to this fix which will be used in its thermostatting
-procedure, as described above. For consistency, the group used by
-this fix and by the compute should be the same.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Langevin thermostatting to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`. Note that use of this option requires
-setting the *tally* keyword to *yes*.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to this fix. The scalar value
-calculated by this fix is "extensive". Note that calculation of this
-quantity requires setting the *tally* keyword to *yes*.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-This fix is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin <fix_langevin>`
-
-Default
-"""""""
-
-The option defaults are scale = 1.0 for all types and tally = no.
-
-
-----------
-
-
-.. _Dunweg:
-
-
-
-**(Dunweg)** Dunweg and Paul, Int J of Modern Physics C, 2, 817-27 (1991).
-
-.. _Schneider:
-
-
-
-**(Schneider)** Schneider and Stoll, Phys Rev B, 17, 1302 (1978).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_lb_fluid.txt b/doc/_sources/fix_lb_fluid.txt
deleted file mode 100644
index f74514c9b..000000000
--- a/doc/_sources/fix_lb_fluid.txt
+++ /dev/null
@@ -1,410 +0,0 @@
-.. index:: fix lb/fluid
-
-fix lb/fluid command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID lb/fluid nevery LBtype viscosity density keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* lb/fluid = style name of this fix command
-* nevery = update the lattice-Boltzmann fluid every this many timesteps
-* LBtype = 1 to use the standard finite difference LB integrator,
- 2 to use the LB integrator of :ref:`Ollila et al. <Ollila>`
-* viscosity = the fluid viscosity (units of mass/(time*length)).
-* density = the fluid density.
-* zero or more keyword/value pairs may be appended
-* keyword = *setArea* or *setGamma* or *scaleGamma* or *dx* or *dm* or *a0* or *noise* or *calcforce* or *trilinear* or *D3Q19* or *read_restart* or *write_restart* or *zwall_velocity* or *bodyforce* or *printfluid*
-.. parsed-literal::
-
- *setArea* values = type node_area
- type = atom type (1-N)
- node_area = portion of the surface area of the composite object associated with the particular atom type (used when the force coupling constant is set by default).
- *setGamma* values = gamma
- gamma = user set value for the force coupling constant.
- *scaleGamma* values = type gammaFactor
- type = atom type (1-N)
- gammaFactor = factor to scale the *setGamma* gamma value by, for the specified atom type.
- *dx* values = dx_LB = the lattice spacing.
- *dm* values = dm_LB = the lattice-Boltzmann mass unit.
- *a0* values = a_0_real = the square of the speed of sound in the fluid.
- *noise* values = Temperature seed
- Temperature = fluid temperature.
- seed = random number generator seed (positive integer)
- *calcforce* values = N forcegroup-ID
- N = output the force and torque every N timesteps
- forcegroup-ID = ID of the particle group to calculate the force and torque of
- *trilinear* values = none (used to switch from the default Peskin interpolation stencil to the trilinear stencil).
- *D3Q19* values = none (used to switch from the default D3Q15, 15 velocity lattice, to the D3Q19, 19 velocity lattice).
- *read_restart* values = restart file = name of the restart file to use to restart a fluid run.
- *write_restart* values = N = write a restart file every N MD timesteps.
- *zwall_velocity* values = velocity_bottom velocity_top = velocities along the y-direction of the bottom and top walls (located at z=zmin and z=zmax).
- *bodyforce* values = bodyforcex bodyforcey bodyforcez = the x,y and z components of a constant body force added to the fluid.
- *printfluid* values = N = print the fluid density and velocity at each grid point every N timesteps.
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all lb/fluid 1 2 1.0 1.0 setGamma 13.0 dx 4.0 dm 10.0 calcforce sphere1
- fix 1 all lb/fluid 1 1 1.0 0.0009982071 setArea 1 1.144592082 dx 2.0 dm 0.3 trilinear noise 300.0 8979873
-
-Description
-"""""""""""
-
-Implement a lattice-Boltzmann fluid on a uniform mesh covering the LAMMPS
-simulation domain. The MD particles described by *group-ID* apply a velocity
-dependent force to the fluid.
-
-The lattice-Boltzmann algorithm solves for the fluid motion governed by
-the Navier Stokes equations,
-
-.. image:: Eqs/fix_lb_fluid_navierstokes.jpg
- :align: center
-
-with,
-
-.. image:: Eqs/fix_lb_fluid_viscosity.jpg
- :align: center
-
-where rho is the fluid density, u is the local fluid velocity, sigma
-is the stress tensor, F is a local external force, and eta and Lambda
-are the shear and bulk viscosities respectively. Here, we have
-implemented
-
-.. image:: Eqs/fix_lb_fluid_stress.jpg
- :align: center
-
-with a_0 set to 1/3 (dx/dt)^2 by default.
-
-The algorithm involves tracking the time evolution of a set of partial
-distribution functions which evolve according to a velocity
-discretized version of the Boltzmann equation,
-
-.. image:: Eqs/fix_lb_fluid_boltzmann.jpg
- :align: center
-
-where the first term on the right hand side represents a single time
-relaxation towards the equilibrium distribution function, and tau is a
-parameter physically related to the viscosity. On a technical note,
-we have implemented a 15 velocity model (D3Q15) as default; however,
-the user can switch to a 19 velocity model (D3Q19) through the use of
-the *D3Q19* keyword. This fix provides the user with the choice of
-two algorithms to solve this equation, through the specification of
-the keyword *LBtype*. If *LBtype* is set equal to 1, the standard
-finite difference LB integrator is used. If *LBtype* is set equal to
-2, the algorithm of :ref:`Ollila et al. <Ollila>` is used.
-
-Physical variables are then defined in terms of moments of the distribution
-functions,
-
-.. image:: Eqs/fix_lb_fluid_properties.jpg
- :align: center
-
-Full details of the lattice-Boltzmann algorithm used can be found in
-:ref:`Mackay et al. <Mackay>`.
-
-The fluid is coupled to the MD particles described by *group-ID*
-through a velocity dependent force. The contribution to the fluid
-force on a given lattice mesh site j due to MD particle alpha is
-calculated as:
-
-.. image:: Eqs/fix_lb_fluid_fluidforce.jpg
- :align: center
-
-where v_n is the velocity of the MD particle, u_f is the fluid
-velocity interpolated to the particle location, and gamma is the force
-coupling constant. Zeta is a weight assigned to the grid point,
-obtained by distributing the particle to the nearest lattice sites.
-For this, the user has the choice between a trilinear stencil, which
-provides a support of 8 lattice sites, or the immersed boundary method
-Peskin stencil, which provides a support of 64 lattice sites. While
-the Peskin stencil is seen to provide more stable results, the
-trilinear stencil may be better suited for simulation of objects close
-to walls, due to its smaller support. Therefore, by default, the
-Peskin stencil is used; however the user may switch to the trilinear
-stencil by specifying the keyword, *trilinear*.
-
-By default, the force coupling constant, gamma, is calculated according to
-
-.. image:: Eqs/fix_lb_fluid_gammadefault.jpg
- :align: center
-
-Here, m_v is the mass of the MD particle, m_u is a representative
-fluid mass at the particle location, and dt_collision is a collision
-time, chosen such that tau/dt_collision = 1 (see :ref:`Mackay and Denniston <Mackay2>` for full details). In order to calculate m_u, the
-fluid density is interpolated to the MD particle location, and
-multiplied by a volume, node_area*dx_lb, where node_area represents
-the portion of the surface area of the composite object associated
-with a given MD particle. By default, node_area is set equal to
-dx_lb*dx_lb; however specific values for given atom types can be set
-using the *setArea* keyword.
-
-The user also has the option of specifying their own value for the
-force coupling constant, for all the MD particles associated with the
-fix, through the use of the *setGamma* keyword. This may be useful
-when modelling porous particles. See :ref:`Mackay et al. <Mackay>` for a
-detailed description of the method by which the user can choose an
-appropriate gamma value.
-
-.. note::
-
- while this fix applies the force of the particles on the fluid,
- it does not apply the force of the fluid to the particles. When the
- force coupling constant is set using the default method, there is only
- one option to include this hydrodynamic force on the particles, and
- that is through the use of the :doc:`lb/viscous <fix_lb_viscous>` fix.
- This fix adds the hydrodynamic force to the total force acting on the
- particles, after which any of the built-in LAMMPS integrators can be
- used to integrate the particle motion. However, if the user specifies
- their own value for the force coupling constant, as mentioned in
- :ref:`Mackay et al. <Mackay>`, the built-in LAMMPS integrators may prove to
- be unstable. Therefore, we have included our own integrators :doc:`fix lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>`, and :doc:`fix lb/pc <fix_lb_pc>`, to solve for the particle motion in these
- cases. These integrators should not be used with the
- :doc:`lb/viscous <fix_lb_viscous>` fix, as they add hydrodynamic forces
- to the particles directly. In addition, they can not be used if the
- force coupling constant has been set the default way.
-
-.. note::
-
- if the force coupling constant is set using the default method,
- and the :doc:`lb/viscous <fix_lb_viscous>` fix is NOT used to add the
- hydrodynamic force to the total force acting on the particles, this
- physically corresponds to a situation in which an infinitely massive
- particle is moving through the fluid (since collisions between the
- particle and the fluid do not act to change the particle's velocity).
- Therefore, the user should set the mass of the particle to be
- significantly larger than the mass of the fluid at the particle
- location, in order to approximate an infinitely massive particle (see
- the dragforce test run for an example).
-
-
-----------
-
-
-Inside the fix, parameters are scaled by the lattice-Boltzmann
-timestep, dt, grid spacing, dx, and mass unit, dm. dt is set equal to
-(nevery*dt_MD), where dt_MD is the MD timestep. By default, dm is set
-equal to 1.0, and dx is chosen so that tau/(dt) =
-(3*eta*dt)/(rho*dx^2) is approximately equal to 1. However, the user
-has the option of specifying their own values for dm, and dx, by using
-the optional keywords *dm*, and *dx* respectively.
-
-.. note::
-
- Care must be taken when choosing both a value for dx, and a
- simulation domain size. This fix uses the same subdivision of the
- simulation domain among processors as the main LAMMPS program. In
- order to uniformly cover the simulation domain with lattice sites, the
- lengths of the individual LAMMPS subdomains must all be evenly
- divisible by dx. If the simulation domain size is cubic, with equal
- lengths in all dimensions, and the default value for dx is used, this
- will automatically be satisfied.
-
-Physical parameters describing the fluid are specified through
-*viscosity*, *density*, and *a0*. If the force coupling constant is
-set the default way, the surface area associated with the MD particles
-is specified using the *setArea* keyword. If the user chooses to
-specify a value for the force coupling constant, this is set using the
-*setGamma* keyword. These parameters should all be given in terms of
-the mass, distance, and time units chosen for the main LAMMPS run, as
-they are scaled by the LB timestep, lattice spacing, and mass unit,
-inside the fix.
-
-
-----------
-
-
-The *setArea* keyword allows the user to associate a surface area with
-a given atom type. For example if a spherical composite object of
-radius R is represented as a spherical shell of N evenly distributed
-MD particles, all of the same type, the surface area per particle
-associated with that atom type should be set equal to 4*pi*R^2/N.
-This keyword should only be used if the force coupling constant,
-gamma, is set the default way.
-
-The *setGamma* keyword allows the user to specify their own value for
-the force coupling constant, gamma, instead of using the default
-value.
-
-The *scaleGamma* keyword should be used in conjunction with the
-*setGamma* keyword, when the user wishes to specify different gamma
-values for different atom types. This keyword allows the user to
-scale the *setGamma* gamma value by a factor, gammaFactor, for a given
-atom type.
-
-The *dx* keyword allows the user to specify a value for the LB grid
-spacing.
-
-The *dm* keyword allows the user to specify the LB mass unit.
-
-If the *a0* keyword is used, the value specified is used for the
-square of the speed of sound in the fluid. If this keyword is not
-present, the speed of sound squared is set equal to (1/3)*(dx/dt)^2.
-Setting a0 > (dx/dt)^2 is not allowed, as this may lead to
-instabilities.
-
-If the *noise* keyword is used, followed by a a positive temperature
-value, and a positive integer random number seed, a thermal
-lattice-Boltzmann algorithm is used. If *LBtype* is set equal to 1
-(i.e. the standard LB integrator is chosen), the thermal LB algorithm
-of :ref:`Adhikari et al. <Adhikari>` is used; however if *LBtype* is set
-equal to 2 both the LB integrator, and thermal LB algorithm described
-in :ref:`Ollila et al. <Ollila>` are used.
-
-If the *calcforce* keyword is used, both the fluid force and torque
-acting on the specified particle group are printed to the screen every
-N timesteps.
-
-If the keyword *trilinear* is used, the trilinear stencil is used to
-interpolate the particle nodes onto the fluid mesh. By default, the
-immersed boundary method, Peskin stencil is used. Both of these
-interpolation methods are described in :ref:`Mackay et al. <Mackay>`.
-
-If the keyword *D3Q19* is used, the 19 velocity (D3Q19) lattice is
-used by the lattice-Boltzmann algorithm. By default, the 15 velocity
-(D3Q15) lattice is used.
-
-If the keyword *write_restart* is used, followed by a positive
-integer, N, a binary restart file is printed every N LB timesteps.
-This restart file only contains information about the fluid.
-Therefore, a LAMMPS restart file should also be written in order to
-print out full details of the simulation.
-
-.. note::
-
- When a large number of lattice grid points are used, the restart
- files may become quite large.
-
-In order to restart the fluid portion of the simulation, the keyword
-*read_restart* is specified, followed by the name of the binary
-lb_fluid restart file to be used.
-
-If the *zwall_velocity* keyword is used y-velocities are assigned to
-the lower and upper walls. This keyword requires the presence of
-walls in the z-direction. This is set by assigning fixed boundary
-conditions in the z-direction. If fixed boundary conditions are
-present in the z-direction, and this keyword is not used, the walls
-are assumed to be stationary.
-
-If the *bodyforce* keyword is used, a constant body force is added to
-the fluid, defined by it's x, y and z components.
-
-If the *printfluid* keyword is used, followed by a positive integer, N,
-the fluid densities and velocities at each lattice site are printed to the
-screen every N timesteps.
-
-
-----------
-
-
-For further details, as well as descriptions and results of several
-test runs, see :ref:`Mackay et al. <Mackay>`. Please include a citation to
-this paper if the lb_fluid fix is used in work contributing to
-published research.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Due to the large size of the fluid data, this fix writes it's own
-binary restart files, if requested, independent of the main LAMMPS
-:doc:`binary restart files <restart>`; no information about *lb_fluid*
-is written to the main LAMMPS :doc:`binary restart files <restart>`.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix. No global or per-atom quantities are stored by this fix for
-access by various :ref:`output commands <4_15>`. No
-parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-LB package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix can only be used with an orthogonal simulation domain.
-
-Walls have only been implemented in the z-direction. Therefore, the
-boundary conditions, as specified via the main LAMMPS boundary command
-must be periodic for x and y, and either fixed or periodic for z.
-Shrink-wrapped boundary conditions are not permitted with this fix.
-
-This fix must be used before any of :doc:`fix lb/viscous <fix_lb_viscous>`, :doc:`fix lb/momentum <fix_lb_momentum>`, :doc:`fix lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>`, and/ or :doc:`fix lb/pc <fix_lb_pc>` , as the fluid needs to be initialized before
-any of these routines try to access its properties. In addition, in
-order for the hydrodynamic forces to be added to the particles, this
-fix must be used in conjunction with the
-:doc:`lb/viscous <fix_lb_viscous>` fix if the force coupling constant is
-set by default, or either the :doc:`lb/viscous <fix_lb_viscous>` fix or
-one of the :doc:`lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>` or
-:doc:`lb/pc <fix_lb_pc>` integrators, if the user chooses to specifiy
-their own value for the force coupling constant.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix lb/viscous <fix_lb_viscous>`, :doc:`fix lb/momentum <fix_lb_momentum>`, :doc:`fix lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>`, :doc:`fix lb/pc <fix_lb_pc>`
-
-Default
-"""""""
-
-By default, the force coupling constant is set according to
-
-.. image:: Eqs/fix_lb_fluid_gammadefault.jpg
- :align: center
-
-and an area of dx_lb^2 per node, used to calculate the fluid mass at
-the particle node location, is assumed.
-
-dx is chosen such that tau/(delta t_LB) =
-(3 eta dt_LB)/(rho dx_lb^2) is approximately equal to 1.
-dm is set equal to 1.0.
-a0 is set equal to (1/3)*(dx_lb/dt_lb)^2.
-The Peskin stencil is used as the default interpolation method.
-The D3Q15 lattice is used for the lattice-Boltzmann algorithm.
-If walls are present, they are assumed to be stationary.
-
-
-----------
-
-
-.. _Ollila:
-
-
-
-**(Ollila et al.)** Ollila, S.T.T., Denniston, C., Karttunen, M., and Ala-Nissila, T., Fluctuating lattice-Boltzmann model for complex fluids, J. Chem. Phys. 134 (2011) 064902.
-
-.. _Mackay:
-
-
-
-**(Mackay et al.)** Mackay, F. E., Ollila, S.T.T., and Denniston, C., Hydrodynamic Forces Implemented into LAMMPS through a lattice-Boltzmann fluid, Computer Physics Communications 184 (2013) 2021-2031.
-
-.. _Mackay2:
-
-
-
-**(Mackay and Denniston)** Mackay, F. E., and Denniston, C., Coupling MD particles to a lattice-Boltzmann fluid through the use of conservative forces, J. Comput. Phys. 237 (2013) 289-298.
-
-.. _Adhikari:
-
-
-
-**(Adhikari et al.)** Adhikari, R., Stratford, K., Cates, M. E., and Wagner, A. J., Fluctuating lattice Boltzmann, Europhys. Lett. 71 (2005) 473-479.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_lb_momentum.txt b/doc/_sources/fix_lb_momentum.txt
deleted file mode 100644
index beb72ba4c..000000000
--- a/doc/_sources/fix_lb_momentum.txt
+++ /dev/null
@@ -1,87 +0,0 @@
-.. index:: fix lb/momentum
-
-fix lb/momentum command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID lb/momentum nevery keyword values ...
-
-* ID, group-ID are documented in the :doc:`fix <fix>` command
-* lb/momentum = style name of this fix command
-* nevery = adjust the momentum every this many timesteps
-* zero or more keyword/value pairs may be appended
-* keyword = *linear*
-.. parsed-literal::
-
- *linear* values = xflag yflag zflag
- xflag,yflag,zflag = 0/1 to exclude/include each dimension.
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 sphere lb/momentum
- fix 1 all lb/momentum linear 1 1 0
-
-Description
-"""""""""""
-
-This fix is based on the :doc:`fix momentum <fix_momentum>` command, and
-was created to be used in place of that command, when a
-lattice-Boltzmann fluid is present.
-
-Zero the total linear momentum of the system, including both the atoms
-specified by group-ID and the lattice-Boltzmann fluid every nevery
-timesteps. This is accomplished by adjusting the particle velocities
-and the fluid velocities at each lattice site.
-
-.. note::
-
- This fix only considers the linear momentum of the system.
-
-By default, the subtraction is performed for each dimension. This can
-be changed by specifying the keyword *linear*, along with a set of
-three flags set to 0/1 in order to exclude/ include the corresponding
-dimension.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <4_15>`. No parameter of this fix can be
-used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-Can only be used if a lattice-Boltzmann fluid has been created via the
-:doc:`fix lb/fluid <fix_lb_fluid>` command, and must come after this
-command.
-
-This fix is part of the USER-LB package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix momentum <fix_momentum>`, :doc:`fix lb/fluid <fix_lb_fluid>`
-
-Default
-"""""""
-
-Zeros the total system linear momentum in each dimension.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_lb_pc.txt b/doc/_sources/fix_lb_pc.txt
deleted file mode 100644
index 70012c36f..000000000
--- a/doc/_sources/fix_lb_pc.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-.. index:: fix lb/pc
-
-fix lb/pc command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID lb/pc
-
-* ID, group-ID are documented in the :doc:`fix <fix>` command
-* lb/pc = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all lb/pc
-
-Description
-"""""""""""
-
-Update the positions and velocities of the individual particles
-described by *group-ID*, experiencing velocity-dependent hydrodynamic
-forces, using the integration algorithm described in :ref:`Mackay et al. <Mackay>`. This integration algorithm should only be used if a
-user-specified value for the force-coupling constant used in :doc:`fix lb/fluid <fix_lb_fluid>` has been set; do not use this integration
-algorithm if the force coupling constant has been set by default.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <4_15>`. No parameter of this fix can be
-used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-LB package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Can only be used if a lattice-Boltzmann fluid has been created via the
-:doc:`fix lb/fluid <fix_lb_fluid>` command, and must come after this
-command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix lb/fluid <fix_lb_fluid>` :doc:`fix lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>`
-
-**Default:** None.
-
-
-----------
-
-
-.. _Mackay:
-
-
-
-**(Mackay et al.)** Mackay, F. E., Ollila, S.T.T., and Denniston, C., Hydrodynamic Forces Implemented into LAMMPS through a lattice-Boltzmann fluid, Computer Physics Communications 184 (2013) 2021-2031.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_lb_rigid_pc_sphere.txt b/doc/_sources/fix_lb_rigid_pc_sphere.txt
deleted file mode 100644
index 406d7e41b..000000000
--- a/doc/_sources/fix_lb_rigid_pc_sphere.txt
+++ /dev/null
@@ -1,167 +0,0 @@
-.. index:: fix lb/rigid/pc/sphere
-
-fix lb/rigid/pc/sphere command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID lb/rigid/pc/sphere bodystyle args keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* lb/rigid/pc/sphere = style name of this fix command
-* bodystyle = *single* or *molecule* or *group*
-* *single* args = none
- *molecule* args = none
- *group* args = N groupID1 groupID2 ...
- N = # of groups
- zero or more keyword/value pairs may be appended
-* keyword = *force* or *torque* or *innerNodes*
-.. parsed-literal::
-
- *force* values = M xflag yflag zflag
- M = which rigid body from 1-Nbody (see asterisk form below)
- xflag,yflag,zflag = off/on if component of center-of-mass force is active
- *torque* values = M xflag yflag zflag
- M = which rigid body from 1-Nbody (see asterisk form below)
- xflag,yflag,zflag = off/on if component of center-of-mass torque is active
- *innerNodes* values = innergroup-ID
- innergroup-ID = ID of the atom group which does not experience a hydrodynamic force from the lattice-Boltzmann fluid
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 spheres lb/rigid/pc/sphere
- fix 1 all lb/rigid/pc/sphere force 1 0 0 innerNodes ForceAtoms
-
-Description
-"""""""""""
-
-This fix is based on the :doc:`fix rigid <fix_rigid>` command, and was
-created to be used in place of that fix, to integrate the equations of
-motion of spherical rigid bodies when a lattice-Boltzmann fluid is
-present with a user-specified value of the force-coupling constant.
-The fix uses the integration algorithm described in :ref:`Mackay et al. <Mackay>` to update the positions, velocities, and orientations of
-a set of spherical rigid bodies experiencing velocity dependent
-hydrodynamic forces. The spherical bodies are assumed to rotate as
-solid, uniform density spheres, with moments of inertia calculated
-using the combined sum of the masses of all the constituent particles
-(which are assumed to be point particles).
-
-
-----------
-
-
-By default, all of the atoms that this fix acts on experience a
-hydrodynamic force due to the presence of the lattice-Boltzmann fluid.
-However, the *innerNodes* keyword allows the user to specify atoms
-belonging to a rigid object which do not interact with the
-lattice-Boltzmann fluid (i.e. these atoms do not feel a hydrodynamic
-force from the lattice-Boltzmann fluid). This can be used to
-distinguish between atoms on the surface of a non-porous object, and
-those on the inside.
-
-This feature can be used, for example, when implementing a hard sphere
-interaction between two spherical objects. Instead of interactions
-occurring between the particles on the surfaces of the two spheres, it
-is desirable simply to place an atom at the center of each sphere,
-which does not contribute to the hydrodynamic force, and have these
-central atoms interact with one another.
-
-
-----------
-
-
-Apart from the features described above, this fix is very similar to
-the rigid fix (although it includes fewer optional arguments, and
-assumes the constituent atoms are point particles); see
-:doc:`fix rigid <fix_rigid>` for a complete documentation.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about the *rigid* and *rigid/nve* fixes are written to
-:doc:`binary restart files <restart>`.
-
-Similar to the :doc:`fix rigid <fix_rigid>` command: &quot; The rigid
-fix computes a global scalar which can be accessed by various :ref:`output commands <howto_15>`. The scalar value calculated by
-these fixes is "intensive". The scalar is the current temperature of
-the collection of rigid bodies. This is averaged over all rigid
-bodies and their translational and rotational degrees of freedom. The
-translational energy of a rigid body is 1/2 m v^2, where m = total
-mass of the body and v = the velocity of its center of mass. The
-rotational energy of a rigid body is 1/2 I w^2, where I = the moment
-of inertia tensor of the body and w = its angular velocity. Degrees
-of freedom constrained by the *force* and *torque* keywords are
-removed from this calculation.&quot;
-
-&quot;All of these fixes compute a global array of values which can be
-accessed by various :ref:`output commands <howto_15>`.
-The number of rows in the array is equal to the number of rigid
-bodies. The number of columns is 15. Thus for each rigid body, 15
-values are stored: the xyz coords of the center of mass (COM), the xyz
-components of the COM velocity, the xyz components of the force acting
-on the COM, the xyz components of the torque acting on the COM, and
-the xyz image flags of the COM, which have the same meaning as image
-flags for atom positions (see the "dump" command). The force and
-torque values in the array are not affected by the *force* and
-*torque* keywords in the fix rigid command; they reflect values before
-any changes are made by those keywords.
-
-The ordering of the rigid bodies (by row in the array) is as follows.
-For the *single* keyword there is just one rigid body. For the
-*molecule* keyword, the bodies are ordered by ascending molecule ID.
-For the *group* keyword, the list of group IDs determines the ordering
-of bodies.
-
-The array values calculated by these fixes are "intensive", meaning
-they are independent of the number of atoms in the simulation.
-
-No parameter of these fixes can be used with the *start/stop* keywords
-of the :doc:`run <run>` command. These fixes are not invoked during
-:doc:`energy minimization <minimize>`. &quot;
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-LB package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Can only be used if a lattice-Boltzmann fluid has been created via the
-:doc:`fix lb/fluid <fix_lb_fluid>` command, and must come after this
-command. Should only be used if the force coupling constant used in
-:doc:`fix lb/fluid <fix_lb_fluid>` has been set by the user; this
-integration fix cannot be used if the force coupling constant is set
-by default.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix lb/fluid <fix_lb_fluid>`, :doc:`fix lb/pc <fix_lb_pc>`
-
-Default
-"""""""
-
-The defaults are force * on on on, and torque * on on on.
-
-
-----------
-
-
-.. _Mackay:
-
-
-
-**(Mackay et al.)** Mackay, F. E., Ollila, S.T.T., and Denniston, C., Hydrodynamic Forces Implemented into LAMMPS through a lattice-Boltzmann fluid, Computer Physics Communications 184 (2013) 2021-2031.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_lb_viscous.txt b/doc/_sources/fix_lb_viscous.txt
deleted file mode 100644
index f32fffbf6..000000000
--- a/doc/_sources/fix_lb_viscous.txt
+++ /dev/null
@@ -1,107 +0,0 @@
-.. index:: fix lb/viscous
-
-fix lb/viscous command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID lb/viscous
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* lb/viscous = style name of this fix command
-
-Examples
-""""""""
-
-fix 1 flow lb/viscous
-
-Description
-"""""""""""
-
-This fix is similar to the :doc:`fix viscous <fix_viscous>` command, and
-is to be used in place of that command when a lattice-Boltzmann fluid
-is present, and the user wishes to integrate the particle motion using
-one of the built in LAMMPS integrators.
-
-This fix adds a force, F = - Gamma*(velocity-fluid_velocity), to each
-atom, where Gamma is the force coupling constant described in the :doc:`fix lb/fluid <fix_lb_fluid>` command (which applies an equal and
-opposite force to the fluid).
-
-.. note::
-
- This fix should only be used in conjunction with one of the
- built in LAMMPS integrators; it should not be used with the :doc:`fix lb/pc <fix_lb_pc>` or :doc:`fix lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>` integrators, which
- already include the hydrodynamic forces. These latter fixes should
- only be used if the force coupling constant has been set by the user
- (instead of using the default value); if the default force coupling
- value is used, then this fix provides the only method for adding the
- hydrodynamic forces to the particles.
-
-
-----------
-
-
-For further details, as well as descriptions and results of several
-test runs, see :ref:`Mackay et al. <Mackay>`. Please include a citation to
-this paper if this fix is used in work contributing to published
-research.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-As described in the :doc:`fix viscous <fix_viscous>` documentation:
-
-"No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command. This fix should only
-be used with damped dynamics minimizers that allow for
-non-conservative forces. See the :doc:`min_style <min_style>` command
-for details."
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-LB package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Can only be used if a lattice-Boltzmann fluid has been created via the
-:doc:`fix lb/fluid <fix_lb_fluid>` command, and must come after this
-command.
-
-This fix should not be used if either the :doc:`fix lb/pc <fix_lb_pc>`
-or :doc:`fix lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>` integrator is
-used.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix lb/fluid <fix_lb_fluid>`, :doc:`fix lb/pc <fix_lb_pc>`, :doc:`fix lb/rigid/pc/sphere <fix_lb_rigid_pc_sphere>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mackay:
-
-
-
-**(Mackay et al.)** Mackay, F. E., Ollila, S.T.T., and Denniston, C., Hydrodynamic Forces Implemented into LAMMPS through a lattice-Boltzmann fluid, Computer Physics Communications 184 (2013) 2021-2031.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_lineforce.txt b/doc/_sources/fix_lineforce.txt
deleted file mode 100644
index 4894a4a7d..000000000
--- a/doc/_sources/fix_lineforce.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-.. index:: fix lineforce
-
-fix lineforce command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID lineforce x y z
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* lineforce = style name of this fix command
-* x y z = direction of line as a 3-vector
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix hold boundary lineforce 0.0 1.0 1.0
-
-Description
-"""""""""""
-
-Adjust the forces on each atom in the group so that only the component
-of force along the linear direction specified by the vector (x,y,z)
-remains. This is done by subtracting out components of force in the
-plane perpendicular to the line.
-
-If the initial velocity of the atom is 0.0 (or along the line), then
-it should continue to move along the line thereafter.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix planeforce <fix_planeforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_meso.txt b/doc/_sources/fix_meso.txt
deleted file mode 100644
index 42d8658b4..000000000
--- a/doc/_sources/fix_meso.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-.. index:: fix meso
-
-fix meso command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID meso
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* meso = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all meso
-
-Description
-"""""""""""
-
-Perform time integration to update position, velocity, internal energy
-and local density for atoms in the group each timestep. This fix is
-needed to time-integrate mesoscopic systems where particles carry
-internal variables such as SPH or DPDE.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SPH package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-"fix meso/stationary"
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_meso_stationary.txt b/doc/_sources/fix_meso_stationary.txt
deleted file mode 100644
index 6fcdbcd44..000000000
--- a/doc/_sources/fix_meso_stationary.txt
+++ /dev/null
@@ -1,61 +0,0 @@
-.. index:: fix meso/stationary
-
-fix meso/stationary command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID meso/stationary
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* meso = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 boundary meso/stationary
-
-Description
-"""""""""""
-
-Perform time integration to update internal energy and local density,
-but not position or velocity for atoms in the group each timestep.
-This fix is needed for SPH simulations to correctly time-integrate
-fixed boundary particles which constrain a fluid to a given region in
-space.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SPH package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-"fix meso"
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_modify.txt b/doc/_sources/fix_modify.txt
deleted file mode 100644
index 1842785de..000000000
--- a/doc/_sources/fix_modify.txt
+++ /dev/null
@@ -1,84 +0,0 @@
-.. index:: fix_modify
-
-fix_modify command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix_modify fix-ID keyword value ...
-
-* fix-ID = ID of the fix to modify
-* one or more keyword/value pairs may be appended
-* keyword = *temp* or *press* or *energy*
-.. parsed-literal::
-
- *temp* value = compute ID that calculates a temperature
- *press* value = compute ID that calculates a pressure
- *energy* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix_modify 3 temp myTemp press myPress
- fix_modify 1 energy yes
-
-Description
-"""""""""""
-
-Modify one or more parameters of a previously defined fix. Only
-specific fix styles support specific parameters. See the doc pages
-for individual fix commands for info on which ones support which
-fix_modify parameters.
-
-The *temp* keyword is used to determine how a fix computes
-temperature. The specified compute ID must have been previously
-defined by the user via the :doc:`compute <compute>` command and it must
-be a style of compute that calculates a temperature. All fixes that
-compute temperatures define their own compute by default, as described
-in their documentation. Thus this option allows the user to override
-the default method for computing T.
-
-The *press* keyword is used to determine how a fix computes pressure.
-The specified compute ID must have been previously defined by the user
-via the :doc:`compute <compute>` command and it must be a style of
-compute that calculates a pressure. All fixes that compute pressures
-define their own compute by default, as described in their
-documentation. Thus this option allows the user to override the
-default method for computing P.
-
-For fixes that calculate a contribution to the potential energy of the
-system, the *energy* keyword will include that contribution in
-thermodynamic output of potential energy. See the
-:doc:`thermo_style <thermo_style>` command for info on how potential
-energy is output. The contribution by itself can be printed by using
-the keyword f_ID in the thermo_style custom command, where ID is the
-fix-ID of the appropriate fix. Note that you must use this setting
-for a fix if you are using it when performing an :doc:`energy minimization <minimize>` and if you want the energy and forces it
-produces to be part of the optimization criteria.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix <fix>`, :doc:`compute temp <compute_temp>`, :doc:`compute pressure <compute_pressure>`, :doc:`thermo_style <thermo_style>`
-
-Default
-"""""""
-
-The option defaults are temp = ID defined by fix, press = ID defined
-by fix, energy = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_momentum.txt b/doc/_sources/fix_momentum.txt
deleted file mode 100644
index ce6d67b81..000000000
--- a/doc/_sources/fix_momentum.txt
+++ /dev/null
@@ -1,89 +0,0 @@
-.. index:: fix momentum
-
-fix momentum command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID momentum N keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* momentum = style name of this fix command
-* N = adjust the momentum every this many timesteps
- one or more keyword/value pairs may be appended
-* keyword = *linear* or *angular* or *rescale*
-.. parsed-literal::
-
- *linear* values = xflag yflag zflag
- xflag,yflag,zflag = 0/1 to exclude/include each dimension
- *angular* values = none
-
-.. parsed-literal::
-
- *rescale* values = none
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all momentum 1 linear 1 1 0
- fix 1 all momentum 1 linear 1 1 1 rescale
- fix 1 all momentum 100 linear 1 1 1 angular
-
-Description
-"""""""""""
-
-Zero the linear and/or angular momentum of the group of atoms every N
-timesteps by adjusting the velocities of the atoms. One (or both) of
-the *linear* or *angular* keywords must be specified.
-
-If the *linear* keyword is used, the linear momentum is zeroed by
-subtracting the center-of-mass velocity of the group from each atom.
-This does not change the relative velocity of any pair of atoms. One
-or more dimensions can be excluded from this operation by setting the
-corresponding flag to 0.
-
-If the *angular* keyword is used, the angular momentum is zeroed by
-subtracting a rotational component from each atom.
-
-This command can be used to insure the entire collection of atoms (or
-a subset of them) does not drift or rotate during the simulation due
-to random perturbations (e.g. :doc:`fix langevin <fix_langevin>`
-thermostatting).
-
-The *rescale* keyword enables conserving the kinetic energy of the group
-of atoms by rescaling the velocities after the momentum was removed.
-
-Note that the :doc:`velocity <velocity>` command can be used to create
-initial velocities with zero aggregate linear and/or angular momentum.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix recenter <fix_recenter>`, :doc:`velocity <velocity>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_move.txt b/doc/_sources/fix_move.txt
deleted file mode 100644
index 103b4af3c..000000000
--- a/doc/_sources/fix_move.txt
+++ /dev/null
@@ -1,257 +0,0 @@
-.. index:: fix move
-
-fix move command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID move style args keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* move = style name of this fix command
-* style = *linear* or *wiggle* or *rotate* or *variable*
-.. parsed-literal::
-
- *linear* args = Vx Vy Vz
- Vx,Vy,Vz = components of velocity vector (velocity units), any component can be specified as NULL
- *wiggle* args = Ax Ay Az period
- Ax,Ay,Az = components of amplitude vector (distance units), any component can be specified as NULL
- period = period of oscillation (time units)
- *rotate* args = Px Py Pz Rx Ry Rz period
- Px,Py,Pz = origin point of axis of rotation (distance units)
- Rx,Ry,Rz = axis of rotation vector
- period = period of rotation (time units)
- *variable* args = v_dx v_dy v_dz v_vx v_vy v_vz
- v_dx,v_dy,v_dz = 3 variable names that calculate x,y,z displacement as function of time, any component can be specified as NULL
- v_vx,v_vy,v_vz = 3 variable names that calculate x,y,z velocity as function of time, any component can be specified as NULL
-
-* zero or more keyword/value pairs may be appended
-* keyword = *units*
-.. parsed-literal::
-
- *units* value = *box* or *lattice*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 boundary move wiggle 3.0 0.0 0.0 1.0 units box
- fix 2 boundary move rotate 0.0 0.0 0.0 0.0 0.0 1.0 5.0
- fix 2 boundary move variable v_myx v_myy NULL v_VX v_VY NULL
-
-Description
-"""""""""""
-
-Perform updates of position and velocity for atoms in the group each
-timestep using the specified settings or formulas, without regard to
-forces on the atoms. This can be useful for boundary or other atoms,
-whose movement can influence nearby atoms.
-
-.. note::
-
- The atoms affected by this fix should not normally be time
- integrated by other fixes (e.g. :doc:`fix nve <fix_nve>`, :doc:`fix nvt <fix_nh>`), since that will change their positions and
- velocities twice.
-
-.. note::
-
- As atoms move due to this fix, they will pass thru periodic
- boundaries and be remapped to the other side of the simulation box,
- just as they would during normal time integration (e.g. via the :doc:`fix nve <fix_nve>` command). It is up to you to decide whether
- periodic boundaries are appropriate with the kind of atom motion you
- are prescribing with this fix.
-
-.. note::
-
- As dicsussed below, atoms are moved relative to their initial
- position at the time the fix is specified. These initial coordinates
- are stored by the fix in "unwrapped" form, by using the image flags
- associated with each atom. See the :doc:`dump custom <dump>` command
- for a discussion of "unwrapped" coordinates. See the Atoms section of
- the :doc:`read_data <read_data>` command for a discussion of image flags
- and how they are set for each atom. You can reset the image flags
- (e.g. to 0) before invoking this fix by using the :doc:`set image <set>`
- command.
-
-
-----------
-
-
-The *linear* style moves atoms at a constant velocity, so that their
-position *X* = (x,y,z) as a function of time is given in vector
-notation as
-
-.. parsed-literal::
-
- X(t) = X0 + V * delta
-
-where *X0* = (x0,y0,z0) is their position at the time the fix is
-specified, *V* is the specified velocity vector with components
-(Vx,Vy,Vz), and *delta* is the time elapsed since the fix was
-specified. This style also sets the velocity of each atom to V =
-(Vx,Vy,Vz). If any of the velocity components is specified as NULL,
-then the position and velocity of that component is time integrated
-the same as the :doc:`fix nve <fix_nve>` command would perform, using
-the corresponding force component on the atom.
-
-Note that the *linear* style is identical to using the *variable*
-style with an :doc:`equal-style variable <variable>` that uses the
-vdisplace() function. E.g.
-
-.. parsed-literal::
-
- variable V equal 10.0
- variable x equal vdisplace(0.0,$V)
- fix 1 boundary move variable v_x NULL NULL v_V NULL NULL
-
-The *wiggle* style moves atoms in an oscillatory fashion, so that
-their position *X* = (x,y,z) as a function of time is given in vector
-notation as
-
-.. parsed-literal::
-
- X(t) = X0 + A sin(omega*delta)
-
-where *X0* = (x0,y0,z0) is their position at the time the fix is
-specified, *A* is the specified amplitude vector with components
-(Ax,Ay,Az), *omega* is 2 PI / *period*, and *delta* is the time
-elapsed since the fix was specified. This style also sets the
-velocity of each atom to the time derivative of this expression. If
-any of the amplitude components is specified as NULL, then the
-position and velocity of that component is time integrated the same as
-the :doc:`fix nve <fix_nve>` command would perform, using the
-corresponding force component on the atom.
-
-Note that the *wiggle* style is identical to using the *variable*
-style with :doc:`equal-style variables <variable>` that use the
-swiggle() and cwiggle() functions. E.g.
-
-.. parsed-literal::
-
- variable A equal 10.0
- variable T equal 5.0
- variable omega equal 2.0*PI/$T
- variable x equal swiggle(0.0,$A,$T)
- variable v equal v_omega*($A-cwiggle(0.0,$A,$T))
- fix 1 boundary move variable v_x NULL NULL v_v NULL NULL
-
-The *rotate* style rotates atoms around a rotation axis *R* =
-(Rx,Ry,Rz) that goes thru a point *P* = (Px,Py,Pz). The *period* of
-the rotation is also specified. The direction of rotation for the
-atoms around the rotation axis is consistent with the right-hand rule:
-if your right-hand thumb points along *R*, then your fingers wrap
-around the axis in the direction of rotation.
-
-This style also sets the velocity of each atom to (omega cross Rperp)
-where omega is its angular velocity around the rotation axis and Rperp
-is a perpendicular vector from the rotation axis to the atom. If the
-defined :doc:`atom_style <atom_style>` assigns an angular velocity or
-angular moementum or orientation to each atom (:doc:`atom styles <atom_style>` sphere, ellipsoid, line, tri, body), then
-those properties are also updated appropriately to correspond to the
-atom's motion and rotation over time.
-
-The *variable* style allows the position and velocity components of
-each atom to be set by formulas specified via the
-:doc:`variable <variable>` command. Each of the 6 variables is
-specified as an argument to the fix as v_name, where name is the
-variable name that is defined elsewhere in the input script.
-
-Each variable must be of either the *equal* or *atom* style.
-*Equal*-style variables compute a single numeric quantity, that can be
-a function of the timestep as well as of other simulation values.
-*Atom*-style variables compute a numeric quantity for each atom, that
-can be a function per-atom quantities, such as the atom's position, as
-well as of the timestep and other simulation values. Note that this
-fix stores the original coordinates of each atom (see note below) so
-that per-atom quantity can be used in an atom-style variable formula.
-See the :doc:`variable <variable>` command for details.
-
-The first 3 variables (v_dx,v_dy,v_dz) specified for the *variable*
-style are used to calculate a displacement from the atom's original
-position at the time the fix was specified. The second 3 variables
-(v_vx,v_vy,v_vz) specified are used to compute a velocity for each
-atom.
-
-Any of the 6 variables can be specified as NULL. If both the
-displacement and velocity variables for a particular x,y,z component
-are specified as NULL, then the position and velocity of that
-component is time integrated the same as the :doc:`fix nve <fix_nve>`
-command would perform, using the corresponding force component on the
-atom. If only the velocity variable for a component is specified as
-NULL, then the displacement variable will be used to set the position
-of the atom, and its velocity component will not be changed. If only
-the displacement variable for a component is specified as NULL, then
-the velocity variable will be used to set the velocity of the atom,
-and the position of the atom will be time integrated using that
-velocity.
-
-The *units* keyword determines the meaning of the distance units used
-to define the *linear* velocity and *wiggle* amplitude and *rotate*
-origin. This setting is ignored for the *variable* style. A *box*
-value selects standard units as defined by the :doc:`units <units>`
-command, e.g. velocity in Angstroms/fmsec and amplitude and position
-in Angstroms for units = real. A *lattice* value means the velocity
-units are in lattice spacings per time and the amplitude and position
-are in lattice spacings. The :doc:`lattice <lattice>` command must have
-been previously used to define the lattice spacing. Each of these 3
-quantities may be dependent on the x,y,z dimension, since the lattice
-spacings can be different in x,y,z.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the original coordinates of moving atoms to :doc:`binary restart files <restart>`, as well as the initial timestep, so that
-the motion can be continuous in a restarted simulation. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-.. note::
-
- Because the move positions are a function of the current
- timestep and the initial timestep, you cannot reset the timestep to a
- different value after reading a restart file, if you expect a fix move
- command to work in an uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-This fix produces a per-atom array which can be accessed by various
-:ref:`output commands <howto_15>`. The number of columns
-for each atom is 3, and the columns store the original unwrapped x,y,z
-coords of each atom. The per-atom values can be accessed on any
-timestep.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-For :doc:`rRESPA time integration <run_style>`, this fix adjusts the
-position and velocity of atoms on the outermost rRESPA level.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`displace_atoms <displace_atoms>`
-
-**Default:** none
-
-The option default is units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_msst.txt b/doc/_sources/fix_msst.txt
deleted file mode 100644
index 1acefa46e..000000000
--- a/doc/_sources/fix_msst.txt
+++ /dev/null
@@ -1,178 +0,0 @@
-.. index:: fix msst
-
-fix msst command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID msst dir shockvel keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* msst = style name of this fix
-* dir = *x* or *y* or *z*
-* shockvel = shock velocity (strictly positive, distance/time units)
-* zero or more keyword value pairs may be appended
-* keyword = *q* or *mu* or *p0* or *v0* or *e0* or *tscale*
-.. parsed-literal::
-
- *q* value = cell mass-like parameter (mass^2/distance^4 units)
- *mu* value = artificial viscosity (mass/length/time units)
- *p0* value = initial pressure in the shock equations (pressure units)
- *v0* value = initial simulation cell volume in the shock equations (distance^3 units)
- *e0* value = initial total energy (energy units)
- *tscale* value = reduction in initial temperature (unitless fraction between 0.0 and 1.0)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all msst y 100.0 q 1.0e5 mu 1.0e5
- fix 2 all msst z 50.0 q 1.0e4 mu 1.0e4 v0 4.3419e+03 p0 3.7797e+03 e0 -9.72360e+02 tscale 0.01
-
-Description
-"""""""""""
-
-This command performs the Multi-Scale Shock Technique (MSST)
-integration to update positions and velocities each timestep to mimic
-a compressive shock wave passing over the system. See :ref:`(Reed) <Reed>`
-for a detailed description of this method. The MSST varies the cell
-volume and temperature in such a way as to restrain the system to the
-shock Hugoniot and the Rayleigh line. These restraints correspond to
-the macroscopic conservation laws dictated by a shock
-front. *shockvel* determines the steady shock velocity that will be
-simulated.
-
-To perform a simulation, choose a value of *q* that provides volume
-compression on the timescale of 100 fs to 1 ps. If the volume is not
-compressing, either the shock speed is chosen to be below the material
-sound speed or *p0* has been chosen inaccurately. Volume compression
-at the start can be sped up by using a non-zero value of *tscale*. Use
-the smallest value of *tscale* that results in compression.
-
-Under some special high-symmetry conditions, the pressure (volume)
-and/or temperature of the system may oscillate for many cycles even
-with an appropriate choice of mass-like parameter *q*. Such
-oscillations have physical significance in some cases. The optional
-*mu* keyword adds an artificial viscosity that helps break the system
-symmetry to equilibrate to the shock Hugoniot and Rayleigh line more
-rapidly in such cases.
-
-*tscale* is a factor between 0 and 1 that determines what fraction of
-thermal kinetic energy is converted to compressive strain kinetic
-energy at the start of the simulation. Setting this parameter to a
-non-zero value may assist in compression at the start of simulations
-where it is slow to occur.
-
-If keywords *e0*, *p0*,or *v0* are not supplied, these quantities will
-be calculated on the first step, after the energy specified by
-*tscale* is removed. The value of *e0* is not used in the dynamical
-equations, but is used in calculating the deviation from the Hugoniot.
-
-Values of shockvel less than a critical value determined by the
-material response will not have compressive solutions. This will be
-reflected in lack of significant change of the volume in the MSST.
-
-For all pressure styles, the simulation box stays orthogonal in shape.
-Parrinello-Rahman boundary conditions (tilted box) are supported by
-LAMMPS, but are not implemented for MSST.
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp" and "pressure",
-as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
- compute fix-ID_press group-ID pressure fix-ID_temp
-
-See the :doc:`compute temp <compute_temp>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press". The group for the new computes is "all".
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of all internal variables to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>` command
-for info on how to re-specify a fix in an input script that reads a
-restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The progress of the MSST can be monitored by printing the global
-scalar and global vector quantities computed by the fix.
-
-The scalar is the cumulative energy change due to the fix. This is
-also the energy added to the potential energy by the
-:doc:`fix_modify <fix_modify>` *energy* command. With this command, the
-thermo keyword *etotal* prints the conserved quantity of the MSST
-dynamic equations. This can be used to test if the MD timestep is
-sufficiently small for accurate integration of the dynamic
-equations. See also :doc:`thermo_style <thermo_style>` command.
-
-The global vector contains four values in this order:
-
-[*dhugoniot*, *drayleigh*, *lagrangian_speed*, *lagrangian_position*]
-
-1. *dhugoniot* is the departure from the Hugoniot (temperature units).
-2. *drayleigh* is the departure from the Rayleigh line (pressure units).
-3. *lagrangian_speed* is the laboratory-frame Lagrangian speed (particle velocity) of the computational cell (velocity units).
-4. *lagrangian_position* is the computational cell position in the reference frame moving at the shock speed. This is usually a good estimate of distance of the computational cell behind the shock front.
-
-To print these quantities to the log file with descriptive column
-headers, the following LAMMPS commands are suggested:
-
-.. parsed-literal::
-
- fix msst all msst z
- fix_modify msst energy yes
- variable dhug equal f_msst[1]
- variable dray equal f_msst[2]
- variable lgr_vel equal f_msst[3]
- variable lgr_pos equal f_msst[4]
- thermo_style custom step temp ke pe lz pzz etotal v_dhug v_dray v_lgr_vel v_lgr_pos f_msst
-
-These fixes compute a global scalar and a global vector of 4
-quantities, which can be accessed by various :ref:`output commands <howto_15>`. The scalar values calculated
-by this fix are "extensive"; the vector values are "intensive".
-
-Restrictions
-""""""""""""
-
-
-This fix style is part of the SHOCK package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-All cell dimensions must be periodic. This fix can not be used with a
-triclinic cell. The MSST fix has been tested only for the group-ID
-all.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nphug <fix_nphug>`, :doc:`fix deform <fix_deform>`
-
-Default
-"""""""
-
-The keyword defaults are q = 10, mu = 0, tscale = 0.01. p0, v0, and e0
-are calculated on the first step.
-
-
-----------
-
-
-.. _Reed:
-
-
-
-**(Reed)** Reed, Fried, and Joannopoulos, Phys. Rev. Lett., 90, 235503 (2003).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_neb.txt b/doc/_sources/fix_neb.txt
deleted file mode 100644
index a3b40c24b..000000000
--- a/doc/_sources/fix_neb.txt
+++ /dev/null
@@ -1,125 +0,0 @@
-.. index:: fix neb
-
-fix neb command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID neb Kspring
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* neb = style name of this fix command
-* Kspring = inter-replica spring constant (force/distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 active neb 10.0
-
-Description
-"""""""""""
-
-Add inter-replica forces to atoms in the group for a multi-replica
-simulation run via the :doc:`neb <neb>` command to perform a nudged
-elastic band (NEB) calculation for transition state finding. Hi-level
-explanations of NEB are given with the :doc:`neb <neb>` command and in
-:ref:`Section_howto 5 <howto_5>` of the manual. The fix
-neb command must be used with the "neb" command to define how
-inter-replica forces are computed.
-
-Only the N atoms in the fix group experience inter-replica forces.
-Atoms in the two end-point replicas do not experience these forces,
-but those in intermediate replicas do. During the initial stage of
-NEB, the 3N-length vector of interatomic forces Fi = -Grad(V) acting
-on the atoms of each intermediate replica I is altered, as described
-in the :ref:`(Henkelman1) <Henkelman1>` paper, to become:
-
-.. parsed-literal::
-
- Fi = -Grad(V) + (Grad(V) dot That) That + Kspring (|Ri+i - Ri| - |Ri - Ri-1|) That
-
-Ri are the atomic coordinates of replica I; Ri-1 and Ri+1 are the
-coordinates of its neighbor replicas. That (t with a hat over it) is
-the unit "tangent" vector for replica I which is a function of Ri,
-Ri-1, Ri+1, and the potential energy of the 3 replicas; it points
-roughly in the direction of (Ri+i - Ri-1); see the
-:ref:`(Henkelman1) <Henkelman1>` paper for details.
-
-The first two terms in the above equation are the component of the
-interatomic forces perpendicular to the tangent vector. The last term
-is a spring force between replica I and its neighbors, parallel to the
-tangent vector direction with the specified spring constant *Kspring*.
-
-The effect of the first two terms is to push the atoms of each replica
-toward the minimum energy path (MEP) of conformational states that
-transition over the energy barrier. The MEP for an energy barrier is
-defined as a sequence of 3N-dimensional states which cross the barrier
-at its saddle point, each of which has a potential energy gradient
-parallel to the MEP itself.
-
-The effect of the last term is to push each replica away from its two
-neighbors in a direction along the MEP, so that the final set of
-states are equidistant from each other.
-
-During the second stage of NEB, the forces on the N atoms in the
-replica nearest the top of the energy barrier are altered so that it
-climbs to the top of the barrier and finds the saddle point. The
-forces on atoms in this replica are described in the
-:ref:`(Henkelman2) <Henkelman2>` paper, and become:
-
-.. parsed-literal::
-
- Fi = -Grad(V) + 2 (Grad(V) dot That) That
-
-The inter-replica forces for the other replicas are unchanged from the
-first equation.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-as invoked by the :doc:`minimize <minimize>` command via the
-:doc:`neb <neb>` command.
-
-Restrictions
-""""""""""""
-
-
-This command can only be used if LAMMPS was built with the REPLICA
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`neb <neb>`
-
-**Default:** none
-
-.. _Henkelman:
-
-
-
-**(Henkelman1)** Henkelman and Jonsson, J Chem Phys, 113, 9978-9985 (2000).
-
-.. _Henkelman:
-
-
-
-**(Henkelman2)** Henkelman, Uberuaga, Jonsson, J Chem Phys, 113,
-9901-9904 (2000).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nh.txt b/doc/_sources/fix_nh.txt
deleted file mode 100644
index 700faab50..000000000
--- a/doc/_sources/fix_nh.txt
+++ /dev/null
@@ -1,729 +0,0 @@
-.. index:: fix nvt
-
-fix nvt command
-===============
-
-fix nvt/cuda command
-====================
-
-fix nvt/intel command
-=====================
-
-fix nvt/kk command
-==================
-
-fix nvt/omp command
-===================
-
-fix npt command
-===============
-
-fix npt/cuda command
-====================
-
-fix npt/intel command
-=====================
-
-fix npt/kk command
-==================
-
-fix npt/omp command
-===================
-
-fix nph command
-===============
-
-fix nph/kk command
-==================
-
-fix nph/omp command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style_name keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style_name = *nvt* or *npt* or *nph*
-* one or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *temp* or *iso* or *aniso* or *tri* or *x* or *y* or *z* or *xy* or *yz* or *xz* or *couple* or *tchain* or *pchain* or *mtk* or *tloop* or *ploop* or *nreset* or *drag* or *dilate* or *scalexy* or *scaleyz* or *scalexz* or *flip* or *fixedpoint* or *update*
- *temp* values = Tstart Tstop Tdamp
- Tstart,Tstop = external temperature at start/end of run
- Tdamp = temperature damping parameter (time units)
- *iso* or *aniso* or *tri* values = Pstart Pstop Pdamp
- Pstart,Pstop = scalar external pressure at start/end of run (pressure units)
- Pdamp = pressure damping parameter (time units)
- *x* or *y* or *z* or *xy* or *yz* or *xz* values = Pstart Pstop Pdamp
- Pstart,Pstop = external stress tensor component at start/end of run (pressure units)
- Pdamp = stress damping parameter (time units)
- *couple* = *none* or *xyz* or *xy* or *yz* or *xz*
- *tchain* value = N
- N = length of thermostat chain (1 = single thermostat)
- *pchain* values = N
- N length of thermostat chain on barostat (0 = no thermostat)
- *mtk* value = *yes* or *no* = add in MTK adjustment term or not
- *tloop* value = M
- M = number of sub-cycles to perform on thermostat
- *ploop* value = M
- M = number of sub-cycles to perform on barostat thermostat
- *nreset* value = reset reference cell every this many timesteps
- *drag* value = Df
- Df = drag factor added to barostat/thermostat (0.0 = no drag)
- *dilate* value = dilate-group-ID
- dilate-group-ID = only dilate atoms in this group due to barostat volume changes
- *scalexy* value = *yes* or *no* = scale xy with ly
- *scaleyz* value = *yes* or *no* = scale yz with lz
- *scalexz* value = *yes* or *no* = scale xz with lz
- *flip* value = *yes* or *no* = allow or disallow box flips when it becomes highly skewed
- *fixedpoint* values = x y z
- x,y,z = perform barostat dilation/contraction around this point (distance units)
- *update* value = *dipole* update dipole orientation (only for sphere variants)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nvt temp 300.0 300.0 100.0
- fix 1 water npt temp 300.0 300.0 100.0 iso 0.0 0.0 1000.0
- fix 2 jello npt temp 300.0 300.0 100.0 tri 5.0 5.0 1000.0
- fix 2 ice nph x 1.0 1.0 0.5 y 2.0 2.0 0.5 z 3.0 3.0 0.5 yz 0.1 0.1 0.5 xz 0.2 0.2 0.5 xy 0.3 0.3 0.5 nreset 1000
-
-Description
-"""""""""""
-
-These commands perform time integration on Nose-Hoover style
-non-Hamiltonian equations of motion which are designed to generate
-positions and velocities sampled from the canonical (nvt),
-isothermal-isobaric (npt), and isenthalpic (nph) ensembles. This
-updates the position and velocity for atoms in the group each
-timestep.
-
-The thermostatting and barostatting is achieved by adding some dynamic
-variables which are coupled to the particle velocities
-(thermostatting) and simulation domain dimensions (barostatting). In
-addition to basic thermostatting and barostatting, these fixes can
-also create a chain of thermostats coupled to the particle thermostat,
-and another chain of thermostats coupled to the barostat
-variables. The barostat can be coupled to the overall box volume, or
-to individual dimensions, including the *xy*, *xz* and *yz* tilt
-dimensions. The external pressure of the barostat can be specified as
-either a scalar pressure (isobaric ensemble) or as components of a
-symmetric stress tensor (constant stress ensemble). When used
-correctly, the time-averaged temperature and stress tensor of the
-particles will match the target values specified by Tstart/Tstop and
-Pstart/Pstop.
-
-The equations of motion used are those of Shinoda et al in
-:ref:`(Shinoda) <Shinoda>`, which combine the hydrostatic equations of
-Martyna, Tobias and Klein in :ref:`(Martyna) <Martyna>` with the strain
-energy proposed by Parrinello and Rahman in
-:ref:`(Parrinello) <Parrinello>`. The time integration schemes closely
-follow the time-reversible measure-preserving Verlet and rRESPA
-integrators derived by Tuckerman et al in :ref:`(Tuckerman) <Tuckerman>`.
-
-
-----------
-
-
-The thermostat parameters for fix styles *nvt* and *npt* is specified
-using the *temp* keyword. Other thermostat-related keywords are
-*tchain*, *tloop* and *drag*, which are discussed below.
-
-The thermostat is applied to only the translational degrees of freedom
-for the particles. The translational degrees of freedom can also have
-a bias velocity removed before thermostatting takes place; see the
-description below. The desired temperature at each timestep is a
-ramped value during the run from *Tstart* to *Tstop*. The *Tdamp*
-parameter is specified in time units and determines how rapidly the
-temperature is relaxed. For example, a value of 10.0 means to relax
-the temperature in a timespan of (roughly) 10 time units (e.g. tau or
-fmsec or psec - see the :doc:`units <units>` command). The atoms in the
-fix group are the only ones whose velocities and positions are updated
-by the velocity/position update portion of the integration.
-
-.. note::
-
- A Nose-Hoover thermostat will not work well for arbitrary values
- of *Tdamp*. If *Tdamp* is too small, the temperature can fluctuate
- wildly; if it is too large, the temperature will take a very long time
- to equilibrate. A good choice for many models is a *Tdamp* of around
- 100 timesteps. Note that this is NOT the same as 100 time units for
- most :doc:`units <units>` settings.
-
-
-----------
-
-
-The barostat parameters for fix styles *npt* and *nph* is specified
-using one or more of the *iso*, *aniso*, *tri*, *x*, *y*, *z*, *xy*,
-*xz*, *yz*, and *couple* keywords. These keywords give you the
-ability to specify all 6 components of an external stress tensor, and
-to couple various of these components together so that the dimensions
-they represent are varied together during a constant-pressure
-simulation.
-
-Other barostat-related keywords are *pchain*, *mtk*, *ploop*,
-*nreset*, *drag*, and *dilate*, which are discussed below.
-
-Orthogonal simulation boxes have 3 adjustable dimensions (x,y,z).
-Triclinic (non-orthogonal) simulation boxes have 6 adjustable
-dimensions (x,y,z,xy,xz,yz). The :doc:`create_box <create_box>`, :doc:`read data <read_data>`, and :doc:`read_restart <read_restart>` commands
-specify whether the simulation box is orthogonal or non-orthogonal
-(triclinic) and explain the meaning of the xy,xz,yz tilt factors.
-
-The target pressures for each of the 6 components of the stress tensor
-can be specified independently via the *x*, *y*, *z*, *xy*, *xz*, *yz*
-keywords, which correspond to the 6 simulation box dimensions. For
-each component, the external pressure or tensor component at each
-timestep is a ramped value during the run from *Pstart* to *Pstop*.
-If a target pressure is specified for a component, then the
-corresponding box dimension will change during a simulation. For
-example, if the *y* keyword is used, the y-box length will change. If
-the *xy* keyword is used, the xy tilt factor will change. A box
-dimension will not change if that component is not specified, although
-you have the option to change that dimension via the :doc:`fix deform <fix_deform>` command.
-
-Note that in order to use the *xy*, *xz*, or *yz* keywords, the
-simulation box must be triclinic, even if its initial tilt factors are
-0.0.
-
-For all barostat keywords, the *Pdamp* parameter operates like the
-*Tdamp* parameter, determining the time scale on which pressure is
-relaxed. For example, a value of 10.0 means to relax the pressure in
-a timespan of (roughly) 10 time units (e.g. tau or fmsec or psec - see
-the :doc:`units <units>` command).
-
-.. note::
-
- A Nose-Hoover barostat will not work well for arbitrary values
- of *Pdamp*. If *Pdamp* is too small, the pressure and volume can
- fluctuate wildly; if it is too large, the pressure will take a very
- long time to equilibrate. A good choice for many models is a *Pdamp*
- of around 1000 timesteps. However, note that *Pdamp* is specified in
- time units, and that timesteps are NOT the same as time units for most
- :doc:`units <units>` settings.
-
-Regardless of what atoms are in the fix group (the only atoms which
-are time integrated), a global pressure or stress tensor is computed
-for all atoms. Similarly, when the size of the simulation box is
-changed, all atoms are re-scaled to new positions, unless the keyword
-*dilate* is specified with a *dilate-group-ID* for a group that
-represents a subset of the atoms. This can be useful, for example, to
-leave the coordinates of atoms in a solid substrate unchanged and
-controlling the pressure of a surrounding fluid. This option should
-be used with care, since it can be unphysical to dilate some atoms and
-not others, because it can introduce large, instantaneous
-displacements between a pair of atoms (one dilated, one not) that are
-far from the dilation origin. Also note that for atoms not in the fix
-group, a separate time integration fix like :doc:`fix nve <fix_nve>` or
-:doc:`fix nvt <fix_nh>` can be used on them, independent of whether they
-are dilated or not.
-
-
-----------
-
-
-The *couple* keyword allows two or three of the diagonal components of
-the pressure tensor to be "coupled" together. The value specified
-with the keyword determines which are coupled. For example, *xz*
-means the *Pxx* and *Pzz* components of the stress tensor are coupled.
-*Xyz* means all 3 diagonal components are coupled. Coupling means two
-things: the instantaneous stress will be computed as an average of the
-corresponding diagonal components, and the coupled box dimensions will
-be changed together in lockstep, meaning coupled dimensions will be
-dilated or contracted by the same percentage every timestep. The
-*Pstart*, *Pstop*, *Pdamp* parameters for any coupled dimensions must
-be identical. *Couple xyz* can be used for a 2d simulation; the *z*
-dimension is simply ignored.
-
-
-----------
-
-
-The *iso*, *aniso*, and *tri* keywords are simply shortcuts that are
-equivalent to specifying several other keywords together.
-
-The keyword *iso* means couple all 3 diagonal components together when
-pressure is computed (hydrostatic pressure), and dilate/contract the
-dimensions together. Using "iso Pstart Pstop Pdamp" is the same as
-specifying these 4 keywords:
-
-.. parsed-literal::
-
- x Pstart Pstop Pdamp
- y Pstart Pstop Pdamp
- z Pstart Pstop Pdamp
- couple xyz
-
-The keyword *aniso* means *x*, *y*, and *z* dimensions are controlled
-independently using the *Pxx*, *Pyy*, and *Pzz* components of the
-stress tensor as the driving forces, and the specified scalar external
-pressure. Using "aniso Pstart Pstop Pdamp" is the same as specifying
-these 4 keywords:
-
-.. parsed-literal::
-
- x Pstart Pstop Pdamp
- y Pstart Pstop Pdamp
- z Pstart Pstop Pdamp
- couple none
-
-The keyword *tri* means *x*, *y*, *z*, *xy*, *xz*, and *yz* dimensions
-are controlled independently using their individual stress components
-as the driving forces, and the specified scalar pressure as the
-external normal stress. Using "tri Pstart Pstop Pdamp" is the same as
-specifying these 7 keywords:
-
-.. parsed-literal::
-
- x Pstart Pstop Pdamp
- y Pstart Pstop Pdamp
- z Pstart Pstop Pdamp
- xy 0.0 0.0 Pdamp
- yz 0.0 0.0 Pdamp
- xz 0.0 0.0 Pdamp
- couple none
-
-
-----------
-
-
-In some cases (e.g. for solids) the pressure (volume) and/or
-temperature of the system can oscillate undesirably when a Nose/Hoover
-barostat and thermostat is applied. The optional *drag* keyword will
-damp these oscillations, although it alters the Nose/Hoover equations.
-A value of 0.0 (no drag) leaves the Nose/Hoover formalism unchanged.
-A non-zero value adds a drag term; the larger the value specified, the
-greater the damping effect. Performing a short run and monitoring the
-pressure and temperature is the best way to determine if the drag term
-is working. Typically a value between 0.2 to 2.0 is sufficient to
-damp oscillations after a few periods. Note that use of the drag
-keyword will interfere with energy conservation and will also change
-the distribution of positions and velocities so that they do not
-correspond to the nominal NVT, NPT, or NPH ensembles.
-
-An alternative way to control initial oscillations is to use chain
-thermostats. The keyword *tchain* determines the number of thermostats
-in the particle thermostat. A value of 1 corresponds to the original
-Nose-Hoover thermostat. The keyword *pchain* specifies the number of
-thermostats in the chain thermostatting the barostat degrees of
-freedom. A value of 0 corresponds to no thermostatting of the
-barostat variables.
-
-The *mtk* keyword controls whether or not the correction terms due to
-Martyna, Tuckerman, and Klein are included in the equations of motion
-:ref:`(Martyna) <Martyna>`. Specifying *no* reproduces the original
-Hoover barostat, whose volume probability distribution function
-differs from the true NPT and NPH ensembles by a factor of 1/V. Hence
-using *yes* is more correct, but in many cases the difference is
-negligible.
-
-The keyword *tloop* can be used to improve the accuracy of integration
-scheme at little extra cost. The initial and final updates of the
-thermostat variables are broken up into *tloop* substeps, each of
-length *dt*/*tloop*. This corresponds to using a first-order
-Suzuki-Yoshida scheme :ref:`(Tuckerman) <Tuckerman>`. The keyword *ploop*
-does the same thing for the barostat thermostat.
-
-The keyword *nreset* controls how often the reference dimensions used
-to define the strain energy are reset. If this keyword is not used,
-or is given a value of zero, then the reference dimensions are set to
-those of the initial simulation domain and are never changed. If the
-simulation domain changes significantly during the simulation, then
-the final average pressure tensor will differ significantly from the
-specified values of the external stress tensor. A value of *nstep*
-means that every *nstep* timesteps, the reference dimensions are set
-to those of the current simulation domain.
-
-The *scaleyz*, *scalexz*, and *scalexy* keywords control whether or
-not the corresponding tilt factors are scaled with the associated box
-dimensions when barostatting triclinic periodic cells. The default
-values *yes* will turn on scaling, which corresponds to adjusting the
-linear dimensions of the cell while preserving its shape. Choosing
-*no* ensures that the tilt factors are not scaled with the box
-dimensions. See below for restrictions and default values in different
-situations. In older versions of LAMMPS, scaling of tilt factors was
-not performed. The old behavior can be recovered by setting all three
-scale keywords to *no*.
-
-The *flip* keyword allows the tilt factors for a triclinic box to
-exceed half the distance of the parallel box length, as discussed
-below. If the *flip* value is set to *yes*, the bound is enforced by
-flipping the box when it is exceeded. If the *flip* value is set to
-*no*, the tilt will continue to change without flipping. Note that if
-applied stress induces large deformations (e.g. in a liquid), this
-means the box shape can tilt dramatically and LAMMPS will run less
-efficiently, due to the large volume of communication needed to
-acquire ghost atoms around a processor's irregular-shaped sub-domain.
-For extreme values of tilt, LAMMPS may also lose atoms and generate an
-error.
-
-The *fixedpoint* keyword specifies the fixed point for barostat volume
-changes. By default, it is the center of the box. Whatever point is
-chosen will not move during the simulation. For example, if the lower
-periodic boundaries pass through (0,0,0), and this point is provided
-to *fixedpoint*, then the lower periodic boundaries will remain at
-(0,0,0), while the upper periodic boundaries will move twice as
-far. In all cases, the particle trajectories are unaffected by the
-chosen value, except for a time-dependent constant translation of
-positions.
-
-If the *update* keyword is used with the *dipole* value, then the
-orientation of the dipole moment of each particle is also updated
-during the time integration. This option should be used for models
-where a dipole moment is assigned to finite-size particles,
-e.g. spheroids via use of the :doc:`atom_style hybrid sphere dipole <atom_style>` command.
-
-
-----------
-
-
-.. note::
-
- Using a barostat coupled to tilt dimensions *xy*, *xz*, *yz* can
- sometimes result in arbitrarily large values of the tilt dimensions,
- i.e. a dramatically deformed simulation box. LAMMPS allows the tilt
- factors to grow a small amount beyond the normal limit of half the box
- length (0.6 times the box length), and then performs a box "flip" to
- an equivalent periodic cell. See the discussion of the *flip* keyword
- above, to allow this bound to be exceeded, if desired.
-
-The flip operation is described in more detail in the doc page for
-:doc:`fix deform <fix_deform>`. Both the barostat dynamics and the atom
-trajectories are unaffected by this operation. However, if a tilt
-factor is incremented by a large amount (1.5 times the box length) on
-a single timestep, LAMMPS can not accomodate this event and will
-terminate the simulation with an error. This error typically indicates
-that there is something badly wrong with how the simulation was
-constructed, such as specifying values of *Pstart* that are too far
-from the current stress value, or specifying a timestep that is too
-large. Triclinic barostatting should be used with care. This also is
-true for other barostat styles, although they tend to be more
-forgiving of insults. In particular, it is important to recognize that
-equilibrium liquids can not support a shear stress and that
-equilibrium solids can not support shear stresses that exceed the
-yield stress.
-
-One exception to this rule is if the 1st dimension in the tilt factor
-(x for xy) is non-periodic. In that case, the limits on the tilt
-factor are not enforced, since flipping the box in that dimension does
-not change the atom positions due to non-periodicity. In this mode,
-if you tilt the system to extreme angles, the simulation will simply
-become inefficient due to the highly skewed simulation box.
-
-.. note::
-
- Unlike the :doc:`fix temp/berendsen <fix_temp_berendsen>` command
- which performs thermostatting but NO time integration, these fixes
- perform thermostatting/barostatting AND time integration. Thus you
- should not use any other time integration fix, such as :doc:`fix nve <fix_nve>` on atoms to which this fix is applied. Likewise,
- fix nvt and fix npt should not normally be used on atoms that also
- have their temperature controlled by another fix - e.g. by :doc:`fix langevin <fix_nh>` or :doc:`fix temp/rescale <fix_temp_rescale>`
- commands.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting and barostatting.
-
-
-----------
-
-
-These fixes compute a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp" and "pressure",
-as if one of these two sets of commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
- compute fix-ID_press group-ID pressure fix-ID_temp
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp <compute_temp>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press". For fix nvt, the group for the new computes
-is the same as the fix group. For fix nph and fix npt, the group for
-the new computes is "all" since pressure is computed for the entire
-system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-Like other fixes that perform thermostatting, fix nvt and fix npt can
-be used with :doc:`compute commands <compute>` that calculate a
-temperature after removing a "bias" from the atom velocities.
-E.g. removing the center-of-mass velocity from a group of atoms or
-only calculating temperature on the x-component of velocity or only
-calculating temperature for atoms in a geometric region. This is not
-done by default, but only if the :doc:`fix_modify <fix_modify>` command
-is used to assign a temperature compute to this fix that includes such
-a bias term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-These fixes can be used with either the *verlet* or *respa*
-:doc:`integrators <run_style>`. When using one of the barostat fixes
-with *respa*, LAMMPS uses an integrator constructed
-according to the following factorization of the Liouville propagator
-(for two rRESPA levels):
-
-.. image:: Eqs/fix_nh1.jpg
- :align: center
-
-This factorization differs somewhat from that of Tuckerman et al, in
-that the barostat is only updated at the outermost rRESPA level,
-whereas Tuckerman's factorization requires splitting the pressure into
-pieces corresponding to the forces computed at each rRESPA level. In
-theory, the latter method will exhibit better numerical stability. In
-practice, because Pdamp is normally chosen to be a large multiple of
-the outermost rRESPA timestep, the barostat dynamics are not the
-limiting factor for numerical stability. Both factorizations are
-time-reversible and can be shown to preserve the phase space measure
-of the underlying non-Hamiltonian equations of motion.
-
-.. note::
-
- This implementation has been shown to conserve linear momentum
- up to machine precision under NVT dynamics. Under NPT dynamics,
- for a system with zero initial total linear momentum, the total
- momentum fluctuates close to zero. It may occasionally undergo brief
- excursions to non-negligible values, before returning close to zero.
- Over long simulations, this has the effect of causing the center-of-mass
- to undergo a slow random walk. This can be mitigated by resetting
- the momentum at infrequent intervals using the
- :doc:`fix momentum <fix_momentum>` command.
-
-.. note::
-
- This implementation has been shown to conserve linear momentum
- up to machine precision under NVT dynamics. Under NPT dynamics,
- for a system with zero initial total linear momentum, the total
- momentum fluctuates close to zero. It may occasionally undergo brief
- excursions to non-negligible values, before returning close to zero.
- Over long simulations, this has the effect of causing the center-of-mass
- to undergo a slow random walk. This can be mitigated by resetting
- the momentum at infrequent intervals using the
- :doc:`fix momentum <fix_momentum>` command.
-
-
-----------
-
-
-The fix npt and fix nph commands can be used with rigid bodies or
-mixtures of rigid bodies and non-rigid particles (e.g. solvent). But
-there are also :doc:`fix rigid/npt <fix_rigid>` and :doc:`fix rigid/nph <fix_rigid>` commands, which are typically a more natural
-choice. See the doc page for those commands for more discussion of
-the various ways to do this.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-These fixes writes the state of all the thermostat and barostat
-variables to :doc:`binary restart files <restart>`. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by these fixes. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure, as described above.
-If you do this, note that the kinetic energy derived from the compute
-temperature should be consistent with the virial term computed using
-all atoms for the pressure. LAMMPS will warn you if you choose to
-compute temperature on a subset of atoms.
-
-.. note::
-
- If both the *temp* and *press* keywords are used in a single
- thermo_modify command (or in two separate commands), then the order in
- which the keywords are specified is important. Note that a :doc:`pressure compute <compute_pressure>` defines its own temperature compute as
- an argument when it is specified. The *temp* keyword will override
- this (for the pressure compute being used by fix npt), but only if the
- *temp* keyword comes after the *press* keyword. If the *temp* keyword
- comes before the *press* keyword, then the new pressure compute
- specified by the *press* keyword will be unaffected by the *temp*
- setting.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by these
-fixes to add the energy change induced by Nose/Hoover thermostatting
-and barostatting to the system's potential energy as part of
-:doc:`thermodynamic output <thermo_style>`.
-
-These fixes compute a global scalar and a global vector of quantities,
-which can be accessed by various :ref:`output commands <howto_15>`. The scalar value calculated by
-these fixes is "extensive"; the vector values are "intensive".
-
-The scalar is the cumulative energy change due to the fix.
-
-The vector stores internal Nose/Hoover thermostat and barostat
-variables. The number and meaning of the vector values depends on
-which fix is used and the settings for keywords *tchain* and *pchain*,
-which specify the number of Nose/Hoover chains for the thermostat and
-barostat. If no thermostatting is done, then *tchain* is 0. If no
-barostatting is done, then *pchain* is 0. In the following list,
-"ndof" is 0, 1, 3, or 6, and is the number of degrees of freedom in
-the barostat. Its value is 0 if no barostat is used, else its value
-is 6 if any off-diagonal stress tensor component is barostatted, else
-its value is 1 if *couple xyz* is used or *couple xy* for a 2d
-simulation, otherwise its value is 3.
-
-The order of values in the global vector and their meaning is as
-follows. The notation means there are tchain values for eta, followed
-by tchain for eta_dot, followed by ndof for omega, etc:
-
-* eta[tchain] = particle thermostat displacements (unitless)
-* eta_dot[tchain] = particle thermostat velocities (1/time units)
-* omega[ndof] = barostat displacements (unitless)
-* omega_dot[ndof] = barostat velocities (1/time units)
-* etap[pchain] = barostat thermostat displacements (unitless)
-* etap_dot[pchain] = barostat thermostat velocities (1/time units)
-* PE_eta[tchain] = potential energy of each particle thermostat displacement (energy units)
-* KE_eta_dot[tchain] = kinetic energy of each particle thermostat velocity (energy units)
-* PE_omega[ndof] = potential energy of each barostat displacement (energy units)
-* KE_omega_dot[ndof] = kinetic energy of each barostat velocity (energy units)
-* PE_etap[pchain] = potential energy of each barostat thermostat displacement (energy units)
-* KE_etap_dot[pchain] = kinetic energy of each barostat thermostat velocity (energy units)
-* PE_strain[1] = scalar strain energy (energy units)
-
-These fixes can ramp their external temperature and pressure over
-multiple runs, using the *start* and *stop* keywords of the
-:doc:`run <run>` command. See the :doc:`run <run>` command for details of
-how to do this.
-
-These fixes are not invoked during :doc:`energy minimization <minimize>`.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-*X*, *y*, *z* cannot be barostatted if the associated dimension is not
-periodic. *Xy*, *xz*, and *yz* can only be barostatted if the
-simulation domain is triclinic and the 2nd dimension in the keyword
-(*y* dimension in *xy*) is periodic. *Z*, *xz*, and *yz*, cannot be
-barostatted for 2D simulations. The :doc:`create_box <create_box>`,
-:doc:`read data <read_data>`, and :doc:`read_restart <read_restart>`
-commands specify whether the simulation box is orthogonal or
-non-orthogonal (triclinic) and explain the meaning of the xy,xz,yz
-tilt factors.
-
-For the *temp* keyword, the final Tstop cannot be 0.0 since it would
-make the external T = 0.0 at some timestep during the simulation which
-is not allowed in the Nose/Hoover formulation.
-
-The *scaleyz yes* and *scalexz yes* keyword/value pairs can not be used
-for 2D simulations. *scaleyz yes*, *scalexz yes*, and *scalexy yes* options
-can only be used if the 2nd dimension in the keyword is periodic,
-and if the tilt factor is not coupled to the barostat via keywords
-*tri*, *yz*, *xz*, and *xy*.
-
-These fixes can be used with dynamic groups as defined by the
-:doc:`group <group>` command. Likewise they can be used with groups to
-which atoms are added or deleted over time, e.g. a deposition
-simulation. However, the conservation properties of the thermostat
-and barostat are defined for systems with a static set of atoms. You
-may observe odd behavior if the atoms in a group vary dramatically
-over time or the atom count becomes very small.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix_modify <fix_modify>`,
-:doc:`run_style <run_style>`
-
-Default
-"""""""
-
-The keyword defaults are tchain = 3, pchain = 3, mtk = yes, tloop =
-ploop = 1, nreset = 0, drag = 0.0, dilate = all, couple = none,
-scaleyz = scalexz = scalexy = yes if periodic in 2nd dimension and
-not coupled to barostat, otherwise no.
-
-
-----------
-
-
-.. _Martyna:
-
-
-
-**(Martyna)** Martyna, Tobias and Klein, J Chem Phys, 101, 4177 (1994).
-
-.. _Parrinello:
-
-
-
-**(Parrinello)** Parrinello and Rahman, J Appl Phys, 52, 7182 (1981).
-
-.. _Tuckerman:
-
-
-
-**(Tuckerman)** Tuckerman, Alejandre, Lopez-Rendon, Jochim, and
-Martyna, J Phys A: Math Gen, 39, 5629 (2006).
-
-.. _Shinoda:
-
-
-
-**(Shinoda)** Shinoda, Shiga, and Mikami, Phys Rev B, 69, 134103 (2004).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nh_eff.txt b/doc/_sources/fix_nh_eff.txt
deleted file mode 100644
index 7d980e9de..000000000
--- a/doc/_sources/fix_nh_eff.txt
+++ /dev/null
@@ -1,179 +0,0 @@
-.. index:: fix nvt/eff
-
-fix nvt/eff command
-===================
-
-fix npt/eff command
-===================
-
-fix nph/eff command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style_name keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style_name = *nvt/eff* or *npt/eff* or *nph/eff*
-.. parsed-literal::
-
- one or more keyword value pairs may be appended
- keyword = *temp* or *iso* or *aniso* or *tri* or *x* or *y* or *z* or *xy* or *yz* or *xz* or *couple* or *tchain* or *pchain* or *mtk* or *tloop* or *ploop* or *nreset* or *drag* or *dilate*
- *temp* values = Tstart Tstop Tdamp
- Tstart,Tstop = external temperature at start/end of run
- Tdamp = temperature damping parameter (time units)
- *iso* or *aniso* or *tri* values = Pstart Pstop Pdamp
- Pstart,Pstop = scalar external pressure at start/end of run (pressure units)
- Pdamp = pressure damping parameter (time units)
- *x* or *y* or *z* or *xy* or *yz* or *xz* values = Pstart Pstop Pdamp
- Pstart,Pstop = external stress tensor component at start/end of run (pressure units)
- Pdamp = stress damping parameter (time units)
- *couple* = *none* or *xyz* or *xy* or *yz* or *xz*
- *tchain* value = length of thermostat chain (1 = single thermostat)
- *pchain* values = length of thermostat chain on barostat (0 = no thermostat)
- *mtk* value = *yes* or *no* = add in MTK adjustment term or not
- *tloop* value = number of sub-cycles to perform on thermostat
- *ploop* value = number of sub-cycles to perform on barostat thermostat
- *nreset* value = reset reference cell every this many timesteps
- *drag* value = drag factor added to barostat/thermostat (0.0 = no drag)
- *dilate* value = *all* or *partial*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nvt/eff temp 300.0 300.0 0.1
- fix 1 part npt/eff temp 300.0 300.0 0.1 iso 0.0 0.0 1.0
- fix 2 part npt/eff temp 300.0 300.0 0.1 tri 5.0 5.0 1.0
- fix 2 ice nph/eff x 1.0 1.0 0.5 y 2.0 2.0 0.5 z 3.0 3.0 0.5 yz 0.1 0.1 0.5 xz 0.2 0.2 0.5 xy 0.3 0.3 0.5 nreset 1000
-
-Description
-"""""""""""
-
-These commands perform time integration on Nose-Hoover style
-non-Hamiltonian equations of motion for nuclei and electrons in the
-group for the :doc:`electron force field <pair_eff>` model. The fixes
-are designed to generate positions and velocities sampled from the
-canonical (nvt), isothermal-isobaric (npt), and isenthalpic (nph)
-ensembles. This is achieved by adding some dynamic variables which
-are coupled to the particle velocities (thermostatting) and simulation
-domain dimensions (barostatting). In addition to basic thermostatting
-and barostatting, these fixes can also create a chain of thermostats
-coupled to the particle thermostat, and another chain of thermostats
-coupled to the barostat variables. The barostat can be coupled to the
-overall box volume, or to individual dimensions, including the *xy*,
-*xz* and *yz* tilt dimensions. The external pressure of the barostat
-can be specified as either a scalar pressure (isobaric ensemble) or as
-components of a symmetric stress tensor (constant stress ensemble).
-When used correctly, the time-averaged temperature and stress tensor
-of the particles will match the target values specified by
-Tstart/Tstop and Pstart/Pstop.
-
-The operation of these fixes is exactly like that described by the
-:doc:`fix nvt, npt, and nph <fix_nh>` commands, except that the radius
-and radial velocity of electrons are also updated. Likewise the
-temperature and pressure calculated by the fix, using the computes it
-creates (as discussed in the :doc:`fix nvt, npt, and nph <fix_nh>`
-doc page), are performed with computes that include the eFF contribution
-to the temperature or kinetic energy from the electron radial velocity.
-
-.. note::
-
- there are two different pressures that can be reported for eFF
- when defining the pair_style (see :doc:`pair eff/cut <pair_eff_cut>` to
- understand these settings), one (default) that considers electrons do
- not contribute radial virial components (i.e. electrons treated as
- incompressible 'rigid' spheres) and one that does. The radial
- electronic contributions to the virials are only tallied if the
- flexible pressure option is set, and this will affect both global and
- per-atom quantities. In principle, the true pressure of a system is
- somewhere in between the rigid and the flexible eFF pressures, but,
- for most cases, the difference between these two pressures will not be
- significant over long-term averaged runs (i.e. even though the energy
- partitioning changes, the total energy remains similar).
-
-.. note::
-
- currently, there is no available option for the user to set or
- create temperature distributions that include the radial electronic
- degrees of freedom with the :doc:`velocity <velocity>` command, so the
- the user must allow for these degrees of freedom to equilibrate
- (i.e. equi-partitioning of energy) through time integration.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-See the doc page for the :doc:`fix nvt, npt, and nph <fix_nh>` commands
-for details.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Other restriction discussed on the doc page for the :doc:`fix nvt, npt, and nph <fix_nh>` commands also apply.
-
-.. note::
-
- The temperature for systems (regions or groups) with only
- electrons and no nuclei is 0.0 (i.e. not defined) in the current
- temperature calculations, a practical example would be a uniform
- electron gas or a very hot plasma, where electrons remain delocalized
- from the nuclei. This is because, even though electron virials are
- included in the temperature calculation, these are averaged over the
- nuclear degrees of freedom only. In such cases a corrective term must
- be added to the pressure to get the correct kinetic contribution.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`fix nph <fix_nh>`, :doc:`fix npt <fix_nh>`,
-:doc:`fix_modify <fix_modify>`, :doc:`run_style <run_style>`
-
-Default
-"""""""
-
-The keyword defaults are tchain = 3, pchain = 3, mtk = yes, tloop =
-ploop = 1, nreset = 0, drag = 0.0, dilate = all, and couple = none.
-
-
-----------
-
-
-.. _Martyna:
-
-
-
-**(Martyna)** Martyna, Tobias and Klein, J Chem Phys, 101, 4177 (1994).
-
-.. _Parrinello:
-
-
-
-**(Parrinello)** Parrinello and Rahman, J Appl Phys, 52, 7182 (1981).
-
-.. _Tuckerman:
-
-
-
-**(Tuckerman)** Tuckerman, Alejandre, Lopez-Rendon, Jochim, and
-Martyna, J Phys A: Math Gen, 39, 5629 (2006).
-
-.. _Shinoda:
-
-
-
-**(Shinoda)** Shinoda, Shiga, and Mikami, Phys Rev B, 69, 134103 (2004).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nph_asphere.txt b/doc/_sources/fix_nph_asphere.txt
deleted file mode 100644
index cf979176c..000000000
--- a/doc/_sources/fix_nph_asphere.txt
+++ /dev/null
@@ -1,163 +0,0 @@
-.. index:: fix nph/asphere
-
-fix nph/asphere command
-=======================
-
-fix nph/asphere/omp command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nph/asphere args keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nph/asphere = style name of this fix command
-* additional barostat related keyword/value pairs from the :doc:`fix nph <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nph/asphere iso 0.0 0.0 1000.0
- fix 2 all nph/asphere x 5.0 5.0 1000.0
- fix 2 all nph/asphere x 5.0 5.0 1000.0 drag 0.2
- fix 2 water nph/asphere aniso 0.0 0.0 1000.0 dilate partial
-
-Description
-"""""""""""
-
-Perform constant NPH integration to update position, velocity,
-orientation, and angular velocity each timestep for aspherical or
-ellipsoidal particles in the group using a Nose/Hoover pressure
-barostat. P is pressure; H is enthalpy. This creates a system
-trajectory consistent with the isenthalpic ensemble.
-
-This fix differs from the :doc:`fix nph <fix_nh>` command, which assumes
-point particles and only updates their position and velocity.
-
-Additional parameters affecting the barostat are specified by keywords
-and values documented with the :doc:`fix nph <fix_nh>` command. See,
-for example, discussion of the *aniso*, and *dilate* keywords.
-
-The particles in the fix group are the only ones whose velocities and
-positions are updated by the velocity/position update portion of the
-NPH integration.
-
-Regardless of what particles are in the fix group, a global pressure is
-computed for all particles. Similarly, when the size of the simulation
-box is changed, all particles are re-scaled to new positions, unless the
-keyword *dilate* is specified with a value of *partial*, in which case
-only the particles in the fix group are re-scaled. The latter can be
-useful for leaving the coordinates of particles in a solid substrate
-unchanged and controlling the pressure of a surrounding fluid.
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp/asphere" and
-"pressure", as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp/asphere
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp/asphere <compute_temp_asphere>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is "all"
-since pressure is computed for the entire system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover barostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure. If you do this, note
-that the kinetic energy derived from the compute temperature should be
-consistent with the virial term computed using all atoms for the
-pressure. LAMMPS will warn you if you choose to compute temperature
-on a subset of atoms.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover barostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nph <fix_nh>` command.
-
-This fix can ramp its target pressure over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the ASPHERE package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style ellipsoid <atom_style>`
-command.
-
-All particles in the group must be finite-size. They cannot be point
-particles, but they can be aspherical or spherical as defined by their
-shape attribute.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nph <fix_nh>`, :doc:`fix nve_asphere <fix_nve_asphere>`, :doc:`fix nvt_asphere <fix_nvt_asphere>`, :doc:`fix npt_asphere <fix_npt_asphere>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nph_body.txt b/doc/_sources/fix_nph_body.txt
deleted file mode 100644
index ce84aa66d..000000000
--- a/doc/_sources/fix_nph_body.txt
+++ /dev/null
@@ -1,156 +0,0 @@
-.. index:: fix nph/body
-
-fix nph/body command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nph/body args keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nph/body = style name of this fix command
-* additional barostat related keyword/value pairs from the :doc:`fix nph <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nph/body iso 0.0 0.0 1000.0
- fix 2 all nph/body x 5.0 5.0 1000.0
- fix 2 all nph/body x 5.0 5.0 1000.0 drag 0.2
- fix 2 water nph/body aniso 0.0 0.0 1000.0 dilate partial
-
-Description
-"""""""""""
-
-Perform constant NPH integration to update position, velocity,
-orientation, and angular velocity each timestep for body
-particles in the group using a Nose/Hoover pressure
-barostat. P is pressure; H is enthalpy. This creates a system
-trajectory consistent with the isenthalpic ensemble.
-
-This fix differs from the :doc:`fix nph <fix_nh>` command, which assumes
-point particles and only updates their position and velocity.
-
-Additional parameters affecting the barostat are specified by keywords
-and values documented with the :doc:`fix nph <fix_nh>` command. See,
-for example, discussion of the *aniso*, and *dilate* keywords.
-
-The particles in the fix group are the only ones whose velocities and
-positions are updated by the velocity/position update portion of the
-NPH integration.
-
-Regardless of what particles are in the fix group, a global pressure is
-computed for all particles. Similarly, when the size of the simulation
-box is changed, all particles are re-scaled to new positions, unless the
-keyword *dilate* is specified with a value of *partial*, in which case
-only the particles in the fix group are re-scaled. The latter can be
-useful for leaving the coordinates of particles in a solid substrate
-unchanged and controlling the pressure of a surrounding fluid.
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp/body" and
-"pressure", as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp/body
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp/body <compute_temp_body>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is "all"
-since pressure is computed for the entire system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover barostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure. If you do this, note
-that the kinetic energy derived from the compute temperature should be
-consistent with the virial term computed using all atoms for the
-pressure. LAMMPS will warn you if you choose to compute temperature
-on a subset of atoms.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover barostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nph <fix_nh>` command.
-
-This fix can ramp its target pressure over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the BODY package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style body <atom_style>`
-command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nph <fix_nh>`, :doc:`fix nve_body <fix_nve_body>`, :doc:`fix nvt_body <fix_nvt_body>`, :doc:`fix npt_body <fix_npt_body>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nph_sphere.txt b/doc/_sources/fix_nph_sphere.txt
deleted file mode 100644
index 253cb2eb6..000000000
--- a/doc/_sources/fix_nph_sphere.txt
+++ /dev/null
@@ -1,160 +0,0 @@
-.. index:: fix nph/sphere
-
-fix nph/sphere command
-======================
-
-fix nph/sphere/omp command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nph/sphere args keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nph/sphere = style name of this fix command
-* additional barostat related keyword/value pairs from the :doc:`fix nph <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nph/sphere iso 0.0 0.0 1000.0
- fix 2 all nph/sphere x 5.0 5.0 1000.0
- fix 2 all nph/sphere x 5.0 5.0 1000.0 drag 0.2
- fix 2 water nph/sphere aniso 0.0 0.0 1000.0 dilate partial
-
-Description
-"""""""""""
-
-Perform constant NPH integration to update position, velocity, and
-angular velocity each timestep for finite-size spherical particles in
-the group using a Nose/Hoover pressure barostat. P is pressure; H is
-enthalpy. This creates a system trajectory consistent with the
-isenthalpic ensemble.
-
-This fix differs from the :doc:`fix nph <fix_nh>` command, which assumes
-point particles and only updates their position and velocity.
-
-Additional parameters affecting the barostat are specified by keywords
-and values documented with the :doc:`fix nph <fix_nh>` command. See,
-for example, discussion of the *aniso*, and *dilate* keywords.
-
-The particles in the fix group are the only ones whose velocities and
-positions are updated by the velocity/position update portion of the
-NPH integration.
-
-Regardless of what particles are in the fix group, a global pressure is
-computed for all particles. Similarly, when the size of the simulation
-box is changed, all particles are re-scaled to new positions, unless the
-keyword *dilate* is specified with a value of *partial*, in which case
-only the particles in the fix group are re-scaled. The latter can be
-useful for leaving the coordinates of particles in a solid substrate
-unchanged and controlling the pressure of a surrounding fluid.
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp/sphere" and
-"pressure", as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp/sphere
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp/sphere <compute_temp_sphere>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is "all"
-since pressure is computed for the entire system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover barostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure. If you do this, note
-that the kinetic energy derived from the compute temperature should be
-consistent with the virial term computed using all atoms for the
-pressure. LAMMPS will warn you if you choose to compute temperature
-on a subset of atoms.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover barostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nph <fix_nh>` command.
-
-This fix can ramp its target pressure over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix requires that atoms store torque and angular velocity (omega)
-and a radius as defined by the :doc:`atom_style sphere <atom_style>`
-command.
-
-All particles in the group must be finite-size spheres. They cannot
-be point particles.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nph <fix_nh>`, :doc:`fix nve_sphere <fix_nve_sphere>`, :doc:`fix nvt_sphere <fix_nvt_sphere>`, :doc:`fix npt_sphere <fix_npt_sphere>`,
-:doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nphug.txt b/doc/_sources/fix_nphug.txt
deleted file mode 100644
index f2f8603d5..000000000
--- a/doc/_sources/fix_nphug.txt
+++ /dev/null
@@ -1,258 +0,0 @@
-.. index:: fix nphug
-
-fix nphug command
-=================
-
-fix nphug/omp command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nphug keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-.. parsed-literal::
-
- one or more keyword value pairs may be appended
- keyword = *temp* or *iso* or *aniso* or *tri* or *x* or *y* or *z* or *couple* or *tchain* or *pchain* or *mtk* or *tloop* or *ploop* or *nreset* or *drag* or *dilate* or *scaleyz* or *scalexz* or *scalexy*
- *temp* values = Value1 Value2 Tdamp
- Value1, Value2 = Nose-Hoover target temperatures, ignored by Hugoniostat
- Tdamp = temperature damping parameter (time units)
- *iso* or *aniso* or *tri* values = Pstart Pstop Pdamp
- Pstart,Pstop = scalar external pressures, must be equal (pressure units)
- Pdamp = pressure damping parameter (time units)
- *x* or *y* or *z* or *xy* or *yz* or *xz* values = Pstart Pstop Pdamp
- Pstart,Pstop = external stress tensor components, must be equal (pressure units)
- Pdamp = stress damping parameter (time units)
- *couple* = *none* or *xyz* or *xy* or *yz* or *xz*
- *tchain* value = length of thermostat chain (1 = single thermostat)
- *pchain* values = length of thermostat chain on barostat (0 = no thermostat)
- *mtk* value = *yes* or *no* = add in MTK adjustment term or not
- *tloop* value = number of sub-cycles to perform on thermostat
- *ploop* value = number of sub-cycles to perform on barostat thermostat
- *nreset* value = reset reference cell every this many timesteps
- *drag* value = drag factor added to barostat/thermostat (0.0 = no drag)
- *dilate* value = *all* or *partial*
- *scaleyz* value = *yes* or *no* = scale yz with lz
- *scalexz* value = *yes* or *no* = scale xz with lz
- *scalexy* value = *yes* or *no* = scale xy with ly
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix myhug all nphug temp 1.0 1.0 10.0 z 40.0 40.0 70.0
- fix myhug all nphug temp 1.0 1.0 10.0 iso 40.0 40.0 70.0 drag 200.0 tchain 1 pchain 0
-
-Description
-"""""""""""
-
-This command is a variant of the Nose-Hoover
-:doc:`fix npt <fix_nh>` fix style.
-It performs time integration of the Hugoniostat equations
-of motion developed by Ravelo et al. :ref:`(Ravelo) <Ravelo>`.
-These equations compress the system to a state with average
-axial stress or pressure equal to the specified target value
-and that satisfies the Rankine-Hugoniot (RH)
-jump conditions for steady shocks.
-
-The compression can be performed
-either
-hydrostatically (using keyword *iso*, *aniso*, or *tri*) or uniaxially
-(using keywords *x*, *y*, or *z*). In the hydrostatic case,
-the cell dimensions change dynamically so that the average axial stress
-in all three directions converges towards the specified target value.
-In the uniaxial case, the chosen cell dimension changes dynamically
-so that the average
-axial stress in that direction converges towards the target value. The
-other two cell dimensions are kept fixed (zero lateral strain).
-
-This leads to the following additional restrictions on the keywords:
-
-* One and only one of the following keywords should be used: *iso*, *aniso*, *tri*, *x*, *y*, *z*
-* The specified initial and final target pressures must be the same.
-* The keywords *xy*, *xz*, *yz* may not be used.
-* The only admissible value for the couple keyword is *xyz*, which has the same effect as keyword *iso*
-* The *temp* keyword must be used to specify the time constant for kinetic energy relaxation, but initial and final target temperature values are ignored.
-
-Essentially, a Hugoniostat simulation is an NPT simulation in which the
-user-specified target temperature is replaced with a time-dependent
-target temperature Tt obtained from the following equation:
-
-.. image:: Eqs/fix_nphug.jpg
- :align: center
-
-where T and Tt are the instantaneous and target temperatures,
-P and P0 are the instantaneous and reference pressures or axial stresses,
-depending on whether hydrostatic or uniaxial compression is being
-performed, V and V0 are the instantaneous and reference volumes,
-E and E0 are the instantaneous and reference internal energy (potential
-plus kinetic), Ndof is the number of degrees of freedom used in the
-definition of temperature, and kB is the Boltzmann constant. Delta is the
-negative deviation of the instantaneous temperature from the target temperature.
-When the system reaches a stable equilibrium, the value of Delta should
-fluctuate about zero.
-
-The values of E0, V0, and P0 are the instantaneous values at the start of
-the simulation. These can be overridden using the fix_modify keywords *e0*,
-*v0*, and *p0* described below.
-
-
-----------
-
-
-.. note::
-
- Unlike the :doc:`fix temp/berendsen <fix_temp_berendsen>` command
- which performs thermostatting but NO time integration, this fix
- performs thermostatting/barostatting AND time integration. Thus you
- should not use any other time integration fix, such as :doc:`fix nve <fix_nve>` on atoms to which this fix is applied. Likewise,
- this fix should not be used on atoms that have their temperature
- controlled by another fix - e.g. by :doc:`fix langevin <fix_nh>` or :doc:`fix temp/rescale <fix_temp_rescale>` commands.
-
-
-----------
-
-
-This fix computes a temperature and pressure at each timestep. To do
-this, the fix creates its own computes of style "temp" and "pressure",
-as if one of these two sets of commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
- compute fix-ID_press group-ID pressure fix-ID_temp
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp <compute_temp>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press". The group for
-the new computes is "all" since pressure is computed for the entire
-system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the values of E0, V0, and P0, as well as the
-state of all the thermostat and barostat
-variables to :doc:`binary restart files <restart>`. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *e0*, *v0* and *p0* keywords
-can be used to define the values of E0, V0, and P0. Note the
-the values for *e0* and *v0* are extensive, and so must correspond
-to the total energy and volume of the entire system, not energy and
-volume per atom. If any of these quantities are not specified, then the
-instantaneous value in the system at the start of the simulation is used.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by these fixes. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure, as described above.
-If you do this, note that the kinetic energy derived from the compute
-temperature should be consistent with the virial term computed using
-all atoms for the pressure. LAMMPS will warn you if you choose to
-compute temperature on a subset of atoms.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by these
-fixes to add the energy change induced by Nose/Hoover thermostatting
-and barostatting to the system's potential energy as part of
-:doc:`thermodynamic output <thermo_style>`. Either way, this energy is *not*
-included in the definition of internal energy E when calculating the value
-of Delta in the above equation.
-
-These fixes compute a global scalar and a global vector of quantities,
-which can be accessed by various :ref:`output commands <howto_15>`. The scalar value calculated by
-these fixes is "extensive"; the vector values are "intensive".
-
-The scalar is the cumulative energy change due to the fix.
-
-The vector stores three quantities unique to this fix (Delta, Us, and up),
-followed by all the internal Nose/Hoover thermostat and barostat
-variables defined for :doc:`fix npt <fix_nh>`. Delta is the deviation
-of the temperature from the target temperature, given by the above equation.
-Us and up are the shock and particle velocity corresponding to a steady
-shock calculated from the RH conditions. They have units of distance/time.
-
-Restrictions
-""""""""""""
-
-
-This fix style is part of the SHOCK package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-All the usual restrictions for :doc:`fix npt <fix_nh>` apply,
-plus the additional ones mentioned above.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix msst <fix_msst>`, :doc:`fix npt <fix_nh>`, :doc:`fix_modify <fix_modify>`
-
-Default
-"""""""
-
-The keyword defaults are the same as those for :doc:`fix npt <fix_nh>`
-
-
-----------
-
-
-.. _Ravelo:
-
-
-
-**(Ravelo)** Ravelo, Holian, Germann and Lomdahl, Phys Rev B, 70, 014103 (2004).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_npt_asphere.txt b/doc/_sources/fix_npt_asphere.txt
deleted file mode 100644
index a679232af..000000000
--- a/doc/_sources/fix_npt_asphere.txt
+++ /dev/null
@@ -1,188 +0,0 @@
-.. index:: fix npt/asphere
-
-fix npt/asphere command
-=======================
-
-fix npt/asphere/omp command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID npt/asphere keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* npt/asphere = style name of this fix command
-* additional thermostat and barostat related keyword/value pairs from the :doc:`fix npt <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all npt/asphere temp 300.0 300.0 100.0 iso 0.0 0.0 1000.0
- fix 2 all npt/asphere temp 300.0 300.0 100.0 x 5.0 5.0 1000.0
- fix 2 all npt/asphere temp 300.0 300.0 100.0 x 5.0 5.0 1000.0 drag 0.2
- fix 2 water npt/asphere temp 300.0 300.0 100.0 aniso 0.0 0.0 1000.0 dilate partial
-
-Description
-"""""""""""
-
-Perform constant NPT integration to update position, velocity,
-orientation, and angular velocity each timestep for aspherical or
-ellipsoidal particles in the group using a Nose/Hoover temperature
-thermostat and Nose/Hoover pressure barostat. P is pressure; T is
-temperature. This creates a system trajectory consistent with the
-isothermal-isobaric ensemble.
-
-This fix differs from the :doc:`fix npt <fix_nh>` command, which
-assumes point particles and only updates their position and velocity.
-
-The thermostat is applied to both the translational and rotational
-degrees of freedom for the aspherical particles, assuming a compute is
-used which calculates a temperature that includes the rotational
-degrees of freedom (see below). The translational degrees of freedom
-can also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-Additional parameters affecting the thermostat and barostat are
-specified by keywords and values documented with the :doc:`fix npt <fix_nh>` command. See, for example, discussion of the *temp*,
-*iso*, *aniso*, and *dilate* keywords.
-
-The particles in the fix group are the only ones whose velocities and
-positions are updated by the velocity/position update portion of the
-NPT integration.
-
-Regardless of what particles are in the fix group, a global pressure is
-computed for all particles. Similarly, when the size of the simulation
-box is changed, all particles are re-scaled to new positions, unless the
-keyword *dilate* is specified with a value of *partial*, in which case
-only the particles in the fix group are re-scaled. The latter can be
-useful for leaving the coordinates of particles in a solid substrate
-unchanged and controlling the pressure of a surrounding fluid.
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp/asphere" and
-"pressure", as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp/asphere
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp/asphere <compute_temp_asphere>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is "all"
-since pressure is computed for the entire system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat and barostat
-to :doc:`binary restart files <restart>`. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure. If you do this, note
-that the kinetic energy derived from the compute temperature should be
-consistent with the virial term computed using all atoms for the
-pressure. LAMMPS will warn you if you choose to compute temperature
-on a subset of atoms.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting and
-barostatting to the system's potential energy as part of
-:doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix npt <fix_nh>` command.
-
-This fix can ramp its target temperature and pressure over multiple
-runs, using the *start* and *stop* keywords of the :doc:`run <run>`
-command. See the :doc:`run <run>` command for details of how to do
-this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the ASPHERE package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style ellipsoid <atom_style>`
-command.
-
-All particles in the group must be finite-size. They cannot be point
-particles, but they can be aspherical or spherical as defined by their
-shape attribute.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix npt <fix_nh>`, :doc:`fix nve_asphere <fix_nve_asphere>`, :doc:`fix nvt_asphere <fix_nvt_asphere>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_npt_body.txt b/doc/_sources/fix_npt_body.txt
deleted file mode 100644
index b791d2a93..000000000
--- a/doc/_sources/fix_npt_body.txt
+++ /dev/null
@@ -1,181 +0,0 @@
-.. index:: fix npt/body
-
-fix npt/body command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID npt/body keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* npt/body = style name of this fix command
-* additional thermostat and barostat related keyword/value pairs from the :doc:`fix npt <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all npt/body temp 300.0 300.0 100.0 iso 0.0 0.0 1000.0
- fix 2 all npt/body temp 300.0 300.0 100.0 x 5.0 5.0 1000.0
- fix 2 all npt/body temp 300.0 300.0 100.0 x 5.0 5.0 1000.0 drag 0.2
- fix 2 water npt/body temp 300.0 300.0 100.0 aniso 0.0 0.0 1000.0 dilate partial
-
-Description
-"""""""""""
-
-Perform constant NPT integration to update position, velocity,
-orientation, and angular velocity each timestep for body
-particles in the group using a Nose/Hoover temperature
-thermostat and Nose/Hoover pressure barostat. P is pressure; T is
-temperature. This creates a system trajectory consistent with the
-isothermal-isobaric ensemble.
-
-This fix differs from the :doc:`fix npt <fix_nh>` command, which
-assumes point particles and only updates their position and velocity.
-
-The thermostat is applied to both the translational and rotational
-degrees of freedom for the body particles, assuming a compute is
-used which calculates a temperature that includes the rotational
-degrees of freedom (see below). The translational degrees of freedom
-can also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-Additional parameters affecting the thermostat and barostat are
-specified by keywords and values documented with the :doc:`fix npt <fix_nh>` command. See, for example, discussion of the *temp*,
-*iso*, *aniso*, and *dilate* keywords.
-
-The particles in the fix group are the only ones whose velocities and
-positions are updated by the velocity/position update portion of the
-NPT integration.
-
-Regardless of what particles are in the fix group, a global pressure is
-computed for all particles. Similarly, when the size of the simulation
-box is changed, all particles are re-scaled to new positions, unless the
-keyword *dilate* is specified with a value of *partial*, in which case
-only the particles in the fix group are re-scaled. The latter can be
-useful for leaving the coordinates of particles in a solid substrate
-unchanged and controlling the pressure of a surrounding fluid.
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp/body" and
-"pressure", as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp/body
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp/body <compute_temp_body>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is "all"
-since pressure is computed for the entire system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat and barostat
-to :doc:`binary restart files <restart>`. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure. If you do this, note
-that the kinetic energy derived from the compute temperature should be
-consistent with the virial term computed using all atoms for the
-pressure. LAMMPS will warn you if you choose to compute temperature
-on a subset of atoms.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting and
-barostatting to the system's potential energy as part of
-:doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix npt <fix_nh>` command.
-
-This fix can ramp its target temperature and pressure over multiple
-runs, using the *start* and *stop* keywords of the :doc:`run <run>`
-command. See the :doc:`run <run>` command for details of how to do
-this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the BODY package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style body <atom_style>`
-command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix npt <fix_nh>`, :doc:`fix nve_body <fix_nve_body>`, :doc:`fix nvt_body <fix_nvt_body>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_npt_sphere.txt b/doc/_sources/fix_npt_sphere.txt
deleted file mode 100644
index b3268beb5..000000000
--- a/doc/_sources/fix_npt_sphere.txt
+++ /dev/null
@@ -1,183 +0,0 @@
-.. index:: fix npt/sphere
-
-fix npt/sphere command
-======================
-
-fix npt/sphere/omp command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID npt/sphere keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* npt/sphere = style name of this fix command
-* additional thermostat and barostat related keyword/value pairs from the :doc:`fix npt <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all npt/sphere temp 300.0 300.0 100.0 iso 0.0 0.0 1000.0
- fix 2 all npt/sphere temp 300.0 300.0 100.0 x 5.0 5.0 1000.0
- fix 2 all npt/sphere temp 300.0 300.0 100.0 x 5.0 5.0 1000.0 drag 0.2
- fix 2 water npt/sphere temp 300.0 300.0 100.0 aniso 0.0 0.0 1000.0 dilate partial
-
-Description
-"""""""""""
-
-Perform constant NPT integration to update position, velocity, and
-angular velocity each timestep for finite-sizex spherical particles in
-the group using a Nose/Hoover temperature thermostat and Nose/Hoover
-pressure barostat. P is pressure; T is temperature. This creates a
-system trajectory consistent with the isothermal-isobaric ensemble.
-
-This fix differs from the :doc:`fix npt <fix_nh>` command, which
-assumes point particles and only updates their position and velocity.
-
-The thermostat is applied to both the translational and rotational
-degrees of freedom for the spherical particles, assuming a compute is
-used which calculates a temperature that includes the rotational
-degrees of freedom (see below). The translational degrees of freedom
-can also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-Additional parameters affecting the thermostat and barostat are
-specified by keywords and values documented with the :doc:`fix npt <fix_nh>` command. See, for example, discussion of the *temp*,
-*iso*, *aniso*, and *dilate* keywords.
-
-The particles in the fix group are the only ones whose velocities and
-positions are updated by the velocity/position update portion of the
-NPT integration.
-
-Regardless of what particles are in the fix group, a global pressure is
-computed for all particles. Similarly, when the size of the simulation
-box is changed, all particles are re-scaled to new positions, unless the
-keyword *dilate* is specified with a value of *partial*, in which case
-only the particles in the fix group are re-scaled. The latter can be
-useful for leaving the coordinates of particles in a solid substrate
-unchanged and controlling the pressure of a surrounding fluid.
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp/sphere" and
-"pressure", as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp all temp/sphere
- compute fix-ID_press all pressure fix-ID_temp
-
-See the :doc:`compute temp/sphere <compute_temp_sphere>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is "all"
-since pressure is computed for the entire system.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat and barostat
-to :doc:`binary restart files <restart>`. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its thermostatting or barostatting procedure. If you do this, note
-that the kinetic energy derived from the compute temperature should be
-consistent with the virial term computed using all atoms for the
-pressure. LAMMPS will warn you if you choose to compute temperature
-on a subset of atoms.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting and
-barostatting to the system's potential energy as part of
-:doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix npt <fix_nh>` command.
-
-This fix can ramp its target temperature and pressure over multiple
-runs, using the *start* and *stop* keywords of the :doc:`run <run>`
-command. See the :doc:`run <run>` command for details of how to do
-this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix requires that atoms store torque and angular velocity (omega)
-and a radius as defined by the :doc:`atom_style sphere <atom_style>`
-command.
-
-All particles in the group must be finite-size spheres. They cannot
-be point particles.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix npt <fix_nh>`, :doc:`fix nve_sphere <fix_nve_sphere>`, :doc:`fix nvt_sphere <fix_nvt_sphere>`, :doc:`fix npt_asphere <fix_npt_asphere>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve.txt b/doc/_sources/fix_nve.txt
deleted file mode 100644
index 3ea8025d1..000000000
--- a/doc/_sources/fix_nve.txt
+++ /dev/null
@@ -1,93 +0,0 @@
-.. index:: fix nve
-
-fix nve command
-===============
-
-fix nve/cuda command
-====================
-
-fix nve/intel command
-=====================
-
-fix nve/kk command
-==================
-
-fix nve/omp command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve
-
-Description
-"""""""""""
-
-Perform constant NVE integration to update position and velocity for
-atoms in the group each timestep. V is volume; E is energy. This
-creates a system trajectory consistent with the microcanonical
-ensemble.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`fix npt <fix_nh>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_asphere.txt b/doc/_sources/fix_nve_asphere.txt
deleted file mode 100644
index 6c796f8e7..000000000
--- a/doc/_sources/fix_nve_asphere.txt
+++ /dev/null
@@ -1,98 +0,0 @@
-.. index:: fix nve/asphere
-
-fix nve/asphere command
-=======================
-
-fix nve/asphere/intel command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/asphere
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/asphere = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve/asphere
-
-Description
-"""""""""""
-
-Perform constant NVE integration to update position, velocity,
-orientation, and angular velocity for aspherical particles in the
-group each timestep. V is volume; E is energy. This creates a system
-trajectory consistent with the microcanonical ensemble.
-
-This fix differs from the :doc:`fix nve <fix_nve>` command, which
-assumes point particles and only updates their position and velocity.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the ASPHERE package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style ellipsoid <atom_style>`
-command.
-
-All particles in the group must be finite-size. They cannot be point
-particles, but they can be aspherical or spherical as defined by their
-shape attribute.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nve/sphere <fix_nve_sphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_asphere_noforce.txt b/doc/_sources/fix_nve_asphere_noforce.txt
deleted file mode 100644
index a5a5b1e76..000000000
--- a/doc/_sources/fix_nve_asphere_noforce.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-.. index:: fix nve/asphere/noforce
-
-fix nve/asphere/noforce command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/asphere/noforce
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/asphere/noforce = style name of this fix command
-
-Examples
-""""""""
-
-fix 1 all nve/asphere/noforce
-
-Description
-"""""""""""
-
-Perform updates of position and orientation, but not velocity or
-angular momentum for atoms in the group each timestep. In other
-words, the force and torque on the atoms is ignored and their velocity
-and angular momentum are not updated. The atom velocities and
-angularm momenta are used to update their positions and orientation.
-
-This is useful as an implicit time integrator for Fast Lubrication
-Dynamics, since the velocity and angular momentum are updated by the
-`pair_style lubricuteU <pair_lubricateU.txt>`_ command.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the ASPHERE package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style ellipsoid <atom_style>`
-command.
-
-All particles in the group must be finite-size. They cannot be point
-particles, but they can be aspherical or spherical as defined by their
-shape attribute.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve/noforce <fix_nve_noforce>`, :doc:`fix nve/asphere <fix_nve_asphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_body.txt b/doc/_sources/fix_nve_body.txt
deleted file mode 100644
index 1dae9fb8a..000000000
--- a/doc/_sources/fix_nve_body.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-.. index:: fix nve/body
-
-fix nve/body command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/body
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/body = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve/body
-
-Description
-"""""""""""
-
-Perform constant NVE integration to update position, velocity,
-orientation, and angular velocity for body particles in the group each
-timestep. V is volume; E is energy. This creates a system trajectory
-consistent with the microcanonical ensemble. See :ref:`Section_howto 14 <howto_14>` of the manual and the :doc:`body <body>`
-doc page for more details on using body particles.
-
-This fix differs from the :doc:`fix nve <fix_nve>` command, which
-assumes point particles and only updates their position and velocity.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the BODY package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style body <atom_style>`
-command.
-
-All particles in the group must be body particles. They cannot be
-point particles.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nve/sphere <fix_nve_sphere>`, :doc:`fix nve/asphere <fix_nve_asphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_eff.txt b/doc/_sources/fix_nve_eff.txt
deleted file mode 100644
index 3bb827d4d..000000000
--- a/doc/_sources/fix_nve_eff.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-.. index:: fix nve/eff
-
-fix nve/eff command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/eff
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/eff = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve/eff
-
-Description
-"""""""""""
-
-Perform constant NVE integration to update position and velocity for
-nuclei and electrons in the group for the :doc:`electron force field <pair_eff>` model. V is volume; E is energy. This creates a
-system trajectory consistent with the microcanonical ensemble.
-
-The operation of this fix is exactly like that described by the :doc:`fix nve <fix_nve>` command, except that the radius and radial velocity
-of electrons are also updated.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nvt/eff <fix_nh_eff>`, :doc:`fix npt/eff <fix_nh_eff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_limit.txt b/doc/_sources/fix_nve_limit.txt
deleted file mode 100644
index 849e16af2..000000000
--- a/doc/_sources/fix_nve_limit.txt
+++ /dev/null
@@ -1,97 +0,0 @@
-.. index:: fix nve/limit
-
-fix nve/limit command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/limit xmax
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve = style name of this fix command
-* xmax = maximum distance an atom can move in one timestep (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve/limit 0.1
-
-Description
-"""""""""""
-
-Perform constant NVE updates of position and velocity for atoms in the
-group each timestep. A limit is imposed on the maximum distance an
-atom can move in one timestep. This is useful when starting a
-simulation with a configuration containing highly overlapped atoms.
-Normally this would generate huge forces which would blow atoms out of
-the simulation box, causing LAMMPS to stop with an error.
-
-Using this fix can overcome that problem. Forces on atoms must still
-be computable (which typically means 2 atoms must have a separation
-distance > 0.0). But large velocities generated by large forces are
-reset to a value that corresponds to a displacement of length *xmax*
-in a single timestep. *Xmax* is specified in distance units; see the
-:doc:`units <units>` command for details. The value of *xmax* should be
-consistent with the neighbor skin distance and the frequency of
-neighbor list re-building, so that pairwise interactions are not
-missed on successive timesteps as atoms move. See the
-:doc:`neighbor <neighbor>` and :doc:`neigh_modify <neigh_modify>` commands
-for details.
-
-Note that if a velocity reset occurs the integrator will not conserve
-energy. On steps where no velocity resets occur, this integrator is
-exactly like the :doc:`fix nve <fix_nve>` command. Since forces are
-unaltered, pressures computed by thermodynamic output will still be
-very large for overlapped configurations.
-
-.. note::
-
- You should not use :doc:`fix shake <fix_shake>` in conjunction
- with this fix. That is because fix shake applies contraint forces
- based on the predicted postitions of atoms after the next timestep.
- It has no way of knowing the timestep may change due to this fix,
- which will cause the constraint forces to be invalid. A better
- strategy is to turn off fix shake when performing initial dynamics
- that need this fix, then turn fix shake on when doing normal dynamics
- with a fixed-size timestep.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-count of how many updates of atom's velocity/position were limited by
-the maximum distance criterion. This should be roughly the number of
-atoms so affected, except that updates occur at both the beginning and
-end of a timestep in a velocity Verlet timestepping algorithm. This
-is a cumulative quantity for the current run, but is re-initialized to
-zero each time a run is performed. The scalar value calculated by
-this fix is "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nve/noforce <fix_nve_noforce>`,
-:doc:`pair_style soft <pair_soft>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_line.txt b/doc/_sources/fix_nve_line.txt
deleted file mode 100644
index 576cc1a67..000000000
--- a/doc/_sources/fix_nve_line.txt
+++ /dev/null
@@ -1,65 +0,0 @@
-.. index:: fix nve/line
-
-fix nve/line command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/line
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/line = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve/line
-
-Description
-"""""""""""
-
-Perform constant NVE integration to update position, velocity,
-orientation, and angular velocity for line segment particles in the
-group each timestep. V is volume; E is energy. This creates a system
-trajectory consistent with the microcanonical ensemble. See
-:doc:`Section_howto 14 <Section_howto>` of the manual for an overview of
-using line segment particles.
-
-This fix differs from the :doc:`fix nve <fix_nve>` command, which
-assumes point particles and only updates their position and velocity.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the ASPHERE package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that particles be line segments as defined by the
-:doc:`atom_style line <atom_style>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nve/asphere <fix_nve_asphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_noforce.txt b/doc/_sources/fix_nve_noforce.txt
deleted file mode 100644
index 84e3c5455..000000000
--- a/doc/_sources/fix_nve_noforce.txt
+++ /dev/null
@@ -1,63 +0,0 @@
-.. index:: fix nve/noforce
-
-fix nve/noforce command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/noforce = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 wall nve/noforce
-
-Description
-"""""""""""
-
-Perform updates of position, but not velocity for atoms in the group
-each timestep. In other words, the force on the atoms is ignored and
-their velocity is not updated. The atom velocities are used to update
-their positions.
-
-This can be useful for wall atoms, when you set their velocities, and
-want the wall to move (or stay stationary) in a prescribed fashion.
-
-This can also be accomplished via the :doc:`fix setforce <fix_setforce>`
-command, but with fix nve/noforce, the forces on the wall atoms are
-unchanged, and can thus be printed by the :doc:`dump <dump>` command or
-queried with an equal-style :doc:`variable <variable>` that uses the
-fcm() group function to compute the total force on the group of atoms.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_sphere.txt b/doc/_sources/fix_nve_sphere.txt
deleted file mode 100644
index 72d77ef1b..000000000
--- a/doc/_sources/fix_nve_sphere.txt
+++ /dev/null
@@ -1,111 +0,0 @@
-.. index:: fix nve/sphere
-
-fix nve/sphere command
-======================
-
-fix nve/sphere/omp command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/sphere
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/sphere = style name of this fix command
-* zero or more keyword/value pairs may be appended
-* keyword = *update*
-.. parsed-literal::
-
- *update* value = *dipole*
- dipole = update orientation of dipole moment during integration
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve/sphere
- fix 1 all nve/sphere update dipole
-
-Description
-"""""""""""
-
-Perform constant NVE integration to update position, velocity, and
-angular velocity for finite-size spherical particles in the group each
-timestep. V is volume; E is energy. This creates a system trajectory
-consistent with the microcanonical ensemble.
-
-This fix differs from the :doc:`fix nve <fix_nve>` command, which
-assumes point particles and only updates their position and velocity.
-
-If the *update* keyword is used with the *dipole* value, then the
-orientation of the dipole moment of each particle is also updated
-during the time integration. This option should be used for models
-where a dipole moment is assigned to finite-size particles,
-e.g. spheroids via use of the :doc:`atom_style hybrid sphere dipole <atom_style>` command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix requires that atoms store torque and angular velocity (omega)
-and a radius as defined by the :doc:`atom_style sphere <atom_style>`
-command. If the *dipole* keyword is used, then they must also store a
-dipole moment as defined by the :doc:`atom_style dipole <atom_style>`
-command.
-
-All particles in the group must be finite-size spheres. They cannot
-be point particles.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nve/asphere <fix_nve_asphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nve_tri.txt b/doc/_sources/fix_nve_tri.txt
deleted file mode 100644
index 44ad68ae2..000000000
--- a/doc/_sources/fix_nve_tri.txt
+++ /dev/null
@@ -1,65 +0,0 @@
-.. index:: fix nve/tri
-
-fix nve/tri command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nve/tri
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nve/tri = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve/tri
-
-Description
-"""""""""""
-
-Perform constant NVE integration to update position, velocity,
-orientation, and angular momentum for triangular particles in the
-group each timestep. V is volume; E is energy. This creates a system
-trajectory consistent with the microcanonical ensemble. See
-:doc:`Section_howto 14 <Section_howto>` of the manual for an overview of
-using triangular particles.
-
-This fix differs from the :doc:`fix nve <fix_nve>` command, which
-assumes point particles and only updates their position and velocity.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the ASPHERE package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that particles be triangles as defined by the
-:doc:`atom_style tri <atom_style>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nve/asphere <fix_nve_asphere>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nvt_asphere.txt b/doc/_sources/fix_nvt_asphere.txt
deleted file mode 100644
index c340033ed..000000000
--- a/doc/_sources/fix_nvt_asphere.txt
+++ /dev/null
@@ -1,162 +0,0 @@
-.. index:: fix nvt/asphere
-
-fix nvt/asphere command
-=======================
-
-fix nvt/asphere/omp command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nvt/asphere keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nvt/asphere = style name of this fix command
-* additional thermostat related keyword/value pairs from the :doc:`fix nvt <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nvt/asphere temp 300.0 300.0 100.0
- fix 1 all nvt/asphere temp 300.0 300.0 100.0 drag 0.2
-
-Description
-"""""""""""
-
-Perform constant NVT integration to update position, velocity,
-orientation, and angular velocity each timestep for aspherical or
-ellipsoidal particles in the group using a Nose/Hoover temperature
-thermostat. V is volume; T is temperature. This creates a system
-trajectory consistent with the canonical ensemble.
-
-This fix differs from the :doc:`fix nvt <fix_nh>` command, which
-assumes point particles and only updates their position and velocity.
-
-The thermostat is applied to both the translational and rotational
-degrees of freedom for the aspherical particles, assuming a compute is
-used which calculates a temperature that includes the rotational
-degrees of freedom (see below). The translational degrees of freedom
-can also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-Additional parameters affecting the thermostat are specified by
-keywords and values documented with the :doc:`fix nvt <fix_nh>`
-command. See, for example, discussion of the *temp* and *drag*
-keywords.
-
-This fix computes a temperature each timestep. To do this, the fix
-creates its own compute of style "temp/asphere", as if this command
-had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp/asphere
-
-See the :doc:`compute temp/asphere <compute_temp_asphere>` command for
-details. Note that the ID of the new compute is the fix-ID +
-underscore + "temp", and the group for the new compute is the same as
-the fix group.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a :doc:`compute <compute>` you have
-defined to this fix which will be used in its thermostatting
-procedure.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nvt <fix_nh>` command.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the ASPHERE package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style ellipsoid <atom_style>`
-command.
-
-All particles in the group must be finite-size. They cannot be point
-particles, but they can be aspherical or spherical as defined by their
-shape attribute.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`fix nve_asphere <fix_nve_asphere>`, :doc:`fix npt_asphere <fix_npt_asphere>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nvt_body.txt b/doc/_sources/fix_nvt_body.txt
deleted file mode 100644
index 43289ffe2..000000000
--- a/doc/_sources/fix_nvt_body.txt
+++ /dev/null
@@ -1,155 +0,0 @@
-.. index:: fix nvt/body
-
-fix nvt/body command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nvt/body keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nvt/body = style name of this fix command
-* additional thermostat related keyword/value pairs from the :doc:`fix nvt <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nvt/body temp 300.0 300.0 100.0
- fix 1 all nvt/body temp 300.0 300.0 100.0 drag 0.2
-
-Description
-"""""""""""
-
-Perform constant NVT integration to update position, velocity,
-orientation, and angular velocity each timestep for body
-particles in the group using a Nose/Hoover temperature
-thermostat. V is volume; T is temperature. This creates a system
-trajectory consistent with the canonical ensemble.
-
-This fix differs from the :doc:`fix nvt <fix_nh>` command, which
-assumes point particles and only updates their position and velocity.
-
-The thermostat is applied to both the translational and rotational
-degrees of freedom for the body particles, assuming a compute is
-used which calculates a temperature that includes the rotational
-degrees of freedom (see below). The translational degrees of freedom
-can also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-Additional parameters affecting the thermostat are specified by
-keywords and values documented with the :doc:`fix nvt <fix_nh>`
-command. See, for example, discussion of the *temp* and *drag*
-keywords.
-
-This fix computes a temperature each timestep. To do this, the fix
-creates its own compute of style "temp/body", as if this command
-had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp/body
-
-See the :doc:`compute temp/body <compute_temp_body>` command for
-details. Note that the ID of the new compute is the fix-ID +
-underscore + "temp", and the group for the new compute is the same as
-the fix group.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a :doc:`compute <compute>` you have
-defined to this fix which will be used in its thermostatting
-procedure.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nvt <fix_nh>` command.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the BODY package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires that atoms store torque and angular momementum and a
-quaternion as defined by the :doc:`atom_style body <atom_style>`
-command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`fix nve_body <fix_nve_body>`, :doc:`fix npt_body <fix_npt_body>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nvt_sllod.txt b/doc/_sources/fix_nvt_sllod.txt
deleted file mode 100644
index f574b109c..000000000
--- a/doc/_sources/fix_nvt_sllod.txt
+++ /dev/null
@@ -1,200 +0,0 @@
-.. index:: fix nvt/sllod
-
-fix nvt/sllod command
-=====================
-
-fix nvt/sllod/intel command
-===========================
-
-fix nvt/sllod/omp command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nvt/sllod keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nvt/sllod = style name of this fix command
-* additional thermostat related keyword/value pairs from the :doc:`fix nvt <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nvt/sllod temp 300.0 300.0 100.0
- fix 1 all nvt/sllod temp 300.0 300.0 100.0 drag 0.2
-
-Description
-"""""""""""
-
-Perform constant NVT integration to update positions and velocities
-each timestep for atoms in the group using a Nose/Hoover temperature
-thermostat. V is volume; T is temperature. This creates a system
-trajectory consistent with the canonical ensemble.
-
-This thermostat is used for a simulation box that is changing size
-and/or shape, for example in a non-equilibrium MD (NEMD) simulation.
-The size/shape change is induced by use of the :doc:`fix deform <fix_deform>` command, so each point in the simulation box
-can be thought of as having a "streaming" velocity. This
-position-dependent streaming velocity is subtracted from each atom's
-actual velocity to yield a thermal velocity which is used for
-temperature computation and thermostatting. For example, if the box
-is being sheared in x, relative to y, then points at the bottom of the
-box (low y) have a small x velocity, while points at the top of the
-box (hi y) have a large x velocity. These velocities do not
-contribute to the thermal "temperature" of the atom.
-
-.. note::
-
- :doc:`Fix deform <fix_deform>` has an option for remapping either
- atom coordinates or velocities to the changing simulation box. To use
- fix nvt/sllod, fix deform should NOT remap atom positions, because fix
- nvt/sllod adjusts the atom positions and velocities to create a
- velocity profile that matches the changing box size/shape. Fix deform
- SHOULD remap atom velocities when atoms cross periodic boundaries
- since that is consistent with maintaining the velocity profile created
- by fix nvt/sllod. LAMMPS will give an error if this setting is not
- consistent.
-
-The SLLOD equations of motion, originally proposed by Hoover and Ladd
-(see :ref:`(Evans and Morriss) <Evans>`), were proven to be equivalent to
-Newton's equations of motion for shear flow by :ref:`(Evans and Morriss) <Evans>`. They were later shown to generate the desired
-velocity gradient and the correct production of work by stresses for
-all forms of homogeneous flow by :ref:`(Daivis and Todd) <Daivis>`. As
-implemented in LAMMPS, they are coupled to a Nose/Hoover chain
-thermostat in a velocity Verlet formulation, closely following the
-implementation used for the :doc:`fix nvt <fix_nh>` command.
-
-Additional parameters affecting the thermostat are specified by
-keywords and values documented with the :doc:`fix nvt <fix_nh>`
-command. See, for example, discussion of the *temp* and *drag*
-keywords.
-
-This fix computes a temperature each timestep. To do this, the fix
-creates its own compute of style "temp/deform", as if this command had
-been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp/deform
-
-See the :doc:`compute temp/deform <compute_temp_deform>` command for
-details. Note that the ID of the new compute is the fix-ID +
-underscore + "temp", and the group for the new compute is the same as
-the fix group.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a :doc:`compute <compute>` you have
-defined to this fix which will be used in its thermostatting
-procedure.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nvt <fix_nh>` command.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix works best without Nose-Hoover chain thermostats, i.e. using
-tchain = 1. Setting tchain to larger values can result in poor
-equilibration.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix langevin <fix_langevin>`,
-:doc:`fix_modify <fix_modify>`, :doc:`compute temp/deform <compute_temp_deform>`
-
-Default
-"""""""
-
-Same as :doc:`fix nvt <fix_nh>`, except tchain = 1.
-
-
-----------
-
-
-.. _Evans:
-
-
-
-**(Evans and Morriss)** Evans and Morriss, Phys Rev A, 30, 1528 (1984).
-
-.. _Daivis:
-
-
-
-**(Daivis and Todd)** Daivis and Todd, J Chem Phys, 124, 194103 (2006).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nvt_sllod_eff.txt b/doc/_sources/fix_nvt_sllod_eff.txt
deleted file mode 100644
index c22198ba7..000000000
--- a/doc/_sources/fix_nvt_sllod_eff.txt
+++ /dev/null
@@ -1,102 +0,0 @@
-.. index:: fix nvt/sllod/eff
-
-fix nvt/sllod/eff command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nvt/sllod/eff keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nvt/sllod/eff = style name of this fix command
-* additional thermostat related keyword/value pairs from the :doc:`fix nvt/eff <fix_nh_eff>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nvt/sllod/eff temp 300.0 300.0 0.1
- fix 1 all nvt/sllod/eff temp 300.0 300.0 0.1 drag 0.2
-
-Description
-"""""""""""
-
-Perform constant NVT integration to update positions and velocities
-each timestep for nuclei and electrons in the group for the :doc:`electron force field <pair_eff>` model, using a Nose/Hoover temperature
-thermostat. V is volume; T is temperature. This creates a system
-trajectory consistent with the canonical ensemble.
-
-The operation of this fix is exactly like that described by the :doc:`fix nvt/sllod <fix_nvt_sllod>` command, except that the radius and
-radial velocity of electrons are also updated and thermostatted.
-Likewise the temperature calculated by the fix, using the compute it
-creates (as discussed in the :doc:`fix nvt, npt, and nph <fix_nh>` doc
-page), is performed with a :doc:`compute temp/deform/eff <compute_temp_deform_eff>` commmand that includes
-the eFF contribution to the temperature from the electron radial
-velocity.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a :doc:`compute <compute>` you have
-defined to this fix which will be used in its thermostatting
-procedure.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nvt/eff <fix_nh_eff>` command.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix works best without Nose-Hoover chain thermostats, i.e. using
-tchain = 1. Setting tchain to larger values can result in poor
-equilibration.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve/eff <fix_nve_eff>`, :doc:`fix nvt/eff <fix_nh_eff>`, :doc:`fix langevin/eff <fix_langevin_eff>`, :doc:`fix nvt/sllod <fix_nvt_sllod>`, :doc:`fix_modify <fix_modify>`, :doc:`compute temp/deform/eff <compute_temp_deform_eff>`
-
-Default
-"""""""
-
-Same as :doc:`fix nvt/eff <fix_nh_eff>`, except tchain = 1.
-
-
-----------
-
-
-.. _Tuckerman:
-
-
-
-**(Tuckerman)** Tuckerman, Mundy, Balasubramanian, Klein, J Chem Phys,
-106, 5615 (1997).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_nvt_sphere.txt b/doc/_sources/fix_nvt_sphere.txt
deleted file mode 100644
index 5575c04ee..000000000
--- a/doc/_sources/fix_nvt_sphere.txt
+++ /dev/null
@@ -1,158 +0,0 @@
-.. index:: fix nvt/sphere
-
-fix nvt/sphere command
-======================
-
-fix nvt/sphere/omp command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID nvt/sphere keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nvt/sphere = style name of this fix command
-* additional thermostat related keyword/value pairs from the :doc:`fix nvt <fix_nh>` command can be appended
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nvt/sphere temp 300.0 300.0 100.0
- fix 1 all nvt/sphere temp 300.0 300.0 100.0 drag 0.2
-
-Description
-"""""""""""
-
-Perform constant NVT integration to update position, velocity, and
-angular velocity each timestep for finite-size spherical particles in
-the group using a Nose/Hoover temperature thermostat. V is volume; T
-is temperature. This creates a system trajectory consistent with the
-canonical ensemble.
-
-This fix differs from the :doc:`fix nvt <fix_nh>` command, which
-assumes point particles and only updates their position and velocity.
-
-The thermostat is applied to both the translational and rotational
-degrees of freedom for the spherical particles, assuming a compute is
-used which calculates a temperature that includes the rotational
-degrees of freedom (see below). The translational degrees of freedom
-can also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-Additional parameters affecting the thermostat are specified by
-keywords and values documented with the :doc:`fix nvt <fix_nh>`
-command. See, for example, discussion of the *temp* and *drag*
-keywords.
-
-This fix computes a temperature each timestep. To do this, the fix
-creates its own compute of style "temp/sphere", as if this command
-had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp/sphere
-
-See the :doc:`compute temp/sphere <compute_temp_sphere>` command for
-details. Note that the ID of the new compute is the fix-ID +
-underscore + "temp", and the group for the new compute is the same as
-the fix group.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the state of the Nose/Hoover thermostat to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a :doc:`compute <compute>` you have
-defined to this fix which will be used in its thermostatting
-procedure.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change induced by Nose/Hoover thermostatting to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes the same global scalar and global vector of
-quantities as does the :doc:`fix nvt <fix_nh>` command.
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix requires that atoms store torque and angular velocity (omega)
-and a radius as defined by the :doc:`atom_style sphere <atom_style>`
-command.
-
-All particles in the group must be finite-size spheres. They cannot
-be point particles.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nvt <fix_nh>`, :doc:`fix nve_sphere <fix_nve_sphere>`, :doc:`fix nvt_asphere <fix_nvt_asphere>`, :doc:`fix npt_sphere <fix_npt_sphere>`, :doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_oneway.txt b/doc/_sources/fix_oneway.txt
deleted file mode 100644
index 8a3285e6d..000000000
--- a/doc/_sources/fix_oneway.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-.. index:: fix oneway
-
-fix oneway command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID oneway N region-ID direction
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* oneway = style name of this fix command
-* N = apply this fix every this many timesteps
-* region-ID = ID of region where fix is active
-* direction = *x* or *-x* or *y* or *-y* or *z* or *-z* = coordinate and direction of the oneway constraint
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix ions oneway 10 semi -x
- fix all oneway 1 left -z
- fix all oneway 1 right z
-
-Description
-"""""""""""
-
-Enforce that particles in the group and in a given region can only
-move in one direction. This is done by reversing a particle's
-velocity component, if it has the wrong sign in the specified
-dimension. The effect is that the particle moves in one direction
-only.
-
-This can be used, for example, as a simple model of a semi-permeable
-membrane, or as an implementation of Maxwell's demon.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix wall/reflect <fix_wall_reflect>` command
-
-**Default:** none
-
-
-----------
-
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_orient_fcc.txt b/doc/_sources/fix_orient_fcc.txt
deleted file mode 100644
index fa6a63a45..000000000
--- a/doc/_sources/fix_orient_fcc.txt
+++ /dev/null
@@ -1,201 +0,0 @@
-.. index:: fix orient/fcc
-
-fix orient/fcc command
-======================
-
-.. parsed-literal::
-
- fix ID group-ID orient/fcc nstats dir alat dE cutlo cuthi file0 file1
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* nstats = print stats every this many steps, 0 = never
-* dir = 0/1 for which crystal is used as reference
-* alat = fcc cubic lattice constant (distance units)
-* dE = energy added to each atom (energy units)
-* cutlo,cuthi = values between 0.0 and 1.0, cutlo < cuthi
-* file0,file1 = files that specify orientation of each grain
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix gb all orient/fcc 0 1 4.032008 0.001 0.25 0.75 xi.vec chi.vec
-
-Description
-"""""""""""
-
-The fix applies an orientation-dependent force to atoms near a planar
-grain boundary which can be used to induce grain boundary migration
-(in the direction perpendicular to the grain boundary plane). The
-motivation and explanation of this force and its application are
-described in :ref:`(Janssens) <Janssens>`. The force is only applied to
-atoms in the fix group.
-
-The basic idea is that atoms in one grain (on one side of the
-boundary) have a potential energy dE added to them. Atoms in the
-other grain have 0.0 potential energy added. Atoms near the boundary
-(whose neighbor environment is intermediate between the two grain
-orientations) have an energy between 0.0 and dE added. This creates
-an effective driving force to reduce the potential energy of atoms
-near the boundary by pushing them towards one of the grain
-orientations. For dir = 1 and dE > 0, the boundary will thus move so
-that the grain described by file0 grows and the grain described by
-file1 shrinks. Thus this fix is designed for simulations of two-grain
-systems, either with one grain boundary and free surfaces parallel to
-the boundary, or a system with periodic boundary conditions and two
-equal and opposite grain boundaries. In either case, the entire
-system can displace during the simulation, and such motion should be
-accounted for in measuring the grain boundary velocity.
-
-The potential energy added to atom I is given by these formulas
-
-.. image:: Eqs/fix_orient_fcc.jpg
- :align: center
-
-which are fully explained in :ref:`(Janssens) <Janssens>`. The order
-parameter Xi for atom I in equation (1) is a sum over the 12 nearest
-neighbors of atom I. Rj is the vector from atom I to its neighbor J,
-and RIj is a vector in the reference (perfect) crystal. That is, if
-dir = 0/1, then RIj is a vector to an atom coord from file 0/1.
-Equation (2) gives the expected value of the order parameter XiIJ in
-the other grain. Hi and lo cutoffs are defined in equations (3) and
-(4), using the input parameters *cutlo* and *cuthi* as thresholds to
-avoid adding grain boundary energy when the deviation in the order
-parameter from 0 or 1 is small (e.g. due to thermal fluctuations in a
-perfect crystal). The added potential energy Ui for atom I is given
-in equation (6) where it is interpolated between 0 and dE using the
-two threshold Xi values and the Wi value of equation (5).
-
-The derivative of this energy expression gives the force on each atom
-which thus depends on the orientation of its neighbors relative to the
-2 grain orientations. Only atoms near the grain boundary feel a net
-force which tends to drive them to one of the two grain orientations.
-
-In equation (1), the reference vector used for each neighbor is the
-reference vector closest to the actual neighbor position. This means
-it is possible two different neighbors will use the same reference
-vector. In such cases, the atom in question is far from a perfect
-orientation and will likely receive the full dE addition, so the
-effect of duplicate reference vector usage is small.
-
-The *dir* parameter determines which grain wants to grow at the
-expense of the other. A value of 0 means the first grain will shrink;
-a value of 1 means it will grow. This assumes that *dE* is positive.
-The reverse will be true if *dE* is negative.
-
-The *alat* parameter is the cubic lattice constant for the fcc
-material and is only used to compute a cutoff distance of 1.57 * alat
-/ sqrt(2) for finding the 12 nearest neighbors of each atom (which
-should be valid for an fcc crystal). A longer/shorter cutoff can be
-imposed by adjusting *alat*. If a particular atom has less than 12
-neighbors within the cutoff, the order parameter of equation (1) is
-effectively multiplied by 12 divided by the actual number of neighbors
-within the cutoff.
-
-The *dE* parameter is the maximum amount of additional energy added to
-each atom in the grain which wants to shrink.
-
-The *cutlo* and *cuthi* parameters are used to reduce the force added
-to bulk atoms in each grain far away from the boundary. An atom in
-the bulk surrounded by neighbors at the ideal grain orientation would
-compute an order parameter of 0 or 1 and have no force added.
-However, thermal vibrations in the solid will cause the order
-parameters to be greater than 0 or less than 1. The cutoff parameters
-mask this effect, allowing forces to only be added to atoms with
-order-parameters between the cutoff values.
-
-*File0* and *file1* are filenames for the two grains which each
-contain 6 vectors (6 lines with 3 values per line) which specify the
-grain orientations. Each vector is a displacement from a central atom
-(0,0,0) to a nearest neighbor atom in an fcc lattice at the proper
-orientation. The vector lengths should all be identical since an fcc
-lattice has a coordination number of 12. Only 6 are listed due to
-symmetry, so the list must include one from each pair of
-equal-and-opposite neighbors. A pair of orientation files for a
-Sigma=5 tilt boundary are show below.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the potential energy of atom interactions with the grain
-boundary driving force to the system's potential energy as part of
-:doc:`thermodynamic output <thermo_style>`.
-
-This fix calculates a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-potential energy change due to this fix. The scalar value calculated
-by this fix is "extensive".
-
-This fix also calculates a per-atom array which can be accessed by
-various :ref:`output commands <howto_15>`. The array
-stores the order parameter Xi and normalized order parameter (0 to 1)
-for each atom. The per-atom values can be accessed on any timestep.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix should only be used with fcc lattices.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Janssens:
-
-
-
-**(Janssens)** Janssens, Olmsted, Holm, Foiles, Plimpton, Derlet, Nature
-Materials, 5, 124-127 (2006).
-
-
-----------
-
-
-For illustration purposes, here are example files that specify a
-Sigma=5 <100> tilt boundary. This is for a lattice constant of 3.5706
-Angs.
-
-file0:
-
-.. parsed-literal::
-
- 0.798410432046075 1.785300000000000 1.596820864092150
- -0.798410432046075 1.785300000000000 -1.596820864092150
- 2.395231296138225 0.000000000000000 0.798410432046075
- 0.798410432046075 0.000000000000000 -2.395231296138225
- 1.596820864092150 1.785300000000000 -0.798410432046075
- 1.596820864092150 -1.785300000000000 -0.798410432046075
-
-file1:
-
-.. parsed-literal::
-
- -0.798410432046075 1.785300000000000 1.596820864092150
- 0.798410432046075 1.785300000000000 -1.596820864092150
- 0.798410432046075 0.000000000000000 2.395231296138225
- 2.395231296138225 0.000000000000000 -0.798410432046075
- 1.596820864092150 1.785300000000000 0.798410432046075
- 1.596820864092150 -1.785300000000000 0.798410432046075
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_phonon.txt b/doc/_sources/fix_phonon.txt
deleted file mode 100644
index 327dbaa48..000000000
--- a/doc/_sources/fix_phonon.txt
+++ /dev/null
@@ -1,237 +0,0 @@
-.. index:: fix phonon
-
-fix phonon command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID phonon N Noutput Nwait map_file prefix keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* phonon = style name of this fix command
-* N = measure the Green's function every this many timesteps
-* Noutput = output the dynamical matrix every this many measurements
-* Nwait = wait this many timesteps before measuring
-* map_file = *file* or *GAMMA*
-.. parsed-literal::
-
- *file* is the file that contains the mapping info between atom ID and the lattice indices.
-
-.. parsed-literal::
-
- *GAMMA* flags to treate the whole simulation box as a unit cell, so that the mapping
- info can be generated internally. In this case, dynamical matrix at only the gamma-point
- will/can be evaluated.
-
-* prefix = prefix for output files
-* one or none keyword/value pairs may be appended
-* keyword = *sysdim* or *nasr*
-.. parsed-literal::
-
- *sysdim* value = d
- d = dimension of the system, usually the same as the MD model dimension
- *nasr* value = n
- n = number of iterations to enforce the acoustic sum rule
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all phonon 20 5000 200000 map.in LJ1D sysdim 1
- fix 1 all phonon 20 5000 200000 map.in EAM3D
- fix 1 all phonon 10 5000 500000 GAMMA EAM0D nasr 100
-
-Description
-"""""""""""
-
-Calculate the dynamical matrix from molecular dynamics simulations
-based on fluctuation-dissipation theory for a group of atoms.
-
-Consider a crystal with :math:`N` unit cells in three dimensions labelled :math:`l = (l_1, l_2, l_3)` where :math:`l_i`
-are integers. Each unit cell is defined by three linearly independent
-vectors :math:`\mathbf{a}_1`, :math:`\mathbf{a}_2`, :math:`\mathbf{a}_3` forming a
-parallelipiped, containing :math:`K` basis atoms labeled :math:`k`.
-
-Based on fluctuation-dissipation theory, the force constant
-coefficients of the system in reciprocal space are given by
-(:ref:`Campana <Campana>` , :ref:`Kong <Kong>`)
-
-
-.. math::
-
- \begin{equation}\mathbf{\Phi}_{k\alpha,k^\prime \beta}(\mathbf{q}) = k_B T \mathbf{G}^{-1}_{k\alpha,k^\prime \beta}(\mathbf{q})\end{equation}
-
-where :math:`\mathbf{G}` is the Green's functions coefficients given by
-
-
-.. math::
-
- \begin{equation}\mathbf{G}_{k\alpha,k^\prime \beta}(\mathbf{q}) = \left< \mathbf{u}_{k\alpha}(\mathbf{q}) \bullet \mathbf{u}_{k^\prime \beta}^*(\mathbf{q}) \right>\end{equation}
-
-where :math:`\left< \ldots \right>` denotes the ensemble average, and
-
-
-.. math::
-
- \begin{equation}\mathbf{u}_{k\alpha}(\mathbf{q}) = \sum_l \mathbf{u}_{l k \alpha} \exp{(i\mathbf{qr}_l)}\end{equation}
-
-is the :math:`\alpha` component of the atomic displacement for the :math:`k` th atom
-in the unit cell in reciprocal space at :math:`\mathbf{q}`. In practice, the Green's
-functions coefficients can also be measured according to the following
-formula,
-
-
-.. math::
-
- \begin{equation}\mathbf{G}_{k\alpha,k^\prime \beta}(\mathbf{q}) =
- \left< \mathbf{R}_{k \alpha}(\mathbf{q}) \bullet \mathbf{R}^*_{k^\prime \beta}(\mathbf{q}) \right>
- - \left<\mathbf{R}\right>_{k \alpha}(\mathbf{q}) \bullet \left<\mathbf{R}\right>^*_{k^\prime \beta}(\mathbf{q})\end{equation}
-
-where :math:`\mathbf{R}` is the instantaneous positions of atoms, and :math:`\left<\mathbf{R}\right>` is the
-averaged atomic positions. It gives essentially the same results as
-the displacement method and is easier to implement in an MD code.
-
-Once the force constant matrix is known, the dynamical matrix :math:`\mathbf{D}` can
-then be obtained by
-
-
-.. math::
-
- \begin{equation}\mathbf{D}_{k\alpha, k^\prime\beta}(\mathbf{q}) =
- (m_k m_{k^\prime})^{-\frac{1}{2}} \mathbf{\Phi}_{k \alpha, k^\prime \beta}(\mathbf{q})\end{equation}
-
-whose eigenvalues are exactly the phonon frequencies at :math:`\mathbf{q}`.
-
-This fix uses positions of atoms in the specified group and calculates
-two-point correlations. To achieve this. the positions of the atoms
-are examined every *Nevery* steps and are Fourier-transformed into
-reciprocal space, where the averaging process and correlation
-computation is then done. After every *Noutput* measurements, the
-matrix :math:`\mathbf{G}(\mathbf{q})` is calculated and inverted to obtain the elastic
-stiffness coefficients. The dynamical matrices are then constructed
-and written to *prefix*.bin.timestep files in binary format and to the
-file *prefix*.log for each wavevector :math:`\mathbf{q}`.
-
-A detailed description of this method can be found in
-(:ref:`Kong2011 <Kong2011>`).
-
-The *sysdim* keyword is optional. If specified with a value smaller
-than the dimensionality of the LAMMPS simulation, its value is used
-for the dynamical matrix calculation. For example, using LAMMPS ot
-model a 2D or 3D system, the phonon dispersion of a 1D atomic chain
-can be computed using *sysdim* = 1.
-
-The *nasr* keyword is optional. An iterative procedure is employed to
-enforce the acoustic sum rule on :math:`\Phi` at :math:`\Gamma`, and the number
-provided by keyword *nasr* gives the total number of iterations. For a
-system whose unit cell has only one atom, *nasr* = 1 is sufficient;
-for other systems, *nasr* = 10 is typically sufficient.
-
-The *map_file* contains the mapping information between the lattice
-indices and the atom IDs, which tells the code which atom sits at
-which lattice point; the lattice indices start from 0. An auxiliary
-code, `latgen <http://code.google.com/p/latgen>`_, can be employed to
-generate the compatible map file for various crystals.
-
-In case one simulates an aperiodic system, where the whole simulation box
-is treated as a unit cell, one can set *map_file* as *GAMMA*, so that the mapping
-info will be generated internally and a file is not needed. In this case, the
-dynamical matrix at only the gamma-point will/can be evaluated. Please keep in
-mind that fix-phonon is designed for cyrstals, it will be inefficient and
-even degrade the performance of lammps in case the unit cell is too large.
-
-The calculated dynamical matrix elements are written out in
-:doc:`energy/distance^2/mass <units>` units. The coordinates for *q*
-points in the log file is in the units of the basis vectors of the
-corresponding reciprocal lattice.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to change the temperature compute from thermo_temp
-to the one that reflects the true temperature of atoms in the group.
-
-No global scalar or vector or per-atom quantities are stored by this
-fix for access by various :ref:`output commands <4_15>`.
-
-Instead, this fix outputs its initialization information (including
-mapping information) and the calculated dynamical matrices to the file
-*prefix*.log, with the specified *prefix*. The dynamical matrices are
-also written to files *prefix*.bin.timestep in binary format. These
-can be read by the post-processing tool in tools/phonon to compute the
-phonon density of states and/or phonon dispersion curves.
-
-No parameter of this fix can be used with the *start/stop* keywords
-of the :doc:`run <run>` command.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix assumes a crystalline system with periodical lattice. The
-temperature of the system should not exceed the melting temperature to
-keep the system in its solid state.
-
-This fix is part of the USER-PHONON package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix requires LAMMPS be built with an FFT library. See the
-:ref:`Making LAMMPS <start_2>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute msd <compute_msd>`
-
-Default
-"""""""
-
-The option defaults are sysdim = the same dimemsion as specified by
-the `dimension <dimension>`_ command, and nasr = 20.
-
-
-----------
-
-
-.. _Campana:
-
-
-
-**(Campana)** C. Campana and
-M. H. Muser, *Practical Green's function approach to the
-simulation of elastic semi-infinite solids*, `Phys. Rev. B [74], 075420 (2006) <http://dx.doi.org/10.1103/PhysRevB.74.075420>`_
-
-.. _Kong:
-
-
-
-**(Kong)** L.T. Kong, G. Bartels, C. Campana,
-C. Denniston, and Martin H. Muser, *Implementation of Green's
-function molecular dynamics: An extension to LAMMPS*, `Computer Physics Communications [180](6):1004-1010 (2009). <http://dx.doi.org/10.1016/j.cpc.2008.12.035>`_
-
-L.T. Kong, C. Denniston, and Martin H. Muser,
-*An improved version of the Green's function molecular dynamics
-method*, `Computer Physics Communications [182](2):540-541 (2011). <http://dx.doi.org/10.1016/j.cpc.2010.10.006>`_
-
-.. _Kong2011:
-
-
-
-**(Kong2011)** L.T. Kong, *Phonon dispersion measured directly from
-molecular dynamics simulations*, `Computer Physics Communications [182](10):2201-2207, (2011). <http://dx.doi.org/10.1016/j.cpc.2011.04.019>`_
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_pimd.txt b/doc/_sources/fix_pimd.txt
deleted file mode 100644
index 4b3bc718b..000000000
--- a/doc/_sources/fix_pimd.txt
+++ /dev/null
@@ -1,222 +0,0 @@
-.. index:: fix pimd
-
-fix pimd command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID pimd keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* pimd = style name of this fix command
-* zero or more keyword/value pairs may be appended
-* keyword = *method* or *fmass* or *sp* or *temp* or *nhc*
-.. parsed-literal::
-
- *method* value = *pimd* or *nmpimd* or *cmd*
- *fmass* value = scaling factor on mass
- *sp* value = scaling factor on Planck constant
- *temp* value = temperature (temperarate units)
- *nhc* value = Nc = number of chains in Nose-Hoover thermostat
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all pimd method nmpimd fmass 1.0 sp 2.0 temp 300.0 nhc 4
-
-Description
-"""""""""""
-
-This command performs quantum molecular dynamics simulations based on
-the Feynman path integral to include effects of tunneling and
-zero-point motion. In this formalism, the isomorphism of a quantum
-partition function for the original system to a classical partition
-function for a ring-polymer system is exploited, to efficiently sample
-configurations from the canonical ensemble :ref:`(Feynman) <Feynman>`.
-The classical partition function and its components are given
-by the following equations:
-
-.. image:: Eqs/fix_pimd.jpg
- :align: center
-
-The interested user is referred to any of the numerous references on
-this methodology, but briefly, each quantum particle in a path
-integral simulation is represented by a ring-polymer of P quasi-beads,
-labeled from 1 to P. During the simulation, each quasi-bead interacts
-with beads on the other ring-polymers with the same imaginary time
-index (the second term in the effective potential above). The
-quasi-beads also interact with the two neighboring quasi-beads through
-the spring potential in imaginary-time space (first term in effective
-potential). To sample the canonical ensemble, a Nose-Hoover massive
-chain thermostat is applied :ref:`(Tuckerman) <Tuckerman>`. With the
-massive chain algorithm, a chain of NH thermostats is coupled to each
-degree of freedom for each quasi-bead. The keyword *temp* sets the
-target temperature for the system and the keyword *nhc* sets the
-number *Nc* of thermostats in each chain. For example, for a
-simulation of N particles with P beads in each ring-polymer, the total
-number of NH thermostats would be 3 x N x P x Nc.
-
-.. note::
-
- This fix implements a complete velocity-verlet integrator
- combined with NH massive chain thermostat, so no other time
- integration fix should be used.
-
-The *method* keyword determines what style of PIMD is performed. A
-value of *pimd* is standard PIMD. A value of *nmpimd* is for
-normal-mode PIMD. A value of *cmd* is for centroid molecular dynamics
-(CMD). The difference between the styles is as follows.
-
-In standard PIMD, the value used for a bead's fictitious mass is
-arbitrary. A common choice is to use Mi = m/P, which results in the
-mass of the entire ring-polymer being equal to the real quantum
-particle. But it can be difficult to efficiently integrate the
-equations of motion for the stiff harmonic interactions in the ring
-polymers.
-
-A useful way to resolve this issue is to integrate the equations of
-motion in a normal mode representation, using Normal Mode
-Path-Integral Molecular Dynamics (NMPIMD) :ref:`(Cao1) <Cao1>`. In NMPIMD,
-the NH chains are attached to each normal mode of the ring-polymer and
-the fictitious mass of each mode is chosen as Mk = the eigenvalue of
-the Kth normal mode for k > 0. The k = 0 mode, referred to as the
-zero-frequency mode or centroid, corresponds to overall translation of
-the ring-polymer and is assigned the mass of the real particle.
-
-Motion of the centroid can be effectively uncoupled from the other
-normal modes by scaling the fictitious masses to achieve a partial
-adiabatic separation. This is called a Centroid Molecular Dynamics
-(CMD) approximation :ref:`(Cao2) <Cao2>`. The time-evolution (and resulting
-dynamics) of the quantum particles can be used to obtain centroid time
-correlation functions, which can be further used to obtain the true
-quantum correlation function for the original system. The CMD method
-also uses normal modes to evolve the system, except only the k > 0
-modes are thermostatted, not the centroid degrees of freedom.
-
-The keyword *fmass* sets a further scaling factor for the fictitious
-masses of beads, which can be used for the Partial Adiabatic CMD
-:ref:`(Hone) <Hone>`, or to be set as P, which results in the fictitious
-masses to be equal to the real particle masses.
-
-The keyword *sp* is a scaling factor on Planck's constant, which can
-be useful for debugging or other purposes. The default value of 1.0
-is appropriate for most situations.
-
-The PIMD algorithm in LAMMPS is implemented as a hyper-parallel scheme
-as described in :ref:`(Calhoun) <Calhoun>`. In LAMMPS this is done by using
-:ref:`multi-replica feature <howto_5>` in LAMMPS, where
-each quasi-particle system is stored and simulated on a separate
-partition of processors. The following diagram illustrates this
-approach. The original system with 2 ring polymers is shown in red.
-Since each ring has 4 quasi-beads (imaginary time slices), there are 4
-replicas of the system, each running on one of the 4 partitions of
-processors. Each replica (shown in green) owns one quasi-bead in each
-ring.
-
-.. image:: JPG/pimd.jpg
- :align: center
-
-To run a PIMD simulation with M quasi-beads in each ring polymer using
-N MPI tasks for each partition's domain-decomposition, you would use P
-= MxN processors (cores) and run the simulation as follows:
-
-.. parsed-literal::
-
- mpirun -np P lmp_mpi -partition MxN -in script
-
-Note that in the LAMMPS input script for a multi-partition simulation,
-it is often very useful to define a :doc:`uloop-style variable <variable>` such as
-
-.. parsed-literal::
-
- variable ibead uloop M pad
-
-where M is the number of quasi-beads (partitions) used in the
-calculation. The uloop variable can then be used to manage I/O
-related tasks for each of the partitions, e.g.
-
-.. parsed-literal::
-
- dump dcd all dcd 10 system_${ibead}.dcd
- restart 1000 system_${ibead}.restart1 system_${ibead}.restart2
- read_restart system_${ibead}.restart2
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-A PIMD simulation can be initialized with a single data file read via
-the :doc:`read_data <read_data>` command. However, this means all
-quasi-beads in a ring polymer will have identical positions and
-velocities, resulting in identical trajectories for all quasi-beads.
-To avoid this, users can simply initialize velocities with different
-random number seeds assigned to each partition, as defined by the
-uloop variable, e.g.
-
-.. parsed-literal::
-
- velocity all create 300.0 1234${ibead} rot yes dist gaussian
-
-Default
-"""""""
-
-The keyword defaults are method = pimd, fmass = 1.0, sp = 1.0, temp = 300.0,
-and nhc = 2.
-
-
-----------
-
-
-.. _Feynman:
-
-
-
-**(Feynman)** R. Feynman and A. Hibbs, Chapter 7, Quantum Mechanics and
-Path Integrals, McGraw-Hill, New York (1965).
-
-.. _Tuckerman:
-
-
-
-**(Tuckerman)** M. Tuckerman and B. Berne, J Chem Phys, 99, 2796 (1993).
-
-.. _Cao1:
-
-
-
-**(Cao1)** J. Cao and B. Berne, J Chem Phys, 99, 2902 (1993).
-
-.. _Cao2:
-
-
-
-**(Cao2)** J. Cao and G. Voth, J Chem Phys, 100, 5093 (1994).
-
-.. _Hone:
-
-
-
-**(Hone)** T. Hone, P. Rossky, G. Voth, J Chem Phys, 124,
-154103 (2006).
-
-.. _Calhoun:
-
-
-
-**(Calhoun)** A. Calhoun, M. Pavese, G. Voth, Chem Phys Letters, 262,
-415 (1996).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_planeforce.txt b/doc/_sources/fix_planeforce.txt
deleted file mode 100644
index 71672b51b..000000000
--- a/doc/_sources/fix_planeforce.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-.. index:: fix planeforce
-
-fix planeforce command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID planeforce x y z
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* planeforce = style name of this fix command
-* x y z = 3-vector that is normal to the plane
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix hold boundary planeforce 1.0 0.0 0.0
-
-Description
-"""""""""""
-
-Adjust the forces on each atom in the group so that only the
-components of force in the plane specified by the normal vector
-(x,y,z) remain. This is done by subtracting out the component of
-force perpendicular to the plane.
-
-If the initial velocity of the atom is 0.0 (or in the plane), then it
-should continue to move in the plane thereafter.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix lineforce <fix_lineforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_poems.txt b/doc/_sources/fix_poems.txt
deleted file mode 100644
index 13e5635ec..000000000
--- a/doc/_sources/fix_poems.txt
+++ /dev/null
@@ -1,149 +0,0 @@
-fix poems
-=========
-
-Syntax:
-
-.. parsed-literal::
-
- fix ID group-ID poems keyword values
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* poems = style name of this fix command
-* keyword = *group* or *file* or *molecule*
-.. parsed-literal::
-
- *group* values = list of group IDs
- *molecule* values = none
- *file* values = filename
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 fluid poems group clump1 clump2 clump3
- fix 3 fluid poems file cluster.list
-
-Description
-"""""""""""
-
-Treats one or more sets of atoms as coupled rigid bodies. This means
-that each timestep the total force and torque on each rigid body is
-computed and the coordinates and velocities of the atoms are updated
-so that the collection of bodies move as a coupled set. This can be
-useful for treating a large biomolecule as a collection of connected,
-coarse-grained particles.
-
-The coupling, associated motion constraints, and time integration is
-performed by the software package `Parallelizable Open source Efficient Multibody Software (POEMS) <poems_>`_ which computes the
-constrained rigid-body motion of articulated (jointed) multibody
-systems :ref:`(Anderson) <Anderson>`. POEMS was written and is distributed
-by Prof Kurt Anderson, his graduate student Rudranarayan Mukherjee,
-and other members of his group at Rensselaer Polytechnic Institute
-(RPI). Rudranarayan developed the LAMMPS/POEMS interface. For
-copyright information on POEMS and other details, please refer to the
-documents in the poems directory distributed with LAMMPS.
-
-.. _poems: http://www.rpi.edu/~anderk5/lab
-
-
-
-This fix updates the positions and velocities of the rigid atoms with
-a constant-energy time integration, so you should not update the same
-atoms via other fixes (e.g. nve, nvt, npt, temp/rescale, langevin).
-
-Each body must have a non-degenerate inertia tensor, which means if
-must contain at least 3 non-collinear atoms. Which atoms are in which
-bodies can be defined via several options.
-
-For option *group*, each of the listed groups is treated as a rigid
-body. Note that only atoms that are also in the fix group are
-included in each rigid body.
-
-For option *molecule*, each set of atoms in the group with a different
-molecule ID is treated as a rigid body.
-
-For option *file*, sets of atoms are read from the specified file and
-each set is treated as a rigid body. Each line of the file specifies
-a rigid body in the following format:
-
-ID type atom1-ID atom2-ID atom3-ID ...
-
-ID as an integer from 1 to M (the number of rigid bodies). Type is
-any integer; it is not used by the fix poems command. The remaining
-arguments are IDs of atoms in the rigid body, each typically from 1 to
-N (the number of atoms in the system). Only atoms that are also in
-the fix group are included in each rigid body. Blank lines and lines
-that begin with '#' are skipped.
-
-A connection between a pair of rigid bodies is inferred if one atom is
-common to both bodies. The POEMS solver treats that atom as a
-spherical joint with 3 degrees of freedom. Currently, a collection of
-bodies can only be connected by joints as a linear chain. The entire
-collection of rigid bodies can represent one or more chains. Other
-connection topologies (tree, ring) are not allowed, but will be added
-later. Note that if no joints exist, it is more efficient to use the
-:doc:`fix rigid <fix_rigid>` command to simulate the system.
-
-When the poems fix is defined, it will print out statistics on the
-total # of clusters, bodies, joints, atoms involved. A cluster in
-this context means a set of rigid bodies connected by joints.
-
-For computational efficiency, you should turn off pairwise and bond
-interactions within each rigid body, as they no longer contribute to
-the motion. The "neigh_modify exclude" and "delete_bonds" commands
-can be used to do this if each rigid body is a group.
-
-For computational efficiency, you should only define one fix poems
-which includes all the desired rigid bodies. LAMMPS will allow
-multiple poems fixes to be defined, but it is more expensive.
-
-The degrees-of-freedom removed by coupled rigid bodies are accounted
-for in temperature and pressure computations. Similarly, the rigid
-body contribution to the pressure virial is also accounted for. The
-latter is only correct if forces within the bodies have been turned
-off, and there is only a single fix poems defined.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the POEMS package. It is only enabled if LAMMPS
-was built with that package, which also requires the POEMS library be
-built and linked with LAMMPS. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix rigid <fix_rigid>`, :doc:`delete_bonds <delete_bonds>`,
-:doc:`neigh_modify <neigh_modify>` exclude
-
-**Default:** none
-
-
-----------
-
-
-.. _Anderson:
-
-
-
-**(Anderson)** Anderson, Mukherjee, Critchley, Ziegler, and Lipton
-"POEMS: Parallelizable Open-source Efficient Multibody Software ",
-Engineering With Computers (2006). (`link to paper <http://dx.doi.org/10.1007/s00366-006-0026-x>`_)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_pour.txt b/doc/_sources/fix_pour.txt
deleted file mode 100644
index 15b70850c..000000000
--- a/doc/_sources/fix_pour.txt
+++ /dev/null
@@ -1,281 +0,0 @@
-.. index:: fix pour
-
-fix pour command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID pour N type seed keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* pour = style name of this fix command
-* N = # of particles to insert
-* type = atom type to assign to inserted particles (offset for molecule insertion)
-* seed = random # seed (positive integer)
-* one or more keyword/value pairs may be appended to args
-* keyword = *region* or *diam* or *vol* or *rate* or *dens* or *vel* or *mol* or *rigid* or *shake* or *ignore*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region to use as insertion volume
- *diam* values = dstyle args
- dstyle = *one* or *range* or *poly*
- *one* args = D
- D = single diameter for inserted particles (distance units)
- *range* args = Dlo Dhi
- Dlo,Dhi = range of diameters for inserted particles (distance units)
- *poly* args = Npoly D1 P1 D2 P2 ...
- Npoly = # of (D,P) pairs
- D1,D2,... = diameter for subset of inserted particles (distance units)
- P1,P2,... = percentage of inserted particles with this diameter (0-1)
- *id* values = idflag
- idflag = *max* or *next* = how to choose IDs for inserted particles and molecules
- *vol* values = fraction Nattempt
- fraction = desired volume fraction for filling insertion volume
- Nattempt = max # of insertion attempts per particle
- *rate* value = V
- V = z velocity (3d) or y velocity (2d) at which
- insertion volume moves (velocity units)
- *dens* values = Rholo Rhohi
- Rholo,Rhohi = range of densities for inserted particles (mass/volume units)
- *vel* values (3d) = vxlo vxhi vylo vyhi vz
- *vel* values (2d) = vxlo vxhi vy
- vxlo,vxhi = range of x velocities for inserted particles (velocity units)
- vylo,vyhi = range of y velocities for inserted particles (velocity units)
- vz = z velocity (3d) assigned to inserted particles (velocity units)
- vy = y velocity (2d) assigned to inserted particles (velocity units)
- *mol* value = template-ID
- template-ID = ID of molecule template specified in a separate :doc:`molecule <molecule>` command
- *molfrac* values = f1 f2 ... fN
- f1 to fN = relative probability of creating each of N molecules in template-ID
- *rigid* value = fix-ID
- fix-ID = ID of :doc:`fix rigid/small <fix_rigid>` command
- *shake* value = fix-ID
- fix-ID = ID of :doc:`fix shake <fix_shake>` command
- *ignore* value = none
- skip any line or triangle particles when detecting possible
- overlaps with inserted particles
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 all pour 1000 2 29494 region myblock
- fix 2 all pour 10000 1 19985583 region disk vol 0.33 100 rate 1.0 diam range 0.9 1.1
- fix 2 all pour 10000 1 19985583 region disk diam poly 2 0.7 0.4 1.5 0.6
- fix ins all pour 500 1 4767548 vol 0.8 10 region slab mol object rigid myRigid
-
-Description
-"""""""""""
-
-Insert finite-size particles or molecules into the simulation box
-every few timesteps within a specified region until N particles or
-molecules have been inserted. This is typically used to model the
-pouring of granular particles into a container under the influence of
-gravity. For the remainder of this doc page, a single inserted atom
-or molecule is referred to as a "particle".
-
-If inserted particles are individual atoms, they are assigned the
-specified atom type. If they are molecules, the type of each atom in
-the inserted molecule is specified in the file read by the
-:doc:`molecule <molecule>` command, and those values are added to the
-specified atom type. E.g. if the file specifies atom types 1,2,3, and
-those are the atom types you want for inserted molecules, then specify
-*type* = 0. If you specify *type* = 2, the in the inserted molecule
-will have atom types 3,4,5.
-
-All atoms in the inserted particle are assigned to two groups: the
-default group "all" and the group specified in the fix pour command
-(which can also be "all").
-
-This command must use the *region* keyword to define an insertion
-volume. The specified region must have been previously defined with a
-:doc:`region <region>` command. It must be of type *block* or a z-axis
-*cylinder* and must be defined with side = *in*. The cylinder style
-of region can only be used with 3d simulations.
-
-Individual atoms are inserted, unless the *mol* keyword is used. It
-specifies a *template-ID* previously defined using the
-:doc:`molecule <molecule>` command, which reads a file that defines the
-molecule. The coordinates, atom types, center-of-mass, moments of
-inertia, etc, as well as any bond/angle/etc and special neighbor
-information for the molecule can be specified in the molecule file.
-See the :doc:`molecule <molecule>` command for details. The only
-settings required to be in this file are the coordinates and types of
-atoms in the molecule.
-
-If the molecule template contains more than one molecule, the relative
-probability of depositing each molecule can be specified by the
-*molfrac* keyword. N relative probablities, each from 0.0 to 1.0, are
-specified, where N is the number of molecules in the template. Each
-time a molecule is inserted, a random number is used to sample from
-the list of relative probabilities. The N values must sum to 1.0.
-
-If you wish to insert molecules via the *mol* keyword, that will be
-treated as rigid bodies, use the *rigid* keyword, specifying as its
-value the ID of a separate :doc:`fix rigid/small <fix_rigid_small>`
-command which also appears in your input script.
-
-If you wish to insert molecules via the *mol* keyword, that will have
-their bonds or angles constrained via SHAKE, use the *shake* keyword,
-specifying as its value the ID of a separate :doc:`fix shake <fix_shake>` command which also appears in your input script.
-
-Each timestep particles are inserted, they are placed randomly inside
-the insertion volume so as to mimic a stream of poured particles. If
-they are molecules they are also oriented randomly. Each atom in the
-particle is tested for overlaps with existing particles, including
-effects due to periodic boundary conditions if applicable. If an
-overlap is detected, another random insertion attempt is made; see the
-*vol* keyword discussion below. The larger the volume of the
-insertion region, the more particles that can be inserted at any one
-timestep. Particles are inserted again after enough time has elapsed
-that the previously inserted particles fall out of the insertion
-volume under the influence of gravity. Insertions continue every so
-many timesteps until the desired # of particles has been inserted.
-
-.. note::
-
- If you are monitoring the temperature of a system where the
- particle count is changing due to adding particles, you typically
- should use the :doc:`compute_modify dynamic yes <compute_modify>`
- command for the temperature compute you are using.
-
-
-----------
-
-
-All other keywords are optional with defaults as shown below.
-
-The *diam* option is only used when inserting atoms and specifes the
-diameters of inserted particles. There are 3 styles: *one*, *range*,
-or *poly*. For *one*, all particles will have diameter *D*. For
-*range*, the diameter of each particle will be chosen randomly and
-uniformly between the specified *Dlo* and *Dhi* bounds. For *poly*, a
-series of *Npoly* diameters is specified. For each diameter a
-percentage value from 0.0 to 1.0 is also specified. The *Npoly*
-percentages must sum to 1.0. For the example shown above with "diam 2
-0.7 0.4 1.5 0.6", all inserted particles will have a diameter of 0.7
-or 1.5. 40% of the particles will be small; 60% will be large.
-
-Note that for molecule insertion, the diameters of individual atoms in
-the molecule can be specified in the file read by the
-:doc:`molecule <molecule>` command. If not specified, the diameter of
-each atom in the molecule has a default diameter of 1.0.
-
-The *id* option has two settings which are used to determine the atom
-or molecule IDs to assign to inserted particles/molecules. In both
-cases a check is done of the current system to find the maximum
-current atom and molecule ID of any existing particle. Newly inserted
-particles and molecules are assigned IDs that increment those max
-values. For the *max* setting, which is the default, this check is
-done at every insertion step, which allows for particles to leave the
-system, and their IDs to potentially be re-used. For the *next*
-setting this check is done only once when the fix is specified, which
-can be more efficient if you are sure particles will not be added in
-some other way.
-
-The *vol* option specifies what volume fraction of the insertion
-volume will be filled with particles. For particles with a size
-specified by the *diam range* keyword, they are assumed to all be of
-maximum diamter *Dhi* for purposes of computing their contribution to
-the volume fraction.
-
-The higher the volume fraction value, the more particles are inserted
-each timestep. Since inserted particles cannot overlap, the maximum
-volume fraction should be no higher than about 0.6. Each timestep
-particles are inserted, LAMMPS will make up to a total of M tries to
-insert the new particles without overlaps, where M = # of inserted
-particles * Nattempt. If LAMMPS is unsuccessful at completing all
-insertions, it prints a warning.
-
-The *dens* and *vel* options enable inserted particles to have a range
-of densities or xy velocities. The specific values for a particular
-inserted particle will be chosen randomly and uniformly between the
-specified bounds. Internally, the density value for a particle is
-converted to a mass, based on the radius (volume) of the particle.
-The *vz* or *vy* value for option *vel* assigns a z-velocity (3d) or
-y-velocity (2d) to each inserted particle.
-
-The *rate* option moves the insertion volume in the z direction (3d)
-or y direction (2d). This enables pouring particles from a
-successively higher height over time.
-
-The *ignore* option is useful when running a simulation that used line
-segment (2d) or triangle (3d) particles, typically to define
-boundaries for spherical granular particles to interact with. See the
-:doc:`atom_style line or tri <atom_style>` command for details. Lines
-and triangles store their size, and if the size is large it may
-overlap (in a spherical sense) with the insertion region, even if the
-line/triangle is oriented such that there is no actual overlap. This
-can prevent particles from being inserted. The *ignore* keyword
-causes the overlap check to skip any line or triangle particles.
-Obviously you should only use it if there is in fact no overlap of the
-line or triangle particles with the insertion region.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. This means you must be careful when restarting a
-pouring simulation, when the restart file was written in the middle of
-the pouring operation. Specifically, you should use a new fix pour
-command in the input script for the restarted simulation that
-continues the operation. You will need to adjust the arguments of the
-original fix pour command to do this.
-
-Also note that because the state of the random number generator is not
-saved in restart files, you cannot do "exact" restarts with this fix,
-where the simulation continues on the same as if no restart had taken
-place. However, in a statistical sense, a restarted simulation should
-produce the same behavior if you adjust the fix pour parameters
-appropriately.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix. No global or per-atom quantities are stored by this fix for
-access by various :ref:`output commands <howto_15>`. No
-parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the GRANULAR package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-For 3d simulations, a gravity fix in the -z direction must be defined
-for use in conjunction with this fix. For 2d simulations, gravity
-must be defined in the -y direction.
-
-The specified insertion region cannot be a "dynamic" region, as
-defined by the :doc:`region <region>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix deposit <fix_deposit>`, :doc:`fix gravity <fix_gravity>`,
-:doc:`region <region>`
-
-Default
-"""""""
-
-Insertions are performed for individual particles, i.e. no *mol*
-setting is defined. If the *mol* keyword is used, the default for
-*molfrac* is an equal probabilities for all molecules in the template.
-Additional option defaults are diam = one 1.0, dens = 1.0 1.0, vol =
-0.25 50, rate = 0.0, vel = 0.0 0.0 0.0 0.0 0.0 (for 3d), vel = 0.0 0.0 0.0
-(for 2d), and id = max.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_press_berendsen.txt b/doc/_sources/fix_press_berendsen.txt
deleted file mode 100644
index 65133f846..000000000
--- a/doc/_sources/fix_press_berendsen.txt
+++ /dev/null
@@ -1,258 +0,0 @@
-.. index:: fix press/berendsen
-
-fix press/berendsen command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID press/berendsen keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* press/berendsen = style name of this fix command
-.. parsed-literal::
-
- one or more keyword value pairs may be appended
- keyword = *iso* or *aniso* or *x* or *y* or *z* or *couple* or *dilate* or *modulus*
- *iso* or *aniso* values = Pstart Pstop Pdamp
- Pstart,Pstop = scalar external pressure at start/end of run (pressure units)
- Pdamp = pressure damping parameter (time units)
- *x* or *y* or *z* values = Pstart Pstop Pdamp
- Pstart,Pstop = external stress tensor component at start/end of run (pressure units)
- Pdamp = stress damping parameter (time units)
- *couple* = *none* or *xyz* or *xy* or *yz* or *xz*
- *modulus* value = bulk modulus of system (pressure units)
- *dilate* value = *all* or *partial*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all press/berendsen iso 0.0 0.0 1000.0
- fix 2 all press/berendsen aniso 0.0 0.0 1000.0 dilate partial
-
-Description
-"""""""""""
-
-Reset the pressure of the system by using a Berendsen barostat
-:ref:`(Berendsen) <Berendsen>`, which rescales the system volume and
-(optionally) the atoms coordinates within the simulation box every
-timestep.
-
-Regardless of what atoms are in the fix group, a global pressure is
-computed for all atoms. Similarly, when the size of the simulation
-box is changed, all atoms are re-scaled to new positions, unless the
-keyword *dilate* is specified with a value of *partial*, in which case
-only the atoms in the fix group are re-scaled. The latter can be
-useful for leaving the coordinates of atoms in a solid substrate
-unchanged and controlling the pressure of a surrounding fluid.
-
-.. note::
-
- Unlike the :doc:`fix npt <fix_nh>` or :doc:`fix nph <fix_nh>`
- commands which perform Nose/Hoover barostatting AND time integration,
- this fix does NOT perform time integration. It only modifies the box
- size and atom coordinates to effect barostatting. Thus you must use a
- separate time integration fix, like :doc:`fix nve <fix_nve>` or :doc:`fix nvt <fix_nh>` to actually update the positions and velocities of
- atoms. This fix can be used in conjunction with thermostatting fixes
- to control the temperature, such as :doc:`fix nvt <fix_nh>` or :doc:`fix langevin <fix_langevin>` or :doc:`fix temp/berendsen <fix_temp_berendsen>`.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting and barostatting.
-
-
-----------
-
-
-The barostat is specified using one or more of the *iso*, *aniso*,
-*x*, *y*, *z*, and *couple* keywords. These keywords give you the
-ability to specify the 3 diagonal components of an external stress
-tensor, and to couple various of these components together so that the
-dimensions they represent are varied together during a
-constant-pressure simulation. Unlike the :doc:`fix npt <fix_nh>` and
-:doc:`fix nph <fix_nh>` commands, this fix cannot be used with triclinic
-(non-orthogonal) simulation boxes to control all 6 components of the
-general pressure tensor.
-
-The target pressures for each of the 3 diagonal components of the
-stress tensor can be specified independently via the *x*, *y*, *z*,
-keywords, which correspond to the 3 simulation box dimensions. For
-each component, the external pressure or tensor component at each
-timestep is a ramped value during the run from *Pstart* to *Pstop*.
-If a target pressure is specified for a component, then the
-corresponding box dimension will change during a simulation. For
-example, if the *y* keyword is used, the y-box length will change. A
-box dimension will not change if that component is not specified,
-although you have the option to change that dimension via the :doc:`fix deform <fix_deform>` command.
-
-For all barostat keywords, the *Pdamp* parameter determines the time
-scale on which pressure is relaxed. For example, a value of 10.0
-means to relax the pressure in a timespan of (roughly) 10 time units
-(tau or fmsec or psec - see the :doc:`units <units>` command).
-
-.. note::
-
- A Berendsen barostat will not work well for arbitrary values of
- *Pdamp*. If *Pdamp* is too small, the pressure and volume can
- fluctuate wildly; if it is too large, the pressure will take a very
- long time to equilibrate. A good choice for many models is a *Pdamp*
- of around 1000 timesteps. However, note that *Pdamp* is specified in
- time units, and that timesteps are NOT the same as time units for most
- :doc:`units <units>` settings.
-
-.. note::
-
- The relaxation time is actually also a function of the bulk
- modulus of the system (inverse of isothermal compressibility). The
- bulk modulus has units of pressure and is the amount of pressure that
- would need to be applied (isotropically) to reduce the volume of the
- system by a factor of 2 (assuming the bulk modulus was a constant,
- independent of density, which it's not). The bulk modulus can be set
- via the keyword *modulus*. The *Pdamp* parameter is effectively
- multiplied by the bulk modulus, so if the pressure is relaxing faster
- than expected or desired, increasing the bulk modulus has the same
- effect as increasing *Pdamp*. The converse is also true. LAMMPS does
- not attempt to guess a correct value of the bulk modulus; it just uses
- 10.0 as a default value which gives reasonable relaxation for a
- Lennard-Jones liquid, but will be way off for other materials and way
- too small for solids. Thus you should experiment to find appropriate
- values of *Pdamp* and/or the *modulus* when using this fix.
-
-
-----------
-
-
-The *couple* keyword allows two or three of the diagonal components of
-the pressure tensor to be "coupled" together. The value specified
-with the keyword determines which are coupled. For example, *xz*
-means the *Pxx* and *Pzz* components of the stress tensor are coupled.
-*Xyz* means all 3 diagonal components are coupled. Coupling means two
-things: the instantaneous stress will be computed as an average of the
-corresponding diagonal components, and the coupled box dimensions will
-be changed together in lockstep, meaning coupled dimensions will be
-dilated or contracted by the same percentage every timestep. The
-*Pstart*, *Pstop*, *Pdamp* parameters for any coupled dimensions must
-be identical. *Couple xyz* can be used for a 2d simulation; the *z*
-dimension is simply ignored.
-
-
-----------
-
-
-The *iso* and *aniso* keywords are simply shortcuts that are
-equivalent to specifying several other keywords together.
-
-The keyword *iso* means couple all 3 diagonal components together when
-pressure is computed (hydrostatic pressure), and dilate/contract the
-dimensions together. Using "iso Pstart Pstop Pdamp" is the same as
-specifying these 4 keywords:
-
-.. parsed-literal::
-
- x Pstart Pstop Pdamp
- y Pstart Pstop Pdamp
- z Pstart Pstop Pdamp
- couple xyz
-
-The keyword *aniso* means *x*, *y*, and *z* dimensions are controlled
-independently using the *Pxx*, *Pyy*, and *Pzz* components of the
-stress tensor as the driving forces, and the specified scalar external
-pressure. Using "aniso Pstart Pstop Pdamp" is the same as specifying
-these 4 keywords:
-
-.. parsed-literal::
-
- x Pstart Pstop Pdamp
- y Pstart Pstop Pdamp
- z Pstart Pstop Pdamp
- couple none
-
-
-----------
-
-
-This fix computes a temperature and pressure each timestep. To do
-this, the fix creates its own computes of style "temp" and "pressure",
-as if these commands had been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
- compute fix-ID_press group-ID pressure fix-ID_temp
-
-See the :doc:`compute temp <compute_temp>` and :doc:`compute pressure <compute_pressure>` commands for details. Note that the
-IDs of the new computes are the fix-ID + underscore + "temp" or fix_ID
-+ underscore + "press", and the group for the new computes is the same
-as the fix group.
-
-Note that these are NOT the computes used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*
-and *thermo_press*. This means you can change the attributes of this
-fix's temperature or pressure via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-or pressure during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* or
-*thermo_press* will have no effect on this fix.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by this fix. You can use them to assign a
-:doc:`compute <compute>` you have defined to this fix which will be used
-in its temperature and pressure calculations. If you do this, note
-that the kinetic energy derived from the compute temperature should be
-consistent with the virial term computed using all atoms for the
-pressure. LAMMPS will warn you if you choose to compute temperature
-on a subset of atoms.
-
-No global or per-atom quantities are stored by this fix for access by
-various :ref:`output commands <howto_15>`.
-
-This fix can ramp its target pressure over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-Any dimension being adjusted by this fix must be periodic.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nph <fix_nh>`, :doc:`fix npt <fix_nh>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`,
-:doc:`fix_modify <fix_modify>`
-
-Default
-"""""""
-
-The keyword defaults are dilate = all, modulus = 10.0 in units of
-pressure for whatever :doc:`units <units>` are defined.
-
-
-----------
-
-
-.. _Berendsen:
-
-
-
-**(Berendsen)** Berendsen, Postma, van Gunsteren, DiNola, Haak, J Chem
-Phys, 81, 3684 (1984).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_print.txt b/doc/_sources/fix_print.txt
deleted file mode 100644
index 01a999d01..000000000
--- a/doc/_sources/fix_print.txt
+++ /dev/null
@@ -1,105 +0,0 @@
-.. index:: fix print
-
-fix print command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID print N string keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* print = style name of this fix command
-* N = print every N steps
-* string = text string to print with optional variable names
-* zero or more keyword/value pairs may be appended
-* keyword = *file* or *append* or *screen* or *title*
-.. parsed-literal::
-
- *file* value = filename
- *append* value = filename
- *screen* value = *yes* or *no*
- *title* value = string
- string = text to print as 1st line of output file
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix extra all print 100 "Coords of marker atom = $x $y $z"
- fix extra all print 100 "Coords of marker atom = $x $y $z" file coord.txt
-
-Description
-"""""""""""
-
-Print a text string every N steps during a simulation run. This can
-be used for diagnostic purposes or as a debugging tool to monitor some
-quantity during a run. The text string must be a single argument, so
-it should be enclosed in double quotes if it is more than one word.
-If it contains variables it must be enclosed in double quotes to
-insure they are not evaluated when the input script line is read, but
-will instead be evaluated each time the string is printed.
-
-The specified group-ID is ignored by this fix.
-
-See the :doc:`variable <variable>` command for a description of *equal*
-style variables which are the most useful ones to use with the fix
-print command, since they are evaluated afresh each timestep that the
-fix print line is output. Equal-style variables calculate formulas
-involving mathematical operations, atom properties, group properties,
-thermodynamic properties, global values calculated by a
-:doc:`compute <compute>` or :doc:`fix <fix>`, or references to other
-:doc:`variables <variable>`.
-
-If the *file* or *append* keyword is used, a filename is specified to
-which the output generated by this fix will be written. If *file* is
-used, then the filename is overwritten if it already exists. If
-*append* is used, then the filename is appended to if it already
-exists, or created if it does not exist.
-
-If the *screen* keyword is used, output by this fix to the screen and
-logfile can be turned on or off as desired.
-
-The *title* keyword allow specification of the string that will be
-printed as the first line of the output file, assuming the *file*
-keyword was used. By default, the title line is as follows:
-
-.. parsed-literal::
-
- # Fix print output for fix ID
-
-where ID is replaced with the fix-ID.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`variable <variable>`, :doc:`print <print>`
-
-Default
-"""""""
-
-The option defaults are no file output, screen = yes, and title string
-as described above.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_property_atom.txt b/doc/_sources/fix_property_atom.txt
deleted file mode 100644
index 51d750fc9..000000000
--- a/doc/_sources/fix_property_atom.txt
+++ /dev/null
@@ -1,303 +0,0 @@
-.. index:: fix property/atom
-
-fix property/atom command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID property/atom vec1 vec2 ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* property/atom = style name of this fix command
-* vec1,vec2,... = *mol* or *q* or *rmass* or *i_name* or *d_name*
-.. parsed-literal::
-
- *mol* = molecule IDs
- *q* = charge
- *rmass* = per-atom mass
- *i_name* = new integer vector referenced by name
- *d_name* = new floating-point vector referenced by name
-
-* zero of more keyword/value pairs may be appended
-* keyword = *ghost*
-.. parsed-literal::
-
- *ghost* value = *no* or *yes* for whether ghost atom info in communicated
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all property/atom mol
- fix 1 all property/atom i_myflag1 i_myflag2
- fix 1 all property/atom d_sx d_sy d_sz
-
-Description
-"""""""""""
-
-Create one or more additional per-atom vectors to store information
-about atoms and to use during a simulation. The specified *group-ID*
-is ignored by this fix.
-
-The atom style used for a simulation defines a set of per-atom
-properties, as explained on the :doc:`atom_style <atom_style>` and
-:doc:`read_data <read_data>` doc pages. The latter command allows these
-properties to be defined for each atom in the system when a data file
-is read. This fix will augment the set of properties with new custom
-ones. This can be useful in several scenarios.
-
-If the atom style does not define molecule IDs, per-atom charge,
-or per-atom mass, they can be added using the *mol*, *q* or *rmass*
-keywords. This can be useful, e.g, to define "molecules" to use as
-rigid bodies with the :doc:`fix rigid <fix_rigid>` command, or just to
-carry around an extra flag with the atoms (stored as a molecule ID)
-that can be used to group atoms without having to use the group
-command (which is limited to a total of 32 groups including *all*).
-
-Another application would be to use the *rmass* flag in order to have
-per-atom masses instead of per-type masses, for example this can be
-useful to study isotope effects with partial isotope substitution.
-Please :ref:`see below <isotopes>` for an example of simulating a mixture
-of light and heavy water with the TIP4P water potential.
-
-An alternative to using fix *property/atom* in these ways is to
-use an atom style that does define molecule IDs or charge or per-atom
-mass (indirectly via diameter and density) or to use a hybrid atom
-style that combines two or more atom styles
-to provide the union of all atom properties. However, this has two
-practical drawbacks: first, it typically necessitates changing the
-format of the data file, which can be tedious for large systems;
-and second, it may define additional properties that are not needed
-such as bond lists, which has some overhead when there are no bonds.
-
-In the future, we may add additional per-atom properties similar to
-*mol*, *q* or *rmass*, which "turn-on" specific properties defined
-by some atom styles, so they can be used by atom styles that do not
-define them.
-
-More generally, the *i_name* and *d_name* vectors allow one or more
-new custom per-atom properties to be defined. Each name must be
-unique and can use alphanumeric or underscore characters. These
-vectors can store whatever values you decide are useful in your
-simulation. As explained below there are several ways to initialize
-and access and output these values, both via input script commands and
-in new code that you add to LAMMPS.
-
-This is effectively a simple way to add per-atom properties to a model
-without needing to write code for a new :doc:`atom style <atom_style>`
-that defines the properties. Note however that implementing a new
-atom style allows new atom properties to be more tightly and
-seamlessly integrated with the rest of the code.
-
-The new atom properties encode values that migrate with atoms to new
-processors and are written to restart files. If you want the new
-properties to also be defined for ghost atoms, then use the *ghost*
-keyword with a value of *yes*. This will invoke extra communication
-when ghost atoms are created (at every re-neighboring) to insure the
-new properties are also defined for the ghost atoms.
-
-.. note::
-
- If you use this command with the *mol*, *q* or *rmass* vectors,
- then you most likely want to set *ghost* yes, since these properties
- are stored with ghost atoms if you use an :doc:`atom_style <atom_style>`
- that defines them, and many LAMMPS operations that use molecule IDs or
- charge, such as neighbor lists and pair styles, will expect ghost
- atoms to have these valuse. LAMMPS will issue a warning it you define
- those vectors but do not set *ghost* yes.
-
-.. note::
-
- The properties for ghost atoms are not updated every timestep,
- but only once every few steps when neighbor lists are re-built. Thus
- the *ghost* keyword is suitable for static properties, like molecule
- IDs, but not for dynamic properties that change every step. For the
- latter, the code you add to LAMMPS to change the properties will also
- need to communicate their new values to/from ghost atoms, an operation
- that can be invoked from within a :doc:`pair style <pair_style>` or
- :doc:`fix <fix>` or :doc:`compute <compute>` that you write.
-
-
-----------
-
-
-This fix is one of a small number that can be defined in an input
-script before the simulation box is created or atoms are defined.
-This is so it can be used with the :doc:`read_data <read_data>` command
-as described below.
-
-Per-atom properties that are defined by the :doc:`atom style <atom_style>` are initialized when atoms are created, e.g. by
-the :doc:`read_data <read_data>` or :doc:`create_atoms <create_atoms>`
-commands. The per-atom properaties defined by this fix are not. So
-you need to initialize them explicitly. This can be done by the
-:doc:`read_data <read_data>` command, using its *fix* keyword and
-passing it the fix-ID of this fix.
-
-Thus these commands:
-
-.. parsed-literal::
-
- fix prop all property/atom mol d_flag
- read_data data.txt fix prop NULL Molecules
-
-would allow a data file to have a section like this:
-
-.. parsed-literal::
-
- Molecules
-
-.. parsed-literal::
-
- 1 4 1.5
- 2 4 3.0
- 3 10 1.0
- 4 10 1.0
- 5 10 1.0
- ...
- N 763 4.5
-
-where N is the number of atoms, and the first field on each line is
-the atom-ID, followed by a molecule-ID and a floating point value that
-will be stored in a new property called "flag". Note that the list of
-per-atom properties can be in any order.
-
-Another way of initializing the new properties is via the
-:doc:`set <set>` command. For example, if you wanted molecules
-defined for every set of 10 atoms, based on their atom-IDs,
-these commands could be used:
-
-.. parsed-literal::
-
- fix prop all property/atom mol
- variable cluster atom ((id-1)/10)+1
- set id * mol v_cluster
-
-The :doc:`atom-style variable <variable>` will create values for atoms
-with IDs 31,32,33,...40 that are 4.0,4.1,4.2,...,4.9. When the
-:doc:`set <set>` commands assigns them to the molecule ID for each atom,
-they will be truncated to an integer value, so atoms 31-40 will all be
-assigned a molecule ID of 4.
-
-Note that :doc:`atomfile-style variables <variable>` can also be used in
-place of atom-style variables, which means in this case that the
-molecule IDs could be read-in from a separate file and assinged by the
-:doc:`set <set>` command. This allows you to initialize new per-atom
-properties in a completely general fashion.
-
-
-----------
-
-
-For new atom properties specified as *i_name* or *d_name*, the
-:doc:`compute property/atom <compute_property_atom>` command can access
-their values. This means that the values can be output via the :doc:`dump custom <dump>` command, accessed by fixes like :doc:`fix ave/atom <fix_ave_atom>`, accessed by other computes like :doc:`compute reduce <compute_reduce>`, or used in `atom-style variables <variables>`_.
-
-For example, these commands will output two new properties to a custom
-dump file:
-
-.. parsed-literal::
-
- fix prop all property/atom i_flag1 d_flag2
- compute 1 all property/atom i_flag1 d_flag2
- dump 1 all custom 100 tmp.dump id x y z c_1[1] c_1[2]
-
-
-----------
-
-
-If you wish to add new :doc:`pair styles <pair_style>`,
-:doc:`fixes <fix>`, or :doc:`computes <compute>` that use the per-atom
-properties defined by this fix, see :ref:`Section modify <mod_1>` of the manual which has some details
-on how the properties can be accessed from added classes.
-
-
-----------
-
-
-.. _isotopes:
-
-
-
-Example for using per-atom masses with TIP4P water to study isotope
-effects. When setting up simulations with the :ref:`TIP4P pair styles <howto_8>` for water, you have to provide
-exactly one atom type each to identify the water oxygen and hydrogen
-atoms. Since the atom mass is normally tied to the atom type, this
-makes it impossible to study multiple isotopes in the same simulation.
-With *fix property/atom rmass* however, the per-type masses are
-replaced by per-atom masses. Asumming you have a working input deck
-for regular TIP4P water, where water oxygen is atom type 1 and
-water hydrogen is atom type 2, the following lines of input script
-convert this to using per-atom masses:
-
-.. parsed-literal::
-
- fix Isotopes all property/atom rmass ghost yes
- set type 1 mass 15.9994
- set type 2 mass 1.008
-
-When writing out the system data with the :doc:`write_data <write_data>`
-command, there will be a new section named with the fix-ID
-(i.e. *Isotopes* in this case). Alternatively, you can take an
-existing data file and just add this *Isotopes* section with
-one line per atom containing atom-ID and mass. Either way, the
-extended data file can be read back with:
-
-.. parsed-literal::
-
- fix Isotopes all property/atom rmass ghost yes
- read_data tip4p-isotopes.data fix Isotopes NULL Isotopes
-
-Please note that the first *Isotopes* refers to the fix-ID
-and the second to the name of the section. The following input
-script code will now change the first 100 water molecules in this
-example to heavy water:
-
-.. parsed-literal::
-
- group hwat id 2:300:3
- group hwat id 3:300:3
- set group hwat mass 2.0141018
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the per-atom values it stores to :doc:`binary restart files <restart>`, so that the values can be restored when a
-simulation is restarted. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`read_data <read_data>`, :doc:`set <set>`, :doc:`compute property/atom <compute_property_atom>`
-
-Default
-"""""""
-
-The default keyword values are ghost = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_qbmsst.txt b/doc/_sources/fix_qbmsst.txt
deleted file mode 100644
index e63c6218f..000000000
--- a/doc/_sources/fix_qbmsst.txt
+++ /dev/null
@@ -1,253 +0,0 @@
-.. index:: fix qbmsst
-
-fix qbmsst command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID qbmsst dir shockvel keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* qbmsst = style name of this fix
-* dir = *x* or *y* or *z*
-* shockvel = shock velocity (strictly positive, velocity units)
-* zero or more keyword/value pairs may be appended
-* keyword = *q* or *mu* or *p0* or *v0* or *e0* or *tscale* or *damp* or *seed*or *f_max* or *N_f* or *eta* or *beta* or *T_init*
-.. parsed-literal::
-
- *q* value = cell mass-like parameter (mass^2/distance^4 units)
- *mu* value = artificial viscosity (mass/distance/time units)
- *p0* value = initial pressure in the shock equations (pressure units)
- *v0* value = initial simulation cell volume in the shock equations (distance^3 units)
- *e0* value = initial total energy (energy units)
- *tscale* value = reduction in initial temperature (unitless fraction between 0.0 and 1.0)
- *damp* value = damping parameter (time units) inverse of friction <i>&gamma;</i>
- *seed* value = random number seed (positive integer)
- *f_max* value = upper cutoff frequency of the vibration spectrum (1/time units)
- *N_f* value = number of frequency bins (positive integer)
- *eta* value = coupling constant between the shock system and the quantum thermal bath (positive unitless)
- *beta* value = the quantum temperature is updated every beta time steps (positive integer)
- *T_init* value = quantum temperature for the initial state (temperature units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all qbmsst z 0.122 q 25 mu 0.9 tscale 0.01 damp 200 seed 35082 f_max 0.3 N_f 100 eta 1 beta 400 T_init 110 (liquid methane modeled with the REAX force field, real units)
- fix 2 all qbmsst z 72 q 40 tscale 0.05 damp 1 seed 47508 f_max 120.0 N_f 100 eta 1.0 beta 500 T_init 300 (quartz modeled with the BKS force field, metal units)
-
-Two example input scripts are given, including shocked alpha quartz
-and shocked liquid methane. The input script first equilibrate an
-initial state with the quantum thermal bath at the target temperature
-and then apply the qbmsst to simulate shock compression with quantum
-nuclear correction. The following two figures plot related quantities
-for shocked alpha quartz.
-
-.. image:: JPG/qbmsst_init.jpg
- :align: center
-
-Figure 1. Classical temperature <i>T</i><sup>cl</sup> = &sum;
-<i>m<sub>i</sub>v<sub>i</sub><sup>2</sup>/3Nk</i><sub>B</sub> vs. time
-for coupling the alpha quartz initial state with the quantum thermal
-bath at target quantum temperature <i>T</i><sup>qm</sup> = 300 K. The
-NpH ensemble is used for time integration while QTB provides the
-colored random force. <i>T</i><sup>cl</sup> converges at the timescale
-of *damp* which is set to be 1 ps.
-
-.. image:: JPG/qbmsst_shock.jpg
- :align: center
-
-Figure 2. Quantum temperature and pressure vs. time for simulating
-shocked alpha quartz with the QBMSST. The shock propagates along the z
-direction. Restart of the QBMSST command is demonstrated in the
-example input script. Thermodynamic quantities stay continuous before
-and after the restart.
-
-Description
-"""""""""""
-
-This command performs the Quantum-Bath coupled Multi-Scale Shock
-Technique (QBMSST) integration. See :ref:`(Qi) <Qi>` for a detailed
-description of this method. The QBMSST provides description of the
-thermodynamics and kinetics of shock processes while incorporating
-quantum nuclear effects. The *shockvel* setting determines the steady
-shock velocity that will be simulated along direction *dir*.
-
-Quantum nuclear effects :doc:`(fix qtb) <fix_qtb>` can be crucial
-especially when the temperature of the initial state is below the
-classical limit or there is a great change in the zero point energies
-between the initial and final states. Theoretical post processing
-quantum corrections of shock compressed water and methane have been
-reported as much as 30% of the temperatures :ref:`(Goldman) <Goldman>`. A
-self-consistent method that couples the shock to a quantum thermal
-bath described by a colored noise Langevin thermostat has been
-developed by Qi et al :ref:`(Qi) <Qi>` and applied to shocked methane. The
-onset of chemistry is reported to be at a pressure on the shock
-Hugoniot that is 40% lower than observed with classical molecular
-dynamics.
-
-It is highly recommended that the system be already in an equilibrium
-state with a quantum thermal bath at temperature of *T_init*. The fix
-command :doc:`fix qtb <fix_qtb>` at constant temperature *T_init* could
-be used before applying this command to introduce self-consistent
-quantum nuclear effects into the initial state.
-
-The parameters *q*, *mu*, *e0*, *p0*, *v0* and *tscale* are described
-in the command :doc:`fix msst <fix_msst>`. The values of *e0*, *p0*, or
-*v0* will be calculated on the first step if not specified. The
-parameter of *damp*, *f_max*, and *N_f* are described in the command
-:doc:`fix qtb <fix_qtb>`.
-
-The fix qbmsst command couples the shock system to a quantum thermal
-bath with a rate that is proportional to the change of the total
-energy of the shock system, <i>etot</i> - <i>etot</i><sub>0</sub>.
-Here <i>etot</i> consists of both the system energy and a thermal
-term, see :ref:`(Qi) <Qi>`, and <i>etot</i><sub>0</sub> = *e0* is the
-initial total energy.
-
-The *eta* (<i>&eta;</i>) parameter is a unitless coupling constant
-between the shock system and the quantum thermal bath. A small *eta*
-value cannot adjust the quantum temperature fast enough during the
-temperature ramping period of shock compression while large *eta*
-leads to big temperature oscillation. A value of *eta* between 0.3 and
-1 is usually appropriate for simulating most systems under shock
-compression. We observe that different values of *eta* lead to almost
-the same final thermodynamic state behind the shock, as expected.
-
-The quantum temperature is updated every *beta* (<i>&beta;</i>) steps
-with an integration time interval *beta* times longer than the
-simulation time step. In that case, <i>etot</i> is taken as its
-average over the past *beta* steps. The temperature of the quantum
-thermal bath <i>T</i><sup>qm</sup> changes dynamically according to
-the following equation where &Delta;<i>t</i> is the MD time step and
-<i>&gamma;</i> is the friction constant which is equal to the inverse
-of the *damp* parameter.
-
-.. raw:: html
-
- <center><font size="4"> <i>dT</i><sup>qm</sup>/<i>dt =
- &gamma;&eta;</i>&sum;<i><sup>&beta;</sup><sub>l =
- 1</sub></i>[<i>etot</i>(<i>t-l</i>&Delta;<i>t</i>)-<i>etot</i><sub>0</sub>]/<i>3&beta;Nk</i><sub>B</sub>
- </font></center>
-
-The parameter *T_init* is the initial temperature of the quantum
-thermal bath and the system before shock loading.
-
-For all pressure styles, the simulation box stays orthorhombic in
-shape. Parrinello-Rahman boundary conditions (tilted box) are
-supported by LAMMPS, but are not implemented for QBMSST.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Because the state of the random number generator is not written to
-:doc:`binary restart files <restart>`, this fix cannot be restarted
-"exactly" in an uninterrupted fashion. However, in a statistical
-sense, a restarted simulation should produce similar behaviors of the
-system as if it is not interrupted. To achieve such a restart, one
-should write explicitly the same value for *q*, *mu*, *damp*, *f_max*,
-*N_f*, *eta*, and *beta* and set *tscale* = 0 if the system is
-compressed during the first run.
-
-The progress of the QBMSST can be monitored by printing the global
-scalar and global vector quantities computed by the fix. The global
-vector contains five values in this order:
-
-[*dhugoniot*, *drayleigh*, *lagrangian_speed*, *lagrangian_position*,
-*quantum_temperature*]
-
-1. *dhugoniot* is the departure from the Hugoniot (temperature units).
-2. *drayleigh* is the departure from the Rayleigh line (pressure units).
-3. *lagrangian_speed* is the laboratory-frame Lagrangian speed (particle velocity) of the computational cell (velocity units).
-4. *lagrangian_position* is the computational cell position in the reference frame moving at the shock speed. This is the distance of the computational cell behind the shock front.
-5. *quantum_temperature* is the temperature of the quantum thermal bath <i>T</i><sup>qm</sup>.
-
-To print these quantities to the log file with descriptive column
-headers, the following LAMMPS commands are suggested. Here the
-:doc:`fix_modify <fix_modify>` energy command is also enabled to allow
-the thermo keyword *etotal* to print the quantity <i>etot</i>. See
-also the :doc:`thermo_style <thermo_style>` command.
-
-.. parsed-literal::
-
- fix fix_id all msst z
- fix_modify fix_id energy yes
- variable dhug equal f_fix_id[1]
- variable dray equal f_fix_id[2]
- variable lgr_vel equal f_fix_id[3]
- variable lgr_pos equal f_fix_id[4]
- variable T_qm equal f_fix_id[5]
- thermo_style custom step temp ke pe lz pzz etotal v_dhug v_dray v_lgr_vel v_lgr_pos v_T_qm f_fix_id
-
-The global scalar under the entry f_fix_id is the quantity of thermo
-energy as an extra part of <i>etot</i>. This global scalar and the
-vector of 5 quantities can be accessed by various :ref:`output commands <howto_15>`. It is worth noting that the
-temp keyword under the :doc:`thermo_style <thermo_style>` command print
-the instantaneous classical temperature <i>T</i><sup>cl</sup> as
-described in the command :doc:`fix qtb <fix_qtb>`.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix style is part of the USER-QTB package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-All cell dimensions must be periodic. This fix can not be used with a
-triclinic cell. The QBMSST fix has been tested only for the group-ID
-all.
-
-
-----------
-
-
-Related commands
-""""""""""""""""
-
-:doc:`fix qtb <fix_qtb>`, :doc:`fix msst <fix_msst>`
-
-
-----------
-
-
-Default
-"""""""
-
-The keyword defaults are q = 10, mu = 0, tscale = 0.01, damp = 1, seed
-= 880302, f_max = 200.0, N_f = 100, eta = 1.0, beta = 100, and
-T_init=300.0. e0, p0, and v0 are calculated on the first step.
-
-
-----------
-
-
-.. _Goldman:
-
-
-
-**(Goldman)** Goldman, Reed and Fried, J. Chem. Phys. 131, 204103 (2009)
-
-.. _Qi:
-
-
-
-**(Qi)** Qi and Reed, J. Phys. Chem. A 116, 10451 (2012).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_qeq.txt b/doc/_sources/fix_qeq.txt
deleted file mode 100644
index b28a407c5..000000000
--- a/doc/_sources/fix_qeq.txt
+++ /dev/null
@@ -1,259 +0,0 @@
-.. index:: fix qeq/point
-
-fix qeq/point command
-=====================
-
-fix qeq/shielded command
-========================
-
-fix qeq/slater command
-======================
-
-fix qeq/dynamic command
-=======================
-
-fix qeq/fire command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style Nevery cutoff tolerance maxiter qfile keyword ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style = *qeq/point* or *qeq/shielded* or *qeq/slater* or *qeq/dynamic* or *qeq/fire*
-* Nevery = perform charge equilibration every this many steps
-* cutoff = global cutoff for charge-charge interactions (distance unit)
-* tolerance = precision to which charges will be equilibrated
-* maxiter = maximum iterations to perform charge equilibration
-* qfile = a filename with QEq parameters
-* zero or more keyword/value pairs may be appended
-* keyword = *alpha* or *qdamp* or *qstep*
-.. parsed-literal::
-
- *alpha* value = Slater type orbital exponent (qeq/slater only)
- *qdamp* value = damping factor for damped dynamics charge solver (qeq/dynamic and qeq/fire only)
- *qstep* value = time step size for damped dynamics charge solver (qeq/dynamic and qeq/fire only)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all qeq/point 1 10 1.0e-6 200 param.qeq1
- fix 1 qeq qeq/shielded 1 8 1.0e-6 100 param.qeq2
- fix 1 all qeq/slater 5 10 1.0e-6 100 params alpha 0.2
- fix 1 qeq qeq/dynamic 1 12 1.0e-3 100 my_qeq
- fix 1 all qeq/fire 1 10 1.0e-3 100 my_qeq qdamp 0.2 qstep 0.1
-
-Description
-"""""""""""
-
-Perform the charge equilibration (QEq) method as described in :ref:`(Rappe and Goddard) <Rappe>` and formulated in :ref:`(Nakano) <Nakano>` (also known
-as the matrix inversion method) and in :ref:`(Rick and Stuart) <Rick>` (also
-known as the extended Lagrangian method) based on the
-electronegativity equilization principle.
-
-These fixes can be used with any :doc:`pair style <pair_style>` in
-LAMMPS, so long as per-atom charges are defined. The most typical
-use-case is in conjunction with a :doc:`pair style <pair_style>` that
-performs charge equilibration periodically (e.g. every timestep), such
-as the ReaxFF or Streitz-Mintmire potential.
-But these fixes can also be used with
-potentials that normally assume per-atom charges are fixed, e.g. a
-:doc:`Buckingham <pair_buck>` or :doc:`LJ/Coulombic <pair_lj>` potential.
-
-Because the charge equilibration calculation is effectively
-independent of the pair style, these fixes can also be used to perform
-a one-time assignment of charges to atoms. For example, you could
-define the QEq fix, perform a zero-timestep run via the :doc:`run <run>`
-command without any pair style defined which would set per-atom
-charges (based on the current atom configuration), then remove the fix
-via the :doc:`unfix <unfix>` command before performing further dynamics.
-
-.. note::
-
- Computing and using charge values different from published
- values defined for a fixed-charge potential like Buckingham or CHARMM
- or AMBER, can have a strong effect on energies and forces, and
- produces a different model than the published versions.
-
-.. note::
-
- The :doc:`fix qeq/comb <fix_qeq_comb>` command must still be used
- to perform charge equliibration with the :doc:`COMB potential <pair_comb>`. The :doc:`fix qeq/reax <fix_qeq_reax>`
- command can be used to perform charge equilibration with the :doc:`ReaxFF force field <pair_reax_c>`, although fix qeq/shielded yields the
- same results as fix qeq/reax if *Nevery*, *cutoff*, and *tolerance*
- are the same. Eventually the fix qeq/reax command will be deprecated.
-
-The QEq method minimizes the electrostatic energy of the system (or
-equalizes the derivative of energy with respect to charge of all the
-atoms) by adjusting the partial charge on individual atoms based on
-interactions with their neighbors within *cutoff*. It reqires a few
-parameters, in *metal* units, for each atom type which provided in a
-file specified by *qfile*. The file has the following format
-
-.. parsed-literal::
-
- 1 chi eta gamma zeta qcore
- 2 chi eta gamma zeta qcore
- ...
- Ntype chi eta gamma zeta qcore
-
-There is one line per atom type with the following parameters.
-Only a subset of the parameters is used by each QEq style as descibed
-below, thus the others can be set to 0.0 if desired.
-
-* *chi* = electronegativity in energy units
-* *eta* = self-Coulomb potential in energy units
-* *gamma* = shielded Coulomb constant defined by :ref:`ReaxFF force field <vanDuin>` in distance units
-* *zeta* = Slater type orbital exponent defined by the :ref:`Streitz-Mintmire <Streitz>` potential in reverse distance units
-* *qcore* = charge of the nucleus defined by the :ref:`Streitz-Mintmire potential <Streitz>` potential in charge units
-
-The *qeq/point* style describes partial charges on atoms as point
-charges. Interaction between a pair of charged particles is 1/r,
-which is the simplest description of the interaction between charges.
-Only the *chi* and *eta* parameters from the *qfile* file are used.
-Note that Coulomb catastrophe can occur if repulsion between the pair
-of charged particles is too weak. This style solves partial charges
-on atoms via the matrix inversion method. A tolerance of 1.0e-6 is
-usually a good number.
-
-The *qeq/shielded* style describes partial charges on atoms also as
-point charges, but uses a shielded Coulomb potential to describe the
-interaction between a pair of charged particles. Interaction through
-the shielded Coulomb is given by equation (13) of the :ref:`ReaxFF force field <vanDuin>` paper. The shielding accounts for charge overlap
-between charged particles at small separation. This style is the same
-as :doc:`fix qeq/reax <fix_qeq_reax>`, and can be used with :doc:`pair_style reax/c <pair_reax_c>`. Only the *chi*, *eta*, and *gamma*
-parameters from the *qfile* file are used. This style solves partial
-charges on atoms via the matrix inversion method. A tolerance of
-1.0e-6 is usually a good number.
-
-The *qeq/slater* style describes partial charges on atoms as spherical
-charge densities centered around atoms via the Slater 1*s* orbital, so
-that the interaction between a pair of charged particles is the
-product of two Slater 1*s* orbitals. The expression for the Slater
-1*s* orbital is given under equation (6) of the
-:ref:`Streitz-Mintmire <Streitz>` paper. Only the *chi*, *eta*, *zeta*, and
-*qcore* parameters from the *qfile* file are used. This style solves
-partial charges on atoms via the matrix inversion method. A tolerance
-of 1.0e-6 is usually a good number. Keyword *alpha* can be used to
-change the Slater type orbital exponent.
-
-The *qeq/dynamic* style describes partial charges on atoms as point
-charges that interact through 1/r, but the extended Lagrangian method
-is used to solve partial charges on atoms. Only the *chi* and *eta*
-parameters from the *qfile* file are used. Note that Coulomb
-catastrophe can occur if repulsion between the pair of charged
-particles is too weak. A tolerance of 1.0e-3 is usually a good
-number. Keyword *qdamp* can be used to change the damping factor, while
-keyword *qstep* can be used to change the time step size.
-
-The :ref:`*qeq/fire* <Shan>` style describes the same charge model and charge
-solver as the *qeq/dynamic* style, but employs a FIRE minimization
-algorithm to solve for equilibrium charges.
-Keyword *qdamp* can be used to change the damping factor, while
-keyword *qstep* can be used to change the time step size.
-
-Note that *qeq/point*, *qeq/shielded*, and *qeq/slater* describe
-different charge models, whereas the matrix inversion method and the
-extended Lagrangian method (*qeq/dynamic* and *qeq/fire*) are
-different solvers.
-
-Note that *qeq/point*, *qeq/dynamic* and *qeq/fire* styles all describe
-charges as point charges that interact through 1/r relationship, but
-solve partial charges on atoms using different solvers. These three
-styles should yield comparable results if
-the QEq parameters and *Nevery*, *cutoff*, and *tolerance* are the
-same. Style *qeq/point* is typically faster, *qeq/dynamic* scales
-better on larger sizes, and *qeq/fire* is faster than *qeq/dynamic*.
-
-.. note::
-
- To avoid the evaluation of the derivative of charge with respect
- to position, which is typically ill-defined, the system should have a
- zero net charge.
-
-.. note::
-
- Developing QEq parameters (chi, eta, gamma, zeta, and qcore) is
- non-trivial. Charges on atoms are not guaranteed to equilibrate with
- arbitrary choices of these parameters. We do not develop these QEq
- paramters. See the examples/qeq directory for some examples.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about these fixes is written to :doc:`binary restart files <restart>`. No global scalar or vector or per-atom
-quantities are stored by these fixes for access by various :ref:`output commands <howto_15>`. No parameter of these fixes
-can be used with the *start/stop* keywords of the :doc:`run <run>`
-command.
-
-Thexe fixes are invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-These fixes are part of the QEQ package. They are only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix qeq/reax <fix_qeq_reax>`, :doc:`fix qeq/comb <fix_qeq_comb>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Rappe:
-
-
-
-**(Rappe and Goddard)** A. K. Rappe and W. A. Goddard III, J Physical
-Chemistry, 95, 3358-3363 (1991).
-
-.. _Nakano:
-
-
-
-**(Nakano)** A. Nakano, Computer Physics Communications, 104, 59-69 (1997).
-
-.. _Rick:
-
-
-
-**(Rick and Stuart)** S. W. Rick, S. J. Stuart, B. J. Berne, J Chemical Physics
-101, 16141 (1994).
-
-.. _Streitz:
-
-
-
-**(Streitz-Mintmire)** F. H. Streitz, J. W. Mintmire, Physical Review B, 50,
-16, 11996 (1994)
-
-.. _vanDuin:
-
-
-
-**(ReaxFF)** A. C. T. van Duin, S. Dasgupta, F. Lorant, W. A. Goddard III, J
-Physical Chemistry, 105, 9396-9049 (2001)
-
-.. _Shan:
-
-
-
-**(QEq/Fire)** T.-R. Shan, A. P. Thompson, S. J. Plimpton, in preparation
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_qeq_comb.txt b/doc/_sources/fix_qeq_comb.txt
deleted file mode 100644
index 319e40b0e..000000000
--- a/doc/_sources/fix_qeq_comb.txt
+++ /dev/null
@@ -1,160 +0,0 @@
-.. index:: fix qeq/comb
-
-fix qeq/comb command
-====================
-
-fix qeq/comb/omp command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID qeq/comb Nevery precision keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* qeq/comb = style name of this fix command
-* Nevery = perform charge equilibration every this many steps
-* precision = convergence criterion for charge equilibration
-* zero or more keyword/value pairs may be appended
-* keyword = *file*
-.. parsed-literal::
-
- *file* value = filename
- filename = name of file to write QEQ equilibration info to
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 surface qeq/comb 10 0.0001
-
-Description
-"""""""""""
-
-Perform charge equilibration (QeQ) in conjunction with the COMB
-(Charge-Optimized Many-Body) potential as described in
-:ref:`(COMB_1) <COMB_1>` and :ref:`(COMB_2) <COMB_2>`. It performs the charge
-equilibration portion of the calculation using the so-called QEq
-method, whereby the charge on each atom is adjusted to minimize the
-energy of the system. This fix can only be used with the COMB
-potential; see the :doc:`fix qeq/reax <fix_qeq_reax>` command for a QeQ
-calculation that can be used with any potential.
-
-Only charges on the atoms in the specified group are equilibrated.
-The fix relies on the pair style (COMB in this case) to calculate the
-per-atom electronegativity (effective force on the charges). An
-electronegativity equalization calculation (or QEq) is performed in an
-interative fashion, which in parallel requires communication at each
-iteration for processors to exchange charge information about nearby
-atoms with each other. See :ref:`Rappe_and_Goddard <Rappe_and_Goddard>` and
-:ref:`Rick_and_Stuart <Rick_and_Stuart>` for details.
-
-During a run, charge equilibration is peformed every *Nevery* time
-steps. Charge equilibration is also always enforced on the first step
-of each run. The *precision* argument controls the tolerance for the
-difference in electronegativity for all atoms during charge
-equilibration. *Precision* is a trade-off between the cost of
-performing charge equilibration (more iterations) and accuracy.
-
-If the *file* keyword is used, then information about each
-equilibration calculation is written to the specifed file.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix produces a per-atom vector which can be accessed by various
-:ref:`output commands <howto_15>`. The vector stores the
-gradient of the charge on each atom. The per-atom values be accessed
-on any timestep.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-This fix can be invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix command currently only supports :doc:`pair style *comb* <pair_comb>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style comb <pair_comb>`
-
-Default
-"""""""
-
-No file output is performed.
-
-
-----------
-
-
-.. _COMB_1:
-
-
-
-**(COMB_1)** J. Yu, S. B. Sinnott, S. R. Phillpot, Phys Rev B, 75, 085311 (2007),
-
-.. _COMB_2:
-
-
-
-**(COMB_2)** T.-R. Shan, B. D. Devine, T. W. Kemper, S. B. Sinnott, S. R.
-Phillpot, Phys Rev B, 81, 125328 (2010).
-
-.. _Rappe_and_Goddard:
-
-
-
-**(Rappe_and_Goddard)** A. K. Rappe, W. A. Goddard, J Phys Chem 95, 3358
-(1991).
-
-.. _Rick_and_Stuart:
-
-
-
-**(Rick_and_Stuart)** S. W. Rick, S. J. Stuart, B. J. Berne, J Chem Phys
-101, 16141 (1994).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_qeq_reax.txt b/doc/_sources/fix_qeq_reax.txt
deleted file mode 100644
index e150aff96..000000000
--- a/doc/_sources/fix_qeq_reax.txt
+++ /dev/null
@@ -1,117 +0,0 @@
-.. index:: fix qeq/reax
-
-fix qeq/reax command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID qeq/reax Nevery cutlo cuthi tolerance params
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* qeq/reax = style name of this fix command
-* Nevery = perform QEq every this many steps
-* cutlo,cuthi = lo and hi cutoff for Taper radius
-* tolerance = precision to which charges will be equilibrated
-* params = reax/c or a filename
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all qeq/reax 1 0.0 10.0 1.0e-6 reax/c
- fix 1 all qeq/reax 1 0.0 10.0 1.0e-6 param.qeq
-
-Description
-"""""""""""
-
-Perform the charge equilibration (QEq) method as described in :ref:`(Rappe and Goddard) <Rappe>` and formulated in :ref:`(Nakano) <Nakano>`. It is
-typically used in conjunction with the ReaxFF force field model as
-implemented in the :doc:`pair_style reax/c <pair_reax_c>` command, but
-it can be used with any potential in LAMMPS, so long as it defines and
-uses charges on each atom. The :doc:`fix qeq/comb <fix_qeq_comb>`
-command should be used to perform charge equliibration with the :doc:`COMB potential <pair_comb>`. For more technical details about the
-charge equilibration performed by fix qeq/reax, see the
-:ref:`(Aktulga) <Aktulga>` paper.
-
-The QEq method minimizes the electrostatic energy of the system by
-adjusting the partial charge on individual atoms based on interactions
-with their neighbors. It reqires some parameters for each atom type.
-If the *params* setting above is the word "reax/c", then these are
-extracted from the :doc:`pair_style reax/c <pair_reax_c>` command and
-the ReaxFF force field file it reads in. If a file name is specified
-for *params*, then the parameters are taken from the specified file
-and the file must contain one line for each atom type. The latter
-form must be used when performing QeQ with a non-ReaxFF potential.
-Each line should be formatted as follows:
-
-.. parsed-literal::
-
- itype chi eta gamma
-
-where *itype* is the atom type from 1 to Ntypes, *chi* denotes the
-electronegativity in eV, *eta* denotes the self-Coulomb
-potential in eV, and *gamma* denotes the valence orbital
-exponent. Note that these 3 quantities are also in the ReaxFF
-potential file, except that eta is defined here as twice the eta value
-in the ReaxFF file. Note that unlike the rest of LAMMPS, the units
-of this fix are hard-coded to be A, eV, and electronic charge.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. No global scalar or vector or per-atom
-quantities are stored by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-
-This fix is invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-REAXC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix does not correctly handle interactions
-involving multiple periodic images of the same atom. Hence, it should not
-be used for periodic cell dimensions less than 10 angstroms.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style reax/c <pair_reax_c>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Rappe:
-
-
-
-**(Rappe)** Rappe and Goddard III, Journal of Physical Chemistry, 95,
-3358-3363 (1991).
-
-.. _Nakano:
-
-
-
-**(Nakano)** Nakano, Computer Physics Communications, 104, 59-69 (1997).
-
-.. _Aktulga:
-
-
-
-(Aktulga) Aktulga, Fogarty, Pandit, Grama, Parallel Computing, 38,
-245-259 (2012).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_qmmm.txt b/doc/_sources/fix_qmmm.txt
deleted file mode 100644
index dbee374df..000000000
--- a/doc/_sources/fix_qmmm.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-.. index:: fix qmmm
-
-fix qmmm command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID qmmm
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* qmmm = style name of this fix command
-
-Examples
-""""""""
-
-fix 1 qmol qmmm
-
-Description
-"""""""""""
-
-This fix provides functionality to enable a quantum
-mechanics/molecular mechanice (QM/MM) coupling of LAMMPS to a quantum
-mechanical code. The current implementation only supports an ONIOM
-style mechanical coupling to the `Quantum ESPRESSO <espresso_>`_ plane
-wave DFT package. Electrostatic coupling is in preparation and the
-interface has been written in a manner that coupling to other QM codes
-should be possible without changes to LAMMPS itself.
-
-.. _espresso: http://www.quantum-espresso.org
-
-
-
-The interface code for this is in the lib/qmmm directory of the LAMMPS
-distribution and is being made available at this early stage of
-development in order to encourage contributions for interfaces to
-other QM codes. This will allow the LAMMPS side of the implementation
-to be adapted if necessary before being finalized.
-
-Details about how to use this fix are currently documented in the
-description of the QM/MM interface code itself in lib/qmmm/README.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global scalar or vector or per-atom
-quantities are stored by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-QMMM package. It is only enabled if
-LAMMPS was built with that package. It also requires building a
-library provided with LAMMPS. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The fix is only functional when LAMMPS is built as a library and
-linked with a compatible QM program and a QM/MM frontend into a QM/MM
-executable. See the lib/qmmm/README file for details.
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_qtb.txt b/doc/_sources/fix_qtb.txt
deleted file mode 100644
index 42c5cea1f..000000000
--- a/doc/_sources/fix_qtb.txt
+++ /dev/null
@@ -1,215 +0,0 @@
-.. index:: fix qtb
-
-fix qtb command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID qtb keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* qtb = style name of this fix
-* zero or more keyword/value pairs may be appended
-* keyword = *temp* or *damp* or *seed* or *f_max* or *N_f*
-.. parsed-literal::
-
- *temp* value = target quantum temperature (temperature units)
- *damp* value = damping parameter (time units) inverse of friction <i>&gamma</i>;
- *seed* value = random number seed (positive integer)
- *f_max* value = upper cutoff frequency of the vibration spectrum (1/time units)
- *N_f* value = number of frequency bins (positive integer)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve
- fix 1 all qtb temp 110 damp 200 seed 35082 f_max 0.3 N_f 100 (liquid methane modeled with the REAX force field, real units)
- fix 2 all nph iso 1.01325 1.01325 1
- fix 2 all qtb temp 300 damp 1 seed 47508 f_max 120.0 N_f 100 (quartz modeled with the BKS force field, metal units)
-
-Description
-"""""""""""
-
-This command performs the quantum thermal bath scheme proposed by
-:ref:`(Dammak) <Dammak>` to include self-consistent quantum nuclear effects,
-when used in conjunction with the :doc:`fix nve <fix_nve>` or :doc:`fix nph <fix_nh>` commands.
-
-Classical molecular dynamics simulation does not include any quantum
-nuclear effect. Quantum treatment of the vibrational modes will
-introduce zero point energy into the system, alter the energy power
-spectrum and bias the heat capacity from the classical limit. Missing
-all the quantum nuclear effects, classical MD cannot model systems at
-temperatures lower than their classical limits. This effect is
-especially important for materials with a large population of hydrogen
-atoms and thus higher classical limits.
-
-The equation of motion implemented by this command follows a Langevin
-form:
-
-.. raw:: html
-
- <center><font size="4"><i> m<sub>i</sub>a<sub>i</sub> = f<sub>i</sub>
- + R<sub>i</sub> -
- m<sub>i</sub>&gamma;v<sub>i</sub>. </i></font></center>
-
-Here <i>m<sub>i</sub></i>, <i>a<sub>i</sub></i>, <i>f<sub>i</sub>
-</i>, <i>R<sub>i</sub></i>, <i>&gamma;</i> and <i>v<sub>i</sub> </i>
-represent mass, acceleration, force exerted by all other atoms, random
-force, frictional coefficient (the inverse of damping parameter damp),
-and velocity. The random force <i>R<sub>i</sub></i> is "colored" so
-that any vibrational mode with frequency <i>&omega;</i> will have a
-temperature-sensitive energy <i>&theta;</i>(<i>&omega;,T</i>) which
-resembles the energy expectation for a quantum harmonic oscillator
-with the same natural frequency:
-
-.. raw:: html
-
- <center><font size="4"> <i>&theta;</i>(<i>&omega;,T</i>) =
- &#8463;&omega;/2 +
- &#8463;&omega;[</i>exp(<i>&#8463;&omega;/k</i><sub>B</sub><i>T</i>)<i>-1</i>]<i><sup>-1</sup></i>
- </font></center>
-
-To efficiently generate the random forces, we employ the method
-of :ref:`(Barrat) <Barrat>`, that circumvents the need to generate all
-random forces for all times before the simulation. The memory
-requirement of this approach is less demanding and independent
-of the simulation duration. Since the total random force <i>R</i><sub>tot</sub>
-does not necessarily vanish for a finite number of atoms,
-<i>R<sub>i</sub></i> is replaced by <i>R<sub>i</sub></i> - <i>R</i><sub>tot</sub>/<i>N</i><sub>tot</sub>
-to avoid collective motion of the system.
-
-The *temp* parameter sets the target quantum temperature. LAMMPS will
-still have an output temperature in its thermo style. That is the
-instantaneous classical temperature <i>T</i><sup>cl</sup> derived from
-the atom velocities at thermal equilibrium. A non-zero
-<i>T</i><sup>cl</sup> will be present even when the quantum
-temperature approaches zero. This is associated with zero-point energy
-at low temperatures.
-
-.. raw:: html
-
- <center><font size="4"> <i>T</i><sup>cl</sup> = &sum;
- <i>m<sub>i</sub>v<sub>i</sub><sup>2</sup>/3Nk</i><sub>B</sub>
- </font></center>
-
-The *damp* parameter is specified in time units, and it equals the
-inverse of the frictional coefficient <i>&gamma;</i>. <i>&gamma;</i>
-should be as small as possible but slightly larger than the timescale
-of anharmonic coupling in the system which is about 10 ps to 100
-ps. When <i>&gamma;</i> is too large, it gives an energy spectrum that
-differs from the desired Bose-Einstein spectrum. When <i>&gamma;</i>
-is too small, the quantum thermal bath coupling to the system will be
-less significant than anharmonic effects, reducing to a classical
-limit. We find that setting <i>&gamma;</i> between 5 THz and 1 THz
-could be appropriate depending on the system.
-
-The random number *seed* is a positive integer used to initiate a
-Marsaglia random number generator. Each processor uses the input seed
-to generate its own unique seed and its own stream of random
-numbers. Thus the dynamics of the system will not be identical on two
-runs on different numbers of processors.
-
-The *f_max* parameter truncate the noise frequency domain so that
-vibrational modes with frequencies higher than *f_max* will not be
-modulated. If we denote &Delta;<i>t</i> as the time interval for the
-MD integration, *f_max* is always reset by the code to make
-<i>&alpha;</i> = (int)(2*f_max*&Delta;<i>t</i>)<sup><i>-1</i></sup> a
-positive integer and print out relative information. An appropriate
-value for the cutoff frequency *f_max* would be around 2~3
-<i>f</i><sub>D</sub>, where <i>f</i><sub>D</sub> is the Debye
-frequency.
-
-The *N_f* parameter is the frequency grid size, the number of points
-from 0 to *f_max* in the frequency domain that will be
-sampled. <i>3&times;2</i> *N_f* per-atom random numbers are required
-in the random force generation and there could be as many atoms as in
-the whole simulation that can migrate into every individual
-processor. A larger *N_f* provides a more accurate sampling of the
-spectrum while consumes more memory. With fixed *f_max* and
-<i>&gamma;</i>, *N_f* should be big enough to converge the classical
-temperature <i>T</i><sup>cl</sup> as a function of target quantum bath
-temperature. Memory usage per processor could be from 10 to 100
-Mbytes.
-
-.. note::
-
- Unlike the :doc:`fix nvt <fix_nh>` command which performs
- Nose/Hoover thermostatting AND time integration, this fix does NOT
- perform time integration. It only modifies forces to a colored
- thermostat. Thus you must use a separate time integration fix, like
- :doc:`fix nve <fix_nve>` or :doc:`fix nph <fix_nh>` to actually update the
- velocities and positions of atoms (as shown in the
- examples). Likewise, this fix should not normally be used with other
- fixes or commands that also specify system temperatures , e.g. :doc:`fix nvt <fix_nh>` and :doc:`fix temp/rescale <fix_temp_rescale>`.
-
-
-----------
-
-
-**Restart, fix_modify, output, run start/stop, minimizie info:**
-
-No information about this fix is written to :doc:`binary restart files <restart>`. Because the state of the random number generator
-is not saved in restart files, this means you cannot do "exact"
-restarts with this fix. However, in a statistical sense, a restarted
-simulation should produce similar behaviors of the system.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix style is part of the USER-QTB package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-
-----------
-
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nph <fix_nh>`, :doc:`fix langevin <fix_langevin>`, :doc:`fix qbmsst <fix_qbmsst>`
-
-
-----------
-
-
-Default
-"""""""
-
-The keyword defaults are temp = 300, damp = 1, seed = 880302,
-f_max=200.0 and N_f = 100.
-
-
-----------
-
-
-.. _Dammak:
-
-
-
-**(Dammak)** Dammak, Chalopin, Laroche, Hayoun, and Greffet, Phys Rev
-Lett, 103, 190601 (2009).
-
-.. _Barrat:
-
-
-
-**(Barrat)** Barrat and Rodney, J. Stat. Phys, 144, 679 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_reax_bonds.txt b/doc/_sources/fix_reax_bonds.txt
deleted file mode 100644
index a3c5a5379..000000000
--- a/doc/_sources/fix_reax_bonds.txt
+++ /dev/null
@@ -1,76 +0,0 @@
-.. index:: fix reax/bonds
-
-fix reax/bonds command
-======================
-
-fix reax/c/bonds command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID reax/bonds Nevery filename
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* reax/bonds = style name of this fix command
-* Nevery = output interval in timesteps
-* filename = name of output file
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all reax/bonds 100 bonds.tatb
- fix 1 all reax/c/bonds 100 bonds.reaxc
-
-Description
-"""""""""""
-
-Write out the bond information computed by the ReaxFF potential
-specified by :doc:`pair_style reax <pair_reax>` or :doc:`pair_style reax/c <pair_reax_c>` in the exact same format as the original
-stand-alone ReaxFF code of Adri van Duin. The bond information is
-written to *filename* on timesteps that are multiples of *Nevery*,
-including timestep 0. For time-averaged chemical species analysis,
-please see the :doc:`fix species <fix_species>` command.
-
-The format of the output file should be self-explantory.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-The fix reax/bonds command requires that the :doc:`pair_style reax <pair_reax>` be invoked. This fix is part of the REAX
-package. It is only enabled if LAMMPS was built with that package,
-which also requires the REAX library be built and linked with LAMMPS.
-The fix reax/c/bonds command requires that the :doc:`pair_style reax/c <pair_reax_c>` be invoked. This fix is part of the
-USER-REAXC package. It is only enabled if LAMMPS was built with that
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style reax <pair_reax>`, :doc:`pair_style reax/c <pair_reax_c>`, :doc:`fix reax/c/species <fix_reaxc_species>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_reaxc_species.txt b/doc/_sources/fix_reaxc_species.txt
deleted file mode 100644
index 41b7605fe..000000000
--- a/doc/_sources/fix_reaxc_species.txt
+++ /dev/null
@@ -1,166 +0,0 @@
-.. index:: fix reax/c/species
-
-fix reax/c/species command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID reax/c/species Nevery Nrepeat Nfreq filename keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* reax/c/species = style name of this command
-* Nevery = sample bond-order every this many timesteps
-* Nrepeat = # of bond-order samples used for calculating averages
-* Nfreq = calculate average bond-order every this many timesteps
-* filename = name of output file
-* zero or more keyword/value pairs may be appended
-* keyword = *cutoff* or *element* or *position*
-.. parsed-literal::
-
- *cutoff* value = I J Cutoff
- I, J = atom types
- Cutoff = Bond-order cutoff value for this pair of atom types
- *element* value = Element1, Element2, ...
- *position* value = posfreq filepos
- posfreq = write position files every this many timestep
- filepos = name of position output file
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all reax/c/species 10 10 100 species.out
- fix 1 all reax/c/species 1 2 20 species.out cutoff 1 1 0.40 cutoff 1 2 0.55
- fix 1 all reax/c/species 1 100 100 species.out element Au O H position 1000 AuOH.pos
-
-Description
-"""""""""""
-
-Write out the chemical species information computed by the ReaxFF
-potential specified by :doc:`pair_style reax/c <pair_reax_c>`.
-Bond-order values (either averaged or instantaneous, depending on
-value of *Nrepeat*) are used to determine chemical bonds. Every
-*Nfreq* timesteps, chemical species information is written to
-*filename* as a two line output. The first line is a header
-containing labels. The second line consists of the following:
-timestep, total number of molecules, total number of distinct species,
-number of molecules of each species. In this context, "species" means
-a unique molecule. The chemical formula of each species is given in
-the first line.
-
-Optional keyword *cutoff* can be assigned to change the minimum
-bond-order values used in identifying chemical bonds between pairs of
-atoms. Bond-order cutoffs should be carefully chosen, as bond-order
-cutoffs that are too small may include too many bonds (which will
-result in an error), while cutoffs that are too large will result in
-fragmented molecules. The default cutoff of 0.3 usually gives good
-results.
-
-The optional keyword *element* can be used to specify the chemical
-symbol printed for each LAMMPS atom type. The number of symbols must
-match the number of LAMMPS atom types and each symbol must consist of
-1 or 2 alphanumeric characters. Normally, these symbols should be
-chosen to match the chemical identity of each LAMMPS atom type, as
-specified using the :doc:`reax/c pair_coeff <pair_reax_c>` command and
-the ReaxFF force field file.
-
-The optional keyword *position* writes center-of-mass positions of
-each identified molecules to file *filepos* every *posfreq* timesteps.
-The first line contains information on timestep, total number of
-molecules, total number of distinct species, and box dimensions. The
-second line is a header containing labels. From the third line
-downward, each molecule writes a line of output containing the
-following information: molecule ID, number of atoms in this molecule,
-chemical formula, total charge, and center-of-mass xyz positions of
-this molecule. The xyz positions are in fractional coordinates
-relative to the box dimensions.
-
-For the keyword *position*, the *filepos* is the name of the output
-file. It can contain the wildcard character "*". If the "*"
-character appears in *filepos*, then one file per snapshot is written
-at *posfreq* and the "*" character is replaced with the timestep
-value. For example, AuO.pos.* becomes AuO.pos.0, AuO.pos.1000, etc.
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the bond-order values are sampled to get the average bond
-order. The species analysis is performed using the average bond-order
-on timesteps that are a multiple of *Nfreq*. The average is over
-*Nrepeat* bond-order samples, computed in the preceding portion of the
-simulation every *Nevery* timesteps. *Nfreq* must be a multiple of
-*Nevery* and *Nevery* must be non-zero even if *Nrepeat* is 1.
-Also, the timesteps
-contributing to the average bond-order cannot overlap,
-i.e. Nrepeat*Nevery can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then bond-order
-values on timesteps 90,92,94,96,98,100 will be used to compute the
-average bond-order for the species analysis output on timestep 100.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes both a global vector of length 2 and a per-atom
-vector, either of which can be accessed by various :ref:`output commands <howto_15>`. The values in the global
-vector are "intensive".
-
-The 2 values in the global vector are as follows:
-
-* 1 = total number of molecules
-* 2 = total number of distinct species
-
-The per-atom vector stores the molecule ID for each atom as identified
-by the fix. If an atom is not in a molecule, its ID will be 0.
-For atoms in the same molecule, the molecule ID for all of them
-will be the same and will be equal to the smallest atom ID of
-any atom in the molecule.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-The fix species currently only works with
-:doc:`pair_style reax/c <pair_reax_c>` and it requires that the :doc:`pair_style reax/c <pair_reax_c>` be invoked. This fix is part of the
-USER-REAXC package. It is only enabled if LAMMPS was built with that
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-It should be possible to extend it to other reactive pair_styles (such as
-:doc:`rebo <pair_airebo>`, :doc:`airebo <pair_airebo>`,
-:doc:`comb <pair_comb>`, and :doc:`bop <pair_bop>`), but this has not yet been done.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style reax/c <pair_reax_c>`, :doc:`fix reax/bonds <fix_reax_bonds>`
-
-Default
-"""""""
-
-The default values for bond-order cutoffs are 0.3 for all I-J pairs. The
-default element symbols are C, H, O, N. Position files are not written
-by default.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_recenter.txt b/doc/_sources/fix_recenter.txt
deleted file mode 100644
index 5ab5fd46c..000000000
--- a/doc/_sources/fix_recenter.txt
+++ /dev/null
@@ -1,141 +0,0 @@
-.. index:: fix recenter
-
-fix recenter command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID recenter x y z keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* recenter = style name of this fix command
-* x,y,z = constrain center-of-mass to these coords (distance units), any coord can also be NULL or INIT (see below)
-* zero or more keyword/value pairs may be appended
-* keyword = *shift* or *units*
-.. parsed-literal::
-
- *shift* value = group-ID
- group-ID = group of atoms whose coords are shifted
- *units* value = *box* or *lattice* or *fraction*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all recenter 0.0 0.5 0.0
- fix 1 all recenter INIT INIT NULL
- fix 1 all recenter INIT 0.0 0.0 units box
-
-Description
-"""""""""""
-
-Constrain the center-of-mass position of a group of atoms by adjusting
-the coordinates of the atoms every timestep. This is simply a small
-shift that does not alter the dynamics of the system or change the
-relative coordinates of any pair of atoms in the group. This can be
-used to insure the entire collection of atoms (or a portion of them)
-do not drift during the simulation due to random perturbations
-(e.g. :doc:`fix langevin <fix_langevin>` thermostatting).
-
-Distance units for the x,y,z values are determined by the setting of
-the *units* keyword, as discussed below. One or more x,y,z values can
-also be specified as NULL, which means exclude that dimension from
-this operation. Or it can be specified as INIT which means to
-constrain the center-of-mass to its initial value at the beginning of
-the run.
-
-The center-of-mass (COM) is computed for the group specified by the
-fix. If the current COM is different than the specified x,y,z, then a
-group of atoms has their coordinates shifted by the difference. By
-default the shifted group is also the group specified by the fix. A
-different group can be shifted by using the *shift* keyword. For
-example, the COM could be computed on a protein to keep it in the
-center of the simulation box. But the entire system (protein + water)
-could be shifted.
-
-If the *units* keyword is set to *box*, then the distance units of
-x,y,z are defined by the :doc:`units <units>` command - e.g. Angstroms
-for *real* units. A *lattice* value means the distance units are in
-lattice spacings. The :doc:`lattice <lattice>` command must have been
-previously used to define the lattice spacing. A *fraction* value
-means a fractional distance between the lo/hi box boundaries, e.g. 0.5
-= middle of the box. The default is to use lattice units.
-
-Note that the :doc:`velocity <velocity>` command can be used to create
-velocities with zero aggregate linear and/or angular momentum.
-
-.. note::
-
- This fix performs its operations at the same point in the
- timestep as other time integration fixes, such as :doc:`fix nve <fix_nve>`, :doc:`fix nvt <fix_nh>`, or :doc:`fix npt <fix_nh>`.
- Thus fix recenter should normally be the last such fix specified in
- the input script, since the adjustments it makes to atom coordinates
- should come after the changes made by time integration. LAMMPS will
- warn you if your fixes are not ordered this way.
-
-.. note::
-
- If you use this fix on a small group of atoms (e.g. a molecule
- in solvent) without using the *shift* keyword to adjust the positions
- of all atoms in the system, then the results can be unpredictable.
- For example, if the molecule is pushed in one direction by the
- solvent, its velocity will increase. But its coordinates will be
- recentered, meaning it is pushed back towards the force. Thus over
- time, the velocity and temperature of the molecule could become very
- large (though it won't appear to be moving due to the recentering).
- If you are thermostatting the entire system, then the solvent would be
- cooled to compensate. A better solution for this simulation scenario
- is to use the :doc:`fix spring <fix_spring>` command to tether the
- molecule in place.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-distance the group is moved by fix recenter.
-
-This fix also computes global 3-vector which can be accessed by
-various :ref:`output commands <howto_15>`. The 3
-quantities in the vector are xyz components of displacement applied to
-the group of atoms by the fix.
-
-The scalar and vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix should not be used with an x,y,z setting that causes a large
-shift in the system on the 1st timestep, due to the requested COM
-being very different from the initial COM. This could cause atoms to
-be lost, especially in parallel. Instead, use the
-:doc:`displace_atoms <displace_atoms>` command, which can be used to
-move atoms a large distance.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix momentum <fix_momentum>`, :doc:`velocity <velocity>`
-
-Default
-"""""""
-
-The option defaults are shift = fix group-ID, and units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_restrain.txt b/doc/_sources/fix_restrain.txt
deleted file mode 100644
index 003cb9786..000000000
--- a/doc/_sources/fix_restrain.txt
+++ /dev/null
@@ -1,209 +0,0 @@
-.. index:: fix restrain
-
-fix restrain command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID restrain keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* restrain = style name of this fix command
-* one or more keyword/arg pairs may be appended
-* keyword = *bond* or *angle* or *dihedral*
-.. parsed-literal::
-
- *bond* args = atom1 atom2 Kstart Kstop r0
- atom1,atom2 = IDs of 2 atoms in bond
- Kstart,Kstop = restraint coefficients at start/end of run (energy units)
- r0 = equilibrium bond distance (distance units)
- *angle* args = atom1 atom2 atom3 Kstart Kstop theta0
- atom1,atom2,atom3 = IDs of 3 atoms in angle, atom2 = middle atom
- Kstart,Kstop = restraint coefficients at start/end of run (energy units)
- theta0 = equilibrium angle theta (degrees)
- *dihedral* args = atom1 atom2 atom3 atom4 Kstart Kstop phi0
- atom1,atom2,atom3,atom4 = IDs of 4 atoms in dihedral in linear order
- Kstart,Kstop = restraint coefficients at start/end of run (energy units)
- phi0 = equilibrium dihedral angle phi (degrees)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix holdem all restrain bond 45 48 2000.0 2000.0 2.75
- fix holdem all restrain dihedral 1 2 3 4 2000.0 2000.0 120.0
- fix holdem all restrain bond 45 48 2000.0 2000.0 2.75 dihedral 1 2 3 4 2000.0 2000.0 120.0
- fix texas_holdem all restrain dihedral 1 2 3 4 0.0 2000.0 120.0 dihedral 1 2 3 5 0.0 2000.0 -120.0 dihedral 1 2 3 6 0.0 2000.0 0.0
-
-Description
-"""""""""""
-
-Restrain the motion of the specified sets of atoms by making them part
-of a bond or angle or dihedral interaction whose strength can vary
-over time during a simulation. This is functionally equivalent to
-creating a bond or angle or dihedral for the same atoms in a data
-file, as specified by the :doc:`read_data <read_data>` command, albeit
-with a time-varying pre-factor coefficient. For the purpose of
-forcefield parameter-fitting or mapping a molecular potential energy
-surface, this fix reduces the hassle and risk associated with
-modifying data files. In other words, use this fix to temporarily
-force a molecule to adopt a particular conformation. To create a
-permanent bond or angle or dihedral, you should modify the data file.
-
-The group-ID specified by this fix is ignored.
-
-The second example above applies a restraint to hold the dihedral
-angle formed by atoms 1, 2, 3, and 4 near 120 degrees using a constant
-restraint coefficient. The fourth example applies similar restraints
-to multiple dihedral angles using a restraint coefficient that
-increases from 0.0 to 2000.0 over the course of the run.
-
-.. note::
-
- Adding a force to atoms implies a change in their potential
- energy as they move due to the applied force field. For dynamics via
- the :doc:`run <run>` command, this energy can be added to the system's
- potential energy for thermodynamic output (see below). For energy
- minimization via the :doc:`minimize <minimize>` command, this energy
- must be added to the system's potential energy to formulate a
- self-consistent minimization problem (see below).
-
-In order for a restraint to be effective, the restraint force must
-typically be significantly larger than the forces associated with
-conventional forcefield terms. If the restraint is applied during a
-dynamics run (as opposed to during an energy minimization), a large
-restraint coefficient can significantly reduce the stable timestep
-size, especially if the atoms are initially far from the preferred
-conformation. You may need to experiment to determine what value of K
-works best for a given application.
-
-For the case of finding a minimum energy structure for a single
-molecule with particular restratins (e.g. for fitting forcefield
-parameters or constructing a potential energy surface), commands such
-as the following may be useful:
-
-.. parsed-literal::
-
- # minimize molecule energy with restraints
- velocity all create 600.0 8675309 mom yes rot yes dist gaussian
- fix NVE all nve
- fix TFIX all langevin 600.0 0.0 100 24601
- fix REST all restrain dihedral 2 1 3 8 0.0 5000.0 ${angle1} dihedral 3 1 2 9 0.0 5000.0 ${angle2}
- fix_modify REST energy yes
- run 10000
- fix TFIX all langevin 0.0 0.0 100 24601
- fix REST all restrain dihedral 2 1 3 8 5000.0 5000.0 ${angle1} dihedral 3 1 2 9 5000.0 5000.0 ${angle2}
- fix_modify REST energy yes
- run 10000
- # sanity check for convergence
- minimize 1e-6 1e-9 1000 100000
- # report unrestrained energies
- unfix REST
- run 0
-
-
-----------
-
-
-The *bond* keyword applies a bond restraint to the specified atoms
-using the same functional form used by the :doc:`bond_style harmonic <bond_harmonic>` command. The potential associated with
-the restraint is
-
-.. image:: Eqs/bond_harmonic.jpg
- :align: center
-
-with the following coefficients:
-
-* K (energy/distance^2)
-* r0 (distance)
-
-K and r0 are specified with the fix. Note that the usual 1/2 factor
-is included in K.
-
-
-----------
-
-
-The *angle* keyword applies an angle restraint to the specified atoms
-using the same functional form used by the :doc:`angle_style harmonic <angle_harmonic>` command. The potential associated with
-the restraint is
-
-.. image:: Eqs/angle_harmonic.jpg
- :align: center
-
-with the following coefficients:
-
-* K (energy/radian^2)
-* theta0 (degrees)
-
-K and theta0 are specified with the fix. Note that the usual 1/2
-factor is included in K.
-
-
-----------
-
-
-The *dihedral* keyword applies a dihedral restraint to the specified
-atoms using a simplified form of the function used by the
-:doc:`dihedral_style charmm <dihedral_charmm>` command. The potential
-associated with the restraint is
-
-.. image:: Eqs/dihedral_charmm.jpg
- :align: center
-
-with the following coefficients:
-
-* K (energy)
-* n = 1
-* d (degrees) = phi0 + 180
-
-K and phi0 are specified with the fix. Note that the value of n is
-hard-wired to 1. Also note that the energy will be a minimum when the
-current dihedral angle phi is equal to phi0.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the potential energy associated with this fix to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-.. note::
-
- If you want the fictitious potential energy associated with the
- added forces to be included in the total potential energy of the
- system (the quantity being minimized), you MUST enable the
- :doc:`fix_modify <fix_modify>` *energy* option for this fix.
-
-This fix computes a global scalar, which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-potential energy for all the restraints as discussed above. The scalar
-value calculated by this fix is "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_rigid.txt b/doc/_sources/fix_rigid.txt
deleted file mode 100644
index 0c3fa3e55..000000000
--- a/doc/_sources/fix_rigid.txt
+++ /dev/null
@@ -1,871 +0,0 @@
-.. index:: fix rigid
-
-fix rigid command
-=================
-
-fix rigid/nve command
-=====================
-
-fix rigid/nvt command
-=====================
-
-fix rigid/npt command
-=====================
-
-fix rigid/nph command
-=====================
-
-fix rigid/small command
-=======================
-
-fix rigid/nve/small command
-===========================
-
-fix rigid/nvt/small command
-===========================
-
-fix rigid/npt/small command
-===========================
-
-fix rigid/nph/small command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style bodystyle args keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style = *rigid* or *rigid/nve* or *rigid/nvt* or *rigid/npt* or *rigid/nph* or *rigid/small* or *rigid/nve/small* or *rigid/nvt/small* or *rigid/npt/small* or *rigid/nph/small*
-* bodystyle = *single* or *molecule* or *group*
-.. parsed-literal::
-
- *single* args = none
- *molecule* args = none
- *group* args = N groupID1 groupID2 ...
- N = # of groups
- groupID1, groupID2, ... = list of N group IDs
-
-* zero or more keyword/value pairs may be appended
-* keyword = *langevin* or *temp* or *iso* or *aniso* or *x* or *y* or *z* or *couple* or *tparam* or *pchain* or *dilate* or *force* or *torque* or *infile*
-.. parsed-literal::
-
- *langevin* values = Tstart Tstop Tperiod seed
- Tstart,Tstop = desired temperature at start/stop of run (temperature units)
- Tdamp = temperature damping parameter (time units)
- seed = random number seed to use for white noise (positive integer)
- *temp* values = Tstart Tstop Tdamp
- Tstart,Tstop = desired temperature at start/stop of run (temperature units)
- Tdamp = temperature damping parameter (time units)
- *iso* or *aniso* values = Pstart Pstop Pdamp
- Pstart,Pstop = scalar external pressure at start/end of run (pressure units)
- Pdamp = pressure damping parameter (time units)
- *x* or *y* or *z* values = Pstart Pstop Pdamp
- Pstart,Pstop = external stress tensor component at start/end of run (pressure units)
- Pdamp = stress damping parameter (time units)
- *couple* = *none* or *xyz* or *xy* or *yz* or *xz*
- *tparam* values = Tchain Titer Torder
- Tchain = length of Nose/Hoover thermostat chain
- Titer = number of thermostat iterations performed
- Torder = 3 or 5 = Yoshida-Suzuki integration parameters
- *pchain* values = Pchain
- Pchain = length of the Nose/Hoover thermostat chain coupled with the barostat
- *dilate* value = dilate-group-ID
- dilate-group-ID = only dilate atoms in this group due to barostat volume changes
- *force* values = M xflag yflag zflag
- M = which rigid body from 1-Nbody (see asterisk form below)
- xflag,yflag,zflag = off/on if component of center-of-mass force is active
- *torque* values = M xflag yflag zflag
- M = which rigid body from 1-Nbody (see asterisk form below)
- xflag,yflag,zflag = off/on if component of center-of-mass torque is active
- *infile* filename
- filename = file with per-body values of mass, center-of-mass, moments of inertia
- *mol* value = template-ID
- template-ID = ID of molecule template specified in a separate :doc:`molecule <molecule>` command
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 clump rigid single
- fix 1 clump rigid/small molecule
- fix 1 clump rigid single force 1 off off on langevin 1.0 1.0 1.0 428984
- fix 1 polychains rigid/nvt molecule temp 1.0 1.0 5.0
- fix 1 polychains rigid molecule force 1*5 off off off force 6*10 off off on
- fix 1 polychains rigid/small molecule langevin 1.0 1.0 1.0 428984
- fix 2 fluid rigid group 3 clump1 clump2 clump3 torque * off off off
- fix 1 rods rigid/npt molecule temp 300.0 300.0 100.0 iso 0.5 0.5 10.0
- fix 1 particles rigid/npt molecule temp 1.0 1.0 5.0 x 0.5 0.5 1.0 z 0.5 0.5 1.0 couple xz
- fix 1 water rigid/nph molecule iso 0.5 0.5 1.0
- fix 1 particles rigid/npt/small molecule temp 1.0 1.0 1.0 iso 0.5 0.5 1.0
-
-Description
-"""""""""""
-
-Treat one or more sets of atoms as independent rigid bodies. This
-means that each timestep the total force and torque on each rigid body
-is computed as the sum of the forces and torques on its constituent
-particles. The coordinates, velocities, and orientations of the atoms
-in each body are then updated so that the body moves and rotates as a
-single entity.
-
-Examples of large rigid bodies are a colloidal particle, or portions
-of a biomolecule such as a protein.
-
-Example of small rigid bodies are patchy nanoparticles, such as those
-modeled in :ref:`this paper <Zhang>` by Sharon Glotzer's group, clumps of
-granular particles, lipid molecules consiting of one or more point
-dipoles connected to other spheroids or ellipsoids, irregular
-particles built from line segments (2d) or triangles (3d), and
-coarse-grain models of nano or colloidal particles consisting of a
-small number of constituent particles. Note that the :doc:`fix shake <fix_shake>` command can also be used to rigidify small
-molecules of 2, 3, or 4 atoms, e.g. water molecules. That fix treats
-the constituent atoms as point masses.
-
-These fixes also update the positions and velocities of the atoms in
-each rigid body via time integration, in the NVE, NVT, NPT, or NPH
-ensemble, as described below.
-
-There are two main variants of this fix, fix rigid and fix
-rigid/small. The NVE/NVT/NPT/NHT versions belong to one of the two
-variants, as their style names indicate.
-
-.. note::
-
- Not all of the *bodystyle* options and keyword/value options are
- available for both the *rigid* and *rigid/small* variants. See
- details below.
-
-The *rigid* variant is typically the best choice for a system with a
-small number of large rigid bodies, each of which can extend across
-the domain of many processors. It operates by creating a single
-global list of rigid bodies, which all processors contribute to.
-MPI_Allreduce operations are performed each timestep to sum the
-contributions from each processor to the force and torque on all the
-bodies. This operation will not scale well in parallel if large
-numbers of rigid bodies are simulated.
-
-The *rigid/small* variant is typically best for a system with a large
-number of small rigid bodies. Each body is assigned to the atom
-closest to the geometrical center of the body. The fix operates using
-local lists of rigid bodies owned by each processor and information is
-exchanged and summed via local communication between neighboring
-processors when ghost atom info is accumlated.
-
-.. note::
-
- To use *rigid/small* the ghost atom cutoff must be large enough
- to span the distance between the atom that owns the body and every
- other atom in the body. This distance value is printed out when the
- rigid bodies are defined. If the :doc:`pair_style <pair_style>` cutoff
- plus neighbor skin does not span this distance, then you should use
- the :doc:`comm_modify cutoff <comm_modify>` command with a setting
- epsilon larger than the distance.
-
-Which of the two variants is faster for a particular problem is hard
-to predict. The best way to decide is to perform a short test run.
-Both variants should give identical numerical answers for short runs.
-Long runs should give statistically similar results, but round-off
-differences may accumulate to produce divergent trajectories.
-
-.. note::
-
- You should not update the atoms in rigid bodies via other
- time-integration fixes (e.g. :doc:`fix nve <fix_nve>`, :doc:`fix nvt <fix_nh>`, :doc:`fix npt <fix_nh>`), or you will be integrating
- their motion more than once each timestep. When performing a hybrid
- simulation with some atoms in rigid bodies, and some not, a separate
- time integration fix like :doc:`fix nve <fix_nve>` or :doc:`fix nvt <fix_nh>` should be used for the non-rigid particles.
-
-.. note::
-
- These fixes are overkill if you simply want to hold a collection
- of atoms stationary or have them move with a constant velocity. A
- simpler way to hold atoms stationary is to not include those atoms in
- your time integration fix. E.g. use "fix 1 mobile nve" instead of
- "fix 1 all nve", where "mobile" is the group of atoms that you want to
- move. You can move atoms with a constant velocity by assigning them
- an initial velocity (via the :doc:`velocity <velocity>` command),
- setting the force on them to 0.0 (via the :doc:`fix setforce <fix_setforce>` command), and integrating them as usual
- (e.g. via the :doc:`fix nve <fix_nve>` command).
-
-.. note::
-
- The aggregate properties of each rigid body are calculated one
- time at the start of the first simulation run after this fix is
- specified. The properties include the position and velocity of the
- center-of-mass of the body, its moments of inertia, and its angular
- momentum. This is done using the properties of the constituent atoms
- of the body at that point in time (or see the *infile* keyword
- option). Thereafter, changing properties of individual atoms in the
- body will have no effect on a rigid body's dynamics, unless they
- effect the :doc:`pair_style <pair_style>` interactions that individual
- particles are part of. For example, you might think you could
- displace the atoms in a body or add a large velocity to each atom in a
- body to make it move in a desired direction before a 2nd run is
- performed, using the :doc:`set <set>` or
- :doc:`displace_atoms <displace_atoms>` or :doc:`velocity <velocity>`
- command. But these commands will not affect the internal attributes
- of the body, and the position and velocity or individual atoms in the
- body will be reset when time integration starts.
-
-
-----------
-
-
-Each rigid body must have two or more atoms. An atom can belong to at
-most one rigid body. Which atoms are in which bodies can be defined
-via several options.
-
-.. note::
-
- With fix rigid/small, which requires bodystyle *molecule*, you
- can define a system that has no rigid bodies initially. This is
- useful when you are using the *mol* keyword in conjunction with
- another fix that is adding rigid bodies on-the-fly, such as :doc:`fix deposit <fix_deposit>` or :doc:`fix pour <fix_pour>`.
-
-For bodystyle *single* the entire fix group of atoms is treated as one
-rigid body. This option is only allowed for fix rigid and its
-sub-styles.
-
-For bodystyle *molecule*, each set of atoms in the fix group with a
-different molecule ID is treated as a rigid body. This option is
-allowed for fix rigid and fix rigid/small, and their sub-styles. Note
-that atoms with a molecule ID = 0 will be treated as a single rigid
-body. For a system with atomic solvent (typically this is atoms with
-molecule ID = 0) surrounding rigid bodies, this may not be what you
-want. Thus you should be careful to use a fix group that only
-includes atoms you want to be part of rigid bodies.
-
-For bodystyle *group*, each of the listed groups is treated as a
-separate rigid body. Only atoms that are also in the fix group are
-included in each rigid body. This option is only allowed for fix
-rigid and its sub-styles.
-
-.. note::
-
- To compute the initial center-of-mass position and other
- properties of each rigid body, the image flags for each atom in the
- body are used to "unwrap" the atom coordinates. Thus you must insure
- that these image flags are consistent so that the unwrapping creates a
- valid rigid body (one where the atoms are close together),
- particularly if the atoms in a single rigid body straddle a periodic
- boundary. This means the input data file or restart file must define
- the image flags for each atom consistently or that you have used the
- :doc:`set <set>` command to specify them correctly. If a dimension is
- non-periodic then the image flag of each atom must be 0 in that
- dimension, else an error is generated.
-
-The *force* and *torque* keywords discussed next are only allowed for
-fix rigid and its sub-styles.
-
-By default, each rigid body is acted on by other atoms which induce an
-external force and torque on its center of mass, causing it to
-translate and rotate. Components of the external center-of-mass force
-and torque can be turned off by the *force* and *torque* keywords.
-This may be useful if you wish a body to rotate but not translate, or
-vice versa, or if you wish it to rotate or translate continuously
-unaffected by interactions with other particles. Note that if you
-expect a rigid body not to move or rotate by using these keywords, you
-must insure its initial center-of-mass translational or angular
-velocity is 0.0. Otherwise the initial translational or angular
-momentum the body has will persist.
-
-An xflag, yflag, or zflag set to *off* means turn off the component of
-force of torque in that dimension. A setting of *on* means turn on
-the component, which is the default. Which rigid body(s) the settings
-apply to is determined by the first argument of the *force* and
-*torque* keywords. It can be an integer M from 1 to Nbody, where
-Nbody is the number of rigid bodies defined. A wild-card asterisk can
-be used in place of, or in conjunction with, the M argument to set the
-flags for multiple rigid bodies. This takes the form "*" or "*n" or
-"n*" or "m*n". If N = the number of rigid bodies, then an asterisk
-with no numeric values means all bodies from 1 to N. A leading
-asterisk means all bodies from 1 to n (inclusive). A trailing
-asterisk means all bodies from n to N (inclusive). A middle asterisk
-means all types from m to n (inclusive). Note that you can use the
-*force* or *torque* keywords as many times as you like. If a
-particular rigid body has its component flags set multiple times, the
-settings from the final keyword are used.
-
-.. note::
-
- For computational efficiency, you may wish to turn off pairwise
- and bond interactions within each rigid body, as they no longer
- contribute to the motion. The :doc:`neigh_modify exclude <neigh_modify>` and :doc:`delete_bonds <delete_bonds>`
- commands are used to do this. If the rigid bodies have strongly
- overalapping atoms, you may need to turn off these interactions to
- avoid numerical problems due to large equal/opposite intra-body forces
- swamping the contribution of small inter-body forces.
-
-For computational efficiency, you should typically define one fix
-rigid or fix rigid/small command which includes all the desired rigid
-bodies. LAMMPS will allow multiple rigid fixes to be defined, but it
-is more expensive.
-
-
-----------
-
-
-The constituent particles within a rigid body can be point particles
-(the default in LAMMPS) or finite-size particles, such as spheres or
-ellipsoids or line segments or triangles. See the :doc:`atom_style sphere and ellipsoid and line and tri <atom_style>` commands for more
-details on these kinds of particles. Finite-size particles contribute
-differently to the moment of inertia of a rigid body than do point
-particles. Finite-size particles can also experience torque (e.g. due
-to :doc:`frictional granular interactions <pair_gran>`) and have an
-orientation. These contributions are accounted for by these fixes.
-
-Forces between particles within a body do not contribute to the
-external force or torque on the body. Thus for computational
-efficiency, you may wish to turn off pairwise and bond interactions
-between particles within each rigid body. The :doc:`neigh_modify exclude <neigh_modify>` and :doc:`delete_bonds <delete_bonds>`
-commands are used to do this. For finite-size particles this also
-means the particles can be highly overlapped when creating the rigid
-body.
-
-
-----------
-
-
-The *rigid* and *rigid/small* and *rigid/nve* styles perform constant
-NVE time integration. The only difference is that the *rigid* and
-*rigid/small* styles use an integration technique based on Richardson
-iterations. The *rigid/nve* style uses the methods described in the
-paper by :ref:`Miller <Miller>`, which are thought to provide better energy
-conservation than an iterative approach.
-
-The *rigid/nvt* and *rigid/nvt/small* styles performs constant NVT
-integration using a Nose/Hoover thermostat with chains as described
-originally in :ref:`(Hoover) <Hoover>` and :ref:`(Martyna) <Martyna>`, which
-thermostats both the translational and rotational degrees of freedom
-of the rigid bodies. The rigid-body algorithm used by *rigid/nvt*
-is described in the paper by :ref:`Kamberaj <Kamberaj>`.
-
-The *rigid/npt* and *rigid/nph* (and their /small counterparts) styles
-perform constant NPT or NPH integration using a Nose/Hoover barostat
-with chains. For the NPT case, the same Nose/Hoover thermostat is also
-used as with *rigid/nvt*.
-
-The barostat parameters are specified using one or more of the *iso*,
-*aniso*, *x*, *y*, *z* and *couple* keywords. These keywords give you
-the ability to specify 3 diagonal components of the external stress
-tensor, and to couple these components together so that the dimensions
-they represent are varied together during a constant-pressure
-simulation. The effects of these keywords are similar to those
-defined in :doc:`fix npt/nph <fix_nh>`
-
-.. note::
-
- Currently the *rigid/npt* and *rigid/nph* (and their /small
- counterparts) styles do not support triclinic (non-orthongonal) boxes.
-
-The target pressures for each of the 6 components of the stress tensor
-can be specified independently via the *x*, *y*, *z* keywords, which
-correspond to the 3 simulation box dimensions. For each component,
-the external pressure or tensor component at each timestep is a ramped
-value during the run from *Pstart* to *Pstop*. If a target pressure is
-specified for a component, then the corresponding box dimension will
-change during a simulation. For example, if the *y* keyword is used,
-the y-box length will change. A box dimension will not change if that
-component is not specified, although you have the option to change
-that dimension via the :doc:`fix deform <fix_deform>` command.
-
-For all barostat keywords, the *Pdamp* parameter operates like the
-*Tdamp* parameter, determining the time scale on which pressure is
-relaxed. For example, a value of 10.0 means to relax the pressure in
-a timespan of (roughly) 10 time units (e.g. tau or fmsec or psec - see
-the :doc:`units <units>` command).
-
-Regardless of what atoms are in the fix group (the only atoms which
-are time integrated), a global pressure or stress tensor is computed
-for all atoms. Similarly, when the size of the simulation box is
-changed, all atoms are re-scaled to new positions, unless the keyword
-*dilate* is specified with a *dilate-group-ID* for a group that
-represents a subset of the atoms. This can be useful, for example, to
-leave the coordinates of atoms in a solid substrate unchanged and
-controlling the pressure of a surrounding fluid. Another example is a
-system consisting of rigid bodies and point particles where the
-barostat is only coupled with the rigid bodies. This option should be
-used with care, since it can be unphysical to dilate some atoms and
-not others, because it can introduce large, instantaneous
-displacements between a pair of atoms (one dilated, one not) that are
-far from the dilation origin.
-
-The *couple* keyword allows two or three of the diagonal components of
-the pressure tensor to be "coupled" together. The value specified
-with the keyword determines which are coupled. For example, *xz*
-means the *Pxx* and *Pzz* components of the stress tensor are coupled.
-*Xyz* means all 3 diagonal components are coupled. Coupling means two
-things: the instantaneous stress will be computed as an average of the
-corresponding diagonal components, and the coupled box dimensions will
-be changed together in lockstep, meaning coupled dimensions will be
-dilated or contracted by the same percentage every timestep. The
-*Pstart*, *Pstop*, *Pdamp* parameters for any coupled dimensions must
-be identical. *Couple xyz* can be used for a 2d simulation; the *z*
-dimension is simply ignored.
-
-The *iso* and *aniso* keywords are simply shortcuts that are
-equivalent to specifying several other keywords together.
-
-The keyword *iso* means couple all 3 diagonal components together when
-pressure is computed (hydrostatic pressure), and dilate/contract the
-dimensions together. Using "iso Pstart Pstop Pdamp" is the same as
-specifying these 4 keywords:
-
-.. parsed-literal::
-
- x Pstart Pstop Pdamp
- y Pstart Pstop Pdamp
- z Pstart Pstop Pdamp
- couple xyz
-
-The keyword *aniso* means *x*, *y*, and *z* dimensions are controlled
-independently using the *Pxx*, *Pyy*, and *Pzz* components of the
-stress tensor as the driving forces, and the specified scalar external
-pressure. Using "aniso Pstart Pstop Pdamp" is the same as specifying
-these 4 keywords:
-
-.. parsed-literal::
-
- x Pstart Pstop Pdamp
- y Pstart Pstop Pdamp
- z Pstart Pstop Pdamp
- couple none
-
-
-----------
-
-
-The keyword/value option pairs are used in the following ways.
-
-The *langevin* and *temp* and *tparam* keywords perform thermostatting
-of the rigid bodies, altering both their translational and rotational
-degrees of freedom. What is meant by "temperature" of a collection of
-rigid bodies and how it can be monitored via the fix output is
-discussed below.
-
-The *langevin* keyword applies a Langevin thermostat to the constant
-NVE time integration performed by either the *rigid* or *rigid/small*
-or *rigid/nve* styles. It cannot be used with the *rigid/nvt* style.
-The desired temperature at each timestep is a ramped value during the
-run from *Tstart* to *Tstop*. The *Tdamp* parameter is specified in
-time units and determines how rapidly the temperature is relaxed. For
-example, a value of 100.0 means to relax the temperature in a timespan
-of (roughly) 100 time units (tau or fmsec or psec - see the
-:doc:`units <units>` command). The random # *seed* must be a positive
-integer.
-
-The way that Langevin thermostatting operates is explained on the :doc:`fix langevin <fix_langevin>` doc page. If you wish to simply viscously
-damp the rotational motion without thermostatting, you can set
-*Tstart* and *Tstop* to 0.0, which means only the viscous drag term in
-the Langevin thermostat will be applied. See the discussion on the
-:doc:`fix viscous <fix_viscous>` doc page for details.
-
-.. note::
-
- When the *langevin* keyword is used with fix rigid versus fix
- rigid/small, different dynamics will result for parallel runs. This
- is because of the way random numbers are used in the two cases. The
- dynamics for the two cases should be statistically similar, but will
- not be identical, even for a single timestep.
-
-The *temp* and *tparam* keywords apply a Nose/Hoover thermostat to the
-NVT time integration performed by the *rigid/nvt* style. They cannot
-be used with the *rigid* or *rigid/small* or *rigid/nve* styles. The
-desired temperature at each timestep is a ramped value during the run
-from *Tstart* to *Tstop*. The *Tdamp* parameter is specified in time
-units and determines how rapidly the temperature is relaxed. For
-example, a value of 100.0 means to relax the temperature in a timespan
-of (roughly) 100 time units (tau or fmsec or psec - see the
-:doc:`units <units>` command).
-
-Nose/Hoover chains are used in conjunction with this thermostat. The
-*tparam* keyword can optionally be used to change the chain settings
-used. *Tchain* is the number of thermostats in the Nose Hoover chain.
-This value, along with *Tdamp* can be varied to dampen undesirable
-oscillations in temperature that can occur in a simulation. As a rule
-of thumb, increasing the chain length should lead to smaller
-oscillations. The keyword *pchain* specifies the number of
-thermostats in the chain thermostatting the barostat degrees of
-freedom.
-
-.. note::
-
- There are alternate ways to thermostat a system of rigid bodies.
- You can use :doc:`fix langevin <fix_langevin>` to treat the individual
- particles in the rigid bodies as effectively immersed in an implicit
- solvent, e.g. a Brownian dynamics model. For hybrid systems with both
- rigid bodies and solvent particles, you can thermostat only the
- solvent particles that surround one or more rigid bodies by
- appropriate choice of groups in the compute and fix commands for
- temperature and thermostatting. The solvent interactions with the
- rigid bodies should then effectively thermostat the rigid body
- temperature as well without use of the Langevin or Nose/Hoover options
- associated with the fix rigid commands.
-
-
-----------
-
-
-The *mol* keyword can only be used with fix rigid/small. It must be
-used when other commands, such as :doc:`fix deposit <fix_deposit>` or
-:doc:`fix pour <fix_pour>`, add rigid bodies on-the-fly during a
-simulation. You specify a *template-ID* previously defined using the
-:doc:`molecule <molecule>` command, which reads a file that defines the
-molecule. You must use the same *template-ID* that the other fix
-which is adding rigid bodies uses. The coordinates, atom types, atom
-diameters, center-of-mass, and moments of inertia can be specified in
-the molecule file. See the :doc:`molecule <molecule>` command for
-details. The only settings required to be in this file are the
-coordinates and types of atoms in the molecule, in which case the
-molecule command calculates the other quantities itself.
-
-Note that these other fixes create new rigid bodies, in addition to
-those defined initially by this fix via the *bodystyle* setting.
-
-Also note that when using the *mol* keyword, extra restart information
-about all rigid bodies is written out whenever a restart file is
-written out. See the NOTE in the next section for details.
-
-
-----------
-
-
-The *infile* keyword allows a file of rigid body attributes to be read
-in from a file, rather then having LAMMPS compute them. There are 5
-such attributes: the total mass of the rigid body, its center-of-mass
-position, its 6 moments of inertia, its center-of-mass velocity, and
-the 3 image flags of the center-of-mass position. For rigid bodies
-consisting of point particles or non-overlapping finite-size
-particles, LAMMPS can compute these values accurately. However, for
-rigid bodies consisting of finite-size particles which overlap each
-other, LAMMPS will ignore the overlaps when computing these 4
-attributes. The amount of error this induces depends on the amount of
-overlap. To avoid this issue, the values can be pre-computed
-(e.g. using Monte Carlo integration).
-
-The format of the file is as follows. Note that the file does not
-have to list attributes for every rigid body integrated by fix rigid.
-Only bodies which the file specifies will have their computed
-attributes overridden. The file can contain initial blank lines or
-comment lines starting with "#" which are ignored. The first
-non-blank, non-comment line should list N = the number of lines to
-follow. The N successive lines contain the following information:
-
-.. parsed-literal::
-
- ID1 masstotal xcm ycm zcm ixx iyy izz ixy ixz iyz vxcm vycm vzcm lx ly lz ixcm iycm izcm
- ID2 masstotal xcm ycm zcm ixx iyy izz ixy ixz iyz vxcm vycm vzcm lx ly lz ixcm iycm izcm
- ...
- IDN masstotal xcm ycm zcm ixx iyy izz ixy ixz iyz vxcm vycm vzcm lx ly lz ixcm iycm izcm
-
-The rigid body IDs are all positive integers. For the *single*
-bodystyle, only an ID of 1 can be used. For the *group* bodystyle,
-IDs from 1 to Ng can be used where Ng is the number of specified
-groups. For the *molecule* bodystyle, use the molecule ID for the
-atoms in a specific rigid body as the rigid body ID.
-
-The masstotal and center-of-mass coordinates (xcm,ycm,zcm) are
-self-explanatory. The center-of-mass should be consistent with what
-is calculated for the position of the rigid body with all its atoms
-unwrapped by their respective image flags. If this produces a
-center-of-mass that is outside the simulation box, LAMMPS wraps it
-back into the box.
-
-The 6 moments of inertia (ixx,iyy,izz,ixy,ixz,iyz) should be the
-values consistent with the current orientation of the rigid body
-around its center of mass. The values are with respect to the
-simulation box XYZ axes, not with respect to the prinicpal axes of the
-rigid body itself. LAMMPS performs the latter calculation internally.
-
-The (vxcm,vycm,vzcm) values are the velocity of the center of mass.
-The (lx,ly,lz) values are the angular momentum of the body. The
-(vxcm,vycm,vzcm) and (lx,ly,lz) values can simply be set to 0 if you
-wish the body to have no initial motion.
-
-The (ixcm,iycm,izcm) values are the image flags of the center of mass
-of the body. For periodic dimensions, they specify which image of the
-simulation box the body is considered to be in. An image of 0 means
-it is inside the box as defined. A value of 2 means add 2 box lengths
-to get the true value. A value of -1 means subtract 1 box length to
-get the true value. LAMMPS updates these flags as the rigid bodies
-cross periodic boundaries during the simulation.
-
-.. note::
-
- If you use the *infile* or *mol* keywords and write restart
- files during a simulation, then each time a restart file is written,
- the fix also write an auxiliary restart file with the name
- rfile.rigid, where "rfile" is the name of the restart file,
- e.g. tmp.restart.10000 and tmp.restart.10000.rigid. This auxiliary
- file is in the same format described above. Thus it can be used in a
- new input script that restarts the run and re-specifies a rigid fix
- using an *infile* keyword and the appropriate filename. Note that the
- auxiliary file will contain one line for every rigid body, even if the
- original file only listed a subset of the rigid bodies.
-
-
-----------
-
-
-If you use a :doc:`temperature compute <compute>` with a group that
-includes particles in rigid bodies, the degrees-of-freedom removed by
-each rigid body are accounted for in the temperature (and pressure)
-computation, but only if the temperature group includes all the
-particles in a particular rigid body.
-
-A 3d rigid body has 6 degrees of freedom (3 translational, 3
-rotational), except for a collection of point particles lying on a
-straight line, which has only 5, e.g a dimer. A 2d rigid body has 3
-degrees of freedom (2 translational, 1 rotational).
-
-.. note::
-
- You may wish to explicitly subtract additional
- degrees-of-freedom if you use the *force* and *torque* keywords to
- eliminate certain motions of one or more rigid bodies. LAMMPS does
- not do this automatically.
-
-The rigid body contribution to the pressure of the system (virial) is
-also accounted for by this fix.
-
-
-----------
-
-
-If your simlulation is a hybrid model with a mixture of rigid bodies
-and non-rigid particles (e.g. solvent) there are several ways these
-rigid fixes can be used in tandem with :doc:`fix nve <fix_nve>`, :doc:`fix nvt <fix_nh>`, :doc:`fix npt <fix_nh>`, and :doc:`fix nph <fix_nh>`.
-
-If you wish to perform NVE dynamics (no thermostatting or
-barostatting), use fix rigid or fix rigid/nve to integrate the rigid
-bodies, and :doc:`fix nve <fix_nve>` to integrate the non-rigid
-particles.
-
-If you wish to perform NVT dynamics (thermostatting, but no
-barostatting), you can use fix rigid/nvt for the rigid bodies, and any
-thermostatting fix for the non-rigid particles (:doc:`fix nvt <fix_nh>`,
-:doc:`fix langevin <fix_langevin>`, :doc:`fix temp/berendsen <fix_temp_berendsen>`). You can also use fix rigid
-or fix rigid/nve for the rigid bodies and thermostat them using :doc:`fix langevin <fix_langevin>` on the group that contains all the
-particles in the rigid bodies. The net force added by :doc:`fix langevin <fix_langevin>` to each rigid body effectively thermostats
-its translational center-of-mass motion. Not sure how well it does at
-thermostatting its rotational motion.
-
-If you with to perform NPT or NPH dynamics (barostatting), you cannot
-use both :doc:`fix npt <fix_nh>` and fix rigid/npt (or the nph
-variants). This is because there can only be one fix which monitors
-the global pressure and changes the simulation box dimensions. So you
-have 3 choices:
-
-* Use fix rigid/npt for the rigid bodies. Use the *dilate* all option
- so that it will dilate the positions of the non-rigid particles as
- well. Use :doc:`fix nvt <fix_nh>` (or any other thermostat) for the
- non-rigid particles.
-* Use :doc:`fix npt <fix_nh>` for the group of non-rigid particles. Use
- the *dilate* all option so that it will dilate the center-of-mass
- positions of the rigid bodies as well. Use fix rigid/nvt for the
- rigid bodies.
-* Use :doc:`fix press/berendsen <fix_press_berendsen>` to compute the
- pressure and change the box dimensions. Use fix rigid/nvt for the
- rigid bodies. Use `fix nvt <fix_nh.thml>`_ (or any other thermostat) for
- the non-rigid particles.
-In all case, the rigid bodies and non-rigid particles both contribute
-to the global pressure and the box is scaled the same by any of the
-barostatting fixes.
-
-You could even use the 2nd and 3rd options for a non-hybrid simulation
-consisting of only rigid bodies, assuming you give :doc:`fix npt <fix_nh>` an empty group, though it's an odd thing to do. The
-barostatting fixes (:doc:`fix npt <fix_nh>` and :doc:`fix press/berensen <fix_press_berendsen>`) will monitor the pressure
-and change the box dimensions, but not time integrate any particles.
-The integration of the rigid bodies will be performed by fix
-rigid/nvt.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about the *rigid* and *rigid/small* and *rigid/nve*
-fixes are written to :doc:`binary restart files <restart>`. The
-exception is if the *infile* or *mol* keyword is used, in which case
-an auxiliary file is written out with rigid body information each time
-a restart file is written, as explained above for the *infile*
-keyword. For style *rigid/nvt* the state of the Nose/Hoover
-thermostat is written to :doc:`binary restart files <restart>`. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by the
-rigid/nvt fix to add the energy change induced by the thermostatting
-to the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* and *press* options are
-supported by the rigid/npt and rigid/nph fixes to change the computes used
-to calculate the instantaneous pressure tensor. Note that the rigid/nvt fix
-does not use any external compute to compute instantaneous temperature.
-
-The *rigid* and *rigid/small* and *rigid/nve* fixes compute a global
-scalar which can be accessed by various :ref:`output commands <howto_15>`. The scalar value calculated by
-these fixes is "intensive". The scalar is the current temperature of
-the collection of rigid bodies. This is averaged over all rigid
-bodies and their translational and rotational degrees of freedom. The
-translational energy of a rigid body is 1/2 m v^2, where m = total
-mass of the body and v = the velocity of its center of mass. The
-rotational energy of a rigid body is 1/2 I w^2, where I = the moment
-of inertia tensor of the body and w = its angular velocity. Degrees
-of freedom constrained by the *force* and *torque* keywords are
-removed from this calculation, but only for the *rigid* and
-*rigid/nve* fixes.
-
-The *rigid/nvt*, *rigid/npt*, and *rigid/nph* fixes compute a global
-scalar which can be accessed by various :ref:`output commands <howto_15>`. The scalar value calculated by
-these fixes is "extensive". The scalar is the cumulative energy
-change due to the thermostatting and barostatting the fix performs.
-
-All of the *rigid* fixes except *rigid/small* compute a global array
-of values which can be accessed by various :ref:`output commands <howto_15>`. The number of rows in the
-array is equal to the number of rigid bodies. The number of columns
-is 15. Thus for each rigid body, 15 values are stored: the xyz coords
-of the center of mass (COM), the xyz components of the COM velocity,
-the xyz components of the force acting on the COM, the xyz components
-of the torque acting on the COM, and the xyz image flags of the COM.
-
-The center of mass (COM) for each body is similar to unwrapped
-coordinates written to a dump file. It will always be inside (or
-slightly outside) the simulation box. The image flags have the same
-meaning as image flags for atom positions (see the "dump" command).
-This means you can calculate the unwrapped COM by applying the image
-flags to the COM, the same as when unwrapped coordinates are written
-to a dump file.
-
-The force and torque values in the array are not affected by the
-*force* and *torque* keywords in the fix rigid command; they reflect
-values before any changes are made by those keywords.
-
-The ordering of the rigid bodies (by row in the array) is as follows.
-For the *single* keyword there is just one rigid body. For the
-*molecule* keyword, the bodies are ordered by ascending molecule ID.
-For the *group* keyword, the list of group IDs determines the ordering
-of bodies.
-
-The array values calculated by these fixes are "intensive", meaning
-they are independent of the number of atoms in the simulation.
-
-No parameter of these fixes can be used with the *start/stop* keywords
-of the :doc:`run <run>` command. These fixes are not invoked during
-:doc:`energy minimization <minimize>`.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These fixes are all part of the RIGID package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Assigning a temperature via the :doc:`velocity create <velocity>`
-command to a system with :doc:`rigid bodies <fix_rigid>` may not have
-the desired outcome for two reasons. First, the velocity command can
-be invoked before the rigid-body fix is invoked or initialized and the
-number of adjusted degrees of freedom (DOFs) is known. Thus it is not
-possible to compute the target temperature correctly. Second, the
-assigned velocities may be partially canceled when constraints are
-first enforced, leading to a different temperature than desired. A
-workaround for this is to perform a :doc:`run 0 <run>` command, which
-insures all DOFs are accounted for properly, and then rescale the
-temperature to the desired value before performing a simulation. For
-example:
-
-.. parsed-literal::
-
- velocity all create 300.0 12345
- run 0 # temperature may not be 300K
- velocity all scale 300.0 # now it should be
-
-Related commands
-""""""""""""""""
-
-:doc:`delete_bonds <delete_bonds>`, :doc:`neigh_modify <neigh_modify>`
-exclude, :doc:`fix shake <fix_shake>`
-
-Default
-"""""""
-
-The option defaults are force * on on on and torque * on on on,
-meaning all rigid bodies are acted on by center-of-mass force and
-torque. Also Tchain = Pchain = 10, Titer = 1, Torder = 3.
-
-
-----------
-
-
-.. _Hoover:
-
-
-
-**(Hoover)** Hoover, Phys Rev A, 31, 1695 (1985).
-
-.. _Kamberaj:
-
-
-
-**(Kamberaj)** Kamberaj, Low, Neal, J Chem Phys, 122, 224114 (2005).
-
-.. _Martyna:
-
-
-
-**(Martyna)** Martyna, Klein, Tuckerman, J Chem Phys, 97, 2635 (1992);
-Martyna, Tuckerman, Tobias, Klein, Mol Phys, 87, 1117.
-
-.. _Miller:
-
-
-
-**(Miller)** Miller, Eleftheriou, Pattnaik, Ndirango, and Newns,
-J Chem Phys, 116, 8649 (2002).
-
-.. _Zhang:
-
-
-
-**(Zhang)** Zhang, Glotzer, Nanoletters, 4, 1407-1413 (2004).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_saed_vtk.txt b/doc/_sources/fix_saed_vtk.txt
deleted file mode 100644
index 8e3114b95..000000000
--- a/doc/_sources/fix_saed_vtk.txt
+++ /dev/null
@@ -1,217 +0,0 @@
-.. index:: fix saed/vtk
-
-fix saed/vtk command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID saed/vtk Nevery Nrepeat Nfreak c_ID attribute args ... keyword args ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* saed/vtk = style name of this fix command
-* Nevery = use input values every this many timesteps
-* Nrepeat = # of times to use input values for calculating averages
-* Nfreq = calculate averages every this many timesteps
-* c_ID = saed compute ID
-.. parsed-literal::
-
- keyword = *file* or *ave* or *start* or *file* or *overwrite*:l
- *ave* args = *one* or *running* or *window M*
- one = output a new average value every Nfreq steps
- running = output cumulative average of all previous Nfreq steps
- window M = output average of M most recent Nfreq steps
- *start* args = Nstart
- Nstart = start averaging on this timestep
- *file* arg = filename
- filename = name of file to output time averages to
- *overwrite* arg = none = overwrite output file with only latest output
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- compute 1 all saed 0.0251 Al O Kmax 1.70 Zone 0 0 1 dR_Ewald 0.01 c 0.5 0.5 0.5
- compute 2 all saed 0.0251 Ni Kmax 1.70 Zone 0 0 0 c 0.05 0.05 0.05 manual echo
-
-.. parsed-literal::
-
- fix saed/vtk 1 1 1 c_1 file Al2O3_001.saed
- fix saed/vtk 1 1 1 c_2 file Ni_000.saed
-
-Description
-"""""""""""
-
-Time average computed intensities from :doc:`compute saed <compute_saed>` and
-write output to a file in the 3rd generation vtk image data format for
-visualization directly in parallelized visualization software packages
-like ParaView and VisIt. Note that if no time averaging is done, this
-command can be used as a convenient way to simply output diffraction
-intensities at a single snapshot.
-
-To produce output in the image data vtk format ghost data is added
-outside the *Kmax* range assigned in the compute saed. The ghost data is
-assigned a value of -1 and can be removed setting a minimum isovolume
-of 0 within the vizualiziton software. SAED images can be created by
-visualizing a spherical slice of the data that is centered at
-R_Ewald*[h k l]/norm([h k l]), where R_Ewald=1/lambda.
-
-The group specified within this command is ignored. However, note that
-specified values may represent calculations performed by saed computes
-which store their own "group" definitions.
-
-Fix saed/vtk is designed to work only with :doc:`compute saed <compute_saed>`
-values, e.g.
-
-.. parsed-literal::
-
- compute 3 top saed 0.0251 Al O
- fix saed/vtk 1 1 1 c_3 file Al2O3_001.saed
-
-
-----------
-
-
-The *Nevery*, *Nrepeat*, and *Nfreq* arguments specify on what
-timesteps the input values will be used in order to contribute to the
-average. The final averaged quantities are generated on timesteps
-that are a multiple of *Nfreq*. The average is over *Nrepeat*
-quantities, computed in the preceding portion of the simulation every
-*Nevery* timesteps. *Nfreq* must be a multiple of *Nevery* and
-*Nevery* must be non-zero even if *Nrepeat* is 1.
-Also, the timesteps
-contributing to the average value cannot overlap,
-i.e. Nrepeat*Nevery can not exceed Nfreq.
-
-For example, if Nevery=2, Nrepeat=6, and Nfreq=100, then values on
-timesteps 90,92,94,96,98,100 will be used to compute the final average
-on timestep 100. Similarly for timesteps 190,192,194,196,198,200 on
-timestep 200, etc. If Nrepeat=1 and Nfreq = 100, then no time
-averaging is done; values are simply generated on timesteps
-100,200,etc.
-
-
-----------
-
-
-The output for fix ave/time/saed is a file writen with the 3rd generation
-vtk image data formatting. The filename assigned by the *file* keyword is
-appended with _N.vtk where N is an index (0,1,2...) to account for multiple
-diffraction intensity outputs.
-
-By default the header contains the following information (with example data):
-
-.. parsed-literal::
-
- # vtk DataFile Version 3.0 c_SAED
- Image data set
- ASCII
- DATASET STRUCTURED_POINTS
- DIMENSIONS 337 219 209
- ASPECT_RATIO 0.00507953 0.00785161 0.00821458
- ORIGIN -0.853361 -0.855826 -0.854316
- POINT_DATA 15424827
- SCALARS intensity float
- LOOKUP_TABLE default
- ...data
-
-In this example, kspace is sampled across a 337 x 219 x 209 point mesh
-where the mesh spacing is approximately 0.005, 0.007, and 0.008
-inv(length) units in the k1, k2, and k3 directions, respectively.
-The data is shifted by -0.85, -0.85, -0.85 inv(length) units so that
-the origin will lie at 0, 0, 0. Here, 15,424,827 kspace points are
-sampled in total.
-
-
-----------
-
-
-Additional optional keywords also affect the operation of this fix.
-
-The *ave* keyword determines how the values produced every *Nfreq*
-steps are averaged with values produced on previous steps that were
-multiples of *Nfreq*, before they are accessed by another output
-command or written to a file.
-
-If the *ave* setting is *one*, then the values produced on timesteps
-that are multiples of *Nfreq* are independent of each other; they are
-output as-is without further averaging.
-
-If the *ave* setting is *running*, then the values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged in a
-cumulative sense before being output. Each output value is thus the
-average of the value produced on that timestep with all preceding
-values. This running average begins when the fix is defined; it can
-only be restarted by deleting the fix via the :doc:`unfix <unfix>`
-command, or by re-defining the fix by re-specifying it.
-
-If the *ave* setting is *window*, then the values produced on
-timesteps that are multiples of *Nfreq* are summed and averaged within
-a moving "window" of time, so that the last M values are used to
-produce the output. E.g. if M = 3 and Nfreq = 1000, then the output
-on step 10000 will be the average of the individual values on steps
-8000,9000,10000. Outputs on early steps will average over less than M
-values if they are not available.
-
-The *start* keyword specifies what timestep averaging will begin on.
-The default is step 0. Often input values can be 0.0 at time 0, so
-setting *start* to a larger value can avoid including a 0.0 in a
-running or windowed average.
-
-The *file* keyword allows a filename to be specified. Every *Nfreq*
-steps, the vector of saed intensity data is written to a new file using
-the 3rd generation vtk format. The base of each file is assigned by
-the *file* keyword and this string is appended with _N.vtk where N is
-an index (0,1,2...) to account for situations with multiple diffraction
-intensity outputs.
-
-The *overwrite* keyword will continuously overwrite the output file
-with the latest output, so that it only contains one timestep worth of
-output. This option can only be used with the *ave running* setting.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-The attributes for fix_saed_vtk must match the values assigned in the
-associated :doc:`compute_saed <compute_saed>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute_saed <compute_saed>`
-
-Default
-"""""""
-
-The option defaults are ave = one, start = 0, no file output.
-
-
-----------
-
-
-.. _Coleman:
-
-
-
-**(Coleman)** Coleman, Spearot, Capolungo, MSMSE, 21, 055020
-(2013).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_setforce.txt b/doc/_sources/fix_setforce.txt
deleted file mode 100644
index 3eddd8550..000000000
--- a/doc/_sources/fix_setforce.txt
+++ /dev/null
@@ -1,140 +0,0 @@
-.. index:: fix setforce
-
-fix setforce command
-====================
-
-fix setforce/cuda command
-=========================
-
-fix setforce/kk command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID setforce fx fy fz keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* setforce = style name of this fix command
-* fx,fy,fz = force component values
-* any of fx,fy,fz can be a variable (see below)
-* zero or more keyword/value pairs may be appended to args
-* keyword = *region*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region atoms must be in to have added force
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix freeze indenter setforce 0.0 0.0 0.0
- fix 2 edge setforce NULL 0.0 0.0
- fix 2 edge setforce NULL 0.0 v_oscillate
-
-Description
-"""""""""""
-
-Set each component of force on each atom in the group to the specified
-values fx,fy,fz. This erases all previously computed forces on the
-atom, though additional fixes could add new forces. This command can
-be used to freeze certain atoms in the simulation by zeroing their
-force, either for running dynamics or performing an energy
-minimization. For dynamics, this assumes their initial velocity is
-also zero.
-
-Any of the fx,fy,fz values can be specified as NULL which means do not
-alter the force component in that dimension.
-
-Any of the 3 quantities defining the force components can be specified
-as an equal-style or atom-style :doc:`variable <variable>`, namely *fx*,
-*fy*, *fz*. If the value is a variable, it should be specified as
-v_name, where name is the variable name. In this case, the variable
-will be evaluated each timestep, and its value used to determine the
-force component.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent force field.
-
-Atom-style variables can specify the same formulas as equal-style
-variables but can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a spatially-dependent force
-field with optional time-dependence as well.
-
-If the *region* keyword is used, the atom must also be in the
-specified geometric :doc:`region <region>` in order to have force added
-to it.
-
-
-----------
-
-
-Styles with a *cuda* or *kk* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-The region keyword is also supported by Kokkos, but a Kokkos-enabled
-region must be used. See the region :doc:`region <region>` command for more
-information.
-
-These accelerated styles are part of the USER-CUDA or Kokkos package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global 3-vector of forces, which can be accessed
-by various :ref:`output commands <howto_15>`. This is the
-total force on the group of atoms before the forces on individual
-atoms are changed by the fix. The vector values calculated by this
-fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command, but you cannot set
-forces to any value besides zero when performing a minimization. Use
-the :doc:`fix addforce <fix_addforce>` command if you want to apply a
-non-zero force to atoms during a minimization.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix addforce <fix_addforce>`, :doc:`fix aveforce <fix_aveforce>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_shake.txt b/doc/_sources/fix_shake.txt
deleted file mode 100644
index 5dba35548..000000000
--- a/doc/_sources/fix_shake.txt
+++ /dev/null
@@ -1,262 +0,0 @@
-.. index:: fix shake
-
-fix shake command
-=================
-
-fix shake/cuda command
-======================
-
-fix rattle command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style tol iter N constraint values ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style = shake or rattle = style name of this fix command
-* tol = accuracy tolerance of SHAKE solution
-* iter = max # of iterations in each SHAKE solution
-* N = print SHAKE statistics every this many timesteps (0 = never)
-* one or more constraint/value pairs are appended
-* constraint = *b* or *a* or *t* or *m*
-.. parsed-literal::
-
- *b* values = one or more bond types
- *a* values = one or more angle types
- *t* values = one or more atom types
- *m* value = one or more mass values
-
-* zero or more keyword/value pairs may be appended
-* keyword = *mol*
-.. parsed-literal::
-
- *mol* value = template-ID
- template-ID = ID of molecule template specified in a separate :doc:`molecule <molecule>` command
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 sub shake 0.0001 20 10 b 4 19 a 3 5 2
- fix 1 sub shake 0.0001 20 10 t 5 6 m 1.0 a 31
- fix 1 sub shake 0.0001 20 10 t 5 6 m 1.0 a 31 mol myMol
- fix 1 sub rattle 0.0001 20 10 t 5 6 m 1.0 a 31
- fix 1 sub rattle 0.0001 20 10 t 5 6 m 1.0 a 31 mol myMol
-
-Description
-"""""""""""
-
-Apply bond and angle constraints to specified bonds and angles in the
-simulation by either the SHAKE or RATTLE algorithms. This typically
-enables a longer timestep.
-
-**SHAKE vs RATTLE:**
-
-The SHAKE algorithm was invented for schemes such as standard Verlet
-timesteppnig, where only the coordinates are integrated and the
-velocities are approximated as finite differences to the trajectories
-(:ref:`Ryckaert et al. (1977) <Ryckaert>`). If the velocities are
-integrated explicitly, as with velocity Verlet which is what LAMMPS
-uses as an integration method, a second set of constraining forces is
-required in order to eliminate velocity components along the bonds
-(:ref:`Andersen (1983) <Andersen>`).
-
-In order to formulate individual constraints for SHAKE and RATTLE,
-focus on a single molecule whose bonds are constrained. Let Ri and Vi
-be the position and velocity of atom *i* at time *n*, for
-*i*=1,...,*N*, where *N* is the number of sites of our reference
-molecule. The distance vector between sites *i* and *j* is given by
-
-.. image:: Eqs/fix_rattle_rij.jpg
- :align: center
-
-The constraints can then be formulated as
-
-.. image:: Eqs/fix_rattle_constraints.jpg
- :align: center
-
-The SHAKE algorithm satisfies the first condition, i.e. the sites at
-time *n+1* will have the desired separations Dij immediately after the
-coordinates are integrated. If we also enforce the second condition,
-the velocity components along the bonds will vanish. RATTLE satisfies
-both conditions. As implemented in LAMMPS, fix rattle uses fix shake
-for satisfying the coordinate constraints. Therefore the settings and
-optional keywords are the same for both fixes, and all the information
-below about SHAKE is also relevant for RATTLE.
-
-**SHAKE:**
-
-Each timestep the specified bonds and angles are reset to their
-equilibrium lengths and angular values via the SHAKE algorithm
-(:ref:`Ryckaert et al. (1977) <Ryckaert>`). This is done by applying an
-additional constraint force so that the new positions preserve the
-desired atom separations. The equations for the additional force are
-solved via an iterative method that typically converges to an accurate
-solution in a few iterations. The desired tolerance (e.g. 1.0e-4 = 1
-part in 10000) and maximum # of iterations are specified as arguments.
-Setting the N argument will print statistics to the screen and log
-file about regarding the lengths of bonds and angles that are being
-constrained. Small delta values mean SHAKE is doing a good job.
-
-In LAMMPS, only small clusters of atoms can be constrained. This is
-so the constraint calculation for a cluster can be performed by a
-single processor, to enable good parallel performance. A cluster is
-defined as a central atom connected to others in the cluster by
-constrained bonds. LAMMPS allows for the following kinds of clusters
-to be constrained: one central atom bonded to 1 or 2 or 3 atoms, or
-one central atom bonded to 2 others and the angle between the 3 atoms
-also constrained. This means water molecules or CH2 or CH3 groups may
-be constrained, but not all the C-C backbone bonds of a long polymer
-chain.
-
-The *b* constraint lists bond types that will be constrained. The *t*
-constraint lists atom types. All bonds connected to an atom of the
-specified type will be constrained. The *m* constraint lists atom
-masses. All bonds connected to atoms of the specified masses will be
-constrained (within a fudge factor of MASSDELTA specified in
-fix_shake.cpp). The *a* constraint lists angle types. If both bonds
-in the angle are constrained then the angle will also be constrained
-if its type is in the list.
-
-For all constraints, a particular bond is only constrained if both
-atoms in the bond are in the group specified with the SHAKE fix.
-
-The degrees-of-freedom removed by SHAKE bonds and angles are accounted
-for in temperature and pressure computations. Similarly, the SHAKE
-contribution to the pressure of the system (virial) is also accounted
-for.
-
-.. note::
-
- This command works by using the current forces on atoms to
- caculate an additional constraint force which when added will leave
- the atoms in positions that satisfy the SHAKE constraints (e.g. bond
- length) after the next time integration step. If you define fixes
- (e.g. :doc:`fix efield <fix_efield>`) that add additional force to the
- atoms after fix shake operates, then this fix will not take them into
- account and the time integration will typically not satisfy the SHAKE
- constraints. The solution for this is to make sure that fix shake is
- defined in your input script after any other fixes which add or change
- forces (to atoms that fix shake operates on).
-
-
-----------
-
-
-The *mol* keyword should be used when other commands, such as :doc:`fix deposit <fix_deposit>` or :doc:`fix pour <fix_pour>`, add molecules
-on-the-fly during a simulation, and you wish to contrain the new
-molecules via SHAKE. You specify a *template-ID* previously defined
-using the :doc:`molecule <molecule>` command, which reads a file that
-defines the molecule. You must use the same *template-ID* that the
-command adding molecules uses. The coordinates, atom types, special
-bond restrictions, and SHAKE info can be specified in the molecule
-file. See the :doc:`molecule <molecule>` command for details. The only
-settings required to be in this file (by this command) are the SHAKE
-info of atoms in the molecule.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**RATTLE:**
-
-The velocity constraints lead to a linear system of equations which
-can be solved analytically. The implementation of the algorithm in
-LAMMPS closely follows (:ref:`Andersen (1983) <Andersen>`).
-
-.. note::
-
- The fix rattle command modifies forces and velocities and thus
- should be defined after all other integration fixes in your input
- script. If you define other fixes that modify velocities or forces
- after fix rattle operates, then fix rattle will not take them into
- account and the overall time integration will typically not satisfy
- the RATTLE constraints. You can check whether the constraints work
- correctly by setting the value of RATTLE_DEBUG in src/fix_rattle.cpp
- to 1 and recompiling LAMMPS.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about these fixes is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to these fixes. No global or per-atom quantities are
-stored by these fixes for access by various :ref:`output commands <howto_15>`. No parameter of these fixes
-can be used with the *start/stop* keywords of the :doc:`run <run>`
-command. These fixes are not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-These fixes are part of the RIGID package. They are only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-For computational efficiency, there can only be one shake or rattle
-fix defined in a simulation.
-
-If you use a tolerance that is too large or a max-iteration count that
-is too small, the constraints will not be enforced very strongly,
-which can lead to poor energy conservation. You can test for this in
-your system by running a constant NVE simulation with a particular set
-of SHAKE parameters and monitoring the energy versus time.
-
-SHAKE or RATTLE should not be used to contrain an angle at 180 degrees
-(e.g. linear CO2 molecule). This causes numeric difficulties.
-
-**Related commands:** none
-
-**Default:** none
-
-
-----------
-
-
-.. _Ryckaert:
-
-
-
-**(Ryckaert)** J.-P. Ryckaert, G. Ciccotti and H. J. C. Berendsen,
-J of Comp Phys, 23, 327-341 (1977).
-
-.. _Andersen:
-
-
-
-**(Andersen)** H. Andersen, J of Comp Phys, 52, 24-34 (1983).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_shardlow.txt b/doc/_sources/fix_shardlow.txt
deleted file mode 100644
index 560aaf5fa..000000000
--- a/doc/_sources/fix_shardlow.txt
+++ /dev/null
@@ -1,115 +0,0 @@
-.. index:: fix shardlow
-
-fix shardlow command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID shardlow
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* shardlow = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all shardlow
-
-Description
-"""""""""""
-
-Specifies that the Shardlow splitting algorithm (SSA) is to be used to
-integrate the DPD equations of motion. The SSA splits the integration
-into a stochastic and deterministic integration step. The fix
-*shardlow* performs the stochastic integration step and must be used
-in conjunction with a deterministic integrator (e.g. :doc:`fix nve <fix_nve>` or :doc:`fix nph <fix_nph>`). The stochastic
-integration of the dissipative and random forces is performed prior to
-the deterministic integration of the conservative force. Further
-details regarding the method are provided in :ref:`(Lisal) <Lisal>` and
-:ref:`(Larentzos) <Larentzos>`.
-
-The fix *shardlow* must be used with the :doc:`pair_style dpd/fdt <pair_style>` or :doc:`pair_style dpd/fdt/energy <pair_style>` command to properly initialize the
-fluctuation-dissipation theorem parameter(s) sigma (and kappa, if
-necessary).
-
-Note that numerous variants of DPD can be specified by choosing an
-appropriate combination of the integrator and :doc:`pair_style dpd/fdt <pair_style>` command. DPD under isothermal conditions can
-be specified by using fix *shardlow*, fix *nve* and pair_style
-*dpd/fdt*. DPD under isoenergetic conditions can be specified by
-using fix *shardlow*, fix *nve* and pair_style *dpd/fdt/energy*. DPD
-under isobaric conditions can be specified by using fix shardlow, fix
-*nph* and pair_style *dpd/fdt*. DPD under isoenthalpic conditions can
-be specified by using fix shardlow, fix *nph* and pair_style
-*dpd/fdt/energy*. Examples of each DPD variant are provided in the
-examples/USER/dpd directory.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix is only available if LAMMPS is built with the USER-DPD
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-This fix is currently limited to orthogonal simulation cell
-geometries.
-
-This fix must be used with an additional fix that specifies time
-integration, e.g. :doc:`fix nve <fix_nve>` or :doc:`fix nph <fix_nh>`.
-
-The Shardlow splitting algorithm requires the sizes of the sub-domain
-lengths to be larger than twice the cutoff+skin. Generally, the
-domain decomposition is dependant on the number of processors
-requested.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style dpd/fdt <pair_dpd_fdt>`, :doc:`fix eos/cv <fix_eos_cv>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Lisal:
-
-
-
-**(Lisal)** M. Lisal, J.K. Brennan, J. Bonet Avalos, "Dissipative
-particle dynamics as isothermal, isobaric, isoenergetic, and
-isoenthalpic conditions using Shardlow-like splitting algorithms.",
-J. Chem. Phys., 135, 204105 (2011).
-
-.. _Larentzos:
-
-
-
-**(Larentzos)** J.P. Larentzos, J.K. Brennan, J.D. Moore, M. Lisal and
-W.D. Mattson, "Parallel Implementation of Isothermal and Isoenergetic
-Dissipative Particle Dynamics Using Shardlow-Like Splitting
-Algorithms", Comput. Phys. Commun., 185, 1987-1998 (2014).
-
-.. _Larentzos:
-
-
-
-**(Larentzos)** J.P. Larentzos, J.K. Brennan, J.D. Moore, and
-W.D. Mattson, "LAMMPS Implementation of Constant Energy Dissipative
-Particle Dynamics (DPD-E)", ARL-TR-6863, U.S. Army Research
-Laboratory, Aberdeen Proving Ground, MD (2014).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_smd.txt b/doc/_sources/fix_smd.txt
deleted file mode 100644
index 62d215a64..000000000
--- a/doc/_sources/fix_smd.txt
+++ /dev/null
@@ -1,168 +0,0 @@
-.. index:: fix smd
-
-fix smd command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd type values keyword values
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd = style name of this fix command
-* mode = *cvel* or *cfor* to select constant velocity or constant force SMD
-.. parsed-literal::
-
- *cvel* values = K vel
- K = spring constant (force/distance units)
- vel = velocity of pulling (distance/time units)
- *cfor* values = force
- force = pulling force (force units)
-
-* keyword = *tether* or *couple*
-.. parsed-literal::
-
- *tether* values = x y z R0
- x,y,z = point to which spring is tethered
- R0 = distance of end of spring from tether point (distance units)
- *couple* values = group-ID2 x y z R0
- group-ID2 = 2nd group to couple to fix group with a spring
- x,y,z = direction of spring, automatically computed with 'auto'
- R0 = distance of end of spring (distance units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix pull cterm smd cvel 20.0 -0.00005 tether NULL NULL 100.0 0.0
- fix pull cterm smd cvel 20.0 -0.0001 tether 25.0 25 25.0 0.0
- fix stretch cterm smd cvel 20.0 0.0001 couple nterm auto auto auto 0.0
- fix pull cterm smd cfor 5.0 tether 25.0 25.0 25.0 0.0
-
-Description
-"""""""""""
-
-This fix implements several options of steered MD (SMD) as reviewed in
-:ref:`(Izrailev) <Izrailev>`, which allows to induce conformational changes
-in systems and to compute the potential of mean force (PMF) along the
-assumed reaction coordinate :ref:`(Park) <Park>` based on Jarzynski's
-equality :ref:`(Jarzynski) <Jarzynski>`. This fix borrows a lot from :doc:`fix spring <fix_spring>` and :doc:`fix setforce <fix_setforce>`.
-
-You can apply a moving spring force to a group of atoms (*tether*
-style) or between two groups of atoms (*couple* style). The spring
-can then be used in either constant velocity (*cvel*) mode or in
-constant force (*cfor*) mode to induce transitions in your systems.
-When running in *tether* style, you may need some way to fix some
-other part of the system (e.g. via :doc:`fix spring/self <fix_spring_self>`)
-
-The *tether* style attaches a spring between a point at a distance of
-R0 away from a fixed point *x,y,z* and the center of mass of the fix
-group of atoms. A restoring force of magnitude K (R - R0) Mi / M is
-applied to each atom in the group where *K* is the spring constant, Mi
-is the mass of the atom, and M is the total mass of all atoms in the
-group. Note that *K* thus represents the total force on the group of
-atoms, not a per-atom force.
-
-In *cvel* mode the distance R is incremented or decremented
-monotonously according to the pulling (or pushing) velocity.
-In *cfor* mode a constant force is added and the actual distance
-in direction of the spring is recorded.
-
-The *couple* style links two groups of atoms together. The first
-group is the fix group; the second is specified by group-ID2. The
-groups are coupled together by a spring that is at equilibrium when
-the two groups are displaced by a vector in direction *x,y,z* with
-respect to each other and at a distance R0 from that displacement.
-Note that *x,y,z* only provides a direction and will be internally
-normalized. But since it represents the *absolute* displacement of
-group-ID2 relative to the fix group, (1,1,0) is a different spring
-than (-1,-1,0). For each vector component, the displacement can be
-described with the *auto* parameter. In this case the direction is
-recomputed in every step, which can be useful for steering a local
-process where the whole object undergoes some other change. When the
-relative positions and distance between the two groups are not in
-equilibrium, the same spring force described above is applied to atoms
-in each of the two groups.
-
-For both the *tether* and *couple* styles, any of the x,y,z values can
-be specified as NULL which means do not include that dimension in the
-distance calculation or force application.
-
-For constant velocity pulling (*cvel* mode), the running integral
-over the pulling force in direction of the spring is recorded and
-can then later be used to compute the potential of mean force (PMF)
-by averaging over multiple independent trajectories along the same
-pulling path.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-The fix stores the direction of the spring, current pulling target
-distance and the running PMF to :doc:`binary restart files <restart>`.
-See the :doc:`read_restart <read_restart>` command for info on how to
-re-specify a fix in an input script that reads a restart file, so that
-the operation of the fix continues in an uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-This fix computes a vector list of 7 quantities, which can be accessed
-by various :ref:`output commands <howto_15>`. The
-quantities in the vector are in this order: the x-, y-, and
-z-component of the pulling force, the total force in direction of the
-pull, the equilibrium distance of the spring, the distance between the
-two reference points, and finally the accumulated PMF (the sum of
-pulling forces times displacement).
-
-The force is the total force on the group of atoms by the spring. In
-the case of the *couple* style, it is the force on the fix group
-(group-ID) or the negative of the force on the 2nd group (group-ID2).
-The vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix drag <fix_drag>`, :doc:`fix spring <fix_spring>`,
-:doc:`fix spring/self <fix_spring_self>`,
-:doc:`fix spring/rg <fix_spring_rg>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Israilev:
-
-
-
-**(Izrailev)** Izrailev, Stepaniants, Isralewitz, Kosztin, Lu, Molnar,
-Wriggers, Schulten. Computational Molecular Dynamics: Challenges,
-Methods, Ideas, volume 4 of Lecture Notes in Computational Science and
-Engineering, pp. 39-65. Springer-Verlag, Berlin, 1998.
-
-**(Park)**
-Park, Schulten, J. Chem. Phys. 120 (13), 5946 (2004)
-
-**(Jarzynski)**
-Jarzynski, Phys. Rev. Lett. 78, 2690 (1997)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_smd_adjust_dt.txt b/doc/_sources/fix_smd_adjust_dt.txt
deleted file mode 100644
index 0bcb34a4b..000000000
--- a/doc/_sources/fix_smd_adjust_dt.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-.. index:: fix smd/adjust_dt
-
-fix smd/adjust_dt command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd/adjust_dt arg
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd/adjust_dt = style name of this fix command
-* arg = *s_fact*
-.. parsed-literal::
-
- *s_fact* = safety factor
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all smd/adjust_dt 0.1
-
-Description
-"""""""""""
-
-The fix calculates a new stable time increment for use with the SMD time integrators.
-
-The stable time increment is based on multiple conditions. For the SPH pair styles, a
-CFL criterion (Courant, Friedrichs & Lewy, 1928) is evaluated, which determines the the speed of
-sound cannot propagate further than a typical spacing between particles within a single time step to ensure
-no information is lost. For the contact pair styles, a linear analysis of the pair potential determines a
-stable maximum time step.
-
-This fix inquires the minimum stable time increment across all particles contained in the group for which this
-fix is defined. An additional safety factor *s_fact* is applied to the time increment.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth Mach Dynamics in LAMMPS.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Currently, no part of USER-SMD supports restarting nor minimization.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/tlsph_dt <compute_smd_tlsph_dt>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_smd_integrate_tlsph.txt b/doc/_sources/fix_smd_integrate_tlsph.txt
deleted file mode 100644
index 56f538244..000000000
--- a/doc/_sources/fix_smd_integrate_tlsph.txt
+++ /dev/null
@@ -1,66 +0,0 @@
-.. index:: fix smd/integrate_tlsph
-
-fix smd/integrate_tlsph command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd/integrate_tlsph keyword values
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd/integrate_tlsph = style name of this fix command
-* zero or more keyword/value pairs may be appended
-
-* keyword = *limit_velocity*
-.. parsed-literal::
-
- *limit_velocity* value = max_vel
- max_vel = maximum allowed velocity
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all smd/integrate_tlsph
- fix 1 all smd/integrate_tlsph limit_velocity 1000
-
-Description
-"""""""""""
-
-The fix performs explicit time integration for particles which interact according with the Total-Lagrangian SPH pair style.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth Mach Dynamics in LAMMPS.
-
-The *limit_velocity* keyword will control the velocity, scaling the norm of
-the velocity vector to max_vel in case it exceeds this velocity limit.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Currently, no part of USER-SMD supports restarting nor minimization. This fix has no outputs.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/integrate_ulsph <fix_smd_integrate_ulsph>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_smd_integrate_ulsph.txt b/doc/_sources/fix_smd_integrate_ulsph.txt
deleted file mode 100644
index 979422706..000000000
--- a/doc/_sources/fix_smd_integrate_ulsph.txt
+++ /dev/null
@@ -1,71 +0,0 @@
-.. index:: fix smd/integrate_ulsph
-
-fix smd/integrate_ulsph command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd/integrate_ulsph keyword
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd/integrate_ulsph = style name of this fix command
-* zero or more keyword/value pairs may be appended
-
-keyword = adjust_radius or limit_velocity
-
-adjust_radius values = adjust_radius_factor min_nn max_nn
- adjust_radius_factor = factor which scale the smooth/kernel radius
- min_nn = minimum number of neighbors
- max_nn = maximum number of neighbors
-limit_velocity values = max_velocity
- max_velocity = maximum allowed velocity.
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all smd/integrate_ulsph adjust_radius 1.02 25 50
-
-.. parsed-literal::
-
- fix 1 all smd/integrate_ulsph limit_velocity 1000
-
-Description
-"""""""""""
-
-The fix performs explicit time integration for particles which interact with the updated Lagrangian SPH pair style.
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth Mach Dynamics in LAMMPS.
-
-The *adjust_radius* keyword activates dynamic adjustment of the per-particle SPH smoothing kernel radius such that the number of neighbors per particles remains
-within the interval *min_nn* to *max_nn*. The parameter *adjust_radius_factor* determines the amount of adjustment per timestep. Typical values are
-*adjust_radius_factor*=1.02, *min_nn*=15, and *max_nn*=20.
-
-The *limit_velocity* keyword will control the velocity, scaling the norm of
-the velocity vector to max_vel in case it exceeds this velocity limit.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Currently, no part of USER-SMD supports restarting nor minimization. This fix has no outputs.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_smd_move_triangulated_surface.txt b/doc/_sources/fix_smd_move_triangulated_surface.txt
deleted file mode 100644
index 411b7c1d6..000000000
--- a/doc/_sources/fix_smd_move_triangulated_surface.txt
+++ /dev/null
@@ -1,86 +0,0 @@
-.. index:: fix smd/move_tri_surf
-
-fix smd/move_tri_surf command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd/move_tri_surf keyword
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd/move_tri_surf keyword = style name of this fix command
-* keyword = **LINEAR* or **WIGGLE* or **ROTATE*
-.. parsed-literal::
-
- **LINEAR* args = Vx Vy Vz
- Vx,Vy,Vz = components of velocity vector (velocity units), any component can be specified as NULL
- **WIGGLE* args = Vx Vy Vz max_travel
- vx,vy,vz = components of velocity vector (velocity units), any component can be specified as NULL
- max_travel = wiggle amplitude
- **ROTATE* args = Px Py Pz Rx Ry Rz period
- Px,Py,Pz = origin point of axis of rotation (distance units)
- Rx,Ry,Rz = axis of rotation vector
- period = period of rotation (time units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 tool smd/move_tri_surf *LINEAR 20 20 10
- fix 2 tool smd/move_tri_surf *WIGGLE 20 20 10
- fix 2 tool smd/move_tri_surf *ROTATE 0 0 0 5 2 1
-
-Description
-"""""""""""
-
-This fix applies only to rigid surfaces read from .STL files via fix :doc:`smd/wall_surface <fix_smd_wall_surface>` .
-It updates position and velocity for the particles in the group each timestep without regard to forces on the particles.
-The rigid surfaces can thus be moved along simple trajectories during the simulation.
-
-The **LINEAR* style moves particles with the specified constant velocity
-vector V = (Vx,Vy,Vz). This style also sets the velocity of each particle
-to V = (Vx,Vy,Vz).
-
-The **WIGGLE* style moves particles in an oscillatory fashion.
-Particles are moved along (vx, vy, vz) with constant velocity until a
-displacement of max_travel is reached. Then, the velocity vector is
-reversed. This process is repeated.
-
-The **ROTATE* style rotates particles around a rotation axis R = (Rx,Ry,Rz) that
-goes through a point P = (Px,Py,Pz). The period of the rotation is also
-specified. This style also sets the velocity of each particle to (omega cross
-Rperp) where omega is its angular velocity around the rotation axis and
-Rperp is a perpendicular vector from the rotation axis to the particle.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to using Smooth Mach Dynamics in LAMMPS.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Currently, no part of USER-SMD supports restarting nor minimization. This fix has no outputs.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/triangle_mesh_vertices <compute_smd_triangle_mesh_vertices>`, :doc:`smd/wall_surface <fix_smd_wall_surface>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_smd_setvel.txt b/doc/_sources/fix_smd_setvel.txt
deleted file mode 100644
index 702e63c30..000000000
--- a/doc/_sources/fix_smd_setvel.txt
+++ /dev/null
@@ -1,99 +0,0 @@
-.. index:: fix smd/setvel
-
-fix smd/setvel command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd/setvel vx vy vz keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd/setvel = style name of this fix command
-* vx,vy,vz = velocity component values
-* any of vx,vy,vz can be a variable (see below)
-* zero or more keyword/value pairs may be appended to args
-* keyword = *region*
-.. parsed-literal::
-
- *region* value = region-ID
- region-ID = ID of region particles must be in to have their velocities set
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix top_velocity top_group setvel 1.0 0.0 0.0
-
-Description
-"""""""""""
-
-Set each component of velocity on each particle in the group to the specified
-values vx,vy,vz, regardless of the forces acting on the particle. This command can
-be used to impose velocity boundary conditions.
-
-Any of the vx,vy,vz values can be specified as NULL which means do not
-alter the velocity component in that dimension.
-
-This fix is indented to be used together with a time integration fix.
-
-Any of the 3 quantities defining the velocity components can be specified
-as an equal-style or atom-style :doc:`variable <variable>`, namely *vx*,
-*vy*, *vz*. If the value is a variable, it should be specified as
-v_name, where name is the variable name. In this case, the variable
-will be evaluated each timestep, and its value used to determine the
-force component.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent velocity field.
-
-Atom-style variables can specify the same formulas as equal-style
-variables but can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a spatially-dependent velocity
-field with optional time-dependence as well.
-
-If the *region* keyword is used, the particle must also be in the
-specified geometric :doc:`region <region>` in order to have its velocity set by this command.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Currently, no part of USER-SMD supports restarting nor minimization
-None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global 3-vector of forces, which can be accessed
-by various :ref:`output commands <howto_15>`. This is the
-total force on the group of atoms. The vector values calculated by this
-fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_smd_tlsph_reference_configuration.txt b/doc/_sources/fix_smd_tlsph_reference_configuration.txt
deleted file mode 100644
index e69de29bb..000000000
diff --git a/doc/_sources/fix_smd_wall_surface.txt b/doc/_sources/fix_smd_wall_surface.txt
deleted file mode 100644
index 05a742b25..000000000
--- a/doc/_sources/fix_smd_wall_surface.txt
+++ /dev/null
@@ -1,71 +0,0 @@
-.. index:: fix smd/wall_surface
-
-fix smd/wall_surface command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd/wall_surface arg type mol-ID
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd/wall_surface = style name of this fix command
-* arg = *file*
-.. parsed-literal::
-
- *file* = file name of a triangular mesh in stl format
-
-* type = particle type to be given to the new particles created by this fix
-* mol-ID = molecule-ID to be given to the new particles created by this fix (must be >= 65535)
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix stl_surf all smd/wall_surface tool.stl 2 65535
-
-Description
-"""""""""""
-
-This fix creates reads a traingulated surface from a file in .STL format.
-For each triangle, a new particle is created which stores the barycenter of the triangle and the vertex positions.
-The radius of the new particle is that of the minimum circle which encompasses the triangle vertices.
-
-The triangulated surface can be used as a complex rigid wall via the :doc:`smd/tri_surface <pair_smd_triangulated_surface>` pair style.
-It is possible to move the triangulated surface via the :doc:`smd/move_tri_surf <fix_smd_move_triangulated_surface>` fix style.
-
-Immediately after a .STL file has been read, the simulation needs to be run for 0 timesteps in order to properly register the new particles
-in the system. See the "funnel_flow" example in the USER-SMD examples directory.
-
-See `this PDF guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ to use Smooth Mach Dynamics in LAMMPS.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-Currently, no part of USER-SMD supports restarting nor minimization. This fix has no outputs.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info. The molecule ID given to the particles created by this fix have to be equal to or larger than 65535.
-
-Within each .STL file, only a single triangulated object must be present, even though the STL format allows for the possibility of multiple objects in one file.
-
-Related commands
-""""""""""""""""
-
-:doc:`smd/triangle_mesh_vertices <compute_smd_triangle_mesh_vertices>`, :doc:`smd/move_tri_surf <fix_smd_move_triangulated_surface>`, :doc:`smd/tri_surface <pair_smd_triangulated_surface>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_spring.txt b/doc/_sources/fix_spring.txt
deleted file mode 100644
index c6ab8d71a..000000000
--- a/doc/_sources/fix_spring.txt
+++ /dev/null
@@ -1,159 +0,0 @@
-.. index:: fix spring
-
-fix spring command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID spring keyword values
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* spring = style name of this fix command
-* keyword = *tether* or *couple*
-.. parsed-literal::
-
- *tether* values = K x y z R0
- K = spring constant (force/distance units)
- x,y,z = point to which spring is tethered
- R0 = equilibrium distance from tether point (distance units)
- *couple* values = group-ID2 K x y z R0
- group-ID2 = 2nd group to couple to fix group with a spring
- K = spring constant (force/distance units)
- x,y,z = direction of spring
- R0 = equilibrium distance of spring (distance units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix pull ligand spring tether 50.0 0.0 0.0 0.0 0.0
- fix pull ligand spring tether 50.0 0.0 0.0 0.0 5.0
- fix pull ligand spring tether 50.0 NULL NULL 2.0 3.0
- fix 5 bilayer1 spring couple bilayer2 100.0 NULL NULL 10.0 0.0
- fix longitudinal pore spring couple ion 100.0 NULL NULL -20.0 0.0
- fix radial pore spring couple ion 100.0 0.0 0.0 NULL 5.0
-
-Description
-"""""""""""
-
-Apply a spring force to a group of atoms or between two groups of
-atoms. This is useful for applying an umbrella force to a small
-molecule or lightly tethering a large group of atoms (e.g. all the
-solvent or a large molecule) to the center of the simulation box so
-that it doesn't wander away over the course of a long simulation. It
-can also be used to hold the centers of mass of two groups of atoms at
-a given distance or orientation with respect to each other.
-
-The *tether* style attaches a spring between a fixed point *x,y,z* and
-the center of mass of the fix group of atoms. The equilibrium
-position of the spring is R0. At each timestep the distance R from
-the center of mass of the group of atoms to the tethering point is
-computed, taking account of wrap-around in a periodic simulation box.
-A restoring force of magnitude K (R - R0) Mi / M is applied to each
-atom in the group where *K* is the spring constant, Mi is the mass of
-the atom, and M is the total mass of all atoms in the group. Note
-that *K* thus represents the total force on the group of atoms, not a
-per-atom force.
-
-The *couple* style links two groups of atoms together. The first
-group is the fix group; the second is specified by group-ID2. The
-groups are coupled together by a spring that is at equilibrium when
-the two groups are displaced by a vector *x,y,z* with respect to each
-other and at a distance R0 from that displacement. Note that *x,y,z*
-is the equilibrium displacement of group-ID2 relative to the fix
-group. Thus (1,1,0) is a different spring than (-1,-1,0). When the
-relative positions and distance between the two groups are not in
-equilibrium, the same spring force described above is applied to atoms
-in each of the two groups.
-
-For both the *tether* and *couple* styles, any of the x,y,z values can
-be specified as NULL which means do not include that dimension in the
-distance calculation or force application.
-
-The first example above pulls the ligand towards the point (0,0,0).
-The second example holds the ligand near the surface of a sphere of
-radius 5 around the point (0,0,0). The third example holds the ligand
-a distance 3 away from the z=2 plane (on either side).
-
-The fourth example holds 2 bilayers a distance 10 apart in z. For the
-last two examples, imagine a pore (a slab of atoms with a cylindrical
-hole cut out) oriented with the pore axis along z, and an ion moving
-within the pore. The fifth example holds the ion a distance of -20
-below the z = 0 center plane of the pore (umbrella sampling). The
-last example holds the ion a distance 5 away from the pore axis
-(assuming the center-of-mass of the pore in x,y is the pore axis).
-
-.. note::
-
- The center of mass of a group of atoms is calculated in
- "unwrapped" coordinates using atom image flags, which means that the
- group can straddle a periodic boundary. See the :doc:`dump <dump>` doc
- page for a discussion of unwrapped coordinates. It also means that a
- spring connecting two groups or a group and the tether point can cross
- a periodic boundary and its length be calculated correctly. One
- exception is for rigid bodies, which should not be used with the fix
- spring command, if the rigid body will cross a periodic boundary.
- This is because image flags for rigid bodies are used in a different
- way, as explained on the :doc:`fix rigid <fix_rigid>` doc page.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy stored in the spring to the system's potential
-energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-spring energy = 0.5 * K * r^2.
-
-This fix also computes global 4-vector which can be accessed by
-various :ref:`output commands <howto_15>`. The first 3
-quantities in the vector are xyz components of the total force added
-to the group of atoms by the spring. In the case of the *couple*
-style, it is the force on the fix group (group-ID) or the negative of
-the force on the 2nd group (group-ID2). The 4th quantity in the
-vector is the magnitude of the force added by the spring, as a
-positive value if (r-R0) > 0 and a negative value if (r-R0) < 0. This
-sign convention can be useful when using the spring force to compute a
-potential of mean force (PMF).
-
-The scalar and vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-.. note::
-
- If you want the spring energy to be included in the total
- potential energy of the system (the quantity being minimized), you
- MUST enable the :doc:`fix_modify <fix_modify>` *energy* option for this
- fix.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix drag <fix_drag>`, :doc:`fix spring/self <fix_spring_self>`,
-:doc:`fix spring/rg <fix_spring_rg>`, :doc:`fix smd <fix_smd>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_spring_rg.txt b/doc/_sources/fix_spring_rg.txt
deleted file mode 100644
index 92ffe8aa8..000000000
--- a/doc/_sources/fix_spring_rg.txt
+++ /dev/null
@@ -1,79 +0,0 @@
-.. index:: fix spring/rg
-
-fix spring/rg command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID spring/rg K RG0
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* spring/rg = style name of this fix command
-* K = harmonic force constant (force/distance units)
-* RG0 = target radius of gyration to constrain to (distance units)
-
-.. parsed-literal::
-
- if RG0 = NULL, use the current RG as the target value
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 protein spring/rg 5.0 10.0
- fix 2 micelle spring/rg 5.0 NULL
-
-Description
-"""""""""""
-
-Apply a harmonic restraining force to atoms in the group to affect
-their central moment about the center of mass (radius of gyration).
-This fix is useful to encourage a protein or polymer to fold/unfold
-and also when sampling along the radius of gyration as a reaction
-coordinate (i.e. for protein folding).
-
-The radius of gyration is defined as RG in the first formula. The
-energy of the constraint and associated force on each atom is given by
-the second and third formulas, when the group is at a different RG
-than the target value RG0.
-
-.. image:: Eqs/fix_spring_rg.jpg
- :align: center
-
-The (xi - center-of-mass) term is computed taking into account
-periodic boundary conditions, m_i is the mass of the atom, and M is
-the mass of the entire group. Note that K is thus a force constant
-for the aggregate force on the group of atoms, not a per-atom force.
-
-If RG0 is specified as NULL, then the RG of the group is computed at
-the time the fix is specified, and that value is used as the target.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix spring <fix_spring>`, :doc:`fix spring/self <fix_spring_self>`
-:doc:`fix drag <fix_drag>`, :doc:`fix smd <fix_smd>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_spring_self.txt b/doc/_sources/fix_spring_self.txt
deleted file mode 100644
index 6eaebfa6c..000000000
--- a/doc/_sources/fix_spring_self.txt
+++ /dev/null
@@ -1,91 +0,0 @@
-.. index:: fix spring/self
-
-fix spring/self command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID spring/self K dir
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* spring/self = style name of this fix command
-* K = spring constant (force/distance units)
-* dir = xyz, xy, xz, yz, x, y, or z (optional, default: xyz)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix tether boundary-atoms spring/self 10.0
- fix zrest move spring/self 10.0 z
-
-Description
-"""""""""""
-
-Apply a spring force independently to each atom in the group to tether
-it to its initial position. The initial position for each atom is its
-location at the time the fix command was issued. At each timestep,
-the magnitude of the force on each atom is -Kr, where r is the
-displacement of the atom from its current position to its initial
-position. The distance r correctly takes into account any crossings
-of periodic boundary by the atom since it was in its intitial
-position.
-
-With the (optional) dir flag, one can select in which direction the
-spring force is applied. By default, the restraint is applied in all
-directions, but it can be limited to the xy-, xz-, yz-plane and the
-x-, y-, or z-direction, thus restraining the atoms to a line or a
-plane, respectively.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the original coordinates of tethered atoms to :doc:`binary restart files <restart>`, so that the spring effect will be the
-same in a restarted simulation. See the
-:doc:`read_restart <read_restart>` command for info on how to re-specify
-a fix in an input script that reads a restart file, so that the
-operation of the fix continues in an uninterrupted fashion.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy stored in the per-atom springs to the system's
-potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is an
-energy which is the sum of the spring energy for each atom, where the
-per-atom energy is 0.5 * K * r^2. The scalar value calculated by this
-fix is "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-.. note::
-
- If you want the per-atom spring energy to be included in the
- total potential energy of the system (the quantity being minimized),
- you MUST enable the :doc:`fix_modify <fix_modify>` *energy* option for
- this fix.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix drag <fix_drag>`, :doc:`fix spring <fix_spring>`,
-:doc:`fix smd <fix_smd>`, :doc:`fix spring/rg <fix_spring_rg>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_srd.txt b/doc/_sources/fix_srd.txt
deleted file mode 100644
index b8d97f6e5..000000000
--- a/doc/_sources/fix_srd.txt
+++ /dev/null
@@ -1,429 +0,0 @@
-.. index:: fix srd
-
-fix srd command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID srd N groupbig-ID Tsrd hgrid seed keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* srd = style name of this fix command
-* N = reset SRD particle velocities every this many timesteps
-* groupbig-ID = ID of group of large particles that SRDs interact with
-* Tsrd = temperature of SRD particles (temperature units)
-* hgrid = grid spacing for SRD grouping (distance units)
-* seed = random # seed (positive integer)
-
-* zero or more keyword/value pairs may be appended
-* keyword = *lamda* or *collision* or *overlap* or *inside* or *exact* or *radius* or *bounce* or *search* or *cubic* or *shift* or *tstat* or *rescale*
-.. parsed-literal::
-
- *lamda* value = mean free path of SRD particles (distance units)
- *collision* value = *noslip* or *slip* = collision model
- *overlap* value = *yes* or *no* = whether big particles may overlap
- *inside* value = *error* or *warn* or *ignore* = how SRD particles which end up inside a big particle are treated
- *exact* value = *yes* or *no*
- *radius* value = rfactor = scale collision radius by this factor
- *bounce* value = Nbounce = max # of collisions an SRD particle can undergo in one timestep
- *search* value = sgrid = grid spacing for collision partner searching (distance units)
- *cubic* values = style tolerance
- style = *error* or *warn*
- tolerance = fractional difference allowed (0 <= tol <= 1)
- *shift* values = flag shiftseed
- flag = *yes* or *no* or *possible* = SRD bin shifting for better statistics
- *yes* = perform bin shifting each time SRD velocities are rescaled
- *no* = no shifting
- *possible* = shift depending on mean free path and bin size
- shiftseed = random # seed (positive integer)
- *tstat* value = *yes* or *no* = thermostat SRD particles or not
- *rescale* value = *yes* or *no* or *rotate* or *collide* = rescaling of SRD velocities
- *yes* = rescale during velocity rotation and collisions
- *no* = no rescaling
- *rotate* = rescale during velocity rotation, but not collisions
- *collide* = rescale during collisions, but not velocity rotation
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 srd srd 10 big 1.0 0.25 482984
- fix 1 srd srd 10 big 0.5 0.25 482984 collision slip search 0.5
-
-Description
-"""""""""""
-
-Treat a group of partilces as stochastic rotation dynamics (SRD)
-particles that serve as a background solvent when interacting with big
-(colloidal) particles in groupbig-ID. The SRD formalism is described
-in :ref:`(Hecht) <Hecht>`. The key idea behind using SRD particles as a
-cheap coarse-grained solvent is that SRD particles do not interact
-with each other, but only with the solute particles, which in LAMMPS
-can be spheroids, ellipsoids, or line segments, or triangles, or rigid
-bodies containing multiple spherioids or ellipsoids or line segments
-or triangles. The collision and rotation properties of the model
-imbue the SRD particles with fluid-like properties, including an
-effective viscosity. Thus simulations with large solute particles can
-be run more quickly, to measure solute propoerties like diffusivity
-and viscosity in a background fluid. The usual LAMMPS fixes for such
-simulations, such as :doc:`fix deform <fix_deform>`, :doc:`fix viscosity <fix_viscosity>`, and :doc:`fix nvt/sllod <fix_nvt_sllod>`,
-can be used in conjunction with the SRD model.
-
-For more details on how the SRD model is implemented in LAMMPS, :ref:`this paper <Petersen>` describes the implementation and usage of pure SRD
-fluids. :ref:`This paper <Lechman>`, which is nearly complete, describes
-the implementation and usage of mixture systems (solute particles in
-an SRD fluid). See the examples/srd directory for sample input
-scripts using SRD particles in both settings.
-
-This fix does 2 things:
-
-(1) It advects the SRD particles, performing collisions between SRD
-and big particles or walls every timestep, imparting force and torque
-to the big particles. Collisions also change the position and
-velocity of SRD particles.
-
-(2) It resets the velocity distribution of SRD particles via random
-rotations every N timesteps.
-
-SRD particles have a mass, temperature, characteristic timestep
-dt_SRD, and mean free path between collisions (lamda). The
-fundamental equation relating these 4 quantities is
-
-.. parsed-literal::
-
- lamda = dt_SRD * sqrt(Kboltz * Tsrd / mass)
-
-The mass of SRD particles is set by the :doc:`mass <mass>` command
-elsewhere in the input script. The SRD timestep dt_SRD is N times the
-step dt defined by the :doc:`timestep <timestep>` command. Big
-particles move in the normal way via a time integration :doc:`fix <fix>`
-with a short timestep dt. SRD particles advect with a large timestep
-dt_SRD >= dt.
-
-If the *lamda* keyword is not specified, the the SRD temperature
-*Tsrd* is used in the above formula to compute lamda. If the *lamda*
-keyword is specified, then the *Tsrd* setting is ignored and the above
-equation is used to compute the SRD temperature.
-
-The characteristic length scale for the SRD fluid is set by *hgrid*
-which is used to bin SRD particles for purposes of resetting their
-velocities. Normally hgrid is set to be 1/4 of the big particle
-diameter or smaller, to adequately resolve fluid properties around the
-big particles.
-
-Lamda cannot be smaller than 0.6 * hgrid, else an error is generated
-(unless the *shift* keyword is used, see below). The velocities of
-SRD particles are bounded by Vmax, which is set so that an SRD
-particle will not advect further than Dmax = 4*lamda in dt_SRD. This
-means that roughly speaking, Dmax should not be larger than a big
-particle diameter, else SRDs may pass thru big particles without
-colliding. A warning is generated if this is the case.
-
-Collisions between SRD particles and big particles or walls are
-modeled as a lightweight SRD point particle hitting a heavy big
-particle of given diameter or a wall at a point on its surface and
-bouncing off with a new velocity. The collision changes the momentum
-of the SRD particle. It imparts a force and torque to the big
-particle. It imparts a force to a wall. Static or moving SRD walls
-are setup via the :doc:`fix wall/srd <fix_wall_srd>` command. For the
-remainder of this doc page, a collision of an SRD particle with a wall
-can be viewed as a collision with a big particle of infinite radius
-and mass.
-
-The *collision* keyword sets the style of collisions. The *slip*
-style means that the tangential component of the SRD particle momentum
-is preserved. Thus a force is imparted to a big particle, but no
-torque. The normal component of the new SRD velocity is sampled from
-a Gaussian distribution at temperature *Tsrd*.
-
-For the *noslip* style, both the normal and tangential components of
-the new SRD velocity are sampled from a Gaussian distribution at
-temperature *Tsrd*. Additionally, a new tangential direction for the
-SRD velocity is chosen randomly. This collision style imparts torque
-to a big particle. Thus a time integrator :doc:`fix <fix>` that rotates
-the big particles appropriately should be used.
-
-
-----------
-
-
-The *overlap* keyword should be set to *yes* if two (or more) big
-particles can ever overlap. This depends on the pair potential
-interaction used for big-big interactions, or could be the case if
-multiple big particles are held together as rigid bodies via the :doc:`fix rigid <fix_rigid>` command. If the *overlap* keyword is *no* and
-big particles do in fact overlap, then SRD/big collisions can generate
-an error if an SRD ends up inside two (or more) big particles at once.
-How this error is treated is determined by the *inside* keyword.
-Running with *overlap* set to *no* allows for faster collision
-checking, so it should only be set to *yes* if needed.
-
-The *inside* keyword determines how a collision is treated if the
-computation determines that the timestep started with the SRD particle
-already inside a big particle. If the setting is *error* then this
-generates an error message and LAMMPS stops. If the setting is *warn*
-then this generates a warning message and the code continues. If the
-setting is *ignore* then no message is generated. One of the output
-quantities logged by the fix (see below) tallies the number of such
-events, so it can be monitored. Note that once an SRD particle is
-inside a big particle, it may remain there for several steps until it
-drifts outside the big particle.
-
-The *exact* keyword determines how accurately collisions are computed.
-A setting of *yes* computes the time and position of each collision as
-SRD and big particles move together. A setting of *no* estimates the
-position of each collision based on the end-of-timestep positions of
-the SRD and big particle. If *overlap* is set to yes, the setting of
-the *exact* keyword is ignored since time-accurate collisions are
-needed.
-
-The *radius* keyword scales the effective size of big particles. If
-big particles will overlap as they undergo dynamics, then this keyword
-can be used to scale down their effective collision radius by an
-amount *rfactor*, so that SRD particle will only collide with one big
-particle at a time. For example, in a Lennard-Jones system at a
-temperature of 1.0 (in reduced LJ units), the minimum separation
-bewteen two big particles is as small as about 0.88 sigma. Thus an
-*rfactor* value of 0.85 should prevent dual collisions.
-
-The *bounce* keyword can be used to limit the maximum number of
-collisions an SRD particle undergoes in a single timestep as it
-bounces between nearby big particles. Note that if the limit is
-reached, the SRD can be left inside a big particle. A setting of 0 is
-the same as no limit.
-
-
-----------
-
-
-There are 2 kinds of bins created and maintained when running an SRD
-simulation. The first are "SRD bins" which are used to bin SRD
-particles and reset their velocities, as discussed above. The second
-are "search bins" which are used to identify SRD/big particle
-collisions.
-
-The *search* keyword can be used to choose a search bin size for
-identifying SRD/big particle collisions. The default is to use the
-*hgrid* parameter for SRD bins as the search bin size. Choosing a
-smaller or large value may be more efficient, depending on the
-problem. But, in a statistical sense, it should not change the
-simulation results.
-
-The *cubic* keyword can be used to generate an error or warning when
-the bin size chosen by LAMMPS creates SRD bins that are non-cubic or
-different than the requested value of *hgrid* by a specified
-*tolerance*. Note that using non-cubic SRD bins can lead to
-undetermined behavior when rotating the velocities of SRD particles,
-hence LAMMPS tries to protect you from this problem.
-
-LAMMPS attempts to set the SRD bin size to exactly *hgrid*. However,
-there must be an integer number of bins in each dimension of the
-simulation box. Thus the actual bin size will depend on the size and
-shape of the overall simulation box. The actual bin size is printed
-as part of the SRD output when a simulation begins.
-
-If the actual bin size in non-cubic by an amount exceeding the
-tolerance, an error or warning is printed, depending on the style of
-the *cubic* keyword. Likewise, if the actual bin size differs from
-the requested *hgrid* value by an amount exceeding the tolerance, then
-an error or warning is printed. The *tolerance* is a fractional
-difference. E.g. a tolerance setting of 0.01 on the shape means that
-if the ratio of any 2 bin dimensions exceeds (1 +/- tolerance) then an
-error or warning is generated. Similarly, if the ratio of any bin
-dimension with *hgrid* exceeds (1 +/- tolerance), then an error or
-warning is generated.
-
-.. note::
-
- The fix srd command can be used with simluations the size and/or
- shape of the simulation box changes. This can be due to non-periodic
- boundary conditions or the use of fixes such as the :doc:`fix deform <fix_deform>` or :doc:`fix wall/srd <fix_wall_srd>` commands
- to impose a shear on an SRD fluid or an interaction with an external
- wall. If the box size changes then the size of SRD bins must be
- recalculated every reneighboring. This is not necessary if only the
- box shape changes. This re-binning is always done so as to fit an
- integer number of bins in the current box dimension, whether it be a
- fixed, shrink-wrapped, or periodic boundary, as set by the
- :doc:`boundary <boundary>` command. If the box size or shape changes,
- then the size of the search bins must be recalculated avery
- reneighboring. Note that changing the SRD bin size may alter the
- properties of the SRD fluid, such as its viscosity.
-
-The *shift* keyword determines whether the coordinates of SRD
-particles are randomly shifted when binned for purposes of rotating
-their velocities. When no shifting is performed, SRD particles are
-binned and the velocity distribution of the set of SRD particles in
-each bin is adjusted via a rotation operator. This is a statistically
-valid operation if SRD particles move sufficiently far between
-successive rotations. This is determined by their mean-free path
-lamda. If lamda is less than 0.6 of the SRD bin size, then shifting
-is required. A shift means that all of the SRD particles are shifted
-by a vector whose coordinates are chosen randomly in the range [-1/2
-bin size, 1/2 bin size]. Note that all particles are shifted by the
-same vector. The specified random number *shiftseed* is used to
-generate these vectors. This operation sufficiently randomizes which
-SRD particles are in the same bin, even if lamda is small.
-
-If the *shift* flag is set to *no*, then no shifting is performed, but
-bin data will be communicated if bins overlap processor boundaries.
-An error will be generated if lamda < 0.6 of the SRD bin size. If the
-*shift* flag is set to *possible*, then shifting is performed only if
-lamda < 0.6 of the SRD bin size. A warning is generated to let you
-know this is occurring. If the *shift* flag is set to *yes* then
-shifting is performed regardless of the magnitude of lamda. Note that
-the *shiftseed* is not used if the *shift* flag is set to *no*, but
-must still be specified.
-
-Note that shifting of SRD coordinates requires extra communication,
-hence it should not normally be enabled unless required.
-
-The *tstat* keyword will thermostat the SRD particles to the specified
-*Tsrd*. This is done every N timesteps, during the velocity rotation
-operation, by rescaling the thermal velocity of particles in each SRD
-bin to the desired temperature. If there is a streaming velocity
-associated with the system, e.g. due to use of the :doc:`fix deform <fix_deform>` command to perform a simulation undergoing
-shear, then that is also accounted for. The mean velocity of each bin
-of SRD particles is set to the position-dependent streaming velocity,
-based on the coordinates of the center of the SRD bin. Note that
-collisions of SRD particles with big particles or walls has a
-thermostatting effect on the colliding particles, so it may not be
-necessary to thermostat the SRD particles on a bin by bin basis in
-that case. Also note that for streaming simulations, if no
-thermostatting is performed (the default), then it may take a long
-time for the SRD fluid to come to equilibrium with a velocity profile
-that matches the simulation box deformation.
-
-The *rescale* keyword enables rescaling of an SRD particle's velocity
-if it would travel more than 4 mean-free paths in an SRD timestep. If
-an SRD particle exceeds this velocity it is possible it will be lost
-when migrating to other processors or that collisions with big
-particles will be missed, either of which will generate errors. Thus
-the safest mode is to run with rescaling enabled. However rescaling
-removes kinetic energy from the system (the particle's velocity is
-reduced). The latter will not typically be a problem if
-thermostatting is enabled via the *tstat* keyword or if SRD collisions
-with big particles or walls effectively thermostat the system. If you
-wish to turn off rescaling (on is the default), e.g. for a pure SRD
-system with no thermostatting so that the temperature does not decline
-over time, the *rescale* keyword can be used. The *no* value turns
-rescaling off during collisions and the per-bin velocity rotation
-operation. The *collide* and *rotate* values turn it on for
-one of the operations and off for the other.
-
-
-----------
-
-
-.. note::
-
- This fix is normally used for simulations with a huge number of
- SRD particles relative to the number of big particles, e.g. 100 to 1.
- In this scenario, computations that involve only big particles
- (neighbor list creation, communication, time integration) can slow
- down dramatically due to the large number of background SRD particles.
-
-Three other input script commands will largely overcome this effect,
-speeding up an SRD simulation by a significant amount. These are the
-:doc:`atom_modify first <atom_modify>`, :doc:`neigh_modify include <neigh_modify>`, and :doc:`comm_modify group <comm_modify>`
-commands. Each takes a group-ID as an argument, which in this case
-should be the group-ID of the big solute particles.
-
-Additionally, when a :doc:`pair_style <pair_style>` for big/big particle
-interactions is specified, the :doc:`pair_coeff <pair_coeff>` command
-should be used to turn off big/SRD interactions, e.g. by setting their
-epsilon or cutoff length to 0.0.
-
-The "delete_atoms overlap" command may be useful in setting up an SRD
-simulation to insure there are no initial overlaps between big and SRD
-particles.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix tabulates several SRD statistics which are stored in a vector
-of length 12, which can be accessed by various :ref:`output commands <howto_15>`. The vector values calculated
-by this fix are "intensive", meaning they do not scale with the size
-of the simulation. Technically, the first 8 do scale with the size of
-the simulation, but treating them as intensive means they are not
-scaled when printed as part of thermodyanmic output.
-
-These are the 12 quantities. All are values for the current timestep,
-except for quantity 5 and the last three, each of which are
-cummulative quantities since the beginning of the run.
-
-* (1) # of SRD/big collision checks performed
-* (2) # of SRDs which had a collision
-* (3) # of SRD/big colllisions (including multiple bounces)
-* (4) # of SRD particles inside a big particle
-* (5) # of SRD particles whose velocity was rescaled to be < Vmax
-* (6) # of bins for collision searching
-* (7) # of bins for SRD velocity rotation
-* (8) # of bins in which SRD temperature was computed
-* (9) SRD temperature
-* (10) # of SRD particles which have undergone max # of bounces
-* (11) max # of bounces any SRD particle has had in a single step
-* (12) # of reneighborings due to SRD particles moving too far
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This command can only be used if LAMMPS was built with the SRD
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix wall/srd <fix_wall_srd>`
-
-Default
-"""""""
-
-The option defaults are lamda inferred from Tsrd, collision = noslip,
-overlap = no, inside = error, exact = yes, radius = 1.0, bounce = 0,
-search = hgrid, cubic = error 0.01, shift = no, tstat = no, and
-rescale = yes.
-
-
-----------
-
-
-.. _Hecht:
-
-
-
-**(Hecht)** Hecht, Harting, Ihle, Herrmann, Phys Rev E, 72, 011408 (2005).
-
-.. _Petersen:
-
-
-
-**(Petersen)** Petersen, Lechman, Plimpton, Grest, in' t Veld, Schunk, J
-Chem Phys, 132, 174106 (2010).
-
-.. _Lechman:
-
-
-
-**(Lechman)** Lechman, et al, in preparation (2010).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_store_force.txt b/doc/_sources/fix_store_force.txt
deleted file mode 100644
index f86d7b123..000000000
--- a/doc/_sources/fix_store_force.txt
+++ /dev/null
@@ -1,80 +0,0 @@
-.. index:: fix store/force
-
-fix store/force command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID store/force
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* store/force = style name of this fix command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all store/force
-
-Description
-"""""""""""
-
-Store the forces on atoms in the group at the point during each
-timestep when the fix is invoked, as described below. This is useful
-for storing forces before constraints or other boundary conditions are
-computed which modify the forces, so that unmodified forces can be
-:doc:`written to a dump file <dump>` or accessed by other :ref:`output commands <howto_15>` that use per-atom quantities.
-
-This fix is invoked at the point in the velocity-Verlet timestepping
-immediately after :doc:`pair <pair_style>`, :doc:`bond <bond_style>`,
-:doc:`angle <angle_style>`, :doc:`dihedral <dihedral_style>`,
-:doc:`improper <improper_style>`, and :doc:`long-range <kspace_style>`
-forces have been calculated. It is the point in the timestep when
-various fixes that compute constraint forces are calculated and
-potentially modify the force on each atom. Examples of such fixes are
-:doc:`fix shake <fix_shake>`, :doc:`fix wall <fix_wall>`, and :doc:`fix indent <fix_indent>`.
-
-.. note::
-
- The order in which various fixes are applied which operate at
- the same point during the timestep, is the same as the order they are
- specified in the input script. Thus normally, if you want to store
- per-atom forces due to force field interactions, before constraints
- are applied, you should list this fix first within that set of fixes,
- i.e. before other fixes that apply constraints. However, if you wish
- to include certain constraints (e.g. fix shake) in the stored force,
- then it could be specified after some fixes and before others.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix produces a per-atom array which can be accessed by various
-:ref:`output commands <howto_15>`. The number of columns
-for each atom is 3, and the columns store the x,y,z forces on each
-atom. The per-atom values be accessed on any timestep.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix store_state <fix_store_state>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_store_state.txt b/doc/_sources/fix_store_state.txt
deleted file mode 100644
index b062d6fa1..000000000
--- a/doc/_sources/fix_store_state.txt
+++ /dev/null
@@ -1,145 +0,0 @@
-.. index:: fix store/state
-
-fix store/state command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID store/state N input1 input2 ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* store/state = style name of this fix command
-* N = store atom attributes every N steps, N = 0 for initial store only
-* input = one or more atom attributes
-.. parsed-literal::
-
- possible attributes = id, mol, type, mass,
- x, y, z, xs, ys, zs, xu, yu, zu, xsu, ysu, zsu, ix, iy, iz,
- vx, vy, vz, fx, fy, fz,
- q, mux, muy, muz, mu,
- radius, diameter, omegax, omegay, omegaz,
- angmomx, angmomy, angmomz, tqx, tqy, tqz,
- c_ID, c_ID[N], f_ID, f_ID[N], v_name,
- d_name, i_name
-
-.. parsed-literal::
-
- id = atom ID
- mol = molecule ID
- type = atom type
- mass = atom mass
- x,y,z = unscaled atom coordinates
- xs,ys,zs = scaled atom coordinates
- xu,yu,zu = unwrapped atom coordinates
- xsu,ysu,zsu = scaled unwrapped atom coordinates
- ix,iy,iz = box image that the atom is in
- vx,vy,vz = atom velocities
- fx,fy,fz = forces on atoms
- q = atom charge
- mux,muy,muz = orientation of dipolar atom
- mu = magnitued of dipole moment of atom
- radius,diameter = radius.diameter of spherical particle
- omegax,omegay,omegaz = angular velocity of spherical particle
- angmomx,angmomy,angmomz = angular momentum of aspherical particle
- tqx,tqy,tqz = torque on finite-size particles
- c_ID = per-atom vector calculated by a compute with ID
- c_ID[I] = Ith column of per-atom array calculated by a compute with ID
- f_ID = per-atom vector calculated by a fix with ID
- f_ID[I] = Ith column of per-atom array calculated by a fix with ID
- v_name = per-atom vector calculated by an atom-style variable with name
- d_name = per-atom floating point vector name, managed by fix property/atom
- i_name = per-atom integer vector name, managed by fix property/atom
-
-* zero or more keyword/value pairs may be appended
-* keyword = *com*
-.. parsed-literal::
-
- *com* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all store/state 0 x y z
- fix 1 all store/state 0 xu yu zu com yes
- fix 2 all store/state 1000 vx vy vz
-
-Description
-"""""""""""
-
-Define a fix that stores attributes for each atom in the group at the
-time the fix is defined. If *N* is 0, then the values are never
-updated, so this is a way of archiving an atom attribute at a given
-time for future use in a calculation or output. See the discussion of
-:ref:`output commands <howto_15>` that take fixes as
-inputs.
-
-If *N* is not zero, then the attributes will be updated every *N*
-steps.
-
-.. note::
-
- Actually, only atom attributes specified by keywords like *xu*
- or *vy* or *radius* are initially stored immediately at the point in
- your input script when the fix is defined. Attributes specified by a
- compute, fix, or variable are not initially stored until the first run
- following the fix definition begins. This is because calculating
- those attributes may require quantities that are not defined in
- between runs.
-
-The list of possible attributes is the same as that used by the :doc:`dump custom <dump>` command, which describes their meaning.
-
-If the *com* keyword is set to *yes* then the *xu*, *yu*, and *zu*
-inputs store the position of each atom relative to the center-of-mass
-of the group of atoms, instead of storing the absolute position.
-
-The requested values are stored in a per-atom vector or array as
-discussed below. Zeroes are stored for atoms not in the specified
-group.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the per-atom values it stores to :doc:`binary restart files <restart>`, so that the values can be restored when a
-simulation is restarted. See the :doc:`read_restart <read_restart>`
-command for info on how to re-specify a fix in an input script that
-reads a restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-If a single input is specified, this fix produces a per-atom vector.
-If multiple inputs are specified, a per-atom array is produced where
-the number of columns for each atom is the number of inputs. These
-can be accessed by various :ref:`output commands <howto_15>`. The per-atom values be
-accessed on any timestep.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump custom <dump>`, :doc:`compute property/atom <compute_property_atom>`,
-:doc:`fix property/atom <fix_property_atom>`, :doc:`variable <variable>`
-
-Default
-"""""""
-
-The option default is com = no.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_temp_berendsen.txt b/doc/_sources/fix_temp_berendsen.txt
deleted file mode 100644
index d0e7b1406..000000000
--- a/doc/_sources/fix_temp_berendsen.txt
+++ /dev/null
@@ -1,199 +0,0 @@
-.. index:: fix temp/berendsen
-
-fix temp/berendsen command
-==========================
-
-fix temp/berendsen/cuda command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID temp/berendsen Tstart Tstop Tdamp
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* temp/berendsen = style name of this fix command
-* Tstart,Tstop = desired temperature at start/end of run
-.. parsed-literal::
-
- Tstart can be a variable (see below)
-
-* Tdamp = temperature damping parameter (time units)
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all temp/berendsen 300.0 300.0 100.0
-
-Description
-"""""""""""
-
-Reset the temperature of a group of atoms by using a Berendsen
-thermostat :ref:`(Berendsen) <Berendsen>`, which rescales their velocities
-every timestep.
-
-The thermostat is applied to only the translational degrees of freedom
-for the particles, which is an important consideration for finite-size
-particles which have rotational degrees of freedom are being
-thermostatted with this fix. The translational degrees of freedom can
-also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-The desired temperature at each timestep is a ramped value during the
-run from *Tstart* to *Tstop*. The *Tdamp* parameter is specified in
-time units and determines how rapidly the temperature is relaxed. For
-example, a value of 100.0 means to relax the temperature in a timespan
-of (roughly) 100 time units (tau or fmsec or psec - see the
-:doc:`units <units>` command).
-
-*Tstart* can be specified as an equal-style :doc:`variable <variable>`.
-In this case, the *Tstop* setting is ignored. If the value is a
-variable, it should be specified as v_name, where name is the variable
-name. In this case, the variable will be evaluated each timestep, and
-its value used to determine the target temperature.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent temperature.
-
-.. note::
-
- Unlike the :doc:`fix nvt <fix_nh>` command which performs
- Nose/Hoover thermostatting AND time integration, this fix does NOT
- perform time integration. It only modifies velocities to effect
- thermostatting. Thus you must use a separate time integration fix,
- like :doc:`fix nve <fix_nve>` to actually update the positions of atoms
- using the modified velocities. Likewise, this fix should not normally
- be used on atoms that also have their temperature controlled by
- another fix - e.g. by :doc:`fix nvt <fix_nh>` or :doc:`fix langevin <fix_langevin>` commands.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-This fix computes a temperature each timestep. To do this, the fix
-creates its own compute of style "temp", as if this command had been
-issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
-
-See the :doc:`compute temp <compute_temp>` command for details. Note
-that the ID of the new compute is the fix-ID + underscore + "temp",
-and the group for the new compute is the same as the fix group.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a temperature :doc:`compute <compute>`
-you have defined to this fix which will be used in its thermostatting
-procedure, as described above. For consistency, the group used by
-this fix and by the compute should be the same.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change implied by a velocity rescaling to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to this fix. The scalar value
-calculated by this fix is "extensive".
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix can be used with dynamic groups as defined by the
-:doc:`group <group>` command. Likewise it can be used with groups to
-which atoms are added or deleted over time, e.g. a deposition
-simulation. However, the conservation properties of the thermostat
-and barostat are defined for systems with a static set of atoms. You
-may observe odd behavior if the atoms in a group vary dramatically
-over time or the atom count becomes very small.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix langevin <fix_langevin>`,
-:doc:`fix_modify <fix_modify>`, :doc:`compute temp <compute_temp>`,
-:doc:`fix press/berendsen <fix_press_berendsen>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Berendsen:
-
-
-
-**(Berendsen)** Berendsen, Postma, van Gunsteren, DiNola, Haak, J Chem
-Phys, 81, 3684 (1984).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_temp_csvr.txt b/doc/_sources/fix_temp_csvr.txt
deleted file mode 100644
index 290e240d8..000000000
--- a/doc/_sources/fix_temp_csvr.txt
+++ /dev/null
@@ -1,197 +0,0 @@
-.. index:: fix temp/csvr
-
-fix temp/csvr command
-=====================
-
-fix temp/csld command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID temp/csvr Tstart Tstop Tdamp seed
-
-.. parsed-literal::
-
- fix ID group-ID temp/csld Tstart Tstop Tdamp seed
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* temp/csvr or temp/csld = style name of this fix command
-* Tstart,Tstop = desired temperature at start/end of run
-.. parsed-literal::
-
- Tstart can be a variable (see below)
-
-* Tdamp = temperature damping parameter (time units)
-* seed = random number seed to use for white noise (positive integer)
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all temp/csvr 300.0 300.0 100.0 54324
-
-.. parsed-literal::
-
- fix 1 all temp/csld 100.0 300.0 10.0 123321
-
-Description
-"""""""""""
-
-Adjust the temperature with a canonical sampling thermostat that uses
-global velocity rescaling with Hamiltonian dynamics (*temp/csvr*)
-:ref:`(Bussi1) <Bussi1>`, or Langevin dynamics (*temp/csld*)
-:ref:`(Bussi2) <Bussi2>`. In the case of *temp/csvr* the thermostat is
-similar to the empirical Berendsen thermostat in
-:doc:`temp/berendsen <fix_temp_berendsen>`, but chooses the actual
-scaling factor from a suitably chosen (gaussian) distribution rather
-than having it determined from the time constant directly. In the case
-of *temp/csld* the velocities are updated to a linear combination of
-the current velocities with a gaussian distribution of velocities at
-the desired temperature. Both termostats are applied every timestep.
-
-The thermostat is applied to only the translational degrees of freedom
-for the particles, which is an important consideration for finite-size
-particles which have rotational degrees of freedom are being
-thermostatted with these fixes. The translational degrees of freedom
-can also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-The desired temperature at each timestep is a ramped value during the
-run from *Tstart* to *Tstop*. The *Tdamp* parameter is specified in
-time units and determines how rapidly the temperature is relaxed. For
-example, a value of 100.0 means to relax the temperature in a timespan
-of (roughly) 100 time units (tau or fmsec or psec - see the
-:doc:`units <units>` command).
-
-*Tstart* can be specified as an equal-style :doc:`variable <variable>`.
-In this case, the *Tstop* setting is ignored. If the value is a
-variable, it should be specified as v_name, where name is the variable
-name. In this case, the variable will be evaluated each timestep, and
-its value used to determine the target temperature.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent temperature.
-
-.. note::
-
- Unlike the :doc:`fix nvt <fix_nh>` command which performs
- Nose/Hoover thermostatting AND time integration, these fixes do NOT
- perform time integration. They only modify velocities to effect
- thermostatting. Thus you must use a separate time integration fix,
- like :doc:`fix nve <fix_nve>` to actually update the positions of atoms
- using the modified velocities. Likewise, these fixes should not
- normally be used on atoms that also have their temperature controlled
- by another fix - e.g. by :doc:`fix nvt <fix_nh>` or :doc:`fix langevin <fix_langevin>` commands.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-These fixes compute a temperature each timestep. To do this, the fix
-creates its own compute of style "temp", as if this command had been
-issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
-
-See the :doc:`compute temp <compute_temp>` command for details. Note
-that the ID of the new compute is the fix-ID + underscore + "temp",
-and the group for the new compute is the same as the fix group.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-Like other fixes that perform thermostatting, these fixes can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about these fixes are written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by these
-fixes. You can use it to assign a temperature :doc:`compute <compute>`
-you have defined to these fixes which will be used in its thermostatting
-procedure, as described above. For consistency, the group used by
-these fixes and by the compute should be the same.
-
-These fixes can ramp its target temperature over multiple runs, using
-the *start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-These fixes are not invoked during :doc:`energy minimization <minimize>`.
-
-These fixes compute a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to the fix. The scalar value
-calculated by this fix is "extensive".
-
-Restrictions
-""""""""""""
-
-
-These fixes are not compatible with :doc:`fix shake <fix_shake>`.
-
-The fix can be used with dynamic groups as defined by the
-:doc:`group <group>` command. Likewise it can be used with groups to
-which atoms are added or deleted over time, e.g. a deposition
-simulation. However, the conservation properties of the thermostat
-and barostat are defined for systems with a static set of atoms. You
-may observe odd behavior if the atoms in a group vary dramatically
-over time or the atom count becomes very small.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix nve <fix_nve>`, :doc:`fix nvt <fix_nh>`, :doc:`fix temp/rescale <fix_temp_rescale>`, :doc:`fix langevin <fix_langevin>`,
-:doc:`fix_modify <fix_modify>`, :doc:`compute temp <compute_temp>`,
-:doc:`fix temp/berendsen <fix_temp_berendsen>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Bussi1:
-
-
-
-.. _Bussi2:
-
-**(Bussi1)** Bussi, Donadio and Parrinello, J. Chem. Phys. 126, 014101(2007)
-
-
-**(Bussi2)** Bussi and Parrinello, Phys. Rev. E 75, 056707 (2007)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_temp_rescale.txt b/doc/_sources/fix_temp_rescale.txt
deleted file mode 100644
index 66bdf2ffe..000000000
--- a/doc/_sources/fix_temp_rescale.txt
+++ /dev/null
@@ -1,189 +0,0 @@
-.. index:: fix temp/rescale
-
-fix temp/rescale command
-========================
-
-fix temp/rescale/cuda command
-=============================
-
-fix temp/rescale/limit/cuda command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID temp/rescale N Tstart Tstop window fraction
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* temp/rescale = style name of this fix command
-* N = perform rescaling every N steps
-* Tstart,Tstop = desired temperature at start/end of run (temperature units)
-.. parsed-literal::
-
- Tstart can be a variable (see below)
-
-* window = only rescale if temperature is outside this window (temperature units)
-* fraction = rescale to target temperature by this fraction
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 flow temp/rescale 100 1.0 1.1 0.02 0.5
- fix 3 boundary temp/rescale 1 1.0 1.5 0.05 1.0
- fix 3 boundary temp/rescale 1 1.0 1.5 0.05 1.0
-
-Description
-"""""""""""
-
-Reset the temperature of a group of atoms by explicitly rescaling
-their velocities.
-
-The rescaling is applied to only the translational degrees of freedom
-for the particles, which is an important consideration if finite-size
-particles which have rotational degrees of freedom are being
-thermostatted with this fix. The translational degrees of freedom can
-also have a bias velocity removed from them before thermostatting
-takes place; see the description below.
-
-Rescaling is performed every N timesteps. The target temperature is a
-ramped value between the *Tstart* and *Tstop* temperatures at the
-beginning and end of the run.
-
-*Tstart* can be specified as an equal-style :doc:`variable <variable>`.
-In this case, the *Tstop* setting is ignored. If the value is a
-variable, it should be specified as v_name, where name is the variable
-name. In this case, the variable will be evaluated each timestep, and
-its value used to determine the target temperature.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent temperature.
-
-Rescaling is only performed if the difference between the current and
-desired temperatures is greater than the *window* value. The amount
-of rescaling that is applied is a *fraction* (from 0.0 to 1.0) of the
-difference between the actual and desired temperature. E.g. if
-*fraction* = 1.0, the temperature is reset to exactly the desired
-value.
-
-.. note::
-
- Unlike the :doc:`fix nvt <fix_nh>` command which performs
- Nose/Hoover thermostatting AND time integration, this fix does NOT
- perform time integration. It only modifies velocities to effect
- thermostatting. Thus you must use a separate time integration fix,
- like :doc:`fix nve <fix_nve>` to actually update the positions of atoms
- using the modified velocities. Likewise, this fix should not normally
- be used on atoms that also have their temperature controlled by
- another fix - e.g. by :doc:`fix nvt <fix_nh>` or :doc:`fix langevin <fix_langevin>` commands.
-
-See :ref:`this howto section <howto_16>` of the manual for
-a discussion of different ways to compute temperature and perform
-thermostatting.
-
-This fix computes a temperature each timestep. To do this, the fix
-creates its own compute of style "temp", as if one of this command had
-been issued:
-
-.. parsed-literal::
-
- compute fix-ID_temp group-ID temp
-
-See the :doc:`compute temp <compute_temp>` for details. Note that the
-ID of the new compute is the fix-ID + underscore + "temp", and the
-group for the new compute is the same as the fix group.
-
-Note that this is NOT the compute used by thermodynamic output (see
-the :doc:`thermo_style <thermo_style>` command) with ID = *thermo_temp*.
-This means you can change the attributes of this fix's temperature
-(e.g. its degrees-of-freedom) via the
-:doc:`compute_modify <compute_modify>` command or print this temperature
-during thermodynamic output via the :doc:`thermo_style custom <thermo_style>` command using the appropriate compute-ID.
-It also means that changing attributes of *thermo_temp* will have no
-effect on this fix.
-
-Like other fixes that perform thermostatting, this fix can be used
-with :doc:`compute commands <compute>` that calculate a temperature
-after removing a "bias" from the atom velocities. E.g. removing the
-center-of-mass velocity from a group of atoms or only calculating
-temperature on the x-component of velocity or only calculating
-temperature for atoms in a geometric region. This is not done by
-default, but only if the :doc:`fix_modify <fix_modify>` command is used
-to assign a temperature compute to this fix that includes such a bias
-term. See the doc pages for individual :doc:`compute commands <compute>` to determine which ones include a bias. In
-this case, the thermostat works in the following manner: the current
-temperature is calculated taking the bias into account, bias is
-removed from each atom, thermostatting is performed on the remaining
-thermal degrees of freedom, and the bias is added back in.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a temperature :doc:`compute <compute>`
-you have defined to this fix which will be used in its thermostatting
-procedure, as described above. For consistency, the group used by
-this fix and by the compute should be the same.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change implied by a velocity rescaling to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to this fix. The scalar value
-calculated by this fix is "extensive".
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin <fix_langevin>`, :doc:`fix nvt <fix_nh>`,
-:doc:`fix_modify <fix_modify>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_temp_rescale_eff.txt b/doc/_sources/fix_temp_rescale_eff.txt
deleted file mode 100644
index 400b4df3e..000000000
--- a/doc/_sources/fix_temp_rescale_eff.txt
+++ /dev/null
@@ -1,82 +0,0 @@
-.. index:: fix temp/rescale/eff
-
-fix temp/rescale/eff command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID temp/rescale/eff N Tstart Tstop window fraction
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* temp/rescale/eff = style name of this fix command
-* N = perform rescaling every N steps
-* Tstart,Tstop = desired temperature at start/end of run (temperature units)
-* window = only rescale if temperature is outside this window (temperature units)
-* fraction = rescale to target temperature by this fraction
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 3 flow temp/rescale/eff 10 1.0 100.0 0.02 1.0
-
-Description
-"""""""""""
-
-Reset the temperature of a group of nuclei and electrons in the
-:doc:`electron force field <pair_eff>` model by explicitly rescaling
-their velocities.
-
-The operation of this fix is exactly like that described by the :doc:`fix temp/rescale <fix_temp_rescale>` command, except that the rescaling
-is also applied to the radial electron velocity for electron
-particles.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
-fix. You can use it to assign a temperature :doc:`compute <compute>`
-you have defined to this fix which will be used in its thermostatting
-procedure, as described above. For consistency, the group used by
-this fix and by the compute should be the same.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy change implied by a velocity rescaling to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative energy change due to this fix. The scalar value
-calculated by this fix is "extensive".
-
-This fix can ramp its target temperature over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-EFF package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin/eff <fix_langevin_eff>`, :doc:`fix nvt/eff <fix_nh_eff>`, :doc:`fix_modify <fix_modify>`,
-:doc:`fix temp rescale <fix_temp_rescale>`,
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_tfmc.txt b/doc/_sources/fix_tfmc.txt
deleted file mode 100644
index fc14a677c..000000000
--- a/doc/_sources/fix_tfmc.txt
+++ /dev/null
@@ -1,178 +0,0 @@
-.. index:: fix tfmc
-
-fix tfmc command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID tfmc Delta Temp seed keyword value
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* tfmc = style name of this fix command
-* Delta = maximal displacement length (distance units)
-* Temp = imposed temperature of the system
-* seed = random number seed (positive integer)
-* zero or more keyword/arg pairs may be appended
-* keyword = *com* or *rot*
-.. parsed-literal::
-
- *com* args = xflag yflag zflag
- xflag,yflag,zflag = 0/1 to exclude/include each dimension
- *rot* args = none
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all tfmc 0.1 1000.0 159345
- fix 1 all tfmc 0.05 600.0 658943 com 1 1 0
- fix 1 all tfmc 0.1 750.0 387068 com 1 1 1 rot
-
-Description
-"""""""""""
-
-Perform uniform-acceptance force-bias Monte Carlo (fbMC) simulations,
-using the time-stamped force-bias Monte Carlo (tfMC) algorithm
-described in :ref:`(Mees) <Mees>` and :ref:`(Bal) <Bal>`.
-
-One successful use case of force-bias Monte Carlo methods is that they
-can be used to extend the time scale of atomistic simulations, in
-particular when long time scale relaxation effects must be considered;
-some interesting examples are given in the review by :ref:`(Neyts) <Neyts>`.
-An example of a typical use case would be the modelling of chemical
-vapour deposition (CVD) processes on a surface, in which impacts by
-gas-phase species can be performed using MD, but subsequent relaxation
-of the surface is too slow to be done using MD only. Using tfMC can
-allow for a much faster relaxation of the surface, so that higher
-fluxes can be used, effectively extending the time scale of the
-simulation. (Such an alternating simulation approach could be set up
-using a :doc:`loop <jump>`.)
-
-The initial version of tfMC algorithm in :ref:`(Mees) <Mees>` contained an
-estimation of the effective time scale of such a simulation, but it
-was later shown that the speed-up one can gain from a tfMC simulation
-is system- and process-dependent, ranging from none to several orders
-of magnitude. In general, solid-state processes such as
-(re)crystallisation or growth can be accelerated by up to two or three
-orders of magnitude, whereas diffusion in the liquid phase is not
-accelerated at all. The observed pseudodynamics when using the tfMC
-method is not the actual dynamics one would obtain using MD, but the
-relative importance of processes can match the actual relative
-dynamics of the system quite well, provided *Delta* is chosen with
-care. Thus, the system's equilibrium is reached faster than in MD,
-along a path that is generally roughly similar to a typical MD
-simulation (but not necessarily so). See :ref:`(Bal) <Bal>` for details.
-
-Each step, all atoms in the selected group are displaced using the
-stochastic tfMC algorithm, which is designed to sample the canonical
-(NVT) ensemble at the temperature *Temp*. Although tfMC is a Monte
-Carlo algorithm and thus strictly speaking does not perform time
-integration, it is similar in the sense that it uses the forces on all
-atoms in order to update their positions. Therefore, it is implemented
-as a time integration fix, and no other fixes of this type (such as
-:doc:`fix nve <fix_nve>`) should be used at the same time. Because
-velocities do not play a role in this kind of Monte Carlo simulations,
-instantaneous temperatures as calculated by :doc:`temperature computes <compute_temp>` or :doc:`thermodynamic output <thermo_style>` have no meaning: the only relevant
-temperature is the sampling temperature *Temp*. Similarly, performing
-tfMC simulations does not require setting a :doc:`timestep <timestep>`
-and the :doc:`simulated time <thermo_style>` as calculated by LAMMPS is
-meaningless.
-
-The critical parameter determining the success of a tfMC simulation is
-*Delta*, the maximal displacement length of the lightest element in
-the system: the larger it is, the longer the effective time scale of
-the simulation will be (there is an approximately quadratic
-dependence). However, *Delta* must also be chosen sufficiently small
-in order to comply with detailed balance; in general values between 5
-and 10 % of the nearest neighbor distance are found to be a good
-choice. For a more extensive discussion with specific examples, please
-refer to :ref:`(Bal) <Bal>`, which also describes how the code calculates
-element-specific maximal displacements from *Delta*, based on the
-fourth root of their mass.
-
-Because of the uncorrelated movements of the atoms, the center-of-mass
-of the fix group will not necessarily be stationary, just like its
-orientation. When the *com* keyword is used, all atom positions will
-be shifted (after every tfMC iteration) in order to fix the position
-of the center-of-mass along the included directions, by setting the
-corresponding flag to 1. The *rot* keyword does the same for the
-rotational component of the tfMC displacements after every iteration.
-
-.. note::
-
- the *com* and *rot* keywords should not be used if an external
- force is acting on the specified fix group, along the included
- directions. This can be either a true external force (e.g. through
- :doc:`fix wall <fix_wall>`) or forces due to the interaction with atoms
- not included in the fix group. This is because in such cases,
- translations or rotations of the fix group could be induced by these
- external forces, and removing them will lead to a violation of
- detailed balance.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MC package. It is only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This fix is not compatible with :doc:`fix shake <fix_shake>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix gcmc <fix_gcmc>`, :doc:`fix nvt <fix_nh>`
-
-Default
-"""""""
-
-The option default is com = 0 0 0
-
-
-----------
-
-
-.. _Bal:
-
-
-
-**(Bal)** K. M Bal and E. C. Neyts, J. Chem. Phys. 141, 204104 (2014).
-
-.. _Mees:
-
-
-
-**(Mees)** M. J. Mees, G. Pourtois, E. C. Neyts, B. J. Thijsse, and
-A. Stesmans, Phys. Rev. B 85, 134301 (2012).
-
-.. _Neyts:
-
-
-
-**(Neyts)** E. C. Neyts and A. Bogaerts, Theor. Chem. Acc. 132, 1320
-(2013).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_thermal_conductivity.txt b/doc/_sources/fix_thermal_conductivity.txt
deleted file mode 100644
index b5f68af2d..000000000
--- a/doc/_sources/fix_thermal_conductivity.txt
+++ /dev/null
@@ -1,184 +0,0 @@
-.. index:: fix thermal/conductivity
-
-fix thermal/conductivity command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID thermal/conductivity N edim Nbin keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* thermal/conductivity = style name of this fix command
-* N = perform kinetic energy exchange every N steps
-* edim = *x* or *y* or *z* = direction of kinetic energy transfer
-* Nbin = # of layers in edim direction (must be even number)
-* zero or more keyword/value pairs may be appended
-* keyword = *swap*
-.. parsed-literal::
-
- *swap* value = Nswap = number of swaps to perform every N steps
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all thermal/conductivity 100 z 20
- fix 1 all thermal/conductivity 50 z 20 swap 2
-
-Description
-"""""""""""
-
-Use the Muller-Plathe algorithm described in :ref:`this paper <Muller-Plathe>` to exchange kinetic energy between two particles
-in different regions of the simulation box every N steps. This
-induces a temperature gradient in the system. As described below this
-enables the thermal conductivity of a material to be calculated. This
-algorithm is sometimes called a reverse non-equilibrium MD (reverse
-NEMD) approach to computing thermal conductivity. This is because the
-usual NEMD approach is to impose a temperature gradient on the system
-and measure the response as the resulting heat flux. In the
-Muller-Plathe method, the heat flux is imposed, and the temperature
-gradient is the system's response.
-
-See the :doc:`compute heat/flux <compute_heat_flux>` command for details
-on how to compute thermal conductivity in an alternate way, via the
-Green-Kubo formalism.
-
-The simulation box is divided into *Nbin* layers in the *edim*
-direction, where the layer 1 is at the low end of that dimension and
-the layer *Nbin* is at the high end. Every N steps, Nswap pairs of
-atoms are chosen in the following manner. Only atoms in the fix group
-are considered. The hottest Nswap atoms in layer 1 are selected.
-Similarly, the coldest Nswap atoms in the "middle" layer (see below)
-are selected. The two sets of Nswap atoms are paired up and their
-velocities are exchanged. This effectively swaps their kinetic
-energies, assuming their masses are the same. If the masses are
-different, an exchange of velocities relative to center of mass motion
-of the 2 atoms is performed, to conserve kinetic energy. Over time,
-this induces a temperature gradient in the system which can be
-measured using commands such as the following, which writes the
-temperature profile (assuming z = edim) to the file tmp.profile:
-
-.. parsed-literal::
-
- compute ke all ke/atom
- variable temp atom c_ke/1.5
- fix 3 all ave/spatial 10 100 1000 z lower 0.05 v_temp &
- file tmp.profile units reduced
-
-Note that by default, Nswap = 1, though this can be changed by the
-optional *swap* keyword. Setting this parameter appropriately, in
-conjunction with the swap rate N, allows the heat flux to be adjusted
-across a wide range of values, and the kinetic energy to be exchanged
-in large chunks or more smoothly.
-
-The "middle" layer for velocity swapping is defined as the *Nbin*/2 +
-1 layer. Thus if *Nbin* = 20, the two swapping layers are 1 and 11.
-This should lead to a symmetric temperature profile since the two
-layers are separated by the same distance in both directions in a
-periodic sense. This is why *Nbin* is restricted to being an even
-number.
-
-As described below, the total kinetic energy transferred by these
-swaps is computed by the fix and can be output. Dividing this
-quantity by time and the cross-sectional area of the simulation box
-yields a heat flux. The ratio of heat flux to the slope of the
-temperature profile is proportional to the thermal conductivity of the
-fluid, in appropriate units. See the :ref:`Muller-Plathe paper <Muller-Plathe>` for details.
-
-.. note::
-
- If your system is periodic in the direction of the heat flux,
- then the flux is going in 2 directions. This means the effective heat
- flux in one direction is reduced by a factor of 2. You will see this
- in the equations for thermal conductivity (kappa) in the Muller-Plathe
- paper. LAMMPS is simply tallying kinetic energy which does not
- account for whether or not your system is periodic; you must use the
- value appropriately to yield a kappa for your system.
-
-.. note::
-
- After equilibration, if the temperature gradient you observe is
- not linear, then you are likely swapping energy too frequently and are
- not in a regime of linear response. In this case you cannot
- accurately infer a thermal conductivity and should try increasing the
- Nevery parameter.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative kinetic energy transferred between the bottom and middle
-of the simulation box (in the *edim* direction) is stored as a scalar
-quantity by this fix. This quantity is zeroed when the fix is defined
-and accumlates thereafter, once every N steps. The units of the
-quantity are energy; see the :doc:`units <units>` command for details.
-The scalar value calculated by this fix is "intensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Swaps conserve both momentum and kinetic energy, even if the masses of
-the swapped atoms are not equal. Thus you should not need to
-thermostat the system. If you do use a thermostat, you may want to
-apply it only to the non-swapped dimensions (other than *vdim*).
-
-LAMMPS does not check, but you should not use this fix to swap the
-kinetic energy of atoms that are in constrained molecules, e.g. via
-:doc:`fix shake <fix_shake>` or :doc:`fix rigid <fix_rigid>`. This is
-because application of the constraints will alter the amount of
-transferred momentum. You should, however, be able to use flexible
-molecules. See the :ref:`Zhang paper <Zhang>` for a discussion and results
-of this idea.
-
-When running a simulation with large, massive particles or molecules
-in a background solvent, you may want to only exchange kinetic energy
-bewteen solvent particles.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`fix viscosity <fix_viscosity>`, :doc:`compute heat/flux <compute_heat_flux>`
-
-Default
-"""""""
-
-The option defaults are swap = 1.
-
-
-----------
-
-
-.. _Muller-Plathe:
-
-
-
-**(Muller-Plathe)** Muller-Plathe, J Chem Phys, 106, 6082 (1997).
-
-.. _Zhang:
-
-
-
-**(Zhang)** Zhang, Lussetti, de Souza, Muller-Plathe, J Phys Chem B,
-109, 15060-15067 (2005).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ti_rs.txt b/doc/_sources/fix_ti_rs.txt
deleted file mode 100644
index 204ab6e50..000000000
--- a/doc/_sources/fix_ti_rs.txt
+++ /dev/null
@@ -1,172 +0,0 @@
-.. index:: fix ti/rs
-
-fix ti/rs command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ti/rs lambda_initial lambda_final t_switch t_equil keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ti/rs = style name of this fix command
-* lambda_initial/lambda_final = initial/final values of the coupling parameter
-* t_switch/t_equil = number of steps of the switching/equilibration procedure
-* keyword = *function*
-.. parsed-literal::
-
- *function* value = function-ID
- function-ID = ID of the switching function (1, 2 or 3)
-
-
-
-**Example:**
-
-.. parsed-literal::
-
- fix ref all ti/rs 50.0 2000 1000
- fix vf vacancy ti/rs 10.0 70000 50000 function 2
-
-Description
-"""""""""""
-
-This fix allows you to compute the free energy temperature dependence
-by performing a thermodynamic integration procedure known as
-Reversible Scaling :ref:`(de Koning99, <deKoning99>` :ref:`de Koning00a) <deKoning00a">`. The thermodynamic integration is performed
-using the nonequilibrium method of Adiabatic Switching
-:ref:`(Watanabe, <Watanabe>` :ref:`de Koning96) <deKoning96>`.
-
-The forces on the atoms are dynamically scaled during the simulation,
-the rescaling is done in the following manner:
-
-.. image:: Eqs/fix_ti_rs_force.jpg
- :align: center
-
-where F_int is the total force on the atoms due to the interatomic
-potential and lambda is the coupling parameter of the thermodynamic
-integration.
-
-The fix acts as follows: during the first *t_equil* steps after the
-fix is defined the value of lambda is *lambda_initial* , this is the
-period to equilibrate the system in the lambda = *lambda_initial*
-state. After this the value of lambda changes continuously from
-*lambda_initial* to *lambda_final* according to the function defined
-using the keyword *function* (described below), this is done in
-*t_switch* steps. Then comes the second equilibration period of
-*t_equil* to equilibrate the system in the lambda = *lambda_final*
-state. After that the switching back to the lambda = *lambda_initial*
-state is done using *t_switch* timesteps and following the same
-switching function. After this period the value of lambda is kept
-equal to *lambda_initial* indefinitely or until a :doc:`unfix <unfix>`
-erase the fix.
-
-The description of thermodynamic integration in both directions is
-done in :ref:`de Koning00b <deKoning00b>`, the main reason is to try to
-eliminate the dissipated heat due to the nonequilibrium process.
-
-The *function* keyword allows the use of three different switching
-rates. The option *1* results in a constant rescaling where the lambda
-parameter changes at a constant rate during the switching time
-according to the switching function
-
-.. image:: Eqs/fix_ti_rs_function_1.jpg
- :align: center
-
-where tau is the scaled time variable t/t_switch. This switching
-function has the characteristic that the temperature scaling is faster
-at temperatures closer to the final temperature of the procedure. The
-option number *2* performs the switching at a rate defined by the
-following switching function
-
-.. image:: Eqs/fix_ti_rs_function_2.jpg
- :align: center
-
-This switching function has the characteristic that the temperature
-scaling occurs at a constant rate during all the procedure. The option
-number *3* performs the switching at a rate defined by the following
-switching function
-
-.. image:: Eqs/fix_ti_rs_function_3.jpg
- :align: center
-
-This switching function has the characteristic that the temperature
-scaling is faster at temperatures closer to the initial temperature of
-the procedure.
-
-An example script using this command is provided in the
-examples/USER/misc/ti directory.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-This fix computes a global vector quantitie which can be accessed by
-various :ref:`output commands <howto_15>`. The vector has
-2 positions, the first one is the coupling parameter lambda and the
-second one is the time derivative of lambda. The scalar and vector
-values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ti/spring <fix_ti_spring>`
-
-Restrictions
-""""""""""""
-
-
-This command is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Default
-"""""""
-
-The keyword default is function = 1.
-
-
-----------
-
-
-.. _deKoning99:
-
-
-
-**(de Koning 99)** M. de Koning, A. Antonelli and S. Yip, Phys Rev Lett, 83, 3973 (1999).
-
-.. _Watanabe:
-
-
-
-**(Watanabe)** M. Watanabe and W. P. Reinhardt, Phys Rev Lett, 65, 3301 (1990).
-
-.. _deKoning96:
-
-
-
-**(de Koning 96)** M. de Koning and A. Antonelli, Phys Rev E, 53, 465 (1996).
-
-.. _deKoning00a:
-
-
-
-**(de Koning 00a)** M. de Koning, A. Antonelli and S. Yip, J Chem Phys, 115, 11025 (2000).
-
-.. _deKoning00b:
-
-
-
-**(de Koning 00b)** M. de Koning et al., Computing in Science & Engineering, 2, 88 (2000).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ti_spring.txt b/doc/_sources/fix_ti_spring.txt
deleted file mode 100644
index 8ade4035b..000000000
--- a/doc/_sources/fix_ti_spring.txt
+++ /dev/null
@@ -1,189 +0,0 @@
-.. index:: fix ti/spring
-
-fix ti/spring command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ti/spring K t_switch t_equil keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* ti/spring = style name of this fix command
-* K = spring constant (force/distance units)
-* t_switch/t_equil = number of steps of the switching/equilibration procedure
-* zero or more keyword/value pairs may be appended to args
-* keyword = *function*
-.. parsed-literal::
-
- *function* value = function-ID
- function-ID = ID of the switching function (1 or 2)
-
-
-
-**Example:**
-
-.. parsed-literal::
-
- fix ref all ti/spring 50.0 2000 1000 function 2
-
-Description
-"""""""""""
-
-This fix allows you to compute the free energy of solids by performing
-a thermodynamic integration between the solid of interest and an
-Einstein crystal :ref:`(Frenkel) <Frenkel>`. The thermodynamic integration
-is performed using the nonequilibrium method of Adiabatic Switching
-:ref:`(Watanabe, <Watanabe>` :ref:`de Koning96) <deKoning96>`.
-
-A spring force is applied independently to each atom in the group to
-tether it to its initial position. The initial position for each atom
-is its location at the time the fix command was issued. More details
-about the springs are available in :doc:`fix spring/self <fix_spring_self>`. The forces on the atoms are
-dynamically scaled during the simulation, the rescaling is done in the
-following manner:
-
-.. image:: Eqs/fix_ti_spring_force.jpg
- :align: center
-
-where F_harm is the force due to the springs, F_solid is the total
-force on the atoms due to the interatomic potential and lambda is the
-coupling parameter of the thermodynamic integration.
-
-The fix acts as follows: during the first *t_equil* steps after the
-fix is defined the value of lambda is zero, this is the period to
-equilibrate the system in the lambda = 0 state. After this the value
-of lambda changes continuously from 0 to 1 according to the function
-defined using the keyword *function* (described below), this is done
-in *t_switch* steps. Then comes the second equilibration period of
-*t_equil* to equilibrate the system in the lambda = 1 state. After
-that the switching back to the lambda = 0 state is made using
-*t_switch* timesteps and following the same switching function. After
-this period the value of lambda is kept equal to zero and the fix has
-no action in the dynamics of the system anymore.
-
-The description of thermodynamic integration in both directions is
-done in :ref:`de Koning97 <deKoning97>`, the main reason is to try to
-eliminate the dissipated heat due to the nonequilibrium process.
-
-The *function* keyword allows the use of two different switching
-rates, the option *1* results in a constant rescaling where the lambda
-parameter changes at a constant rate during the switching time
-according to the switching function
-
-.. image:: Eqs/fix_ti_spring_function_1.jpg
- :align: center
-
-where tau is the scaled time variable t/t_switch. The option number
-*2* performs the switching at a rate defined by the following
-switching function
-
-.. image:: Eqs/fix_ti_spring_function_2.jpg
- :align: center
-
-This function has zero slope as lambda approaches its extreme values
-(0 and 1), according to (:ref:`de Koning96) <deKoning96>` this results in
-smaller fluctuations on the integral to be computed on the
-thermodynamic integration.
-
-.. note::
-
- It is importante to keep the center of mass fixed during the
- thermodynamic integration, a non-zero total velocity will result in
- divergencies during the integration due to the fact that the atoms are
- 'attatched' to its equilibrium positions by the Einstein
- crystal. Check the option *zero* of `fix langevin <fix_langevin_html>`_
- and :doc:`velocity <velocity>`. The use of the Nose-Hoover thermostat
- (:doc:`fix nvt <fix_nh>`) is NOT recommended due to its well documented
- issues with the canonical sampling of harmonic degrees of freedom
- (notice that the *chain* option will NOT solve this problem). The
- Langevin thermostat (`fix langevin <fix_langevin.html">`_) works fine.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the original coordinates of tethered atoms to :doc:`binary restart files <restart>`, so that the spring effect will be the
-same in a restarted simulation. See the :doc:`read restart <read_restart>` command for info on how to re-specify a fix
-in an input script that reads a restart file, so that the operation of
-the fix continues in an uninterrupted fashion.
-
-The :doc:`fix modify <fix_modify>` *energy* option is supported by this
-fix to add the energy stored in the per-atom springs to the system's
-potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar and a global vector quantities which
-can be accessed by various :ref:`output commands <howto_15>`. The scalar is an energy which
-is the sum of the spring energy for each atom, where the per-atom
-energy is 0.5 * K * r^2. The vector has 2 positions, the first one is
-the coupling parameter lambda and the second one is the time
-derivative of lambda. The scalar and vector values calculated by this
-fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-.. note::
-
- If you want the per-atom spring energy to be included in the
- total potential energy of the system (the quantity being minimized),
- you MUST enable the :doc:`fix modify <fix_modify>` *energy* option for
- this fix.
-
-An example script using this command is provided in the
-examples/USER/misc/ti directory.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix spring <fix_spring>`, :doc:`fix ti/rs <fix_ti_rs>`
-
-Restrictions
-""""""""""""
-
-
-This command is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Default
-"""""""
-
-The keyword default is function = 1.
-
-
-----------
-
-
-.. _Frenkel:
-
-
-
-**(Frenkel)** Daan Frenkel and Anthony J. C. Ladd, J. Chem. Phys. 81, 3188
-(1984).
-
-.. _Watanabe:
-
-
-
-**(Watanabe)** M. Watanabe and W. P. Reinhardt, Phys Rev Lett, 65, 3301 (1990).
-
-.. _deKoning96:
-
-
-
-**(de Koning 96)** M. de Koning and A. Antonelli, Phys Rev E, 53, 465 (1996).
-
-.. _deKoning97:
-
-
-
-**(de Koning 97)** M. de Koning and A. Antonelli, Phys Rev B, 55, 735 (1997).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_tmd.txt b/doc/_sources/fix_tmd.txt
deleted file mode 100644
index a6da5810e..000000000
--- a/doc/_sources/fix_tmd.txt
+++ /dev/null
@@ -1,148 +0,0 @@
-.. index:: fix tmd
-
-fix tmd command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID tmd rho_final file1 N file2
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* tmd = style name of this fix command
-* rho_final = desired value of rho at the end of the run (distance units)
-* file1 = filename to read target structure from
-* N = dump TMD statistics every this many timesteps, 0 = no dump
-* file2 = filename to write TMD statistics to (only needed if N > 0)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all nve
- fix 2 tmdatoms tmd 1.0 target_file 100 tmd_dump_file
-
-Description
-"""""""""""
-
-Perform targeted molecular dynamics (TMD) on a group of atoms. A
-holonomic constraint is used to force the atoms to move towards (or
-away from) the target configuration. The parameter "rho" is
-monotonically decreased (or increased) from its initial value to
-rho_final at the end of the run.
-
-Rho has distance units and is a measure of the root-mean-squared
-distance (RMSD) between the current configuration of the atoms in the
-group and the target coordinates listed in file1. Thus a value of
-rho_final = 0.0 means move the atoms all the way to the final
-structure during the course of the run.
-
-The target file1 can be ASCII text or a gzipped text file (detected by
-a .gz suffix). The format of the target file1 is as follows:
-
-.. parsed-literal::
-
- 0.0 25.0 xlo xhi
- 0.0 25.0 ylo yhi
- 0.0 25.0 zlo zhi
- 125 24.97311 1.69005 23.46956 0 0 -1
- 126 1.94691 2.79640 1.92799 1 0 0
- 127 0.15906 3.46099 0.79121 1 0 0
- ...
-
-The first 3 lines may or may not be needed, depending on the format of
-the atoms to follow. If image flags are included with the atoms, the
-1st 3 lo/hi lines must appear in the file. If image flags are not
-included, the 1st 3 lines should not appear. The 3 lines contain the
-simulation box dimensions for the atom coordinates, in the same format
-as in a LAMMPS data file (see the :doc:`read_data <read_data>` command).
-
-The remaining lines each contain an atom ID and its target x,y,z
-coordinates. The atom lines (all or none of them) can optionally be
-followed by 3 integer values: nx,ny,nz. For periodic dimensions, they
-specify which image of the box the atom is considered to be in, i.e. a
-value of N (positive or negative) means add N times the box length to
-the coordinate to get the true value.
-
-The atom lines can be listed in any order, but every atom in the group
-must be listed in the file. Atoms not in the fix group may also be
-listed; they will be ignored.
-
-TMD statistics are written to file2 every N timesteps, unless N is
-specified as 0, which means no statistics.
-
-The atoms in the fix tmd group should be integrated (via a fix nve,
-nvt, npt) along with other atoms in the system.
-
-Restarts can be used with a fix tmd command. For example, imagine a
-10000 timestep run with a rho_initial = 11 and a rho_final = 1. If a
-restart file was written after 2000 time steps, then the configuration
-in the file would have a rho value of 9. A new 8000 time step run
-could be performed with the same rho_final = 1 to complete the
-conformational change at the same transition rate. Note that for
-restarted runs, the name of the TMD statistics file should be changed
-to prevent it being overwritten.
-
-For more information about TMD, see :ref:`(Schlitter1) <Schlitter1>` and
-:ref:`(Schlitter2) <Schlitter2>`.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`.
-
-This fix can ramp its rho parameter over multiple runs, using the
-*start* and *stop* keywords of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-All TMD fixes must be listed in the input script after all integrator
-fixes (nve, nvt, npt) are applied. This ensures that atoms are moved
-before their positions are corrected to comply with the constraint.
-
-Atoms that have a TMD fix applied should not be part of a group to
-which a SHAKE fix is applied. This is because LAMMPS assumes there
-are not multiple competing holonomic constraints applied to the same
-atoms.
-
-To read gzipped target files, you must compile LAMMPS with the
--DLAMMPS_GZIP option - see the :ref:`Making LAMMPS <start_2>` section of the documentation.
-
-**Related commands:** none
-
-**Default:** none
-
-
-----------
-
-
-.. _Schlitter1:
-
-
-
-**(Schlitter1)** Schlitter, Swegat, Mulders, "Distance-type reaction
-coordinates for modelling activated processes", J Molecular Modeling,
-7, 171-177 (2001).
-
-.. _Schlitter2:
-
-
-
-**(Schlitter2)** Schlitter and Klahn, "The free energy of a reaction
-coordinate at multiple constraints: a concise formulation", Molecular
-Physics, 101, 3439-3443 (2003).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_ttm.txt b/doc/_sources/fix_ttm.txt
deleted file mode 100644
index a22456551..000000000
--- a/doc/_sources/fix_ttm.txt
+++ /dev/null
@@ -1,379 +0,0 @@
-.. index:: fix ttm
-
-fix ttm command
-===============
-
-fix ttm/mod command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID ttm seed C_e rho_e kappa_e gamma_p gamma_s v_0 Nx Ny Nz T_infile N T_outfile
- fix ID group-ID ttm/mod seed init_file Nx Ny Nz T_infile N T_outfile
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style = *ttm* or *ttm_mod*
-* seed = random number seed to use for white noise (positive integer)
-* remaining arguments for fix ttm:
-.. parsed-literal::
-
- C_e = electronic specific heat (energy/(electron*temperature) units)
- rho_e = electronic density (electrons/volume units)
- kappa_e = electronic thermal conductivity (energy/(time*distance*temperature) units)
- gamma_p = friction coefficient due to electron-ion interactions (mass/time units)
- gamma_s = friction coefficient due to electronic stopping (mass/time units)
- v_0 = electronic stopping critical velocity (velocity units)
- Nx = number of thermal solve grid points in the x-direction (positive integer)
- Ny = number of thermal solve grid points in the y-direction (positive integer)
- Nz = number of thermal solve grid points in the z-direction (positive integer)
- T_infile = filename to read initial electronic temperature from
- N = dump TTM temperatures every this many timesteps, 0 = no dump
- T_outfile = filename to write TTM temperatures to (only needed if N > 0)
-
-* remaining arguments for fix ttm/mod:
-.. parsed-literal::
-
- init_file = file with the parameters to TTM
- Nx = number of thermal solve grid points in the x-direction (positive integer)
- Ny = number of thermal solve grid points in the y-direction (positive integer)
- Nz = number of thermal solve grid points in the z-direction (positive integer)
- T_infile = filename to read initial electronic temperature from
- N = dump TTM temperatures every this many timesteps, 0 = no dump
- T_outfile = filename to write TTM temperatures to (only needed if N > 0)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 2 all ttm 699489 1.0 1.0 10 0.1 0.0 2.0 1 12 1 initialTs 1000 T.out
- fix 2 all ttm 123456 1.0 1.0 1.0 1.0 1.0 5.0 5 5 5 Te.in 1 Te.out
- fix 2 all ttm/mod 34277 parameters.txt 5 5 5 T_init 10 T_out
-
-Description
-"""""""""""
-
-Use a two-temperature model (TTM) to represent heat transfer through
-and between electronic and atomic subsystems. LAMMPS models the
-atomic subsystem as usual with a molecular dynamics model and the
-classical force field specified by the user, but the electronic
-subsystem is modeled as a continuum, or a background "gas", on a
-regular grid. Energy can be transferred spatially within the grid
-representing the electrons. Energy can also be transferred between
-the electronic and the atomic subsystems. The algorithm underlying
-this fix was derived by D. M. Duffy and A. M. Rutherford and is
-discussed in two J Physics: Condensed Matter papers: :ref:`(Duffy) <Duffy>`
-and :ref:`(Rutherford) <Rutherford>`. They used this algorithm in cascade
-simulations where a primary knock-on atom (PKA) was initialized with a
-high velocity to simulate a radiation event.
-
-The description in this sub-section applies to both fix ttm and fix
-ttm/mod. Fix ttm/mod adds options to account for external heat
-sources (e.g. at a surface) and for specifying parameters that allow
-the electronic heat capacity to depend strongly on electronic
-temperature. It is more expensive computationally than fix ttm
-because it treats the thermal diffusion equation as non-linear. More
-details on fix ttm/mod are given below.
-
-Heat transfer between the electronic and atomic subsystems is carried
-out via an inhomogeneous Langevin thermostat. This thermostat differs
-from the regular Langevin thermostat (:doc:`fix langevin <fix_langevin>`) in three important ways. First, the
-Langevin thermostat is applied uniformly to all atoms in the
-user-specified group for a single target temperature, whereas the TTM
-fix applies Langevin thermostatting locally to atoms within the
-volumes represented by the user-specified grid points with a target
-temperature specific to that grid point. Second, the Langevin
-thermostat couples the temperature of the atoms to an infinite heat
-reservoir, whereas the heat reservoir for fix TTM is finite and
-represents the local electrons. Third, the TTM fix allows users to
-specify not just one friction coefficient, but rather two independent
-friction coefficients: one for the electron-ion interactions
-(*gamma_p*), and one for electron stopping (*gamma_s*).
-
-When the friction coefficient due to electron stopping, *gamma_s*, is
-non-zero, electron stopping effects are included for atoms moving
-faster than the electron stopping critical velocity, *v_0*. For
-further details about this algorithm, see :ref:`(Duffy) <Duffy>` and
-:ref:`(Rutherford) <Rutherford>`.
-
-Energy transport within the electronic subsystem is solved according
-to the heat diffusion equation with added source terms for heat
-transfer between the subsystems:
-
-.. image:: Eqs/fix_ttm.jpg
- :align: center
-
-where C_e is the specific heat, rho_e is the density, kappa_e is the
-thermal conductivity, T is temperature, the "e" and "a" subscripts
-represent electronic and atomic subsystems respectively, g_p is the
-coupling constant for the electron-ion interaction, and g_s is the
-electron stopping coupling parameter. C_e, rho_e, and kappa_e are
-specified as parameters to the fix. The other quantities are derived.
-The form of the heat diffusion equation used here is almost the same
-as that in equation 6 of :ref:`(Duffy) <Duffy>`, with the exception that the
-electronic density is explicitly reprensented, rather than being part
-of the the specific heat parameter.
-
-Currently, fix ttm assumes that none of the user-supplied parameters
-will vary with temperature. Note that :ref:`(Duffy) <Duffy>` used a tanh()
-functional form for the temperature dependence of the electronic
-specific heat, but ignored temperature dependencies of any of the
-other parameters. See more discussion below for fix ttm/mod.
-
-These fixes require use of periodic boundary conditions and a 3D
-simulation. Periodic boundary conditions are also used in the heat
-equation solve for the electronic subsystem. This varies from the
-approach of :ref:`(Rutherford) <Rutherford>` where the atomic subsystem was
-embedded within a larger continuum representation of the electronic
-subsystem.
-
-The initial electronic temperature input file, *T_infile*, is a text
-file LAMMPS reads in with no header and with four numeric columns
-(ix,iy,iz,Temp) and with a number of rows equal to the number of
-user-specified grid points (Nx by Ny by Nz). The ix,iy,iz are node
-indices from 0 to nxnodes-1, etc. For example, the initial electronic
-temperatures on a 1 by 2 by 3 grid could be specified in a *T_infile*
-as follows:
-
-.. parsed-literal::
-
- 0 0 0 1.0
- 0 0 1 1.0
- 0 0 2 1.0
- 0 1 0 2.0
- 0 1 1 2.0
- 0 1 2 2.0
-
-where the electronic temperatures along the y=0 plane have been set to
-1.0, and the electronic temperatures along the y=1 plane have been set
-to 2.0. The order of lines in this file is no important. If all the
-nodal values are not specified, LAMMPS will generate an error.
-
-The temperature output file, *T_oufile*, is created and written by
-this fix. Temperatures for both the electronic and atomic subsystems
-at every node and every N timesteps are output. If N is specified as
-zero, no output is generated, and no output filename is needed. The
-format of the output is as follows. One long line is written every
-output timestep. The timestep itself is given in the first column.
-The next Nx*Ny*Nz columns contain the temperatures for the atomic
-subsystem, and the final Nx*Ny*Nz columns contain the temperatures for
-the electronic subsystem. The ordering of the Nx*Ny*Nz columns is
-with the z index varing fastest, y the next fastest, and x the
-slowest.
-
-These fixes do not change the coordinates of their atoms; they only
-scales their velocities. Thus a time integration fix (e.g. :doc:`fix nve <fix_nve>`) should still be used to time integrate the affected
-atoms. The fixes should not normally be used on atoms that have their
-temperature controlled by another fix - e.g. :doc:`fix nvt <fix_nh>` or
-:doc:`fix langevin <fix_langevin>`.
-
-.. note::
-
- The current implementations of these fixes create a copy of the
- electron grid that overlays the entire simulation domain, for each
- processor. Values on the grid are summed across all processors. Thus
- you should insure that this grid is not too large, else your
- simulation could incur high memory and communication costs.
-
-
-----------
-
-
-**Additional details for fix ttm/mod**
-
-Fix ttm/mod uses the heat diffusion equation with possible external
-heat sources (e.g. laser heating in ablation simulations):
-
-.. image:: Eqs/fix_ttm_mod.jpg
- :align: center
-
-where theta is the Heaviside step function, I_0 is the (absorbed)
-laser pulse intensity for ablation simulations, l_skin is the depth
-of skin-layer, and all other designations have the same meaning as in
-the former equation. The duration of the pulse is set by the parameter
-*tau* in the *init_file*.
-
-Fix ttm/mod also allows users to specify the dependencies of C_e and
-kappa_e on the electronic temperature. The specific heat is expressed
-as
-
-.. image:: Eqs/fix_ttm_ce.jpg
- :align: center
-
-where *X* = T_e/1000, and the thermal conductivity is defined as
-kappa_e = D_e*rho_e*C_e, where D_e is the thermal diffusion
-coefficient.
-
-Electronic pressure effects are included in the TTM model to account
-for the blast force acting on ions because of electronic pressure
-gradient (see :ref:`(Chen) <Chen>`, :ref:`(Norman) <Norman>`). The total force
-acting on an ion is:
-
-.. image:: Eqs/fix_ttm_blast.jpg
- :align: center
-
-where F_langevin is a force from Langevin thermostat simulating
-electron-phonon coupling, and nabla P_e/n_ion is the electron blast
-force.
-
-The electronic pressure is taken to be P_e = B*rho_e*C_e*T_e
-
-The current fix ttm/mod implementation allows TTM simulations with a
-vacuum. The vacuum region is defined as the grid cells with zero
-electronic temperature. The numerical scheme does not allow energy
-exchange with such cells. Since the material can expand to previously
-unoccupied region in some simulations, the vacuum border can be
-allowed to move. It is controlled by the *surface_movement* parameter
-in the *init_file*. If it is set to 1, then "vacuum" cells can be
-changed to "electron-filled" cells with the temperature *T_e_min* if
-atoms move into them (currently only implemented for the case of
-1-dimensional motion of flat surface normal to the X axis). The
-initial borders of vacuum can be set in the *init_file* via *lsurface*
-and *rsurface* parameters. In this case, electronic pressure gradient
-is calculated as
-
-.. image:: Eqs/fix_ttm_blast1.jpg
- :align: center
-
-where lambda is the electron mean free path (see :ref:`(Norman) <Norman>`,
-:ref:`(Pisarev) <Pisarev>`)
-
-The fix ttm/mod parameter file *init_file* has the following syntax/
-Every line with the odd number is considered as a comment and
-ignored. The lines with the even numbers are treated as follows:
-
-.. parsed-literal::
-
- a_0, energy/(temperature*electron) units
- a_1, energy/(temperature^2*electron) units
- a_2, energy/(temperature^3*electron) units
- a_3, energy/(temperature^4*electron) units
- a_4, energy/(temperature^5*electron) units
- C_0, energy/(temperature*electron) units
- A, 1/temperature units
- rho_e, electrons/volume units
- D_e, length^2/time units
- gamma_p, mass/time units
- gamma_s, mass/time units
- v_0, length/time units
- I_0, energy/(time*length^2) units
- lsurface, electron grid units (positive integer)
- rsurface, electron grid units (positive integer)
- l_skin, length units
- tau, time units
- B, dimensionless
- lambda, length units
- n_ion, ions/volume units
- surface_movement: 0 to disable tracking of surface motion, 1 to enable
- T_e_min, temperature units
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-These fixes write the state of the electronic subsystem and the energy
-exchange between the subsystems to :doc:`binary restart files <restart>`. See the :doc:`read_restart <read_restart>` command
-for info on how to re-specify a fix in an input script that reads a
-restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-Because the state of the random number generator is not saved in the
-restart files, this means you cannot do "exact" restarts with this
-fix, where the simulation continues on the same as if no restart had
-taken place. However, in a statistical sense, a restarted simulation
-should produce the same behavior.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to these
-fixes.
-
-Both fixes compute 2 output quantities stored in a vector of length 2,
-which can be accessed by various :ref:`output commands <howto_15>`. The first quantity is the
-total energy of the electronic subsystem. The second quantity is the
-energy transferred from the electronic to the atomic subsystem on that
-timestep. Note that the velocity verlet integrator applies the fix ttm
-forces to the atomic subsystem as two half-step velocity updates: one
-on the current timestep and one on the subsequent timestep.
-Consequently, the change in the atomic subsystem energy is lagged by
-half a timestep relative to the change in the electronic subsystem
-energy. As a result of this, users may notice slight fluctuations in
-the sum of the atomic and electronic subsystem energies reported at
-the end of the timestep.
-
-The vector values calculated are "extensive".
-
-No parameter of the fixes can be used with the *start/stop* keywords
-of the :doc:`run <run>` command. The fixes are not invoked during
-:doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-Fix *ttm* is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. Fix *ttm/mod* is part of the USER-MISC
-package. It is only enabled if LAMMPS was built with that package.
-See the :ref:`Making LAMMPS <start_3>` section for more
-info.
-
-These fixes can only be used for 3d simulations and orthogonal
-simlulation boxes. You must also use periodic
-:doc:`boundary <boundary>` conditions.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin <fix_langevin>`, :doc:`fix dt/reset <fix_dt_reset>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Duffy:
-
-
-
-**(Duffy)** D M Duffy and A M Rutherford, J. Phys.: Condens. Matter, 19,
-016207-016218 (2007).
-
-.. _Rutherford:
-
-
-
-**(Rutherford)** A M Rutherford and D M Duffy, J. Phys.:
-Condens. Matter, 19, 496201-496210 (2007).
-
-.. _Chen:
-
-
-
-**(Chen)** J Chen, D Tzou and J Beraun, Int. J. Heat
-Mass Transfer, 49, 307-316 (2006).
-
-.. _Norman:
-
-
-
-**(Norman)** G E Norman, S V Starikov, V V Stegailov et al., Contrib.
-Plasma Phys., 53, 129-139 (2013).
-
-.. _Pisarev:
-
-
-
-**(Pisarev)** V V Pisarev and S V Starikov, J. Phys.: Condens. Matter, 26,
-475401 (2014).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_tune_kspace.txt b/doc/_sources/fix_tune_kspace.txt
deleted file mode 100644
index 61d862afb..000000000
--- a/doc/_sources/fix_tune_kspace.txt
+++ /dev/null
@@ -1,108 +0,0 @@
-.. index:: fix tune/kspace
-
-fix tune/kspace command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID tune/kspace N
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* tune/kspace = style name of this fix command
-* N = invoke this fix every N steps
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 2 all tune/kspace 100
-
-Description
-"""""""""""
-
-This fix tests each kspace style (Ewald, PPPM, and MSM), and
-automatically selects the fastest style to use for the remainder
-of the run. If the fastest style is Ewald or PPPM, the fix also
-adjusts the coulomb cutoff towards optimal speed. Future versions
-of this fix will automatically select other kspace parameters
-to use for maximum simulation speed. The kspace parameters may
-include the style, cutoff, grid points in each direction, order,
-Ewald parameter, MSM parallelization cut-point, MPI tasks to use, etc.
-
-The rationale for this fix is to provide the user with
-as-fast-as-possible simulations that include long-range electrostatics
-(kspace) while meeting the user-prescribed accuracy requirement. A
-simple heuristic could never capture the optimal combination of
-parameters for every possible run-time scenario. But by performing
-short tests of various kspace parameter sets, this fix allows
-parameters to be tailored specifically to the user's machine, MPI
-ranks, use of threading or accelerators, the simulated system, and the
-simulation details. In addition, it is possible that parameters could
-be evolved with the simulation on-the-fly, which is useful for systems
-that are dynamically evolving (e.g. changes in box size/shape or
-number of particles).
-
-When this fix is invoked, LAMMPS will perform short timed tests of
-various parameter sets to determine the optimal parameters. Tests are
-performed on-the-fly, with a new test initialized every N steps. N should
-be chosen large enough so that adequate CPU time lapses between tests,
-thereby providing statistically significant timings. But N should not be
-chosen to be so large that an unfortunate parameter set test takes an
-inordinate amount of wall time to complete. An N of 100 for most problems
-seems reasonable. Once an optimal parameter set is found, that set is
-used for the remainder of the run.
-
-This fix uses heristics to guide it's selection of parameter sets to test,
-but the actual timed results will be used to decide which set to use in the
-simulation.
-
-It is not necessary to discard trajectories produced using sub-optimal
-parameter sets, or a mix of various parameter sets, since the user-prescribed
-accuracy will have been maintained throughout. However, some users may prefer
-to use this fix only to discover the optimal parameter set for a given setup
-that can then be used on subsequent production runs.
-
-This fix starts with kspace parameters that are set by the user with the
-:doc:`kspace_style <kspace_style>` and :doc:`kspace_modify <kspace_modify>`
-commands. The prescribed accuracy will be maintained by this fix throughout
-the simulation.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the KSPACE package. It is only enabled if LAMMPS was
-built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Do not set "neigh_modify once yes" or else this fix will never be
-called. Reneighboring is required.
-
-Related commands
-""""""""""""""""
-
-:doc:`kspace_style <kspace_style>`, :doc:`boundary <boundary>`
-:doc:`kspace_modify <kspace_modify>`, :doc:`pair_style lj/cut/coul/long <pair_lj>`, :doc:`pair_style lj/charmm/coul/long <pair_charmm>`, :doc:`pair_style lj/long <pair_lj_long>`, :doc:`pair_style lj/long/coul/long <pair_lj_long>`,
-:doc:`pair_style buck/coul/long <pair_buck>`
-
-Default
-"""""""
-
-
-----------
-
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_vector.txt b/doc/_sources/fix_vector.txt
deleted file mode 100644
index 697007d21..000000000
--- a/doc/_sources/fix_vector.txt
+++ /dev/null
@@ -1,179 +0,0 @@
-.. index:: fix vector
-
-fix vector command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID vector Nevery value1 value2 ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* vector = style name of this fix command
-* Nevery = use input values every this many timesteps
-* one or more input values can be listed
-* value = c_ID, c_ID[N], f_ID, f_ID[N], v_name
-.. parsed-literal::
-
- c_ID = global scalar calculated by a compute with ID
- c_ID[I] = Ith component of global vector calculated by a compute with ID
- f_ID = global scalar calculated by a fix with ID
- f_ID[I] = Ith component of global vector calculated by a fix with ID
- v_name = value calculated by an equal-style variable with name
- v_name[I] = Ith component of vector-style variable with name
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all vector 100 c_myTemp
- fix 1 all vector 5 c_myTemp v_integral
-
-Description
-"""""""""""
-
-Use one or more global values as inputs every few timesteps, and
-simply store them. For a single specified value, the values are
-stored as a global vector of growing length. For multiple specified
-values, they are stored as rows in a global array, whose number of
-rows is growing. The resulting vector or array can be used by other
-:ref:`output commands <howto_15>`.
-
-One way to to use this command is to accumulate a vector that is
-time-integrated using the :doc:`variable trap() <variable>` function.
-For example the velocity auto-correlation function (VACF) can be
-time-integrated, to yield a diffusion coefficient, as follows:
-
-.. parsed-literal::
-
- compute 2 all vacf
- fix 5 all vector 1 c_2[4]
- variable diff equal dt*trap(f_5)
- thermo_style custom step v_diff
-
-The group specified with this command is ignored. However, note that
-specified values may represent calculations performed by computes and
-fixes which store their own "group" definitions.
-
-Each listed value can be the result of a :doc:`compute <compute>` or
-:doc:`fix <fix>` or the evaluation of an equal-style or vector-style
-:doc:`variable <variable>`. In each case, the compute, fix, or variable
-must produce a global quantity, not a per-atom or local quantity. And
-the global quantity must be a scalar, not a vector or array.
-
-:doc:`Computes <compute>` that produce global quantities are those which
-do not have the word *atom* in their style name. Only a few
-:doc:`fixes <fix>` produce global quantities. See the doc pages for
-individual fixes for info on which ones produce such values.
-:doc:`Variables <variable>` of style *equal* or *vector* are the only
-ones that can be used with this fix. Variables of style *atom* cannot
-be used, since they produce per-atom values.
-
-The *Nevery* argument specifies on what timesteps the input values
-will be used in order to be stored. Only timesteps that are a
-multiple of *Nevery*, including timestep 0, will contribute values.
-
-Note that if you perform multiple runs, using the "pre no" option of
-the :doc:`run <run>` command to avoid initialization on subsequent runs,
-then you need to use the *stop* keyword with the first :doc:`run <run>`
-command with a timestep value that encompasses all the runs. This is
-so that the vector or array stored by this fix can be allocated to a
-sufficient size.
-
-
-----------
-
-
-If a value begins with "c_", a compute ID must follow which has been
-previously defined in the input script. If no bracketed term is
-appended, the global scalar calculated by the compute is used. If a
-bracketed term is appended, the Ith element of the global vector
-calculated by the compute is used.
-
-Note that there is a :doc:`compute reduce <compute_reduce>` command
-which can sum per-atom quantities into a global scalar or vector which
-can thus be accessed by fix vector. Or it can be a compute defined
-not in your input script, but by :doc:`thermodynamic output <thermo_style>` or other fixes such as :doc:`fix nvt <fix_nh>`
-or :doc:`fix temp/rescale <fix_temp_rescale>`. See the doc pages for
-these commands which give the IDs of these computes. Users can also
-write code for their own compute styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "f_", a fix ID must follow which has been
-previously defined in the input script. If no bracketed term is
-appended, the global scalar calculated by the fix is used. If a
-bracketed term is appended, the Ith element of the global vector
-calculated by the fix is used.
-
-Note that some fixes only produce their values on certain timesteps,
-which must be compatible with *Nevery*, else an error will result.
-Users can also write code for their own fix styles and :doc:`add them to LAMMPS <Section_modify>`.
-
-If a value begins with "v_", a variable name must follow which has
-been previously defined in the input script. An equal-style or
-vector-style variable can be referenced; the latter requires a
-bracketed term to specify the Ith element of the vector calculated by
-the variable. See the :doc:`variable <variable>` command for details.
-Note that variables of style *equal* and *vector* define a formula
-which can reference individual atom properties or thermodynamic
-keywords, or they can invoke other computes, fixes, or variables when
-they are evaluated, so this is a very general means of specifying
-quantities to be stored by fix vector.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix produces a global vector or global array which can be
-accessed by various :ref:`output commands <howto_15>`.
-The values can only be accessed on timesteps that are multiples of
-*Nevery*.
-
-A vector is produced if only a single input value is specified.
-An array is produced if multiple input values are specified.
-The length of the vector or the number of rows in the array grows
-by 1 every *Nevery* timesteps.
-
-If the fix prouduces a vector, then the entire vector will be either
-"intensive" or "extensive", depending on whether the values stored in
-the vector are "intensive" or "extensive". If the fix produces an
-array, then all elements in the array must be the same, either
-"intensive" or "extensive". If a compute or fix provides the value
-stored, then the compute or fix determines whether the value is
-intensive or extensive; see the doc page for that compute or fix for
-further info. Values produced by a variable are treated as intensive.
-
-This fix can allocate storage for stored values accumulated over
-multiple runs, using the *start* and *stop* keywords of the
-:doc:`run <run>` command. See the :doc:`run <run>` command for details of
-how to do this. If using the :doc:`run pre no <run>` command option,
-this is required to allow the fix to allocate sufficient storage for
-stored values.
-
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`, :doc:`variable <variable>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_viscosity.txt b/doc/_sources/fix_viscosity.txt
deleted file mode 100644
index 9ca28b499..000000000
--- a/doc/_sources/fix_viscosity.txt
+++ /dev/null
@@ -1,188 +0,0 @@
-.. index:: fix viscosity
-
-fix viscosity command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID viscosity N vdim pdim Nbin keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* viscosity = style name of this fix command
-* N = perform momentum exchange every N steps
-* vdim = *x* or *y* or *z* = which momentum component to exchange
-* pdim = *x* or *y* or *z* = direction of momentum transfer
-* Nbin = # of layers in pdim direction (must be even number)
-* zero or more keyword/value pairs may be appended
-* keyword = *swap* or *target*
-.. parsed-literal::
-
- *swap* value = Nswap = number of swaps to perform every N steps
- *vtarget* value = V or INF = target velocity of swap partners (velocity units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all viscosity 100 x z 20
- fix 1 all viscosity 50 x z 20 swap 2 vtarget 1.5
-
-Description
-"""""""""""
-
-Use the Muller-Plathe algorithm described in :ref:`this paper <Muller-Plathe>` to exchange momenta between two particles in
-different regions of the simulation box every N steps. This induces a
-shear velocity profile in the system. As described below this enables
-a viscosity of the fluid to be calculated. This algorithm is
-sometimes called a reverse non-equilibrium MD (reverse NEMD) approach
-to computing viscosity. This is because the usual NEMD approach is to
-impose a shear velocity profile on the system and measure the response
-via an off-diagonal component of the stress tensor, which is
-proportional to the momentum flux. In the Muller-Plathe method, the
-momentum flux is imposed, and the shear velocity profile is the
-system's response.
-
-The simulation box is divided into *Nbin* layers in the *pdim*
-direction, where the layer 1 is at the low end of that dimension and
-the layer *Nbin* is at the high end. Every N steps, Nswap pairs of
-atoms are chosen in the following manner. Only atoms in the fix group
-are considered. Nswap atoms in layer 1 with positive velocity
-components in the *vdim* direction closest to the target value *V* are
-selected. Similarly, Nswap atoms in the "middle" layer (see below) with
-negative velocity components in the *vdim* direction closest to the
-negative of the target value *V* are selected. The two sets of Nswap
-atoms are paired up and their *vdim* momenta components are swapped
-within each pair. This resets their velocities, typically in opposite
-directions. Over time, this induces a shear velocity profile in the
-system which can be measured using commands such as the following,
-which writes the profile to the file tmp.profile:
-
-.. parsed-literal::
-
- fix f1 all ave/spatial 100 10 1000 z lower 0.05 vx &
- file tmp.profile units reduced
-
-Note that by default, Nswap = 1 and vtarget = INF, though this can be
-changed by the optional *swap* and *vtarget* keywords. When vtarget =
-INF, one or more atoms with the most positive and negative velocity
-components are selected. Setting these parameters appropriately, in
-conjunction with the swap rate N, allows the momentum flux rate to be
-adjusted across a wide range of values, and the momenta to be
-exchanged in large chunks or more smoothly.
-
-The "middle" layer for momenta swapping is defined as the *Nbin*/2 + 1
-layer. Thus if *Nbin* = 20, the two swapping layers are 1 and 11.
-This should lead to a symmetric velocity profile since the two layers
-are separated by the same distance in both directions in a periodic
-sense. This is why *Nbin* is restricted to being an even number.
-
-As described below, the total momentum transferred by these velocity
-swaps is computed by the fix and can be output. Dividing this
-quantity by time and the cross-sectional area of the simulation box
-yields a momentum flux. The ratio of momentum flux to the slope of
-the shear velocity profile is proportional to the viscosity of the
-fluid, in appropriate units. See the :ref:`Muller-Plathe paper <Muller-Plathe>` for details.
-
-.. note::
-
- If your system is periodic in the direction of the momentum
- flux, then the flux is going in 2 directions. This means the
- effective momentum flux in one direction is reduced by a factor of 2.
- You will see this in the equations for viscosity in the Muller-Plathe
- paper. LAMMPS is simply tallying momentum which does not account for
- whether or not your system is periodic; you must use the value
- appropriately to yield a viscosity for your system.
-
-.. note::
-
- After equilibration, if the velocity profile you observe is not
- linear, then you are likely swapping momentum too frequently and are
- not in a regime of linear response. In this case you cannot
- accurately infer a viscosity and should try increasing the Nevery
- parameter.
-
-An alternative method for calculating a viscosity is to run a NEMD
-simulation, as described in :ref:`Section_howto 13 <howto_13>` of the manual. NEMD simulations
-deform the simmulation box via the :doc:`fix deform <fix_deform>`
-command. Thus they cannot be run on a charged system using a :doc:`PPPM solver <kspace_style>` since PPPM does not currently support
-non-orthogonal boxes. Using fix viscosity keeps the box orthogonal;
-thus it does not suffer from this limitation.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global scalar which can be accessed by various
-:ref:`output commands <howto_15>`. The scalar is the
-cummulative momentum transferred between the bottom and middle of the
-simulation box (in the *pdim* direction) is stored as a scalar
-quantity by this fix. This quantity is zeroed when the fix is defined
-and accumlates thereafter, once every N steps. The units of the
-quantity are momentum = mass*velocity. The scalar value calculated by
-this fix is "intensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the MISC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Swaps conserve both momentum and kinetic energy, even if the masses of
-the swapped atoms are not equal. Thus you should not need to
-thermostat the system. If you do use a thermostat, you may want to
-apply it only to the non-swapped dimensions (other than *vdim*).
-
-LAMMPS does not check, but you should not use this fix to swap
-velocities of atoms that are in constrained molecules, e.g. via :doc:`fix shake <fix_shake>` or :doc:`fix rigid <fix_rigid>`. This is because
-application of the constraints will alter the amount of transferred
-momentum. You should, however, be able to use flexible molecules.
-See the :ref:`Maginn paper <Maginn>` for an example of using this algorithm
-in a computation of alcohol molecule properties.
-
-When running a simulation with large, massive particles or molecules
-in a background solvent, you may want to only exchange momenta bewteen
-solvent particles.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix ave/spatial <fix_ave_spatial>`, :doc:`fix thermal/conductivity <fix_thermal_conductivity>`
-
-Default
-"""""""
-
-The option defaults are swap = 1 and vtarget = INF.
-
-
-----------
-
-
-.. _Muller-Plathe:
-
-
-
-**(Muller-Plathe)** Muller-Plathe, Phys Rev E, 59, 4894-4898 (1999).
-
-.. _Maginn:
-
-
-
-**(Maginn)** Kelkar, Rafferty, Maginn, Siepmann, Fluid Phase Equilibria,
-260, 218-231 (2007).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_viscous.txt b/doc/_sources/fix_viscous.txt
deleted file mode 100644
index 44e36b2f3..000000000
--- a/doc/_sources/fix_viscous.txt
+++ /dev/null
@@ -1,139 +0,0 @@
-.. index:: fix viscous
-
-fix viscous command
-===================
-
-fix viscous/cuda command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID viscous gamma keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* viscous = style name of this fix command
-* gamma = damping coefficient (force/velocity units)
-* zero or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *scale*
- *scale* values = type ratio
- type = atom type (1-N)
- ratio = factor to scale the damping coefficient by
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 flow viscous 0.1
- fix 1 damp viscous 0.5 scale 3 2.5
-
-Description
-"""""""""""
-
-Add a viscous damping force to atoms in the group that is proportional
-to the velocity of the atom. The added force can be thought of as a
-frictional interaction with implicit solvent, i.e. the no-slip Stokes
-drag on a spherical particle. In granular simulations this can be
-useful for draining the kinetic energy from the system in a controlled
-fashion. If used without additional thermostatting (to add kinetic
-energy to the system), it has the effect of slowly (or rapidly)
-freezing the system; hence it can also be used as a simple energy
-minimization technique.
-
-The damping force F is given by F = - gamma * velocity. The larger
-the coefficient, the faster the kinetic energy is reduced. If the
-optional keyword *scale* is used, gamma can scaled up or down by the
-specified factor for atoms of that type. It can be used multiple
-times to adjust gamma for several atom types.
-
-.. note::
-
- You should specify gamma in force/velocity units. This is not
- the same as mass/time units, at least for some of the LAMMPS
- :doc:`units <units>` options like "real" or "metal" that are not
- self-consistent.
-
-In a Brownian dynamics context, gamma = Kb T / D, where Kb =
-Boltzmann's constant, T = temperature, and D = particle diffusion
-coefficient. D can be written as Kb T / (3 pi eta d), where eta =
-dynamic viscosity of the frictional fluid and d = diameter of
-particle. This means gamma = 3 pi eta d, and thus is proportional to
-the viscosity of the fluid and the particle diameter.
-
-In the current implementation, rather than have the user specify a
-viscosity, gamma is specified directly in force/velocity units. If
-needed, gamma can be adjusted for atoms of different sizes
-(i.e. sigma) by using the *scale* keyword.
-
-Note that Brownian dynamics models also typically include a randomized
-force term to thermostat the system at a chosen temperature. The :doc:`fix langevin <fix_langevin>` command does this. It has the same
-viscous damping term as fix viscous and adds a random force to each
-atom. The random force term is proportional to the sqrt of the chosen
-thermostatting temperature. Thus if you use fix langevin with a
-target T = 0, its random force term is zero, and you are essentially
-performing the same operation as fix viscous. Also note that the
-gamma of fix viscous is related to the damping parameter of :doc:`fix langevin <fix_langevin>`, however the former is specified in units
-of force/velocity and the latter in units of time, so that it can more
-easily be used as a thermostat.
-
-
-----------
-
-
-Styles with a *cuda* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command. This fix should only
-be used with damped dynamics minimizers that allow for
-non-conservative forces. See the :doc:`min_style <min_style>` command
-for details.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix langevin <fix_langevin>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_wall.txt b/doc/_sources/fix_wall.txt
deleted file mode 100644
index b074d0e89..000000000
--- a/doc/_sources/fix_wall.txt
+++ /dev/null
@@ -1,345 +0,0 @@
-.. index:: fix wall/lj93
-
-fix wall/lj93 command
-=====================
-
-fix wall/lj126 command
-======================
-
-fix wall/lj1043 command
-=======================
-
-fix wall/colloid command
-========================
-
-fix wall/harmonic command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID style face args ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* style = *wall/lj93* or *wall/lj126* or *wall/lj1043* or *wall/colloid* or *wall/harmonic*
-* one or more face/arg pairs may be appended
-* face = *xlo* or *xhi* or *ylo* or *yhi* or *zlo* or *zhi*
-.. parsed-literal::
-
- args = coord epsilon sigma cutoff
- coord = position of wall = EDGE or constant or variable
- EDGE = current lo or hi edge of simulation box
- constant = number like 0.0 or -30.0 (distance units)
- variable = :doc:`equal-style variable <variable>` like v_x or v_wiggle
- epsilon = strength factor for wall-particle interaction (energy or energy/distance^2 units)
- epsilon can be a variable (see below)
- sigma = size factor for wall-particle interaction (distance units)
- sigma can be a variable (see below)
- cutoff = distance from wall at which wall-particle interaction is cut off (distance units)
-
-* zero or more keyword/value pairs may be appended
-* keyword = *units* or *fld*
-.. parsed-literal::
-
- *units* value = *lattice* or *box*
- *lattice* = the wall position is defined in lattice units
- *box* = the wall position is defined in simulation box units
- *fld* value = *yes* or *no*
- *yes* = invoke the wall constraint to be compatible with implicit FLD
- *no* = invoke the wall constraint in the normal way
- *pbc* value = *yes* or *no*
- *yes* = allow periodic boundary in a wall dimension
- *no* = require non-perioidic boundaries in any wall dimension
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix wallhi all wall/lj93 xlo -1.0 1.0 1.0 2.5 units box
- fix wallhi all wall/lj93 xhi EDGE 1.0 1.0 2.5
- fix wallhi all wall/lj126 v_wiggle 23.2 1.0 1.0 2.5
- fix zwalls all wall/colloid zlo 0.0 1.0 1.0 0.858 zhi 40.0 1.0 1.0 0.858
-
-Description
-"""""""""""
-
-Bound the simulation domain on one or more of its faces with a flat
-wall that interacts with the atoms in the group by generating a force
-on the atom in a direction perpendicular to the wall. The energy of
-wall-particle interactions depends on the style.
-
-For style *wall/lj93*, the energy E is given by the 9/3 potential:
-
-.. image:: Eqs/fix_wall_lj93.jpg
- :align: center
-
-For style *wall/lj126*, the energy E is given by the 12/6 potential:
-
-.. image:: Eqs/pair_lj.jpg
- :align: center
-
-For style *wall/lj1043*, the energy E is given by the 10/4/3 potential:
-
-.. image:: Eqs/fix_wall_lj1043.jpg
- :align: center
-
-For style *wall/colloid*, the energy E is given by an integrated form
-of the :doc:`pair_style colloid <pair_colloid>` potential:
-
-.. image:: Eqs/fix_wall_colloid.jpg
- :align: center
-
-For style *wall/harmonic*, the energy E is given by a harmonic spring
-potential:
-
-.. image:: Eqs/fix_wall_harmonic.jpg
- :align: center
-
-In all cases, *r* is the distance from the particle to the wall at
-position *coord*, and Rc is the *cutoff* distance at which the
-particle and wall no longer interact. The energy of the wall
-potential is shifted so that the wall-particle interaction energy is
-0.0 at the cutoff distance.
-
-Up to 6 walls or faces can be specified in a single command: *xlo*,
-*xhi*, *ylo*, *yhi*, *zlo*, *zhi*. A *lo* face interacts with
-particles near the lower side of the simulation box in that dimension.
-A *hi* face interacts with particles near the upper side of the
-simulation box in that dimension.
-
-The position of each wall can be specified in one of 3 ways: as the
-EDGE of the simulation box, as a constant value, or as a variable. If
-EDGE is used, then the corresponding boundary of the current
-simulation box is used. If a numeric constant is specified then the
-wall is placed at that position in the appropriate dimension (x, y, or
-z). In both the EDGE and constant cases, the wall will never move.
-If the wall position is a variable, it should be specified as v_name,
-where name is an :doc:`equal-style variable <variable>` name. In this
-case the variable is evaluated each timestep and the result becomes
-the current position of the reflecting wall. Equal-style variables
-can specify formulas with various mathematical functions, and include
-:doc:`thermo_style <thermo_style>` command keywords for the simulation
-box parameters and timestep and elapsed time. Thus it is easy to
-specify a time-dependent wall position. See examples below.
-
-For the *wall/lj93* and *wall/lj126* and *wall/lj1043* styles,
-*epsilon* and *sigma* are the usual Lennard-Jones parameters, which
-determine the strength and size of the particle as it interacts with
-the wall. Epsilon has energy units. Note that this *epsilon* and
-*sigma* may be different than any *epsilon* or *sigma* values defined
-for a pair style that computes particle-particle interactions.
-
-The *wall/lj93* interaction is derived by integrating over a 3d
-half-lattice of Lennard-Jones 12/6 particles. The *wall/lj126*
-interaction is effectively a harder, more repulsive wall interaction.
-The *wall/lj1043* interaction is yet a different form of wall
-interaction, described in Magda et al in :ref:`(Magda) <Magda>`.
-
-For the *wall/colloid* style, *R* is the radius of the colloid
-particle, *D* is the distance from the surface of the colloid particle
-to the wall (r-R), and *sigma* is the size of a constituent LJ
-particle inside the colloid particle and wall. Note that the cutoff
-distance Rc in this case is the distance from the colloid particle
-center to the wall. The prefactor *epsilon* can be thought of as an
-effective Hamaker constant with energy units for the strength of the
-colloid-wall interaction. More specifically, the *epsilon* pre-factor
-= 4 * pi^2 * rho_wall * rho_colloid * epsilon * sigma^6, where epsilon
-and sigma are the LJ parameters for the constituent LJ
-particles. Rho_wall and rho_colloid are the number density of the
-constituent particles, in the wall and colloid respectively, in units
-of 1/volume.
-
-The *wall/colloid* interaction is derived by integrating over
-constituent LJ particles of size *sigma* within the colloid particle
-and a 3d half-lattice of Lennard-Jones 12/6 particles of size *sigma*
-in the wall. As mentioned in the preceeding paragraph, the density of
-particles in the wall and colloid can be different, as specified by
-the *epsilon* pre-factor.
-
-For the *wall/harmonic* style, *epsilon* is effectively the spring
-constant K, and has units (energy/distance^2). The input parameter
-*sigma* is ignored. The minimum energy position of the harmonic
-spring is at the *cutoff*. This is a repulsive-only spring since the
-interaction is truncated at the *cutoff*
-
-For any wall, the *epsilon* and/or *sigma* parameter can be specified
-as an :doc:`equal-style variable <variable>`, in which case it should be
-specified as v_name, where name is the variable name. As with a
-variable wall position, the variable is evaluated each timestep and
-the result becomes the current epsilon or sigma of the wall.
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent wall interaction.
-
-.. note::
-
- For all of the styles, you must insure that r is always > 0 for
- all particles in the group, or LAMMPS will generate an error. This
- means you cannot start your simulation with particles at the wall
- position *coord* (r = 0) or with particles on the wrong side of the
- wall (r < 0). For the *wall/lj93* and *wall/lj126* styles, the energy
- of the wall/particle interaction (and hence the force on the particle)
- blows up as r -> 0. The *wall/colloid* style is even more
- restrictive, since the energy blows up as D = r-R -> 0. This means
- the finite-size particles of radius R must be a distance larger than R
- from the wall position *coord*. The *harmonic* style is a softer
- potential and does not blow up as r -> 0, but you must use a large
- enough *epsilon* that particles always reamin on the correct side of
- the wall (r > 0).
-
-The *units* keyword determines the meaning of the distance units used
-to define a wall position, but only when a numeric constant or
-variable is used. It is not relevant when EDGE is used to specify a
-face position. In the variable case, the variable is assumed to
-produce a value compatible with the *units* setting you specify.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacings.
-
-The *fld* keyword can be used with a *yes* setting to invoke the wall
-constraint before pairwise interactions are computed. This allows an
-implicit FLD model using :doc:`pair_style lubricateU <pair_lubricateU>`
-to include the wall force in its calculations. If the setting is
-*no*, wall forces are imposed after pairwise interactions, in the
-usual manner.
-
-The *pbc* keyword can be used with a *yes* setting to allow walls to
-be specified in a periodic dimension. See the
-:doc:`boundary <boundary>` command for options on simulation box
-boundaries. The default for *pbc* is *no*, which means the system
-must be non-periodic when using a wall. But you may wish to use a
-periodic box. E.g. to allow some particles to interact with the wall
-via the fix group-ID, and others to pass through it and wrap around a
-periodic box. In this case you should insure that the wall if
-sufficiently far enough away from the box boundary. If you do not,
-then particles may interact with both the wall and with periodic
-images on the other side of the box, which is probably not what you
-want.
-
-
-----------
-
-
-Here are examples of variable definitions that move the wall position
-in a time-dependent fashion using equal-style
-:doc:`variables <variable>`. The wall interaction parameters (epsilon,
-sigma) could be varied with additional variable definitions.
-
-.. parsed-literal::
-
- variable ramp equal ramp(0,10)
- fix 1 all wall xlo v_ramp 1.0 1.0 2.5
-
-.. parsed-literal::
-
- variable linear equal vdisplace(0,20)
- fix 1 all wall xlo v_linear 1.0 1.0 2.5
-
-.. parsed-literal::
-
- variable wiggle equal swiggle(0.0,5.0,3.0)
- fix 1 all wall xlo v_wiggle 1.0 1.0 2.5
-
-.. parsed-literal::
-
- variable wiggle equal cwiggle(0.0,5.0,3.0)
- fix 1 all wall xlo v_wiggle 1.0 1.0 2.5
-
-The ramp(lo,hi) function adjusts the wall position linearly from lo to
-hi over the course of a run. The vdisplace(c0,velocity) function does
-something similar using the equation position = c0 + velocity*delta,
-where delta is the elapsed time.
-
-The swiggle(c0,A,period) function causes the wall position to
-oscillate sinusoidally according to this equation, where omega = 2 PI
-/ period:
-
-.. parsed-literal::
-
- position = c0 + A sin(omega*delta)
-
-The cwiggle(c0,A,period) function causes the wall position to
-oscillate sinusoidally according to this equation, which will have an
-initial wall velocity of 0.0, and thus may impose a gentler
-perturbation on the particles:
-
-.. parsed-literal::
-
- position = c0 + A (1 - cos(omega*delta))
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy of interaction between atoms and each wall to
-the system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar energy and a global vector of
-forces, which can be accessed by various :ref:`output commands <howto_15>`. Note that the scalar energy is
-the sum of interactions with all defined walls. If you want the
-energy on a per-wall basis, you need to use multiple fix wall
-commands. The length of the vector is equal to the number of walls
-defined by the fix. Each vector value is the normal force on a
-specific wall. Note that an outward force on a wall will be a
-negative value for *lo* walls and a positive value for *hi* walls.
-The scalar and vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-.. note::
-
- If you want the atom/wall interaction energy to be included in
- the total potential energy of the system (the quantity being
- minimized), you MUST enable the :doc:`fix_modify <fix_modify>` *energy*
- option for this fix.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix wall/reflect <fix_wall_reflect>`,
-:doc:`fix wall/gran <fix_wall_gran>`,
-:doc:`fix wall/region <fix_wall_region>`
-
-Default
-"""""""
-
-The option defaults units = lattice, fld = no, and pbc = no.
-
-
-----------
-
-
-.. _Magda:
-
-
-
-**(Magda)** Magda, Tirrell, Davis, J Chem Phys, 83, 1888-1901 (1985);
-erratum in JCP 84, 2901 (1986).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_wall_gran.txt b/doc/_sources/fix_wall_gran.txt
deleted file mode 100644
index 87b210742..000000000
--- a/doc/_sources/fix_wall_gran.txt
+++ /dev/null
@@ -1,175 +0,0 @@
-.. index:: fix wall/gran
-
-fix wall/gran command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID wall/gran Kn Kt gamma_n gamma_t xmu dampflag wallstyle args keyword values ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* wall/gran = style name of this fix command
-* Kn = elastic constant for normal particle repulsion (force/distance units or pressure units - see discussion below)
-* Kt = elastic constant for tangential contact (force/distance units or pressure units - see discussion below)
-* gamma_n = damping coefficient for collisions in normal direction (1/time units or 1/time-distance units - see discussion below)
-* gamma_t = damping coefficient for collisions in tangential direction (1/time units or 1/time-distance units - see discussion below)
-* xmu = static yield criterion (unitless value between 0.0 and 1.0e4)
-* dampflag = 0 or 1 if tangential damping force is excluded or included
-* wallstyle = *xplane* or *yplane* or *zplane* or *zcylinder*
-* args = list of arguments for a particular style
-.. parsed-literal::
-
- *xplane* or *yplane* or *zplane* args = lo hi
- lo,hi = position of lower and upper plane (distance units), either can be NULL)
- *zcylinder* args = radius
- radius = cylinder radius (distance units)
-
-* zero or more keyword/value pairs may be appended to args
-* keyword = *wiggle* or *shear*
-.. parsed-literal::
-
- *wiggle* values = dim amplitude period
- dim = *x* or *y* or *z*
- amplitude = size of oscillation (distance units)
- period = time of oscillation (time units)
- *shear* values = dim vshear
- dim = *x* or *y* or *z*
- vshear = magnitude of shear velocity (velocity units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix 1 all wall/gran 200000.0 NULL 50.0 NULL 0.5 0 xplane -10.0 10.0
- fix 1 all wall/gran 200000.0 NULL 50.0 NULL 0.5 0 zplane 0.0 NULL
- fix 2 all wall/gran 100000.0 20000.0 50.0 30.0 0.5 1 zcylinder 15.0 wiggle z 3.0 2.0
-
-Description
-"""""""""""
-
-Bound the simulation domain of a granular system with a frictional
-wall. All particles in the group interact with the wall when they are
-close enough to touch it.
-
-The first set of parameters (Kn, Kt, gamma_n, gamma_t, xmu, and
-dampflag) have the same meaning as those specified with the
-:doc:`pair_style granular <pair_gran>` force fields. This means a NULL
-can be used for either Kt or gamma_t as described on that page. If a
-NULL is used for Kt, then a default value is used where Kt = 2/7 Kn.
-If a NULL is used for gamma_t, then a default value is used where
-gamma_t = 1/2 gamma_n.
-
-The nature of the wall/particle interactions are determined by which
-pair_style is used in your input script: *hooke*, *hooke/history*, or
-*hertz/history*. The equation for the force between the wall and
-particles touching it is the same as the corresponding equation on the
-:doc:`pair_style granular <pair_gran>` doc page, in the limit of one of
-the two particles going to infinite radius and mass (flat wall).
-I.e. delta = radius - r = overlap of particle with wall, m_eff = mass
-of particle, and sqrt(RiRj/Ri+Rj) becomes sqrt(radius of particle).
-The units for Kn, Kt, gamma_n, and gamma_t are as described on that
-doc page. The meaning of xmu and dampflag are also as described on
-that page. Note that you can choose different values for these 6
-wall/particle coefficients than for particle/particle interactions, if
-you wish your wall to interact differently with the particles, e.g. if
-the wall is a different material.
-
-.. note::
-
- As discussed on the doc page for :doc:`pair_style granular <pair_gran>`, versions of LAMMPS before 9Jan09 used a
- different equation for Hertzian interactions. This means Hertizian
- wall/particle interactions have also changed. They now include a
- sqrt(radius) term which was not present before. Also the previous
- versions used Kn and Kt from the pairwise interaction and hardwired
- dampflag to 1, rather than letting them be specified directly. This
- means you can set the values of the wall/particle coefficients
- appropriately in the current code to reproduce the results of a
- prevoius Hertzian monodisperse calculation. For example, for the
- common case of a monodisperse system with particles of diameter 1, Kn,
- Kt, gamma_n, and gamma_s should be set sqrt(2.0) larger than they were
- previously.
-
-The *wallstyle* can be planar or cylindrical. The 3 planar options
-specify a pair of walls in a dimension. Wall positions are given by
-*lo* and *hi*. Either of the values can be specified as NULL if a
-single wall is desired. For a *zcylinder* wallstyle, the cylinder's
-axis is at x = y = 0.0, and the radius of the cylinder is specified.
-
-Optionally, the wall can be moving, if the *wiggle* or *shear*
-keywords are appended. Both keywords cannot be used together.
-
-For the *wiggle* keyword, the wall oscillates sinusoidally, similar to
-the oscillations of particles which can be specified by the
-:doc:`fix move <fix_move>` command. This is useful in packing
-simulations of granular particles. The arguments to the *wiggle*
-keyword specify a dimension for the motion, as well as it's
-*amplitude* and *period*. Note that if the dimension is in the plane
-of the wall, this is effectively a shearing motion. If the dimension
-is perpendicular to the wall, it is more of a shaking motion. A
-*zcylinder* wall can only be wiggled in the z dimension.
-
-Each timestep, the position of a wiggled wall in the appropriate *dim*
-is set according to this equation:
-
-.. parsed-literal::
-
- position = coord + A - A cos (omega * delta)
-
-where *coord* is the specified initial position of the wall, *A* is
-the *amplitude*, *omega* is 2 PI / *period*, and *delta* is the time
-elapsed since the fix was specified. The velocity of the wall is set
-to the derivative of this expression.
-
-For the *shear* keyword, the wall moves continuously in the specified
-dimension with velocity *vshear*. The dimension must be tangential to
-walls with a planar *wallstyle*, e.g. in the *y* or *z* directions for
-an *xplane* wall. For *zcylinder* walls, a dimension of *z* means the
-cylinder is moving in the z-direction along it's axis. A dimension of
-*x* or *y* means the cylinder is spinning around the z-axis, either in
-the clockwise direction for *vshear* > 0 or counter-clockwise for
-*vshear* < 0. In this case, *vshear* is the tangential velocity of
-the wall at whatever *radius* has been defined.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-This fix writes the shear friction state of atoms interacting with the
-wall to :doc:`binary restart files <restart>`, so that a simulation can
-continue correctly if granular potentials with shear "history" effects
-are being used. See the :doc:`read_restart <read_restart>` command for
-info on how to re-specify a fix in an input script that reads a
-restart file, so that the operation of the fix continues in an
-uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix. No global or per-atom quantities are stored by this fix for
-access by various :ref:`output commands <howto_15>`. No
-parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the GRANULAR package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Any dimension (xyz) that has a granular wall must be non-periodic.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix move <fix_move>`, :doc:`pair_style granular <pair_gran>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_wall_piston.txt b/doc/_sources/fix_wall_piston.txt
deleted file mode 100644
index 68d3f9973..000000000
--- a/doc/_sources/fix_wall_piston.txt
+++ /dev/null
@@ -1,133 +0,0 @@
-.. index:: fix wall/piston
-
-fix wall/piston command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID wall/piston face ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* wall/piston = style name of this fix command
-* face = *zlo*
-* zero or more keyword/value pairs may be appended
-* keyword = *pos* or *vel* or *ramp* or *units*
-.. parsed-literal::
-
- *pos* args = z
- z = z coordinate at which the piston begins (distance units)
- *vel* args = vz
- vz = final velocity of the piston (velocity units)
- *ramp* = use a linear velocity ramp from 0 to vz
- *temp* args = target damp seed extent
- target = target velocity for region immediately ahead of the piston
- damp = damping paramter (time units)
- seed = random number seed for langevin kicks
- extent = extent of thermostated region (distance units)
- *units* value = *lattice* or *box*
- *lattice* = the wall position is defined in lattice units
- *box* = the wall position is defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix xwalls all wall/piston zlo
- fix walls all wall/piston zlo pos 1.0 vel 10.0 units box
- fix top all wall/piston zlo vel 10.0 ramp
-
-Description
-"""""""""""
-
-Bound the simulation with a moving wall which reflect particles in the
-specified group and drive the system with an effective infinite-mass
-piston capable of driving shock waves.
-
-A momentum mirror technique is used, which means that if an atom (or
-the wall) moves such that an atom is outside the wall on a timestep by
-a distance delta (e.g. due to :doc:`fix nve <fix_nve>`), then it is put
-back inside the face by the same delta, and the velocity relative to
-the moving wall is flipped in z. For instance, a stationary particle
-hit with a piston wall with velocity vz, will end the timestep with a
-velocity of 2*vz.
-
-Currently the *face* keyword can only be *zlo*. This creates a piston
-moving in the positive z direction. Particles with z coordinate less
-than the wall position are reflected to a z coordinate greater than
-the wall position. If the piston velocity is vpz and the particle
-velocity before reflection is vzi, the particle velocity after
-reflection is -vzi + 2*vpz.
-
-The initial position of the wall can be specified by the *pos* keyword.
-
-The final velocity of the wall can be specified by the *vel* keyword
-
-The *ramp* keyword will cause the wall/piston to adjust the velocity
-linearly from zero velocity to *vel* over the course of the run. If
-the *ramp* keyword is omitted then the wall/piston moves at a constant
-velocity defined by *vel*.
-
-The *temp* keyword will cause the region immediately in front of the
-wall/piston to be thermostated with a Langevin thermostat. This
-region moves with the piston. The damping and kicking are measured in
-the reference frame of the piston. So, a temperature of zero would
-mean all particles were moving at exactly the speed of the
-wall/piston.
-
-The *units* keyword determines the meaning of the distance units used
-to define a wall position, but only when a numeric constant is used.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacings.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howoto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix style is part of the SHOCK package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The face that has the wall/piston must be boundary type 's'
-(shrink-wrapped). The opposing face can be
-any boundary type other than periodic.
-
-A wall/piston should not be used with rigid bodies such as those
-defined by a "fix rigid" command. This is because the wall/piston
-displaces atoms directly rather than exerting a force on them.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix wall/reflect <fix_wall>` command, :doc:`fix append/atoms <fix_append_atoms>` command
-
-Default
-"""""""
-
-The keyword defaults are pos = 0, vel = 0, units = lattice.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_wall_reflect.txt b/doc/_sources/fix_wall_reflect.txt
deleted file mode 100644
index b36198535..000000000
--- a/doc/_sources/fix_wall_reflect.txt
+++ /dev/null
@@ -1,220 +0,0 @@
-.. index:: fix wall/reflect
-
-fix wall/reflect command
-========================
-
-fix wall/reflect/kk command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID wall/reflect face arg ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* wall/reflect = style name of this fix command
-* one or more face/arg pairs may be appended
-* face = *xlo* or *xhi* or *ylo* or *yhi* or *zlo* or *zhi*
-.. parsed-literal::
-
- *xlo*,*ylo*,*zlo* arg = EDGE or constant or variable
- EDGE = current lo edge of simulation box
- constant = number like 0.0 or -30.0 (distance units)
- variable = :doc:`equal-style variable <variable>` like v_x or v_wiggle
- *xhi*,*yhi*,*zhi* arg = EDGE or constant or variable
- EDGE = current hi edge of simulation box
- constant = number like 50.0 or 100.3 (distance units)
- variable = :doc:`equal-style variable <variable>` like v_x or v_wiggle
-
-* zero or more keyword/value pairs may be appended
-* keyword = *units*
-.. parsed-literal::
-
- *units* value = *lattice* or *box*
- *lattice* = the wall position is defined in lattice units
- *box* = the wall position is defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix xwalls all wall/reflect xlo EDGE xhi EDGE
- fix walls all wall/reflect xlo 0.0 ylo 10.0 units box
- fix top all wall/reflect zhi v_pressdown
-
-Description
-"""""""""""
-
-Bound the simulation with one or more walls which reflect particles
-in the specified group when they attempt to move thru them.
-
-Reflection means that if an atom moves outside the wall on a timestep
-by a distance delta (e.g. due to :doc:`fix nve <fix_nve>`), then it is
-put back inside the face by the same delta, and the sign of the
-corresponding component of its velocity is flipped.
-
-When used in conjunction with :doc:`fix nve <fix_nve>` and :doc:`run_style verlet <run_style>`, the resultant time-integration algorithm is
-equivalent to the primitive splitting algorithm (PSA) described by
-:ref:`Bond <Bond>`. Because each reflection event divides
-the corresponding timestep asymmetrically, energy conservation is only
-satisfied to O(dt), rather than to O(dt^2) as it would be for
-velocity-Verlet integration without reflective walls.
-
-Up to 6 walls or faces can be specified in a single command: *xlo*,
-*xhi*, *ylo*, *yhi*, *zlo*, *zhi*. A *lo* face reflects particles
-that move to a coordinate less than the wall position, back in the
-*hi* direction. A *hi* face reflects particles that move to a
-coordinate higher than the wall position, back in the *lo* direction.
-
-The position of each wall can be specified in one of 3 ways: as the
-EDGE of the simulation box, as a constant value, or as a variable. If
-EDGE is used, then the corresponding boundary of the current
-simulation box is used. If a numeric constant is specified then the
-wall is placed at that position in the appropriate dimension (x, y, or
-z). In both the EDGE and constant cases, the wall will never move.
-If the wall position is a variable, it should be specified as v_name,
-where name is an :doc:`equal-style variable <variable>` name. In this
-case the variable is evaluated each timestep and the result becomes
-the current position of the reflecting wall. Equal-style variables
-can specify formulas with various mathematical functions, and include
-:doc:`thermo_style <thermo_style>` command keywords for the simulation
-box parameters and timestep and elapsed time. Thus it is easy to
-specify a time-dependent wall position.
-
-The *units* keyword determines the meaning of the distance units used
-to define a wall position, but only when a numeric constant or
-variable is used. It is not relevant when EDGE is used to specify a
-face position. In the variable case, the variable is assumed to
-produce a value compatible with the *units* setting you specify.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacings.
-
-
-----------
-
-
-Here are examples of variable definitions that move the wall position
-in a time-dependent fashion using equal-style
-:doc:`variables <variable>`.
-
-.. parsed-literal::
-
- variable ramp equal ramp(0,10)
- fix 1 all wall/reflect xlo v_ramp
-
-.. parsed-literal::
-
- variable linear equal vdisplace(0,20)
- fix 1 all wall/reflect xlo v_linear
-
-.. parsed-literal::
-
- variable wiggle equal swiggle(0.0,5.0,3.0)
- fix 1 all wall/reflect xlo v_wiggle
-
-.. parsed-literal::
-
- variable wiggle equal cwiggle(0.0,5.0,3.0)
- fix 1 all wall/reflect xlo v_wiggle
-
-The ramp(lo,hi) function adjusts the wall position linearly from lo to
-hi over the course of a run. The vdisplace(c0,velocity) function does
-something similar using the equation position = c0 + velocity*delta,
-where delta is the elapsed time.
-
-The swiggle(c0,A,period) function causes the wall position to
-oscillate sinusoidally according to this equation, where omega = 2 PI
-/ period:
-
-.. parsed-literal::
-
- position = c0 + A sin(omega*delta)
-
-The cwiggle(c0,A,period) function causes the wall position to
-oscillate sinusoidally according to this equation, which will have an
-initial wall velocity of 0.0, and thus may impose a gentler
-perturbation on the particles:
-
-.. parsed-literal::
-
- position = c0 + A (1 - cos(omega*delta))
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix. No global or per-atom quantities are stored
-by this fix for access by various :ref:`output commands <howto_15>`. No parameter of this fix can
-be used with the *start/stop* keywords of the :doc:`run <run>` command.
-This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-Any dimension (xyz) that has a reflecting wall must be non-periodic.
-
-A reflecting wall should not be used with rigid bodies such as those
-defined by a "fix rigid" command. This is because the wall/reflect
-displaces atoms directly rather than exerts a force on them. For
-rigid bodies, use a soft wall instead, such as :doc:`fix wall/lj93 <fix_wall>`. LAMMPS will flag the use of a rigid
-fix with fix wall/reflect with a warning, but will not generate an
-error.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix wall/lj93 <fix_wall>`, :doc:`fix oneway <fix_oneway>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Bond:
-
-
-
-**(Bond)** Bond and Leimkuhler, SIAM J Sci Comput, 30, p 134 (2007).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_wall_region.txt b/doc/_sources/fix_wall_region.txt
deleted file mode 100644
index 112585842..000000000
--- a/doc/_sources/fix_wall_region.txt
+++ /dev/null
@@ -1,231 +0,0 @@
-.. index:: fix wall/region
-
-fix wall/region command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID wall/region region-ID style epsilon sigma cutoff
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* wall/region = style name of this fix command
-* region-ID = region whose boundary will act as wall
-* style = *lj93* or *lj126* or *colloid* or *harmonic*
-* epsilon = strength factor for wall-particle interaction (energy or energy/distance^2 units)
-* sigma = size factor for wall-particle interaction (distance units)
-* cutoff = distance from wall at which wall-particle interaction is cut off (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix wall all wall/region mySphere lj93 1.0 1.0 2.5
-
-Description
-"""""""""""
-
-Treat the surface of the geometric region defined by the *region-ID*
-as a bounding wall which interacts with nearby particles according to
-the specified style. The distance between a particle and the surface
-is the distance to the nearest point on the surface and the force the
-wall exerts on the particle is along the direction between that point
-and the particle, which is the direction normal to the surface at that
-point. Note that if the region surface is comprised of multiple
-"faces", then each face can exert a force on the particle if it is
-close enough. E.g. for :doc:`region_style block <region>`, a particle
-in the interior, near a corner of the block, could feel wall forces
-from 1, 2, or 3 faces of the block.
-
-Regions are defined using the :doc:`region <region>` command. Note that
-the region volume can be interior or exterior to the bounding surface,
-which will determine in which direction the surface interacts with
-particles, i.e. the direction of the surface normal. The surface of
-the region only exerts forces on particles "inside" the region; if a
-particle is "outside" the region it will generate an error, because it
-has moved through the wall.
-
-Regions can either be primitive shapes (block, sphere, cylinder, etc)
-or combinations of primitive shapes specified via the *union* or
-*intersect* region styles. These latter styles can be used to
-construct particle containers with complex shapes. Regions can also
-change over time via the :doc:`region <region>` command keywords (move)
-and *rotate*. If such a region is used with this fix, then the of
-region surface will move over time in the corresponding manner.
-
-.. note::
-
- As discussed on the :doc:`region <region>` command doc page,
- regions in LAMMPS do not get wrapped across periodic boundaries. It
- is up to you to insure that periodic or non-periodic boundaries are
- specified appropriately via the :doc:`boundary <boundary>` command when
- using a region as a wall that bounds particle motion. This also means
- that if you embed a region in your simulation box and want it to
- repulse particles from its surface (using the "side out" option in the
- :doc:`region <region>` command), that its repulsive force will not be
- felt across a periodic boundary.
-
-.. note::
-
- For primitive regions with sharp corners and/or edges (e.g. a
- block or cylinder), wall/particle forces are computed accurately for
- both interior and exterior regions. For *union* and *intersect*
- regions, additional sharp corners and edges may be present due to the
- intersection of the surfaces of 2 or more primitive volumes. These
- corners and edges can be of two types: concave or convex. Concave
- points/edges are like the corners of a cube as seen by particles in
- the interior of a cube. Wall/particle forces around these features
- are computed correctly. Convex points/edges are like the corners of a
- cube as seen by particles exterior to the cube, i.e. the points jut
- into the volume where particles are present. LAMMPS does NOT compute
- the location of these convex points directly, and hence wall/particle
- forces in the cutoff volume around these points suffer from
- inaccuracies. The basic problem is that the outward normal of the
- surface is not continuous at these points. This can cause particles
- to feel no force (they don't "see" the wall) when in one location,
- then move a distance epsilon, and suddenly feel a large force because
- they now "see" the wall. In a worst-case scenario, this can blow
- particles out of the simulation box. Thus, as a general rule you
- should not use the fix wall/region command with *union* or
- *interesect* regions that have convex points or edges.
-
-.. note::
-
- Similarly, you should not define *union* or *intersert* regions
- for use with this command that share a common face, even if the face
- is smooth. E.g. two regions of style block in a *union* region, where
- the two blocks have the same face. This is because LAMMPS discards
- points that are part of multiple sub-regions when calculating
- wall/particle interactions, to avoid double-counting the interaction.
- Having two coincident faces could cause the face to become invisible
- to the particles. The solution is to make the two faces differ by
- epsilon in their position.
-
-The energy of wall-particle interactions depends on the specified
-style.
-
-For style *lj93*, the energy E is given by the 9/3 potential:
-
-.. image:: Eqs/fix_wall_lj93.jpg
- :align: center
-
-For style *lj126*, the energy E is given by the 12/6 potential:
-
-.. image:: Eqs/pair_lj.jpg
- :align: center
-
-For style *colloid*, the energy E is given by an integrated form of
-the :doc:`pair_style colloid <pair_colloid>` potential:
-
-.. image:: Eqs/fix_wall_colloid.jpg
- :align: center
-
-For style *wall/harmonic*, the energy E is given by a harmonic spring
-potential:
-
-.. image:: Eqs/fix_wall_harmonic.jpg
- :align: center
-
-In all cases, *r* is the distance from the particle to the region
-surface, and Rc is the *cutoff* distance at which the particle and
-surface no longer interact. The energy of the wall potential is
-shifted so that the wall-particle interaction energy is 0.0 at the
-cutoff distance.
-
-For the *lj93* and *lj126* styles, *epsilon* and *sigma* are the usual
-Lennard-Jones parameters, which determine the strength and size of the
-particle as it interacts with the wall. Epsilon has energy units.
-Note that this *epsilon* and *sigma* may be different than any
-*epsilon* or *sigma* values defined for a pair style that computes
-particle-particle interactions.
-
-The *lj93* interaction is derived by integrating over a 3d
-half-lattice of Lennard-Jones 12/6 particles. The *lj126* interaction
-is effectively a harder, more repulsive wall interaction.
-
-For the *colloid* style, *epsilon* is effectively a Hamaker constant
-with energy units for the colloid-wall interaction, *R* is the radius
-of the colloid particle, *D* is the distance from the surface of the
-colloid particle to the wall (r-R), and *sigma* is the size of a
-constituent LJ particle inside the colloid particle. Note that the
-cutoff distance Rc in this case is the distance from the colloid
-particle center to the wall.
-
-The *colloid* interaction is derived by integrating over constituent
-LJ particles of size *sigma* within the colloid particle and a 3d
-half-lattice of Lennard-Jones 12/6 particles of size *sigma* in the
-wall.
-
-For the *wall/harmonic* style, *epsilon* is effectively the spring
-constant K, and has units (energy/distance^2). The input parameter
-*sigma* is ignored. The minimum energy position of the harmonic
-spring is at the *cutoff*. This is a repulsive-only spring since the
-interaction is truncated at the *cutoff*
-
-.. note::
-
- For all of the styles, you must insure that r is always > 0 for
- all particles in the group, or LAMMPS will generate an error. This
- means you cannot start your simulation with particles on the region
- surface (r = 0) or with particles on the wrong side of the region
- surface (r < 0). For the *wall/lj93* and *wall/lj126* styles, the
- energy of the wall/particle interaction (and hence the force on the
- particle) blows up as r -> 0. The *wall/colloid* style is even more
- restrictive, since the energy blows up as D = r-R -> 0. This means
- the finite-size particles of radius R must be a distance larger than R
- from the region surface. The *harmonic* style is a softer potential
- and does not blow up as r -> 0, but you must use a large enough
- *epsilon* that particles always reamin on the correct side of the
- region surface (r > 0).
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`.
-
-The :doc:`fix_modify <fix_modify>` *energy* option is supported by this
-fix to add the energy of interaction between atoms and the wall to the
-system's potential energy as part of :doc:`thermodynamic output <thermo_style>`.
-
-This fix computes a global scalar energy and a global 3-length vector
-of forces, which can be accessed by various :ref:`output commands <howto_15>`. The scalar energy is the sum
-of energy interactions for all particles interacting with the wall
-represented by the region surface. The 3 vector quantities are the
-x,y,z components of the total force acting on the wall due to the
-particles. The scalar and vector values calculated by this fix are
-"extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command.
-
-The forces due to this fix are imposed during an energy minimization,
-invoked by the :doc:`minimize <minimize>` command.
-
-.. note::
-
- If you want the atom/wall interaction energy to be included in
- the total potential energy of the system (the quantity being
- minimized), you MUST enable the :doc:`fix_modify <fix_modify>` *energy*
- option for this fix.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix wall/lj93 <fix_wall>`,
-:doc:`fix wall/lj126 <fix_wall>`,
-:doc:`fix wall/colloid <fix_wall>`,
-:doc:`fix wall/gran <fix_wall_gran>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/fix_wall_srd.txt b/doc/_sources/fix_wall_srd.txt
deleted file mode 100644
index 9bf28e02a..000000000
--- a/doc/_sources/fix_wall_srd.txt
+++ /dev/null
@@ -1,225 +0,0 @@
-.. index:: fix wall/srd
-
-fix wall/srd command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID wall/srd face arg ... keyword value ...
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* wall/srd = style name of this fix command
-* one or more face/arg pairs may be appended
-* face = *xlo* or *xhi* or *ylo* or *yhi* or *zlo* or *zhi*
-.. parsed-literal::
-
- *xlo*,*ylo*,*zlo* arg = EDGE or constant or variable
- EDGE = current lo edge of simulation box
- constant = number like 0.0 or -30.0 (distance units)
- variable = :doc:`equal-style variable <variable>` like v_x or v_wiggle
- *xhi*,*yhi*,*zhi* arg = EDGE or constant or variable
- EDGE = current hi edge of simulation box
- constant = number like 50.0 or 100.3 (distance units)
- variable = :doc:`equal-style variable <variable>` like v_x or v_wiggle
-
-* zero or more keyword/value pairs may be appended
-* keyword = *units*
-.. parsed-literal::
-
- *units* value = *lattice* or *box*
- *lattice* = the wall position is defined in lattice units
- *box* = the wall position is defined in simulation box units
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix xwalls all wall/srd xlo EDGE xhi EDGE
- fix walls all wall/srd xlo 0.0 ylo 10.0 units box
- fix top all wall/srd zhi v_pressdown
-
-Description
-"""""""""""
-
-Bound the simulation with one or more walls which interact with
-stochastic reaction dynamics (SRD) particles as slip (smooth) or
-no-slip (rough) flat surfaces. The wall interaction is actually
-invoked via the :doc:`fix srd <fix_srd>` command, only on the group of
-SRD particles it defines, so the group setting for the fix wall/srd
-command is ignored.
-
-A particle/wall collision occurs if an SRD particle moves outside the
-wall on a timestep. This alters the position and velocity of the SRD
-particle and imparts a force to the wall.
-
-The *collision* and *Tsrd* settings specified via the :doc:`fix srd <fix_srd>` command affect the SRD/wall collisions. A *slip*
-setting for the *collision* keyword means that the tangential
-component of the SRD particle momentum is preserved. Thus only a
-normal force is imparted to the wall. The normal component of the new
-SRD velocity is sampled from a Gaussian distribution at temperature
-*Tsrd*.
-
-For a *noslip* setting of the *collision* keyword, both the normal and
-tangential components of the new SRD velocity are sampled from a
-Gaussian distribution at temperature *Tsrd*. Additionally, a new
-tangential direction for the SRD velocity is chosen randomly. This
-collision style imparts both a normal and tangential force to the
-wall.
-
-Up to 6 walls or faces can be specified in a single command: *xlo*,
-*xhi*, *ylo*, *yhi*, *zlo*, *zhi*. A *lo* face reflects particles
-that move to a coordinate less than the wall position, back in the
-*hi* direction. A *hi* face reflects particles that move to a
-coordinate higher than the wall position, back in the *lo* direction.
-
-The position of each wall can be specified in one of 3 ways: as the
-EDGE of the simulation box, as a constant value, or as a variable. If
-EDGE is used, then the corresponding boundary of the current
-simulation box is used. If a numeric constant is specified then the
-wall is placed at that position in the appropriate dimension (x, y, or
-z). In both the EDGE and constant cases, the wall will never move.
-If the wall position is a variable, it should be specified as v_name,
-where name is an :doc:`equal-style variable <variable>` name. In this
-case the variable is evaluated each timestep and the result becomes
-the current position of the reflecting wall. Equal-style variables
-can specify formulas with various mathematical functions, and include
-:doc:`thermo_style <thermo_style>` command keywords for the simulation
-box parameters and timestep and elapsed time. Thus it is easy to
-specify a time-dependent wall position.
-
-.. note::
-
- Because the trajectory of the SRD particle is tracked as it
- collides with the wall, you must insure that r = distance of the
- particle from the wall, is always > 0 for SRD particles, or LAMMPS
- will generate an error. This means you cannot start your simulation
- with SRD particles at the wall position *coord* (r = 0) or with
- particles on the wrong side of the wall (r < 0).
-
-.. note::
-
- If you have 2 or more walls that come together at an edge or
- corner (e.g. walls in the x and y dimensions), then be sure to set the
- *overlap* keyword to *yes* in the :doc:`fix srd <fix_srd>` command,
- since the walls effectively overlap when SRD particles collide with
- them. LAMMPS will issue a warning if you do not do this.
-
-.. note::
-
- The walls of this fix only interact with SRD particles, as
- defined by the :doc:`fix srd <fix_srd>` command. If you are simulating
- a mixture containing other kinds of particles, then you should
- typically use :doc:`another wall command <fix_wall>` to act on the other
- particles. Since SRD particles will be colliding both with the walls
- and the other particles, it is important to insure that the other
- particle's finite extent does not overlap an SRD wall. If you do not
- do this, you may generate errors when SRD particles end up "inside"
- another particle or a wall at the beginning of a collision step.
-
-The *units* keyword determines the meaning of the distance units used
-to define a wall position, but only when a numeric constant is used.
-It is not relevant when EDGE or a variable is used to specify a face
-position.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacings.
-
-
-----------
-
-
-Here are examples of variable definitions that move the wall position
-in a time-dependent fashion using equal-style
-:doc:`variables <variable>`.
-
-.. parsed-literal::
-
- variable ramp equal ramp(0,10)
- fix 1 all wall/srd xlo v_ramp
-
-.. parsed-literal::
-
- variable linear equal vdisplace(0,20)
- fix 1 all wall/srd xlo v_linear
-
-.. parsed-literal::
-
- variable wiggle equal swiggle(0.0,5.0,3.0)
- fix 1 all wall/srd xlo v_wiggle
-
-.. parsed-literal::
-
- variable wiggle equal cwiggle(0.0,5.0,3.0)
- fix 1 all wall/srd xlo v_wiggle
-
-The ramp(lo,hi) function adjusts the wall position linearly from lo to
-hi over the course of a run. The displace(c0,velocity) function does
-something similar using the equation position = c0 + velocity*delta,
-where delta is the elapsed time.
-
-The swiggle(c0,A,period) function causes the wall position to
-oscillate sinusoidally according to this equation, where omega = 2 PI
-/ period:
-
-.. parsed-literal::
-
- position = c0 + A sin(omega*delta)
-
-The cwiggle(c0,A,period) function causes the wall position to
-oscillate sinusoidally according to this equation, which will have an
-initial wall velocity of 0.0, and thus may impose a gentler
-perturbation on the particles:
-
-.. parsed-literal::
-
- position = c0 + A (1 - cos(omega*delta))
-
-
-----------
-
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-No information about this fix is written to :doc:`binary restart files <restart>`. None of the :doc:`fix_modify <fix_modify>` options
-are relevant to this fix.
-
-This fix computes a global array of values which can be accessed by
-various :ref:`output commands <howto_15>`. The number of
-rows in the array is equal to the number of walls defined by the fix.
-The number of columns is 3, for the x,y,z components of force on each
-wall.
-
-Note that an outward normal force on a wall will be a negative value
-for *lo* walls and a positive value for *hi* walls. The array values
-calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-Any dimension (xyz) that has an SRD wall must be non-periodic.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix srd <fix_srd>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/group.txt b/doc/_sources/group.txt
deleted file mode 100644
index 9bd92c3a9..000000000
--- a/doc/_sources/group.txt
+++ /dev/null
@@ -1,315 +0,0 @@
-.. index:: group
-
-group command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- group ID style args
-
-* ID = user-defined name of the group
-* style = *delete* or *region* or *type* or *id* or *molecule* or *variable* or *include* or *subtract* or *union* or *intersect* or *dynamic* or *static*
-.. parsed-literal::
-
- *delete* = no args
- *clear* = no args
- *region* args = region-ID
- *type* or *id* or *molecule*
- args = list of one or more atom types, atom IDs, or molecule IDs
- any entry in list can be a sequence formatted as A:B or A:B:C where
- A = starting index, B = ending index,
- C = increment between indices, 1 if not specified
- args = logical value
- logical = "<" or "<=" or ">" or ">=" or "==" or "!="
- value = an atom type or atom ID or molecule ID (depending on *style*)
- args = logical value1 value2
- logical = "<>"
- value1,value2 = atom types or atom IDs or molecule IDs (depending on *style*)
- *variable* args = variable-name
- *include* args = molecule
- molecule = add atoms to group with same molecule ID as atoms already in group
- *subtract* args = two or more group IDs
- *union* args = one or more group IDs
- *intersect* args = two or more group IDs
- *dynamic* args = parent-ID keyword value ...
- one or more keyword/value pairs may be appended
- keyword = *region* or *var* or *every*
- *region* value = region-ID
- *var* value = name of variable
- *every* value = N = update group every this many timesteps
- *static* = no args
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- group edge region regstrip
- group water type 3 4
- group sub id 10 25 50
- group sub id 10 25 50 500:1000
- group sub id 100:10000:10
- group sub id <= 150
- group polyA molecule <> 50 250
- group hienergy variable eng
- group hienergy include molecule
- group boundary subtract all a2 a3
- group boundary union lower upper
- group boundary intersect upper flow
- group boundary delete
- group mine dynamic all region myRegion every 100
-
-Description
-"""""""""""
-
-Identify a collection of atoms as belonging to a group. The group ID
-can then be used in other commands such as :doc:`fix <fix>`,
-:doc:`compute <compute>`, :doc:`dump <dump>`, or :doc:`velocity <velocity>`
-to act on those atoms together.
-
-If the group ID already exists, the group command adds the specified
-atoms to the group.
-
-.. note::
-
- By default groups are static, meaning the atoms are permanently
- assigned to the group. For example, if the *region* style is used to
- assign atoms to a group, the atoms will remain in the group even if
- they later move out of the region. As explained below, the *dynamic*
- style can be used to make a group dynamic so that a periodic
- determination is made as to which atoms are in the group. Since many
- LAMMPS commands operate on groups of atoms, you should think carefully
- about whether making a group dynamic makes sense for your model.
-
-A group with the ID *all* is predefined. All atoms belong to this
-group. This group cannot be deleted, or made dynamic.
-
-The *delete* style removes the named group and un-assigns all atoms
-that were assigned to that group. Since there is a restriction (see
-below) that no more than 32 groups can be defined at any time, the
-*delete* style allows you to remove groups that are no longer needed,
-so that more can be specified. You cannot delete a group if it has
-been used to define a current :doc:`fix <fix>` or :doc:`compute <compute>`
-or :doc:`dump <dump>`.
-
-The *clear* style un-assigns all atoms that were assigned to that
-group. This may be dangerous to do during a simulation run,
-e.g. using the :doc:`run every <run>` command if a fix or compute or
-other operation expects the atoms in the group to remain constant, but
-LAMMPS does not check for this.
-
-The *region* style puts all atoms in the region volume into the group.
-Note that this is a static one-time assignment. The atoms remain
-assigned (or not assigned) to the group even in they later move out of
-the region volume.
-
-The *type*, *id*, and *molecule* styles put all atoms with the
-specified atom types, atom IDs, or molecule IDs into the group. These
-3 styles can use arguments specified in one of two formats.
-
-The first format is a list of values (types or IDs). For example, the
-2nd command in the examples above puts all atoms of type 3 or 4 into
-the group named *water*. Each entry in the list can be a
-colon-separated sequence A:B or A:B:C, as in two of the examples
-above. A "sequence" generates a sequence of values (types or IDs),
-with an optional increment. The first example with 500:1000 has the
-default increment of 1 and would add all atom IDs from 500 to 1000
-(inclusive) to the group sub, along with 10,25,50 since they also
-appear in the list of values. The second example with 100:10000:10
-uses an increment of 10 and would thus would add atoms IDs
-100,110,120, ... 9990,10000 to the group sub.
-
-The second format is a *logical* followed by one or two values (type
-or ID). The 7 valid logicals are listed above. All the logicals
-except <> take a single argument. The 3rd example above adds all
-atoms with IDs from 1 to 150 to the group named *sub*. The logical <>
-means "between" and takes 2 arguments. The 4th example above adds all
-atoms belonging to molecules with IDs from 50 to 250 (inclusive) to
-the group named polyA.
-
-The *variable* style evaluates a variable to determine which atoms to
-add to the group. It must be an :doc:`atom-style variable <variable>`
-previously defined in the input script. If the variable evaluates
-to a non-zero value for a particular atom, then that atom is added
-to the specified group.
-
-Atom-style variables can specify formulas that include thermodynamic
-quantities, per-atom values such as atom coordinates, or per-atom
-quantities calculated by computes, fixes, or other variables. They
-can also include Boolean logic where 2 numeric values are compared to
-yield a 1 or 0 (effectively a true or false). Thus using the
-*variable* style, is a general way to flag specific atoms to include
-or exclude from a group.
-
-For example, these lines define a variable "eatom" that calculates the
-potential energy of each atom and includes it in the group if its
-potential energy is above the threshhold value -3.0.
-
-.. parsed-literal::
-
- compute 1 all pe/atom
- compute 2 all reduce sum c_1
- thermo_style custom step temp pe c_2
- run 0
-
-.. parsed-literal::
-
- variable eatom atom "c_1 > -3.0"
- group hienergy variable eatom
-
-Note that these lines
-
-.. parsed-literal::
-
- compute 2 all reduce sum c_1
- thermo_style custom step temp pe c_2
- run 0
-
-are necessary to insure that the "eatom" variable is current when the
-group command invokes it. Because the eatom variable computes the
-per-atom energy via the pe/atom compute, it will only be current if a
-run has been performed which evaluated pairwise energies, and the
-pe/atom compute was actually invoked during the run. Printing the
-thermodyanmic info for compute 2 insures that this is the case, since
-it sums the pe/atom compute values (in the reduce compute) to output
-them to the screen. See the "Variable Accuracy" section of the
-:doc:`variable <variable>` doc page for more details on insuring that
-variables are current when they are evaluated between runs.
-
-The *include* style with its arg *molecule* adds atoms to a group that
-have the same molecule ID as atoms already in the group. The molecule
-ID = 0 is ignored in this operation, since it is assumed to flag
-isolated atoms that are not part of molecules. An example of where
-this operation is useful is if the *region* style has been used
-previously to add atoms to a group that are within a geometric region.
-If molecules straddle the region boundary, then atoms outside the
-region that are part of molecules with atoms inside the region will
-not be in the group. Using the group command a 2nd time with *include
-molecule* will add those atoms that are outside the region to the
-group.
-
-.. note::
-
- The *include molecule* operation is relatively expensive in a
- parallel sense. This is because it requires communication of relevant
- molecule IDs between all the processors and each processor to loop
- over its atoms once per processor, to compare its atoms to the list of
- molecule IDs from every other processor. Hence it scales as N, rather
- than N/P as most of the group operations do, where N is the number of
- atoms, and P is the number of processors.
-
-The *subtract* style takes a list of two or more existing group names
-as arguments. All atoms that belong to the 1st group, but not to any
-of the other groups are added to the specified group.
-
-The *union* style takes a list of one or more existing group names as
-arguments. All atoms that belong to any of the listed groups are
-added to the specified group.
-
-The *intersect* style takes a list of two or more existing group names
-as arguments. Atoms that belong to every one of the listed groups are
-added to the specified group.
-
-
-----------
-
-
-The *dynamic* style flags an existing or new group as dynamic. This
-means atoms will be (re)assigned to the group periodically as a
-simulation runs. This is in contrast to static groups where atoms are
-permanently assigned to the group. The way the assignment occurs is
-as follows. Only atoms in the group specified as the parent group via
-the parent-ID are assigned to the dynamic group before the following
-conditions are applied. If the *region* keyword is used, atoms not in
-the specified region are removed from the dynamic group. If the *var*
-keyword is used, the variable name must be an atom-style or
-atomfile-style variable. The variable is evaluated and atoms whose
-per-atom values are 0.0, are removed from the dynamic group.
-
-The assignment of atoms to a dynamic group is done at the beginning of
-each run and on every timestep that is a multiple of *N*, which is the
-argument for the *every* keyword (N = 1 is the default). For an
-energy minimization, via the :doc:`minimize <minimize>` command, an
-assignement is made at the beginning of the minimization, but not
-during the iterations of the minimizer.
-
-The point in the timestep at which atoms are assigned to a dynamic
-group is after the initial stage of velocity Verlet time integration
-has been performed, and before neighbor lists or forces are computed.
-This is the point in the timestep where atom positions have just
-changed due to the time integration, so the region criterion should be
-accurate, if applied.
-
-.. note::
-
- If the *region* keyword is used to determine what atoms are in
- the dynamic group, atoms can move outside of the simulation box
- between reneighboring events. Thus if you want to include all atoms
- on the left side of the simulation box, you probably want to set the
- left boundary of the region to be outside the simulation box by some
- reasonable amount (e.g. up to the cutoff of the potential), else they
- may be excluded from the dynamic region.
-
-Here is an example of using a dynamic group to shrink the set of atoms
-being integrated by using a spherical region with a variable radius
-(shrinking from 18 to 5 over the course of the run). This could be
-used to model a quench of the system, freezing atoms outside the
-shrinking sphere, then converting the remaining atoms to a static
-group and running further.
-
-.. parsed-literal::
-
- variable nsteps equal 5000
- variable rad equal 18-(step/v_nsteps)*(18-5)
- region ss sphere 20 20 0 v_rad
- group mobile dynamic all region ss
- fix 1 mobile nve
- run ${nsteps}
- group mobile static
- run ${nsteps}
-
-.. note::
-
- All fixes and computes take a group ID as an argument, but they
- do not all allow for use of a dynamic group. If you get an error
- message that this is not allowed, but feel that it should be for the
- fix or compute in question, then please post your reasoning to the
- LAMMPS mail list and we can change it.
-
-The *static* style removes the setting for a dynamic group, converting
-it to a static group (the default). The atoms in the static group are
-those currently in the dynamic group.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-There can be no more than 32 groups defined at one time, including
-"all".
-
-The parent group of a dynamic group cannot itself be a dynamic group.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`fix <fix>`, :doc:`region <region>`,
-:doc:`velocity <velocity>`
-
-Default
-"""""""
-
-All atoms belong to the "all" group.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/group2ndx.txt b/doc/_sources/group2ndx.txt
deleted file mode 100644
index 52db7cb19..000000000
--- a/doc/_sources/group2ndx.txt
+++ /dev/null
@@ -1,77 +0,0 @@
-.. index:: group2ndx
-
-group2ndx command
-=================
-
-ndx2group command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- group2ndx file group-ID ...
- ndx2group file group-ID ...
-
-* file = name of index file to write out or read in
-* zero or more group IDs may be appended
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- group2ndx allindex.ndx
- group2ndx someindex.ndx upper lower mobile
- ndx2group someindex.ndx
- ndx2group someindex.ndx mobile
-
-Description
-"""""""""""
-
-Write or read a Gromacs style index file in text format that associates
-atom IDs with the corresponding group definitions. This index file can be
-used with in combination with Gromacs analysis tools or to import group
-definitions into the :doc:`fix colvars <fix_colvars>` input file. It can
-also be used to save and restore group definitions for static groups.
-
-The *group2ndx* command will write group definitions to an index file.
-Without specifying any group IDs, all groups will be written to the index
-file. When specifying group IDs, only those groups will be written to the
-index file. In order to follow the Gromacs conventions, the group *all*
-will be renamed to *System* in the index file.
-
-The *ndx2group* command will create of update group definitions from those
-stored in an index file. Without specifying any group IDs, all groups except
-*System* will be read from the index file and the corresponding groups
-recreated. If a group of the same name already exists, it will be completely
-reset. When specifying group IDs, those groups, if present, will be read
-from the index file and restored.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command requires that atoms have atom IDs, since this is the
-information that is written to the index file.
-
-These commands are part of the USER-COLVARS package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`group <group>`, :doc:`dump <dump>`, :doc:`fix colvars <fix_colvars>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/if.txt b/doc/_sources/if.txt
deleted file mode 100644
index f33ec9984..000000000
--- a/doc/_sources/if.txt
+++ /dev/null
@@ -1,214 +0,0 @@
-.. index:: if
-
-if command
-==========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- if boolean then t1 t2 ... elif boolean f1 f2 ... elif boolean f1 f2 ... else e1 e2 ...
-
-* boolean = a Boolean expression evaluated as TRUE or FALSE (see below)
-* then = required word
-* t1,t2,...,tN = one or more LAMMPS commands to execute if condition is met, each enclosed in quotes
-* elif = optional word, can appear multiple times
-* f1,f2,...,fN = one or more LAMMPS commands to execute if elif condition is met, each enclosed in quotes (optional arguments)
-* else = optional argument
-* e1,e2,...,eN = one or more LAMMPS commands to execute if no condition is met, each enclosed in quotes (optional arguments)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- if "${steps} > 1000" then quit
- if "${myString} == a10" then quit
- if "$x <= $y" then "print X is smaller = $x" else "print Y is smaller = $y"
- if "(${eng} > 0.0) || ($n < 1000)" then &
- "timestep 0.005" &
- elif $n<10000 &
- "timestep 0.01" &
- else &
- "timestep 0.02" &
- "print 'Max step reached'"
- if "${eng} > ${eng_previous}" then "jump file1" else "jump file2"
-
-Description
-"""""""""""
-
-This command provides an if-then-else capability within an input
-script. A Boolean expression is evaluted and the result is TRUE or
-FALSE. Note that as in the examples above, the expression can contain
-variables, as defined by the :doc:`variable <variable>` command, which
-will be evaluated as part of the expression. Thus a user-defined
-formula that reflects the current state of the simulation can be used
-to issue one or more new commands.
-
-If the result of the Boolean expression is TRUE, then one or more
-commands (t1, t2, ..., tN) are executed. If it is FALSE, then Boolean
-expressions associated with successive elif keywords are evaluated
-until one is found to be true, in which case its commands (f1, f2,
-..., fN) are executed. If no Boolean expression is TRUE, then the
-commands associated with the else keyword, namely (e1, e2, ..., eN),
-are executed. The elif and else keywords and their associated
-commands are optional. If they aren't specified and the initial
-Boolean expression is FALSE, then no commands are executed.
-
-The syntax for Boolean expressions is described below.
-
-Each command (t1, f1, e1, etc) can be any valid LAMMPS input script
-command, except an :doc:`include <include>` command, which is not
-allowed. If the command is more than one word, it must enclosed in
-quotes, so it will be treated as a single argument, as in the examples
-above.
-
-.. note::
-
- If a command itself requires a quoted argument (e.g. a
- :doc:`print <print>` command), then double and single quotes can be used
- and nested in the usual manner, as in the examples above and below.
- See :ref:`Section_commands 2 <cmd_2>` of the manual for
- more details on using quotes in arguments. Only one of level of
- nesting is allowed, but that should be sufficient for most use cases.
-
-Note that by using the line continuation character "&", the if command
-can be spread across many lines, though it is still a single command:
-
-.. parsed-literal::
-
- if "$a < $b" then &
- "print 'Minimum value = $a'" &
- "run 1000" &
- else &
- 'print "Minimum value = $b"' &
- "minimize 0.001 0.001 1000 10000"
-
-Note that if one of the commands to execute is :doc:`quit <quit>`, as in
-the first example above, then executing the command will cause LAMMPS
-to halt.
-
-Note that by jumping to a label in the same input script, the if
-command can be used to break out of a loop. See the :doc:`variable delete <variable>` command for info on how to delete the associated
-loop variable, so that it can be re-used later in the input script.
-
-Here is an example of a loop which checks every 1000 steps if the
-system temperature has reached a certain value, and if so, breaks out
-of the loop to finish the run. Note that any variable could be
-checked, so long as it is current on the timestep when the run
-completes. As explained on the :doc:`variable <variable>` doc page,
-this can be insured by includig the variable in thermodynamic output.
-
-.. parsed-literal::
-
- variable myTemp equal temp
- label loop
- variable a loop 1000
- run 1000
- if "${myTemp} < 300.0" then "jump SELF break"
- next a
- jump SELF loop
- label break
- print "ALL DONE"
-
-Here is an example of a double loop which uses the if and
-:doc:`jump <jump>` commands to break out of the inner loop when a
-condition is met, then continues iterating thru the outer loop.
-
-.. parsed-literal::
-
- label loopa
- variable a loop 5
- label loopb
- variable b loop 5
- print "A,B = $a,$b"
- run 10000
- if "$b > 2" then "jump SELF break"
- next b
- jump in.script loopb
- label break
- variable b delete
- next a
- jump SELF loopa
-
-
-----------
-
-
-The Boolean expressions for the if and elif keywords have a C-like
-syntax. Note that each expression is a single argument within the if
-command. Thus if you want to include spaces in the expression for
-clarity, you must enclose the entire expression in quotes.
-
-An expression is built out of numbers (which start with a digit or
-period or minus sign) or strings (which start with a letter and can
-contain alphanumeric characters or underscores):
-
-.. parsed-literal::
-
- 0.2, 100, 1.0e20, -15.4, etc
- InP, myString, a123, ab_23_cd, etc
-
-and Boolean operators:
-
-.. parsed-literal::
-
- A == B, A != B, A < B, A <= B, A > B, A >= B, A && B, A || B, !A
-
-Each A and B is a number or string or a variable reference like $a or
-${abc}, or A or B can be another Boolean expression.
-
-If a variable is used it can produce a number when evaluated, like an
-:doc:`equal-style variable <variable>`. Or it can produce a string,
-like an :doc:`index-style variable <variable>`. For an individual
-Boolean operator, A and B must both be numbers or must both be
-strings. You cannot compare a number to a string.
-
-Expressions are evaluated left to right and have the usual C-style
-precedence: the unary logical NOT operator "!" has the highest
-precedence, the 4 relational operators "<", "<=", ">", and ">=" are
-next; the two remaining relational operators "==" and "!=" are next;
-then the logical AND operator "&&"; and finally the logical OR
-operator "||" has the lowest precedence. Parenthesis can be used to
-group one or more portions of an expression and/or enforce a different
-order of evaluation than what would occur with the default precedence.
-
-When the 6 relational operators (first 6 in list above) compare 2
-numbers, they return either a 1.0 or 0.0 depending on whether the
-relationship between A and B is TRUE or FALSE. When the 6 relational
-operators compare 2 strings, they also return a 1.0 or 0.0 for TRUE or
-FALSE, but the comparison is done by the C function strcmp().
-
-When the 3 logical operators (last 3 in list above) compare 2 numbers,
-they also return either a 1.0 or 0.0 depending on whether the
-relationship between A and B is TRUE or FALSE (or just A). The
-logical AND operator will return 1.0 if both its arguments are
-non-zero, else it returns 0.0. The logical OR operator will return
-1.0 if either of its arguments is non-zero, else it returns 0.0. The
-logical NOT operator returns 1.0 if its argument is 0.0, else it
-returns 0.0. The 3 logical operators can only be used to operate on
-numbers, not on strings.
-
-The overall Boolean expression produces a TRUE result if the result is
-non-zero. If the result is zero, the expression result is FALSE.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`variable <variable>`, :doc:`print <print>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_class2.txt b/doc/_sources/improper_class2.txt
deleted file mode 100644
index d57d7f50b..000000000
--- a/doc/_sources/improper_class2.txt
+++ /dev/null
@@ -1,144 +0,0 @@
-.. index:: improper_style class2
-
-improper_style class2 command
-=============================
-
-improper_style class2/omp command
-=================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style class2
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style class2
- improper_coeff 1 100.0 0
- improper_coeff * aa 0.0 0.0 0.0 115.06 130.01 115.06
-
-Description
-"""""""""""
-
-The *class2* improper style uses the potential
-
-.. image:: Eqs/improper_class2.jpg
- :align: center
-
-where Ei is the improper term and Eaa is an angle-angle term. The 3 X
-terms in Ei are an average over 3 out-of-plane angles.
-
-The 4 atoms in an improper quadruplet (listed in the data file read by
-the :doc:`read_data <read_data>` command) are ordered I,J,K,L. X_IJKL
-refers to the angle between the plane of I,J,K and the plane of J,K,L,
-and the bond JK lies in both planes. Similarly for X_KJLI and X_LJIK.
-Note that atom J appears in the common bonds (JI, JK, JL) of all 3 X
-terms. Thus J (the 2nd atom in the quadruplet) is the atom of
-symmetry in the 3 X angles.
-
-The subscripts on the various theta's refer to different combinations
-of 3 atoms (I,J,K,L) used to form a particular angle. E.g. Theta_IJL
-is the angle formed by atoms I,J,L with J in the middle. Theta1,
-theta2, theta3 are the equilibrium positions of those angles. Again,
-atom J (the 2nd atom in the quadruplet) is the atom of symmetry in the
-theta angles, since it is always the center atom.
-
-Since atom J is the atom of symmetry, normally the bonds J-I, J-K, J-L
-would exist for an improper to be defined between the 4 atoms, but
-this is not required.
-
-See :ref:`(Sun) <Sun>` for a description of the COMPASS class2 force field.
-
-Coefficients for the Ei and Eaa formulas must be defined for each
-improper type via the :doc:`improper_coeff <improper_coeff>` command as
-in the example above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands.
-
-These are the 2 coefficients for the Ei formula:
-
-* K (energy/radian^2)
-* X0 (degrees)
-
-X0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-
-For the Eaa formula, each line in a
-:doc:`improper_coeff <improper_coeff>` command in the input script lists
-7 coefficients, the first of which is "aa" to indicate they are
-AngleAngle coefficients. In a data file, these coefficients should be
-listed under a "AngleAngle Coeffs" heading and you must leave out the
-"aa", i.e. only list 6 coefficients after the improper type.
-
-* aa
-* M1 (energy/distance)
-* M2 (energy/distance)
-* M3 (energy/distance)
-* theta1 (degrees)
-* theta2 (degrees)
-* theta3 (degrees)
-
-The theta values are specified in degrees, but LAMMPS converts them to
-radians internally; hence the units of M are in energy/radian^2.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-CLASS2 package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Sun:
-
-
-
-**(Sun)** Sun, J Phys Chem B 102, 7338-7364 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_coeff.txt b/doc/_sources/improper_coeff.txt
deleted file mode 100644
index 1e7390778..000000000
--- a/doc/_sources/improper_coeff.txt
+++ /dev/null
@@ -1,115 +0,0 @@
-.. index:: improper_coeff
-
-improper_coeff command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_coeff N args
-
-* N = improper type (see asterisk form below)
-* args = coefficients for one or more improper types
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_coeff 1 300.0 0.0
- improper_coeff * 80.2 -1 2
- improper_coeff *4 80.2 -1 2
-
-Description
-"""""""""""
-
-Specify the improper force field coefficients for one or more improper
-types. The number and meaning of the coefficients depends on the
-improper style. Improper coefficients can also be set in the data
-file read by the :doc:`read_data <read_data>` command or in a restart
-file.
-
-N can be specified in one of two ways. An explicit numeric value can
-be used, as in the 1st example above. Or a wild-card asterisk can be
-used to set the coefficients for multiple improper types. This takes
-the form "*" or "*n" or "n*" or "m*n". If N = the number of improper
-types, then an asterisk with no numeric values means all types from 1
-to N. A leading asterisk means all types from 1 to n (inclusive). A
-trailing asterisk means all types from n to N (inclusive). A middle
-asterisk means all types from m to n (inclusive).
-
-Note that using an improper_coeff command can override a previous
-setting for the same improper type. For example, these commands set
-the coeffs for all improper types, then overwrite the coeffs for just
-improper type 2:
-
-.. parsed-literal::
-
- improper_coeff * 300.0 0.0
- improper_coeff 2 50.0 0.0
-
-A line in a data file that specifies improper coefficients uses the
-exact same format as the arguments of the improper_coeff command in an
-input script, except that wild-card asterisks should not be used since
-coefficients for all N types must be listed in the file. For example,
-under the "Improper Coeffs" section of a data file, the line that
-corresponds to the 1st example above would be listed as
-
-.. parsed-literal::
-
- 1 300.0 0.0
-
-The :doc:`improper_style class2 <improper_class2>` is an exception to
-this rule, in that an additional argument is used in the input script
-to allow specification of the cross-term coefficients. See its doc
-page for details.
-
-
-----------
-
-
-Here is an alphabetic list of improper styles defined in LAMMPS. Click on
-the style to display the formula it computes and coefficients
-specified by the associated :doc:`improper_coeff <improper_coeff>` command.
-
-Note that there are also additional improper styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the improper section of
-:ref:`this page <cmd_5>`.
-
-* :doc:`improper_style none <improper_none>` - turn off improper interactions
-* :doc:`improper_style hybrid <improper_hybrid>` - define multiple styles of improper interactions
-
-* :doc:`improper_style class2 <improper_class2>` - COMPASS (class 2) improper
-* :doc:`improper_style cvff <improper_cvff>` - CVFF improper
-* :doc:`improper_style harmonic <improper_harmonic>` - harmonic improper
-* :doc:`improper_style umbrella <improper_umbrella>` - DREIDING improper
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command must come after the simulation box is defined by a
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`, or
-:doc:`create_box <create_box>` command.
-
-An improper style must be defined before any improper coefficients are
-set, either in the input script or in a data file.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_style <improper_style>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_cossq.txt b/doc/_sources/improper_cossq.txt
deleted file mode 100644
index c456838aa..000000000
--- a/doc/_sources/improper_cossq.txt
+++ /dev/null
@@ -1,104 +0,0 @@
-.. index:: improper_style cossq
-
-improper_style cossq command
-============================
-
-improper_style cossq/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style cossq
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style cossq
- improper_coeff 1 4.0 0.0
-
-Description
-"""""""""""
-
-The *cossq* improper style uses the potential
-
-.. image:: Eqs/improper_cossq.jpg
- :align: center
-
-where x is the improper angle, x0 is its equilibrium value, and K is a
-prefactor.
-
-If the 4 atoms in an improper quadruplet (listed in the data file read
-by the :doc:`read_data <read_data>` command) are ordered I,J,K,L then X
-is the angle between the plane of I,J,K and the plane of J,K,L.
-Alternatively, you can think of atoms J,K,L as being in a plane, and
-atom I above the plane, and X as a measure of how far out-of-plane I
-is with respect to the other 3 atoms.
-
-Note that defining 4 atoms to interact in this way, does not mean that
-bonds necessarily exist between I-J, J-K, or K-L, as they would in a
-linear dihedral. Normally, the bonds I-J, I-K, I-L would exist for an
-improper to be defined between the 4 atoms.
-
-The following coefficients must be defined for each improper type via
-the :doc:`improper_coeff <improper_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* K (energy/radian^2)
-* X0 (degrees)
-
-X0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_cvff.txt b/doc/_sources/improper_cvff.txt
deleted file mode 100644
index afd823dcc..000000000
--- a/doc/_sources/improper_cvff.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-.. index:: improper_style cvff
-
-improper_style cvff command
-===========================
-
-improper_style cvff/intel command
-=================================
-
-improper_style cvff/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style cvff
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style cvff
- improper_coeff 1 80.0 -1 4
-
-Description
-"""""""""""
-
-The *cvff* improper style uses the potential
-
-.. image:: Eqs/improper_cvff.jpg
- :align: center
-
-where phi is the improper dihedral angle.
-
-If the 4 atoms in an improper quadruplet (listed in the data file read
-by the :doc:`read_data <read_data>` command) are ordered I,J,K,L then
-the improper dihedral angle is between the plane of I,J,K and the
-plane of J,K,L. Note that because this is effectively a dihedral
-angle, the formula for this improper style is the same as for
-:doc:`dihedral_style harmonic <dihedral_harmonic>`.
-
-Note that defining 4 atoms to interact in this way, does not mean that
-bonds necessarily exist between I-J, J-K, or K-L, as they would in a
-linear dihedral. Normally, the bonds I-J, I-K, I-L would exist for an
-improper to be defined between the 4 atoms.
-
-The following coefficients must be defined for each improper type via
-the :doc:`improper_coeff <improper_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* K (energy)
-* d (+1 or -1)
-* n (0,1,2,3,4,6)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_distance.txt b/doc/_sources/improper_distance.txt
deleted file mode 100644
index 125b1f82c..000000000
--- a/doc/_sources/improper_distance.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-.. index:: improper_style distance
-
-improper_style distance command
-===============================
-
-Syntax
-""""""
-
-improper_style distance
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style distance
- improper_coeff 1 80.0 100.0
-
-Description
-"""""""""""
-
-The *distance* improper style uses the potential
-
-.. image:: Eqs/improper_dist-1.jpg
- :align: center
-
-where d is the distance between the central atom and the plane formed
-by the other three atoms. If the 4 atoms in an improper quadruplet
-(listed in the data file read by the :doc:`read_data <read_data>`
-command) are ordered I,J,K,L then the I-atom is assumed to be the
-central atom.
-
-.. image:: JPG/improper_distance.jpg
- :align: center
-
-Note that defining 4 atoms to interact in this way, does not mean that
-bonds necessarily exist between I-J, J-K, or K-L, as they would in a
-linear dihedral. Normally, the bonds I-J, I-K, I-L would exist for an
-improper to be defined between the 4 atoms.
-
-The following coefficients must be defined for each improper type via
-the improper_coeff command as in the example above, or in the data
-file or restart files read by the read_data or read_restart commands:
-
-* K_2 (energy/distance^2)
-* K_4 (energy/distance^4)
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_fourier.txt b/doc/_sources/improper_fourier.txt
deleted file mode 100644
index c77b9fd13..000000000
--- a/doc/_sources/improper_fourier.txt
+++ /dev/null
@@ -1,97 +0,0 @@
-.. index:: improper_style fourier
-
-improper_style fourier command
-==============================
-
-improper_style fourier/omp command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style fourier
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style fourier
- improper_coeff 1 100.0 180.0
-
-Description
-"""""""""""
-
-The *fourier* improper style uses the following potential:
-
-.. image:: Eqs/improper_fourier.jpg
- :align: center
-
-where K is the force constant and omega is the angle between the IL
-axis and the IJK plane:
-
-.. image:: Eqs/umbrella.jpg
- :align: center
-
-If all parameter (see bellow) is not zero, the all the three possible angles will taken in account.
-
-The following coefficients must be defined for each improper type via
-the :doc:`improper_coeff <improper_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* K (energy)
-* C0 (real)
-* C1 (real)
-* C2 (real)
-* all (integer >= 0)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER_MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_harmonic.txt b/doc/_sources/improper_harmonic.txt
deleted file mode 100644
index 29a52bce7..000000000
--- a/doc/_sources/improper_harmonic.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-.. index:: improper_style harmonic
-
-improper_style harmonic command
-===============================
-
-improper_style harmonic/intel command
-=====================================
-
-improper_style harmonic/kk command
-==================================
-
-improper_style harmonic/omp command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style harmonic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style harmonic
- improper_coeff 1 100.0 0
-
-Description
-"""""""""""
-
-The *harmonic* improper style uses the potential
-
-.. image:: Eqs/improper_harmonic.jpg
- :align: center
-
-where X is the improper angle, X0 is its equilibrium value, and K is a
-prefactor. Note that the usual 1/2 factor is included in K.
-
-If the 4 atoms in an improper quadruplet (listed in the data file read
-by the :doc:`read_data <read_data>` command) are ordered I,J,K,L then X
-is the angle between the plane of I,J,K and the plane of J,K,L.
-Alternatively, you can think of atoms J,K,L as being in a plane, and
-atom I above the plane, and X as a measure of how far out-of-plane I
-is with respect to the other 3 atoms.
-
-Note that defining 4 atoms to interact in this way, does not mean that
-bonds necessarily exist between I-J, J-K, or K-L, as they would in a
-linear dihedral. Normally, the bonds I-J, I-K, I-L would exist for an
-improper to be defined between the 4 atoms.
-
-The following coefficients must be defined for each improper type via
-the :doc:`improper_coeff <improper_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* K (energy/radian^2)
-* X0 (degrees)
-
-X0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_hybrid.txt b/doc/_sources/improper_hybrid.txt
deleted file mode 100644
index 728a46bfd..000000000
--- a/doc/_sources/improper_hybrid.txt
+++ /dev/null
@@ -1,80 +0,0 @@
-.. index:: improper_style hybrid
-
-improper_style hybrid command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style hybrid style1 style2 ...
-
-* style1,style2 = list of one or more improper styles
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style hybrid harmonic helix
- improper_coeff 1 harmonic 120.0 30
- improper_coeff 2 cvff 20.0 -1 2
-
-Description
-"""""""""""
-
-The *hybrid* style enables the use of multiple improper styles in one
-simulation. An improper style is assigned to each improper type. For
-example, impropers in a polymer flow (of improper type 1) could be
-computed with a *harmonic* potential and impropers in the wall
-boundary (of improper type 2) could be computed with a *cvff*
-potential. The assignment of improper type to style is made via the
-:doc:`improper_coeff <improper_coeff>` command or in the data file.
-
-In the improper_coeff command, the first coefficient sets the improper
-style and the remaining coefficients are those appropriate to that
-style. In the example above, the 2 improper_coeff commands would set
-impropers of improper type 1 to be computed with a *harmonic*
-potential with coefficients 120.0, 30 for K, X0. Improper type 2
-would be computed with a *cvff* potential with coefficients 20.0, -1,
-2 for K, d, n.
-
-If the improper *class2* potential is one of the hybrid styles, it
-requires additional AngleAngle coefficients be specified in the data
-file. These lines must also have an additional "class2" argument
-added after the improper type. For improper types which are assigned
-to other hybrid styles, use the style name (e.g. "harmonic")
-appropriate to that style. The AngleAngle coeffs for that improper
-type will then be ignored.
-
-An improper style of *none* can be specified as the 2nd argument to
-the improper_coeff command, if you desire to turn off certain improper
-types.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Unlike other improper styles, the hybrid improper style does not store
-improper coefficient info for individual sub-styles in a :doc:`binary restart files <restart>`. Thus when retarting a simulation from a
-restart file, you need to re-specify improper_coeff commands.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_none.txt b/doc/_sources/improper_none.txt
deleted file mode 100644
index 86efc8003..000000000
--- a/doc/_sources/improper_none.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-.. index:: improper_style none
-
-improper_style none command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style none
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style none
-
-Description
-"""""""""""
-
-Using an improper style of none means imroper forces and energies are
-not computed, even if quadruplets of improper atoms were listed in the
-data file read by the :doc:`read_data <read_data>` command.
-
-See the :doc:`improper_style zero <improper_zero>` command for a way to
-calculate improper statistics, but compute no improper interactions.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_style zero <improper_zero>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_ring.txt b/doc/_sources/improper_ring.txt
deleted file mode 100644
index 665836a62..000000000
--- a/doc/_sources/improper_ring.txt
+++ /dev/null
@@ -1,113 +0,0 @@
-.. index:: improper_style ring
-
-improper_style ring command
-===========================
-
-improper_style ring/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style ring
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style ring
- improper_coeff 1 8000 70.5
-
-Description
-"""""""""""
-
-The *ring* improper style uses the potential
-
-.. image:: Eqs/improper_ring.jpg
- :align: center
-
-where K is a prefactor, theta is the angle formed by the atoms
-specified by (i,j,k,l) indices and theta0 its equilibrium value.
-
-If the 4 atoms in an improper quadruplet (listed in the data file read
-by the :doc:`read_data <read_data>` command) are ordered i,j,k,l then
-theta_*ijl* is the angle between atoms i,j and l, theta_*ijk* is the
-angle between atoms i,j and k, theta_*kjl* is the angle between atoms
-j,k, and l.
-
-The "ring" improper style implements the improper potential introduced
-by Destree et al., in Equation (9) of :ref:`(Destree) <Destree>`. This
-potential does not affect small amplitude vibrations but is used in an
-ad-hoc way to prevent the onset of accidentially large amplitude
-fluctuations leading to the occurrence of a planar conformation of the
-three bonds i-j, j-k and j-l, an intermediate conformation toward the
-chiral inversion of a methine carbon. In the "Impropers" section of
-data file four atoms: i, j, k and l are specified with i,j and l lying
-on the backbone of the chain and k specifying the chirality of j.
-
-The following coefficients must be defined for each improper type via
-the :doc:`improper_coeff <improper_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* K (energy/radian^2)
-* theta0 (degrees)
-
-theta0 is specified in degrees, but LAMMPS converts it to radians
-internally; hence the units of K are in energy/radian^2.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-.. _Destree:
-
-
-
-**(Destree)** M. Destree, F. Laupretre, A. Lyulin, and J.-P. Ryckaert,
-J Chem Phys, 112, 9632 (2000).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_style.txt b/doc/_sources/improper_style.txt
deleted file mode 100644
index 8acf745f0..000000000
--- a/doc/_sources/improper_style.txt
+++ /dev/null
@@ -1,113 +0,0 @@
-.. index:: improper_style
-
-improper_style command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style style
-
-* style = *none* or *hybrid* or *class2* or *cvff* or *harmonic*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style harmonic
- improper_style cvff
- improper_style hybrid cvff harmonic
-
-Description
-"""""""""""
-
-Set the formula(s) LAMMPS uses to compute improper interactions
-between quadruplets of atoms, which remain in force for the duration
-of the simulation. The list of improper quadruplets is read in by a
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>` command
-from a data or restart file. Note that the ordering of the 4 atoms in
-an improper quadruplet determines the the definition of the improper
-angle used in the formula for each style. See the doc pages of
-individual styles for details.
-
-Hybrid models where impropers are computed using different improper
-potentials can be setup using the *hybrid* improper style.
-
-The coefficients associated with an improper style can be specified in
-a data or restart file or via the :doc:`improper_coeff <improper_coeff>`
-command.
-
-All improper potentials store their coefficient data in binary restart
-files which means improper_style and
-:doc:`improper_coeff <improper_coeff>` commands do not need to be
-re-specified in an input script that restarts a simulation. See the
-:doc:`read_restart <read_restart>` command for details on how to do
-this. The one exception is that improper_style *hybrid* only stores
-the list of sub-styles in the restart file; improper coefficients need
-to be re-specified.
-
-.. note::
-
- When both an improper and pair style is defined, the
- :doc:`special_bonds <special_bonds>` command often needs to be used to
- turn off (or weight) the pairwise interaction that would otherwise
- exist between a group of 4 bonded atoms.
-
-
-----------
-
-
-Here is an alphabetic list of improper styles defined in LAMMPS.
-Click on the style to display the formula it computes and coefficients
-specified by the associated :doc:`improper_coeff <improper_coeff>`
-command.
-
-Note that there are also additional improper styles submitted by users
-which are included in the LAMMPS distribution. The list of these with
-links to the individual styles are given in the improper section of
-:ref:`this page <cmd_5>`.
-
-* :doc:`improper_style none <improper_none>` - turn off improper interactions
-* :doc:`improper_style zero <improper_zero>` - topology but no interactions
-* :doc:`improper_style hybrid <improper_hybrid>` - define multiple styles of improper interactions
-
-* :doc:`improper_style class2 <improper_class2>` - COMPASS (class 2) improper
-* :doc:`improper_style cvff <improper_cvff>` - CVFF improper
-* :doc:`improper_style harmonic <improper_harmonic>` - harmonic improper
-* :doc:`improper_style umbrella <improper_umbrella>` - DREIDING improper
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Improper styles can only be set for atom_style choices that allow
-impropers to be defined.
-
-Most improper styles are part of the MOLECULE package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-The doc pages for individual improper potentials tell if it is part of
-a package.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- improper_style none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_umbrella.txt b/doc/_sources/improper_umbrella.txt
deleted file mode 100644
index ace10272d..000000000
--- a/doc/_sources/improper_umbrella.txt
+++ /dev/null
@@ -1,110 +0,0 @@
-.. index:: improper_style umbrella
-
-improper_style umbrella command
-===============================
-
-improper_style umbrella/omp command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style umbrella
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style umbrella
- improper_coeff 1 100.0 180.0
-
-Description
-"""""""""""
-
-The *umbrella* improper style uses the following potential, which is
-commonly referred to as a classic inversion and used in the
-:ref:`DREIDING <howto_4>` force field:
-
-.. image:: Eqs/improper_umbrella.jpg
- :align: center
-
-where K is the force constant and omega is the angle between the IL
-axis and the IJK plane:
-
-.. image:: Eqs/umbrella.jpg
- :align: center
-
-If omega0 = 0 the potential term has a minimum for the planar
-structure. Otherwise it has two minima at +/- omega0, with a barrier
-in between.
-
-See :ref:`(Mayo) <Mayo>` for a description of the DREIDING force field.
-
-The following coefficients must be defined for each improper type via
-the :doc:`improper_coeff <improper_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* K (energy)
-* omega0 (degrees)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This improper style can only be used if LAMMPS was built with the
-MOLECULE package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`improper_coeff <improper_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mayo:
-
-
-
-**(Mayo)** Mayo, Olfason, Goddard III, J Phys Chem, 94, 8897-8909
-(1990),
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/improper_zero.txt b/doc/_sources/improper_zero.txt
deleted file mode 100644
index 486376928..000000000
--- a/doc/_sources/improper_zero.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-.. index:: improper_style zero
-
-improper_style zero command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- improper_style zero *nocoeff*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- improper_style zero
- improper_style zero nocoeff
- improper_coeff *
-
-Description
-"""""""""""
-
-Using an improper style of zero means improper forces and energies are
-not computed, but the geometry of improper quadruplets is still
-accessible to other commands.
-
-As an example, the :doc:`compute improper/local <compute_improper_local>` command can be used to
-compute the chi values for the list of quadruplets of improper atoms
-listed in the data file read by the :doc:`read_data <read_data>`
-command. If no improper style is defined, this command cannot be
-used.
-
-The optional *nocoeff* flag allows to read data files with a ImproperCoeff
-section for any improper style. Similarly, any improper_coeff commands
-will only be checked for the improper type number and the rest ignored.
-
-Note that the :doc:`improper_coeff <improper_coeff>` command must be
-used for all improper types, though no additional values are
-specified.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-:doc:`improper_style none <improper_none>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/include.txt b/doc/_sources/include.txt
deleted file mode 100644
index 9dce22029..000000000
--- a/doc/_sources/include.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-.. index:: include
-
-include command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- include file
-
-* file = filename of new input script to switch to
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- include newfile
- include in.run2
-
-Description
-"""""""""""
-
-This command opens a new input script file and begins reading LAMMPS
-commands from that file. When the new file is finished, the original
-file is returned to. Include files can be nested as deeply as
-desired. If input script A includes script B, and B includes A, then
-LAMMPS could run for a long time.
-
-If the filename is a variable (see the :doc:`variable <variable>`
-command), different processor partitions can run different input
-scripts.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`variable <variable>`, :doc:`jump <jump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/info.txt b/doc/_sources/info.txt
deleted file mode 100644
index edbce761e..000000000
--- a/doc/_sources/info.txt
+++ /dev/null
@@ -1,97 +0,0 @@
-.. index:: info
-
-info command
-============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- info args
-
-args = one or more of the following keywords: *out*, *all*, *system*, *communication*, *computes*, *dumps*, *fixes*, *groups*, *regions*, *variables*, *time*, or *configuration*
- *out* values = *screen*, *log*, *append* filename, *overwrite* filename:ul
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- info system
- info groups computes variables
- info all out log
- info all out append info.txt
-
-Description
-"""""""""""
-
-Print out information about the current internal state of the running
-LAMMPS process. This can be helpful when debugging or validating
-complex input scripts. Several output categories are available and
-one or more output category may be requested.
-
-The *out* flag controls where the output is sent. It can only be sent
-to one target. By default this is the screen, if it is active. The
-*log* argument selects the log file instead. With the *append* and
-*overwrite* option, followed by a filename, the output is written
-to that file, which is either appended to or overwritten, respectively.
-
-The *all* flag activates printing all categories listed below.
-
-The *system* category prints a general system overview listing. This
-includes the unit style, atom style, number of atoms, bonds, angles,
-dihedrals, and impropers and the number of the respective types, box
-dimensions and properties, force computing styles and more.
-
-The *communication* category prints a variety of information about
-communication and parallelization: the MPI library version level,
-the number of MPI ranks and OpenMP threads, the communication style
-and layout, the processor grid dimensions, ghost atom communication
-mode, cutoff, and related settings.
-
-The *computes* category prints a list of all currently defined
-computes, their IDs and styles and groups they operate on.
-
-The *dumps* category prints a list of all currently active dumps,
-their IDs, styles, filenames, groups, and dump frequencies.
-
-The *fixes* category prints a list of all currently defined fixes,
-their IDs and styles and groups they operate on.
-
-The *groups* category prints a list of all currently defined groups.
-
-The *regions* category prints a list of all currently defined regions,
-their IDs and styles and whether "inside" or "outside" atoms are
-selected.
-
-The *variables* category prints a list of all currently defined
-variables, their names, styles, definition and last computed value, if
-available.
-
-The *time* category prints the accumulated CPU and wall time for the
-process that writes output (usually MPI rank 0).
-
-The *configuration* command prints some information about the LAMMPS
-version and architection and OS it is run on. Where supported, also
-information about the memory consumption provided by the OS is
-reported.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`print <print>`
-
-Default
-"""""""
-
-The *out* option has the default *screen*.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/jump.txt b/doc/_sources/jump.txt
deleted file mode 100644
index 600909352..000000000
--- a/doc/_sources/jump.txt
+++ /dev/null
@@ -1,156 +0,0 @@
-.. index:: jump
-
-jump command
-============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- jump file label
-
-* file = filename of new input script to switch to
-* label = optional label within file to jump to
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- jump newfile
- jump in.run2 runloop
- jump SELF runloop
-
-Description
-"""""""""""
-
-This command closes the current input script file, opens the file with
-the specified name, and begins reading LAMMPS commands from that file.
-Unlike the :doc:`include <include>` command, the original file is not
-returned to, although by using multiple jump commands it is possible
-to chain from file to file or back to the original file.
-
-If the word "SELF" is used for the filename, then the current input
-script is re-opened and read again.
-
-.. note::
-
- The SELF option is not guaranteed to work when the current input
- script is being read through stdin (standard input), e.g.
-
-.. parsed-literal::
-
- lmp_g++ < in.script
-
-since the SELF option invokes the C-library rewind() call, which may
-not be supported for stdin on some systems or by some MPI
-implementations. This can be worked around by using the :ref:`-in command-line argument <start_7>`, e.g.
-
-.. parsed-literal::
-
- lmp_g++ -in in.script
-
-or by using the :ref:`-var command-line argument <start_7>` to pass the script name as a
-variable to the input script. In the latter case, a
-:doc:`variable <variable>` called "fname" could be used in place of
-SELF, e.g.
-
-.. parsed-literal::
-
- lmp_g++ -var fname in.script < in.script
-
-The 2nd argument to the jump command is optional. If specified, it is
-treated as a label and the new file is scanned (without executing
-commands) until the label is found, and commands are executed from
-that point forward. This can be used to loop over a portion of the
-input script, as in this example. These commands perform 10 runs,
-each of 10000 steps, and create 10 dump files named file.1, file.2,
-etc. The :doc:`next <next>` command is used to exit the loop after 10
-iterations. When the "a" variable has been incremented for the tenth
-time, it will cause the next jump command to be skipped.
-
-.. parsed-literal::
-
- variable a loop 10
- label loop
- dump 1 all atom 100 file.$a
- run 10000
- undump 1
- next a
- jump in.lj loop
-
-If the jump *file* argument is a variable, the jump command can be
-used to cause different processor partitions to run different input
-scripts. In this example, LAMMPS is run on 40 processors, with 4
-partitions of 10 procs each. An in.file containing the example
-variable and jump command will cause each partition to run a different
-simulation.
-
-.. parsed-literal::
-
- mpirun -np 40 lmp_ibm -partition 4x10 -in in.file
-
-.. parsed-literal::
-
- variable f world script.1 script.2 script.3 script.4
- jump $f
-
-Here is an example of a loop which checks every 1000 steps if the
-system temperature has reached a certain value, and if so, breaks out
-of the loop to finish the run. Note that any variable could be
-checked, so long as it is current on the timestep when the run
-completes. As explained on the :doc:`variable <variable>` doc page,
-this can be insured by includig the variable in thermodynamic output.
-
-.. parsed-literal::
-
- variable myTemp equal temp
- label loop
- variable a loop 1000
- run 1000
- if "${myTemp} < 300.0" then "jump SELF break"
- next a
- jump SELF loop
- label break
- print "ALL DONE"
-
-Here is an example of a double loop which uses the if and
-:doc:`jump <jump>` commands to break out of the inner loop when a
-condition is met, then continues iterating thru the outer loop.
-
-.. parsed-literal::
-
- label loopa
- variable a loop 5
- label loopb
- variable b loop 5
- print "A,B = $a,$b"
- run 10000
- if "$b > 2" then "jump SELF break"
- next b
- jump in.script loopb
- label break
- variable b delete
- next a
- jump SELF loopa
-
-Restrictions
-""""""""""""
-
-
-If you jump to a file and it does not contain the specified label,
-LAMMPS will come to the end of the file and exit.
-
-Related commands
-""""""""""""""""
-
-:doc:`variable <variable>`, :doc:`include <include>`, :doc:`label <label>`,
-:doc:`next <next>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/kspace_modify.txt b/doc/_sources/kspace_modify.txt
deleted file mode 100644
index 68be07e37..000000000
--- a/doc/_sources/kspace_modify.txt
+++ /dev/null
@@ -1,377 +0,0 @@
-.. index:: kspace_modify
-
-kspace_modify command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- kspace_modify keyword value ...
-
-* one or more keyword/value pairs may be listed
-.. parsed-literal::
-
- keyword = *mesh* or *order* or *order/disp* or *mix/disp* or *overlap* or *minorder* or *force* or *gewald* or *gewald/disp* or *slab* or (nozforce* or *compute* or *cutoff/adjust* or *fftbench* or *collective* or *diff* or *kmax/ewald* or *force/disp/real* or *force/disp/kspace* or *splittol* or *disp/auto*:l
- *mesh* value = x y z
- x,y,z = grid size in each dimension for long-range Coulombics
- *mesh/disp* value = x y z
- x,y,z = grid size in each dimension for 1/r^6 dispersion
- *order* value = N
- N = extent of Gaussian for PPPM or MSM mapping of charge to grid
- *order/disp* value = N
- N = extent of Gaussian for PPPM mapping of dispersion term to grid
- *mix/disp* value = *pair* or *geom* or *none*
- *overlap* = *yes* or *no* = whether the grid stencil for PPPM is allowed to overlap into more than the nearest-neighbor processor
- *minorder* value = M
- M = min allowed extent of Gaussian when auto-adjusting to minimize grid communication
- *force* value = accuracy (force units)
- *gewald* value = rinv (1/distance units)
- rinv = G-ewald parameter for Coulombics
- *gewald/disp* value = rinv (1/distance units)
- rinv = G-ewald parameter for dispersion
- *slab* value = volfactor or *nozforce*
- volfactor = ratio of the total extended volume used in the
- 2d approximation compared with the volume of the simulation domain
- *nozforce* turns off kspace forces in the z direction
- *compute* value = *yes* or *no*
- *cutoff/adjust* value = *yes* or *no*
- *pressure/scalar* value = *yes* or *no*
- *fftbench* value = *yes* or *no*
- *collective* value = *yes* or *no*
- *diff* value = *ad* or *ik* = 2 or 4 FFTs for PPPM in smoothed or non-smoothed mode
- *kmax/ewald* value = kx ky kz
- kx,ky,kz = number of Ewald sum kspace vectors in each dimension
- *force/disp/real* value = accuracy (force units)
- *force/disp/kspace* value = accuracy (force units)
- *splittol* value = tol
- tol = relative size of two eigenvalues (see discussion below)
- *disp/auto* value = yes or no
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- kspace_modify mesh 24 24 30 order 6
- kspace_modify slab 3.0
-
-Description
-"""""""""""
-
-Set parameters used by the kspace solvers defined by the
-:doc:`kspace_style <kspace_style>` command. Not all parameters are
-relevant to all kspace styles.
-
-The *mesh* keyword sets the grid size for kspace style *pppm* or
-*msm*. In the case of PPPM, this is the FFT mesh, and each dimension
-must be factorizable into powers of 2, 3, and 5. In the case of MSM,
-this is the finest scale real-space mesh, and each dimension must be
-factorizable into powers of 2. When this option is not set, the PPPM
-or MSM solver chooses its own grid size, consistent with the
-user-specified accuracy and pairwise cutoff. Values for x,y,z of
-0,0,0 unset the option.
-
-The *mesh/disp* keyword sets the grid size for kspace style
-*pppm/disp*. This is the FFT mesh for long-range dispersion and ach
-dimension must be factorizable into powers of 2, 3, and 5. When this
-option is not set, the PPPM solver chooses its own grid size,
-consistent with the user-specified accuracy and pairwise cutoff.
-Values for x,y,z of 0,0,0 unset the option.
-
-The *order* keyword determines how many grid spacings an atom's charge
-extends when it is mapped to the grid in kspace style *pppm* or *msm*.
-The default for this parameter is 5 for PPPM and 8 for MSM, which
-means each charge spans 5 or 8 grid cells in each dimension,
-respectively. For the LAMMPS implementation of MSM, the order can
-range from 4 to 10 and must be even. For PPPM, the minimum allowed
-setting is 2 and the maximum allowed setting is 7. The larger the
-value of this parameter, the smaller that LAMMPS will set the grid
-size, to achieve the requested accuracy. Conversely, the smaller the
-order value, the larger the grid size will be. Note that there is an
-inherent trade-off involved: a small grid will lower the cost of FFTs
-or MSM direct sum, but a larger order parameter will increase the cost
-of interpolating charge/fields to/from the grid.
-
-The *order/disp* keyword determines how many grid spacings an atom's
-dispersion term extends when it is mapped to the grid in kspace style
-*pppm/disp*. It has the same meaning as the *order* setting for
-Coulombics.
-
-The *overlap* keyword can be used in conjunction with the *minorder*
-keyword with the PPPM styles to adjust the amount of communication
-that occurs when values on the FFT grid are exchangeed between
-processors. This communication is distinct from the communication
-inherent in the parallel FFTs themselves, and is required because
-processors interpolate charge and field values using grid point values
-owned by neighboring processors (i.e. ghost point communication). If
-the *overlap* keyword is set to *yes* then this communication is
-allowed to extend beyond nearest-neighbor processors, e.g. when using
-lots of processors on a small problem. If it is set to *no* then the
-communication will be limited to nearest-neighbor processors and the
-*order* setting will be reduced if necessary, as explained by the
-*minorder* keyword discussion. The *overlap* keyword is always set to
-*yes* in MSM.
-
-The *minorder* keyword allows LAMMPS to reduce the *order* setting if
-necessary to keep the communication of ghost grid point limited to
-exchanges between nearest-neighbor processors. See the discussion of
-the *overlap* keyword for details. If the *overlap* keyword is set to
-*yes*, which is the default, this is never needed. If it set to *no*
-and overlap occurs, then LAMMPS will reduce the order setting, one
-step at a time, until the ghost grid overlap only extends to nearest
-neighbor processors. The *minorder* keyword limits how small the
-*order* setting can become. The minimum allowed value for PPPM is 2,
-which is the default. If *minorder* is set to the same value as
-*order* then no reduction is allowed, and LAMMPS will generate an
-error if the grid communcation is non-nearest-neighbor and *overlap*
-is set to *no*. The *minorder* keyword is not currently supported in
-MSM.
-
-The PPPM order parameter may be reset by LAMMPS when it sets up the
-FFT grid if the implied grid stencil extends beyond the grid cells
-owned by neighboring processors. Typically this will only occur when
-small problems are run on large numbers of processors. A warning will
-be generated indicating the order parameter is being reduced to allow
-LAMMPS to run the problem. Automatic adjustment of the order parameter
-is not supported in MSM.
-
-The *force* keyword overrides the relative accuracy parameter set by
-the :doc:`kspace_style <kspace_style>` command with an absolute
-accuracy. The accuracy determines the RMS error in per-atom forces
-calculated by the long-range solver and is thus specified in force
-units. A negative value for the accuracy setting means to use the
-relative accuracy parameter. The accuracy setting is used in
-conjunction with the pairwise cutoff to determine the number of
-K-space vectors for style *ewald*, the FFT grid size for style
-*pppm*, or the real space grid size for style *msm*.
-
-The *gewald* keyword sets the value of the Ewald or PPPM G-ewald
-parameter for charge as *rinv* in reciprocal distance units. Without
-this setting, LAMMPS chooses the parameter automatically as a function
-of cutoff, precision, grid spacing, etc. This means it can vary from
-one simulation to the next which may not be desirable for matching a
-KSpace solver to a pre-tabulated pairwise potential. This setting can
-also be useful if Ewald or PPPM fails to choose a good grid spacing
-and G-ewald parameter automatically. If the value is set to 0.0,
-LAMMPS will choose the G-ewald parameter automatically. MSM does not
-use the *gewald* parameter.
-
-The *gewald/disp* keyword sets the value of the Ewald or PPPM G-ewald
-parameter for dispersion as *rinv* in reciprocal distance units. It
-has the same meaning as the *gewald* setting for Coulombics.
-
-The *slab* keyword allows an Ewald or PPPM solver to be used for a
-systems that are periodic in x,y but non-periodic in z - a
-:doc:`boundary <boundary>` setting of "boundary p p f". This is done by
-treating the system as if it were periodic in z, but inserting empty
-volume between atom slabs and removing dipole inter-slab interactions
-so that slab-slab interactions are effectively turned off. The
-volfactor value sets the ratio of the extended dimension in z divided
-by the actual dimension in z. The recommended value is 3.0. A larger
-value is inefficient; a smaller value introduces unwanted slab-slab
-interactions. The use of fixed boundaries in z means that the user
-must prevent particle migration beyond the initial z-bounds, typically
-by providing a wall-style fix. The methodology behind the *slab*
-option is explained in the paper by :ref:`(Yeh) <Yeh>`. The *slab* option
-is also extended to non-neutral systems
-:ref:`(Ballenegger) <Ballenegger>`. An alternative slab option can be
-invoked with the *nozforce* keyword in lieu of the volfactor. This
-turns off all kspace forces in the z direction. The *nozforce* option
-is not supported by MSM. For MSM, any combination of periodic,
-non-periodic, or shrink-wrapped boundaries can be set using
-:doc:`boundary <boundary>` (the slab approximation in not needed). The
-*slab* keyword is not currently supported by Ewald or PPPM when using
-a triclinic simulation cell. The slab correction has also been
-extended to point dipole interactions :ref:`(Klapp) <Klapp>` in
-:doc:`kspace_style <kspace_style>` *ewald/disp*.
-
-The *compute* keyword allows Kspace computations to be turned off,
-even though a :doc:`kspace_style <kspace_style>` is defined. This is
-not useful for running a real simulation, but can be useful for
-debugging purposes or for computing only partial forces that do not
-include the Kspace contribution. You can also do this by simply not
-defining a :doc:`kspace_style <kspace_style>`, but a Kspace-compatible
-:doc:`pair_style <pair_style>` requires a kspace style to be defined.
-This keyword gives you that option.
-
-The *cutoff/adjust* keyword applies only to MSM. If this option is
-turned on, the Coulombic cutoff will be automatically adjusted at the
-beginning of the run to give the desired estimated error. Other
-cutoffs such as LJ will not be affected. If the grid is not set using
-the *mesh* command, this command will also attempt to use the optimal
-grid that minimizes cost using an estimate given by
-:ref:`(Hardy) <Hardy>`. Note that this cost estimate is not exact, somewhat
-experimental, and still may not yield the optimal parameters.
-
-The *pressure/scalar* keyword applies only to MSM. If this option is
-turned on, only the scalar pressure (i.e. (Pxx + Pyy + Pzz)/3.0) will
-be computed, which can be used, for example, to run an isotropic barostat.
-Computing the full pressure tensor with MSM is expensive, and this option
-provides a faster alternative. The scalar pressure is computed using a
-relationship between the Coulombic energy and pressure :ref:`(Hummer) <Hummer>`
-instead of using the virial equation. This option cannot be used to access
-individual components of the pressure tensor, to compute per-atom virial,
-or with suffix kspace/pair styles of MSM, like OMP or GPU.
-
-The *fftbench* keyword applies only to PPPM. It is on by default. If
-this option is turned off, LAMMPS will not take the time at the end
-of a run to give FFT benchmark timings, and will finish a few seconds
-faster than it would if this option were on.
-
-The *collective* keyword applies only to PPPM. It is set to *no* by
-default, except on IBM BlueGene machines. If this option is set to
-*yes*, LAMMPS will use MPI collective operations to remap data for
-3d-FFT operations instead of the default point-to-point communication.
-This is faster on IBM BlueGene machines, and may also be faster on
-other machines if they have an efficient implementation of MPI
-collective operations and adequate hardware.
-
-The *diff* keyword specifies the differentiation scheme used by the
-PPPM method to compute forces on particles given electrostatic
-potentials on the PPPM mesh. The *ik* approach is the default for
-PPPM and is the original formulation used in :ref:`(Hockney) <Hockney>`. It
-performs differentiation in Kspace, and uses 3 FFTs to transfer each
-component of the computed fields back to real space for total of 4
-FFTs per timestep.
-
-The analytic differentiation *ad* approach uses only 1 FFT to transfer
-information back to real space for a total of 2 FFTs per timestep. It
-then performs analytic differentiation on the single quantity to
-generate the 3 components of the electric field at each grid point.
-This is sometimes referred to as "smoothed" PPPM. This approach
-requires a somewhat larger PPPM mesh to achieve the same accuracy as
-the *ik* method. Currently, only the *ik* method (default) can be
-used for a triclinic simulation cell with PPPM. The *ad* method is
-always used for MSM.
-
-.. note::
-
- Currently, not all PPPM styles support the *ad* option. Support
- for those PPPM variants will be added later.
-
-The *kmax/ewald* keyword sets the number of kspace vectors in each
-dimension for kspace style *ewald*. The three values must be positive
-integers, or else (0,0,0), which unsets the option. When this option
-is not set, the Ewald sum scheme chooses its own kspace vectors,
-consistent with the user-specified accuracy and pairwise cutoff. In
-any case, if kspace style *ewald* is invoked, the values used are
-printed to the screen and the log file at the start of the run.
-
-With the *mix/disp* keyword one can select the mixing rule for the
-dispersion coefficients. With *pair*, the dispersion coefficients of
-unlike types are computed as indicated with
-:doc:`pair_modify <pair_modify>`. With *geom*, geometric mixing is
-enforced on the dispersion coefficients in the kspace
-coefficients. When using the arithmetic mixing rule, this will
-speed-up the simulations but introduces some error in the force
-computations, as shown in :ref:`(Wennberg) <Wennberg>`. With *none*, it is
-assumed that no mixing rule is applicable. Splitting of the dispersion
-coefficients will be performed as described in
-:ref:`(Isele-Holder) <Isele-Holder>`. This splitting can be influenced with
-the *splittol* keywords. Only the eigenvalues that are larger than tol
-compared to the largest eigenvalues are included. Using this keywords
-the original matrix of dispersion coefficients is approximated. This
-leads to faster computations, but the accuracy in the reciprocal space
-computations of the dispersion part is decreased.
-
-The *force/disp/real* and *force/disp/kspace* keywords set the force
-accuracy for the real and space computations for the dispersion part
-of pppm/disp. As shown in :ref:`(Isele-Holder) <Isele-Holder>`, optimal
-performance and accuracy in the results is obtained when these values
-are different.
-
-The *disp/auto* option controlls whether the pppm/disp is allowed to
-generate PPPM parameters automatically. If set to *no*, parameters have
-to be specified using the *gewald/disp*, *mesh/disp*,
-*force/disp/real* or *force/disp/kspace* keywords, or
-the code will stop with an error message. When this option is set to
-*yes*, the error message will not appear and the simulation will start.
-For a typical application, using the automatic parameter generation will provide
-simulations that are either inaccurate or slow. Using this option is thus not
-recommended. For guidelines on how to obtain good parameters, see the :ref:`How-To <howto_23>` discussion.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`kspace_style <kspace_style>`, :doc:`boundary <boundary>`
-
-Default
-"""""""
-
-The option defaults are mesh = mesh/disp = 0 0 0, order = order/disp =
-5 (PPPM), order = 10 (MSM), minorder = 2, overlap = yes, force = -1.0,
-gewald = gewald/disp = 0.0, slab = 1.0, compute = yes, cutoff/adjust =
-yes (MSM), pressure/scalar = yes (MSM), fftbench = yes (PPPM), diff = ik
-(PPPM), mix/disp = pair, force/disp/real = -1.0, force/disp/kspace = -1.0,
-split = 0, tol = 1.0e-6, and disp/auto = no.
-
-
-----------
-
-
-.. _Hockney:
-
-
-
-**(Hockney)** Hockney and Eastwood, Computer Simulation Using Particles,
-Adam Hilger, NY (1989).
-
-.. _Yeh:
-
-
-
-**(Yeh)** Yeh and Berkowitz, J Chem Phys, 111, 3155 (1999).
-
-.. _Ballenegger:
-
-
-
-**(Ballenegger)** Ballenegger, Arnold, Cerda, J Chem Phys, 131, 094107
-(2009).
-
-.. _Klapp:
-
-
-
-**(Klapp)** Klapp, Schoen, J Chem Phys, 117, 8050 (2002).
-
-.. _Hardy:
-
-
-
-**(Hardy)** David Hardy thesis: Multilevel Summation for the Fast
-Evaluation of Forces for the Simulation of Biomolecules, University of
-Illinois at Urbana-Champaign, (2006).
-
-.. _Hummer:
-
-
-
-**(Hummer)** Hummer, Gronbech-Jensen, Neumann, J Chem Phys, 109, 2791 (1998)
-
-.. _Isele-Holder:
-
-
-
-**(Isele-Holder)** Isele-Holder, Mitchell, Hammond, Kohlmeyer, Ismail, J
-Chem Theory Comput, 9, 5412 (2013).
-
-.. _Wennberg:
-
-
-
-**(Wennberg)** Wennberg, Murtola, Hess, Lindahl, J Chem Theory Comput,
-9, 3527 (2013).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/kspace_style.txt b/doc/_sources/kspace_style.txt
deleted file mode 100644
index 9294b67fe..000000000
--- a/doc/_sources/kspace_style.txt
+++ /dev/null
@@ -1,450 +0,0 @@
-.. index:: kspace_style
-
-kspace_style command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- kspace_style style value
-
-* style = *none* or *ewald* or *ewald/disp* or *ewald/omp* or *pppm* or *pppm/cg* or *pppm/disp* or *pppm/tip4p* or *pppm/stagger* or *pppm/disp/tip4p* or *pppm/gpu* or *pppm/omp* or *pppm/cg/omp* or *pppm/tip4p/omp* or *msm* or *msm/cg* or *msm/omp* or *msm/cg/omp*
-.. parsed-literal::
-
- *none* value = none
- *ewald* value = accuracy
- accuracy = desired relative error in forces
- *ewald/disp* value = accuracy
- accuracy = desired relative error in forces
- *ewald/omp* value = accuracy
- accuracy = desired relative error in forces
- *pppm* value = accuracy
- accuracy = desired relative error in forces
- *pppm/cg* value = accuracy (smallq)
- accuracy = desired relative error in forces
- smallq = cutoff for charges to be considered (optional) (charge units)
- *pppm/disp* value = accuracy
- accuracy = desired relative error in forces
- *pppm/tip4p* value = accuracy
- accuracy = desired relative error in forces
- *pppm/disp/tip4p* value = accuracy
- accuracy = desired relative error in forces
- *pppm/gpu* value = accuracy
- accuracy = desired relative error in forces
- *pppm/omp* value = accuracy
- accuracy = desired relative error in forces
- *pppm/cg/omp* value = accuracy
- accuracy = desired relative error in forces
- *pppm/tip4p/omp* value = accuracy
- accuracy = desired relative error in forces
- *pppm/stagger* value = accuracy
- accuracy = desired relative error in forces
- *msm* value = accuracy
- accuracy = desired relative error in forces
- *msm/cg* value = accuracy (smallq)
- accuracy = desired relative error in forces
- smallq = cutoff for charges to be considered (optional) (charge units)
- *msm/omp* value = accuracy
- accuracy = desired relative error in forces
- *msm/cg/omp* value = accuracy (smallq)
- accuracy = desired relative error in forces
- smallq = cutoff for charges to be considered (optional) (charge units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- kspace_style pppm 1.0e-4
- kspace_style pppm/cg 1.0e-5 1.0e-6
- kspace style msm 1.0e-4
- kspace_style none
-
-Description
-"""""""""""
-
-Define a long-range solver for LAMMPS to use each timestep to compute
-long-range Coulombic interactions or long-range 1/r^6 interactions.
-Most of the long-range solvers perform their computation in K-space,
-hence the name of this command.
-
-When such a solver is used in conjunction with an appropriate pair
-style, the cutoff for Coulombic or 1/r^N interactions is effectively
-infinite. If the Coulombic case, this means each charge in the system
-interacts with charges in an infinite array of periodic images of the
-simulation domain.
-
-Note that using a long-range solver requires use of a matching :doc:`pair style <pair>` to perform consistent short-range pairwise
-calculations. This means that the name of the pair style contains a
-matching keyword to the name of the KSpace style, as in this table:
-
-+----------------------+-----------------------+
-| Pair style | KSpace style |
-+----------------------+-----------------------+
-| coul/long | ewald or pppm |
-+----------------------+-----------------------+
-| coul/msm | msm |
-+----------------------+-----------------------+
-| lj/long or buck/long | disp (for dispersion) |
-+----------------------+-----------------------+
-| tip4p/long | tip4p |
-+----------------------+-----------------------+
-
-
-----------
-
-
-The *ewald* style performs a standard Ewald summation as described in
-any solid-state physics text.
-
-The *ewald/disp* style adds a long-range dispersion sum option for
-1/r^6 potentials and is useful for simulation of interfaces
-:ref:`(Veld) <Veld>`. It also performs standard Coulombic Ewald summations,
-but in a more efficient manner than the *ewald* style. The 1/r^6
-capability means that Lennard-Jones or Buckingham potentials can be
-used without a cutoff, i.e. they become full long-range potentials.
-The *ewald/disp* style can also be used with point-dipoles
-:ref:`(Toukmaji) <Toukmaji>` and is currently the only kspace solver in
-LAMMPS with this capability.
-
-
-----------
-
-
-The *pppm* style invokes a particle-particle particle-mesh solver
-:ref:`(Hockney) <Hockney>` which maps atom charge to a 3d mesh, uses 3d FFTs
-to solve Poisson's equation on the mesh, then interpolates electric
-fields on the mesh points back to the atoms. It is closely related to
-the particle-mesh Ewald technique (PME) :ref:`(Darden) <Darden>` used in
-AMBER and CHARMM. The cost of traditional Ewald summation scales as
-N^(3/2) where N is the number of atoms in the system. The PPPM solver
-scales as Nlog(N) due to the FFTs, so it is almost always a faster
-choice :ref:`(Pollock) <Pollock>`.
-
-The *pppm/cg* style is identical to the *pppm* style except that it
-has an optimization for systems where most particles are uncharged.
-Similarly the *msm/cg* style implements the same optimization for *msm*.
-The optional *smallq* argument defines the cutoff for the absolute
-charge value which determines whether a particle is considered charged
-or not. Its default value is 1.0e-5.
-
-The *pppm/tip4p* style is identical to the *pppm* style except that it
-adds a charge at the massless 4th site in each TIP4P water molecule.
-It should be used with :doc:`pair styles <pair_style>` with a
-*tip4p/long* in their style name.
-
-The *pppm/stagger* style performs calculations using two different
-meshes, one shifted slightly with respect to the other. This can
-reduce force aliasing errors and increase the accuracy of the method
-for a given mesh size. Or a coarser mesh can be used for the same
-target accuracy, which saves CPU time. However, there is a trade-off
-since FFTs on two meshes are now performed which increases the
-compuation required. See :ref:`(Cerutti) <Cerutti>`, :ref:`(Neelov) <Neelov>`,
-and :ref:`(Hockney) <Hockney>` for details of the method.
-
-For high relative accuracy, using staggered PPPM allows the mesh size
-to be reduced by a factor of 2 in each dimension as compared to
-regular PPPM (for the same target accuracy). This can give up to a 4x
-speedup in the KSpace time (8x less mesh points, 2x more expensive).
-However, for low relative accuracy, the staggered PPPM mesh size may
-be essentially the same as for regular PPPM, which means the method
-will be up to 2x slower in the KSpace time (simply 2x more expensive).
-For more details and timings, see
-:doc:`Section_accelerate <Section_accelerate>`.
-
-.. note::
-
- Using *pppm/stagger* may not give the same increase in the
- accuracy of energy and pressure as it does in forces, so some caution
- must be used if energy and/or pressure are quantities of interest,
- such as when using a barostat.
-
-
-----------
-
-
-The *pppm/disp* and *pppm/disp/tip4p* styles add a mesh-based long-range
-dispersion sum option for 1/r^6 potentials :ref:`(Isele-Holder) <Isele-Holder>`,
-similar to the *ewald/disp* style. The 1/r^6 capability means
-that Lennard-Jones or Buckingham potentials can be used without a cutoff,
-i.e. they become full long-range potentials.
-
-For these styles, you will possibly want to adjust the default choice of
-parameters by using the :doc:`kspace_modify <kspace_modify>` command.
-This can be done by either choosing the Ewald and grid parameters, or
-by specifying separate accuracies for the real and kspace
-calculations. When not making any settings, the simulation will stop with
-an error message. Further information on the influence of the parameters
-and how to choose them is described in :ref:`(Isele-Holder) <Isele-Holder>`,
-:ref:`(Isele-Holder2) <Isele-Holder2>` and the
-:ref:`How-To <howto_24>` discussion.
-
-
-----------
-
-
-.. note::
-
- All of the PPPM styles can be used with single-precision FFTs by
- using the compiler switch -DFFT_SINGLE for the FFT_INC setting in your
- lo-level Makefile. This setting also changes some of the PPPM
- operations (e.g. mapping charge to mesh and interpolating electric
- fields to particles) to be performed in single precision. This option
- can speed-up long-range calulations, particularly in parallel or on
- GPUs. The use of the -DFFT_SINGLE flag is discussed in :ref:`this section <start_2_4>` of the manual. MSM does not
- currently support the -DFFT_SINGLE compiler switch.
-
-
-----------
-
-
-The *msm* style invokes a multi-level summation method MSM solver,
-:ref:`(Hardy) <Hardy>` or :ref:`(Hardy2) <Hardy2>`, which maps atom charge to a 3d
-mesh, and uses a multi-level hierarchy of coarser and coarser meshes
-on which direct coulomb solves are done. This method does not use
-FFTs and scales as N. It may therefore be faster than the other
-K-space solvers for relatively large problems when running on large
-core counts. MSM can also be used for non-periodic boundary conditions and
-for mixed periodic and non-periodic boundaries.
-
-MSM is most competitive versus Ewald and PPPM when only relatively
-low accuracy forces, about 1e-4 relative error or less accurate,
-are needed. Note that use of a larger coulomb cutoff (i.e. 15
-angstroms instead of 10 angstroms) provides better MSM accuracy for
-both the real space and grid computed forces.
-
-Currently calculation of the full pressure tensor in MSM is expensive.
-Using the :doc:`kspace_modify <kspace_modify>` *pressure/scalar yes*
-command provides a less expensive way to compute the scalar pressure
-(Pxx + Pyy + Pzz)/3.0. The scalar pressure can be used, for example,
-to run an isotropic barostat. If the full pressure tensor is needed,
-then calculating the pressure at every timestep or using a fixed
-pressure simulation with MSM will cause the code to run slower.
-
-
-----------
-
-
-The specified *accuracy* determines the relative RMS error in per-atom
-forces calculated by the long-range solver. It is set as a
-dimensionless number, relative to the force that two unit point
-charges (e.g. 2 monovalent ions) exert on each other at a distance of
-1 Angstrom. This reference value was chosen as representative of the
-magnitude of electrostatic forces in atomic systems. Thus an accuracy
-value of 1.0e-4 means that the RMS error will be a factor of 10000
-smaller than the reference force.
-
-The accuracy setting is used in conjunction with the pairwise cutoff
-to determine the number of K-space vectors for style *ewald* or the
-grid size for style *pppm* or *msm*.
-
-Note that style *pppm* only computes the grid size at the beginning of
-a simulation, so if the length or triclinic tilt of the simulation
-cell increases dramatically during the course of the simulation, the
-accuracy of the simulation may degrade. Likewise, if the
-:doc:`kspace_modify slab <kspace_modify>` option is used with
-shrink-wrap boundaries in the z-dimension, and the box size changes
-dramatically in z. For example, for a triclinic system with all three
-tilt factors set to the maximum limit, the PPPM grid should be
-increased roughly by a factor of 1.5 in the y direction and 2.0 in the
-z direction as compared to the same system using a cubic orthogonal
-simulation cell. One way to ensure the accuracy requirement is being
-met is to run a short simulation at the maximum expected tilt or
-length, note the required grid size, and then use the
-:doc:`kspace_modify <kspace_modify>` *mesh* command to manually set the
-PPPM grid size to this value.
-
-RMS force errors in real space for *ewald* and *pppm* are estimated
-using equation 18 of :ref:`(Kolafa) <Kolafa>`, which is also referenced as
-equation 9 of :ref:`(Petersen) <Petersen>`. RMS force errors in K-space for
-*ewald* are estimated using equation 11 of :ref:`(Petersen) <Petersen>`,
-which is similar to equation 32 of :ref:`(Kolafa) <Kolafa>`. RMS force
-errors in K-space for *pppm* are estimated using equation 38 of
-:ref:`(Deserno) <Deserno>`. RMS force errors for *msm* are estimated
-using ideas from chapter 3 of :ref:`(Hardy) <Hardy>`, with equation 3.197
-of particular note. When using *msm* with non-periodic boundary
-conditions, it is expected that the error estimation will be too
-pessimistic. RMS force errors for dipoles when using *ewald/disp*
-are estimated using equations 33 and 46 of :ref:`(Wang) <Wang>`.
-
-See the :doc:`kspace_modify <kspace_modify>` command for additional
-options of the K-space solvers that can be set, including a *force*
-option for setting an absoulte RMS error in forces, as opposed to a
-relative RMS error.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-More specifically, the *pppm/gpu* style performs charge assignment and
-force interpolation calculations on the GPU. These processes are
-performed either in single or double precision, depending on whether
-the -DFFT_SINGLE setting was specified in your lo-level Makefile, as
-discussed above. The FFTs themselves are still calculated on the CPU.
-If *pppm/gpu* is used with a GPU-enabled pair style, part of the PPPM
-calculation can be performed concurrently on the GPU while other
-calculations for non-bonded and bonded force calculation are performed
-on the CPU.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP, and OPT packages respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restrictions
-""""""""""""
-
-
-Note that the long-range electrostatic solvers in LAMMPS assume conducting
-metal (tinfoil) boundary conditions for both charge and dipole
-interactions. Vacuum boundary conditions are not currently supported.
-
-The *ewald/disp*, *ewald*, *pppm*, and *msm* styles support
-non-orthogonal (triclinic symmetry) simulation boxes. However, triclinic
-simulation cells may not yet be supported by suffix versions of these
-styles (such as *pppm/cuda*).
-
-All of the kspace styles are part of the KSPACE package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. Note that
-the KSPACE package is installed by default.
-
-For MSM, a simulation must be 3d and one can use any combination of
-periodic, non-periodic, or shrink-wrapped boundaries (specified using
-the :doc:`boundary <boundary>` command).
-
-For Ewald and PPPM, a simulation must be 3d and periodic in all dimensions.
-The only exception is if the slab option is set with :doc:`kspace_modify <kspace_modify>`,
-in which case the xy dimensions must be periodic and the z dimension must be
-non-periodic.
-
-Related commands
-""""""""""""""""
-
-:doc:`kspace_modify <kspace_modify>`, :doc:`pair_style lj/cut/coul/long <pair_lj>`, :doc:`pair_style lj/charmm/coul/long <pair_charmm>`, :doc:`pair_style lj/long/coul/long <pair_lj_long>`, :doc:`pair_style buck/coul/long <pair_buck>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- kspace_style none
-
-
-----------
-
-
-.. _Darden:
-
-
-
-**(Darden)** Darden, York, Pedersen, J Chem Phys, 98, 10089 (1993).
-
-.. _Deserno:
-
-
-
-**(Deserno)** Deserno and Holm, J Chem Phys, 109, 7694 (1998).
-
-.. _Hockney:
-
-
-
-**(Hockney)** Hockney and Eastwood, Computer Simulation Using Particles,
-Adam Hilger, NY (1989).
-
-.. _Kolafa:
-
-
-
-**(Kolafa)** Kolafa and Perram, Molecular Simualtion, 9, 351 (1992).
-
-.. _Petersen:
-
-
-
-**(Petersen)** Petersen, J Chem Phys, 103, 3668 (1995).
-
-.. _Wang:
-
-
-
-**(Wang)** Wang and Holm, J Chem Phys, 115, 6277 (2001).
-
-.. _Pollock:
-
-
-
-**(Pollock)** Pollock and Glosli, Comp Phys Comm, 95, 93 (1996).
-
-.. _Cerutti:
-
-
-
-**(Cerutti)** Cerutti, Duke, Darden, Lybrand, Journal of Chemical Theory
-and Computation 5, 2322 (2009)
-
-.. _Neelov:
-
-
-
-**(Neelov)** Neelov, Holm, J Chem Phys 132, 234103 (2010)
-
-.. _Veld:
-
-
-
-**(Veld)** In 't Veld, Ismail, Grest, J Chem Phys, 127, 144711 (2007).
-
-.. _Toukmaji:
-
-
-
-**(Toukmaji)** Toukmaji, Sagui, Board, and Darden, J Chem Phys, 113,
-10913 (2000).
-
-.. _Isele-Holder:
-
-
-
-**(Isele-Holder)** Isele-Holder, Mitchell, Ismail, J Chem Phys, 137, 174107 (2012).
-
-.. _Isele-Holder2:
-
-
-
-**(Isele-Holder2)** Isele-Holder, Mitchell, Hammond, Kohlmeyer, Ismail, J Chem Theory
-Comput 9, 5412 (2013).
-
-.. _Hardy:
-
-
-
-**(Hardy)** David Hardy thesis: Multilevel Summation for the Fast
-Evaluation of Forces for the Simulation of Biomolecules, University of
-Illinois at Urbana-Champaign, (2006).
-
-.. _Hardy2:
-
-
-
-**(Hardy)** Hardy, Stone, Schulten, Parallel Computing 35 (2009)
-164-177.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/label.txt b/doc/_sources/label.txt
deleted file mode 100644
index ac0b6dcde..000000000
--- a/doc/_sources/label.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-.. index:: label
-
-label command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- label ID
-
-* ID = string used as label name
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- label xyz
- label loop
-
-Description
-"""""""""""
-
-Label this line of the input script with the chosen ID. Unless a jump
-command was used previously, this does nothing. But if a
-:doc:`jump <jump>` command was used with a label argument to begin
-invoking this script file, then all command lines in the script prior
-to this line will be ignored. I.e. execution of the script will begin
-at this line. This is useful for looping over a section of the input
-script as discussed in the :doc:`jump <jump>` command.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/lattice.txt b/doc/_sources/lattice.txt
deleted file mode 100644
index 1f6c4638d..000000000
--- a/doc/_sources/lattice.txt
+++ /dev/null
@@ -1,335 +0,0 @@
-.. index:: lattice
-
-lattice command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- lattice style scale keyword values ...
-
-* style = *none* or *sc* or *bcc* or *fcc* or *hcp* or *diamond* or *sq* or *sq2* or *hex* or *custom*
-* scale = scale factor between lattice and simulation box
-.. parsed-literal::
-
- scale = reduced density rho* (for LJ units)
- scale = lattice constant in distance units (for all other units)
-
-* zero or more keyword/value pairs may be appended
-* keyword = *origin* or *orient* or *spacing* or *a1* or *a2* or *a3* or *basis*
-.. parsed-literal::
-
- *origin* values = x y z
- x,y,z = fractions of a unit cell (0 <= x,y,z < 1)
- *orient* values = dim i j k
- dim = *x* or *y* or *z*
- i,j,k = integer lattice directions
- *spacing* values = dx dy dz
- dx,dy,dz = lattice spacings in the x,y,z box directions
- *a1*,*a2*,*a3* values = x y z
- x,y,z = primitive vector components that define unit cell
- *basis* values = x y z
- x,y,z = fractional coords of a basis atom (0 <= x,y,z < 1)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- lattice fcc 3.52
- lattice hex 0.85
- lattice sq 0.8 origin 0.0 0.5 0.0 orient x 1 1 0 orient y -1 1 0
- lattice custom 3.52 a1 1.0 0.0 0.0 a2 0.5 1.0 0.0 a3 0.0 0.0 0.5 &
- basis 0.0 0.0 0.0 basis 0.5 0.5 0.5
- lattice none 2.0
-
-Description
-"""""""""""
-
-Define a lattice for use by other commands. In LAMMPS, a lattice is
-simply a set of points in space, determined by a unit cell with basis
-atoms, that is replicated infinitely in all dimensions. The arguments
-of the lattice command can be used to define a wide variety of
-crystallographic lattices.
-
-A lattice is used by LAMMPS in two ways. First, the
-:doc:`create_atoms <create_atoms>` command creates atoms on the lattice
-points inside the simulation box. Note that the
-:doc:`create_atoms <create_atoms>` command allows different atom types
-to be assigned to different basis atoms of the lattice. Second, the
-lattice spacing in the x,y,z dimensions implied by the lattice, can be
-used by other commands as distance units
-(e.g. :doc:`create_box <create_box>`, :doc:`region <region>` and
-:doc:`velocity <velocity>`), which are often convenient to use when the
-underlying problem geometry is atoms on a lattice.
-
-The lattice style must be consistent with the dimension of the
-simulation - see the :doc:`dimension <dimension>` command. Styles *sc*
-or *bcc* or *fcc* or *hcp* or *diamond* are for 3d problems. Styles
-*sq* or *sq2* or *hex* are for 2d problems. Style *custom* can be
-used for either 2d or 3d problems.
-
-A lattice consists of a unit cell, a set of basis atoms within that
-cell, and a set of transformation parameters (scale, origin, orient)
-that map the unit cell into the simulation box. The vectors a1,a2,a3
-are the edge vectors of the unit cell. This is the nomenclature for
-"primitive" vectors in solid-state crystallography, but in LAMMPS the
-unit cell they determine does not have to be a "primitive cell" of
-minimum volume.
-
-Note that the lattice command can be used multiple times in an input
-script. Each time it is invoked, the lattice attributes are
-re-defined and are used for all subsequent commands (that use lattice
-attributes). For example, a sequence of lattice,
-:doc:`region <region>`, and :doc:`create_atoms <create_atoms>` commands
-can be repeated multiple times to build a poly-crystalline model with
-different geometric regions populated with atoms in different lattice
-orientations.
-
-
-----------
-
-
-A lattice of style *none* does not define a unit cell and basis set,
-so it cannot be used with the :doc:`create_atoms <create_atoms>`
-command. However it does define a lattice spacing via the specified
-scale parameter. As explained above the lattice spacings in x,y,z can
-be used by other commands as distance units. No additional
-keyword/value pairs can be specified for the *none* style. By
-default, a "lattice none 1.0" is defined, which means the lattice
-spacing is the same as one distance unit, as defined by the
-:doc:`units <units>` command.
-
-Lattices of style *sc*, *fcc*, *bcc*, and *diamond* are 3d lattices
-that define a cubic unit cell with edge length = 1.0. This means a1 =
-1 0 0, a2 = 0 1 0, and a3 = 0 0 1. Style *hcp* has a1 = 1 0 0, a2 = 0
-sqrt(3) 0, and a3 = 0 0 sqrt(8/3). The placement of the basis atoms
-within the unit cell are described in any solid-state physics text. A
-*sc* lattice has 1 basis atom at the lower-left-bottom corner of the
-cube. A *bcc* lattice has 2 basis atoms, one at the corner and one at
-the center of the cube. A *fcc* lattice has 4 basis atoms, one at the
-corner and 3 at the cube face centers. A *hcp* lattice has 4 basis
-atoms, two in the z = 0 plane and 2 in the z = 0.5 plane. A *diamond*
-lattice has 8 basis atoms.
-
-Lattices of style *sq* and *sq2* are 2d lattices that define a square
-unit cell with edge length = 1.0. This means a1 = 1 0 0 and a2 = 0 1
-0. A *sq* lattice has 1 basis atom at the lower-left corner of the
-square. A *sq2* lattice has 2 basis atoms, one at the corner and one
-at the center of the square. A *hex* style is also a 2d lattice, but
-the unit cell is rectangular, with a1 = 1 0 0 and a2 = 0 sqrt(3) 0.
-It has 2 basis atoms, one at the corner and one at the center of the
-rectangle.
-
-A lattice of style *custom* allows you to specify a1, a2, a3, and a
-list of basis atoms to put in the unit cell. By default, a1 and a2
-and a3 are 3 orthogonal unit vectors (edges of a unit cube). But you
-can specify them to be of any length and non-orthogonal to each other,
-so that they describe a tilted parallelepiped. Via the *basis*
-keyword you add atoms, one at a time, to the unit cell. Its arguments
-are fractional coordinates (0.0 <= x,y,z < 1.0). The position vector
-x of a basis atom within the unit cell is thus a linear combination of
-the the unit cell's 3 edge vectors, i.e. x = bx a1 + by a2 + bz a3,
-where bx,by,bz are the 3 values specified for the *basis* keyword.
-
-
-----------
-
-
-This sub-section discusses the arguments that determine how the
-idealized unit cell is transformed into a lattice of points within the
-simulation box.
-
-The *scale* argument determines how the size of the unit cell will be
-scaled when mapping it into the simulation box. I.e. it determines a
-multiplicative factor to apply to the unit cell, to convert it to a
-lattice of the desired size and distance units in the simulation box.
-The meaning of the *scale* argument depends on the :doc:`units <units>`
-being used in your simulation.
-
-For all unit styles except *lj*, the scale argument is specified in
-the distance units defined by the unit style. For example, in *real*
-or *metal* units, if the unit cell is a unit cube with edge length
-1.0, specifying scale = 3.52 would create a cubic lattice with a
-spacing of 3.52 Angstroms. In *cgs* units, the spacing would be 3.52
-cm.
-
-For unit style *lj*, the scale argument is the Lennard-Jones reduced
-density, typically written as rho*. LAMMPS converts this value into
-the multiplicative factor via the formula "factor^dim = rho/rho*",
-where rho = N/V with V = the volume of the lattice unit cell and N =
-the number of basis atoms in the unit cell (described below), and dim
-= 2 or 3 for the dimensionality of the simulation. Effectively, this
-means that if LJ particles of size sigma = 1.0 are used in the
-simulation, the lattice of particles will be at the desired reduced
-density.
-
-The *origin* option specifies how the unit cell will be shifted or
-translated when mapping it into the simulation box. The x,y,z values
-are fractional values (0.0 <= x,y,z < 1.0) meaning shift the lattice
-by a fraction of the lattice spacing in each dimension. The meaning
-of "lattice spacing" is discussed below.
-
-The *orient* option specifies how the unit cell will be rotated when
-mapping it into the simulation box. The *dim* argument is one of the
-3 coordinate axes in the simulation box. The other 3 arguments are
-the crystallographic direction in the lattice that you want to orient
-along that axis, specified as integers. E.g. "orient x 2 1 0" means
-the x-axis in the simulation box will be the [210] lattice
-direction, and similarly for y and z. The 3 lattice directions you
-specify do not have to be unit vectors, but they must be mutually
-orthogonal and obey the right-hand rule, i.e. (X cross Y) points in
-the Z direction.
-
-.. note::
-
- The preceding paragraph describing lattice directions is only
- valid for orthogonal cubic unit cells (or square in 2d). If you are
- using a *hcp* or *hex* lattice or the more general lattice style
- *custom* with non-orthogonal a1,a2,a3 vectors, then you should think
- of the 3 *orient* vectors as creating a 3x3 rotation matrix which is
- applied to a1,a2,a3 to rotate the original unit cell to a new
- orientation in the simulation box.
-
-
-----------
-
-
-Several LAMMPS commands have the option to use distance units that are
-inferred from "lattice spacings" in the x,y,z box directions.
-E.g. the :doc:`region <region>` command can create a block of size
-10x20x20, where 10 means 10 lattice spacings in the x direction.
-
-.. note::
-
- Though they are called lattice spacings, all the commands that
- have a "units lattice" option, simply use the 3 values as scale
- factors on the distance units defined by the :doc:`units <units>`
- command. Thus if you do not like the lattice spacings computed by
- LAMMPS (e.g. for a non-orthogonal or rotated unit cell), you can
- define the 3 values to be whatever you wish, via the *spacing* option.
-
-If the *spacing* option is not specified, the lattice spacings are
-computed by LAMMPS in the following way. A unit cell of the lattice
-is mapped into the simulation box (scaled and rotated), so that it now
-has (perhaps) a modified size and orientation. The lattice spacing in
-X is defined as the difference between the min/max extent of the x
-coordinates of the 8 corner points of the modified unit cell (4 in
-2d). Similarly, the Y and Z lattice spacings are defined as the
-difference in the min/max of the y and z coordinates.
-
-Note that if the unit cell is orthogonal with axis-aligned edges (no
-rotation via the *orient* keyword), then the lattice spacings in each
-dimension are simply the scale factor (described above) multiplied by
-the length of a1,a2,a3. Thus a *hex* style lattice with a scale
-factor of 3.0 Angstroms, would have a lattice spacing of 3.0 in x and
-3*sqrt(3.0) in y.
-
-.. note::
-
- For non-orthogonal unit cells and/or when a rotation is applied
- via the *orient* keyword, then the lattice spacings computed by LAMMPS
- are typically less intuitive. In particular, in these cases, there is
- no guarantee that a particular lattice spacing is an integer multiple
- of the periodicity of the lattice in that direction. Thus, if you
- create an orthogonal periodic simulation box whose size in a dimension
- is a multiple of the lattice spacing, and then fill it with atoms via
- the :doc:`create_atoms <create_atoms>` command, you will NOT necessarily
- create a periodic system. I.e. atoms may overlap incorrectly at the
- faces of the simulation box.
-
-The *spacing* option sets the 3 lattice spacings directly. All must
-be non-zero (use 1.0 for dz in a 2d simulation). The specified values
-are multiplied by the multiplicative factor described above that is
-associated with the scale factor. Thus a spacing of 1.0 means one
-unit cell edge length independent of the scale factor. As mentioned
-above, this option can be useful if the spacings LAMMPS computes are
-inconvenient to use in subsequent commands, which can be the case for
-non-orthogonal or rotated lattices.
-
-Note that whenever the lattice command is used, the values of the
-lattice spacings LAMMPS calculates are printed out. Thus their effect
-in commands that use the spacings should be decipherable.
-
-
-----------
-
-
-Example commands for generating a Wurtzite crystal (courtesy
-of Aidan Thompson), with its 8 atom unit cell.
-
-.. parsed-literal::
-
- variable a equal 4.340330
- variable b equal $a*sqrt(3.0)
- variable c equal $a*sqrt(8.0/3.0)
-
-.. parsed-literal::
-
- variable 1_3 equal 1.0/3.0
- variable 2_3 equal 2.0/3.0
- variable 1_6 equal 1.0/6.0
- variable 5_6 equal 5.0/6.0
- variable 1_12 equal 1.0/12.0
- variable 5_12 equal 5.0/12.0
-
-.. parsed-literal::
-
- lattice custom 1.0 &
- a1 $a 0.0 0.0 &
- a2 0.0 $b 0.0 &
- a3 0.0 0.0 $c &
- basis 0.0 0.0 0.0 &
- basis 0.5 0.5 0.0 &
- basis ${1_3} 0.0 0.5 &
- basis ${5_6} 0.5 0.5 &
- basis 0.0 0.0 0.625 &
- basis 0.5 0.5 0.625 &
- basis ${1_3} 0.0 0.125 &
- basis ${5_6} 0.5 0.125
-
-.. parsed-literal::
-
- region myreg block 0 1 0 1 0 1
- create_box 2 myreg
- create_atoms 1 box &
- basis 5 2 &
- basis 6 2 &
- basis 7 2 &
- basis 8 2
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *a1,a2,a3,basis* keywords can only be used with style *custom*.
-
-Related commands
-""""""""""""""""
-
-:doc:`dimension <dimension>`, :doc:`create_atoms <create_atoms>`,
-:doc:`region <region>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- lattice none 1.0
-
-For other lattice styles, the option defaults are origin = 0.0 0.0
-0.0, orient = x 1 0 0, orient = y 0 1 0, orient = z 0 0 1, a1 = 1 0 0,
-a2 = 0 1 0, and a3 = 0 0 1.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/log.txt b/doc/_sources/log.txt
deleted file mode 100644
index 956b3f394..000000000
--- a/doc/_sources/log.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-.. index:: log
-
-log command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- log file keyword
-
-* file = name of new logfile
-* keyword = *append* if output should be appended to logfile (optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- log log.equil
- log log.equil append
-
-Description
-"""""""""""
-
-This command closes the current LAMMPS log file, opens a new file with
-the specified name, and begins logging information to it. If the
-specified file name is *none*, then no new log file is opened. If the
-optional keyword *append* is specified, then output will be appended
-to an existing log file, instead of overwriting it.
-
-If multiple processor partitions are being used, the file name should
-be a variable, so that different processors do not attempt to write to
-the same log file.
-
-The file "log.lammps" is the default log file for a LAMMPS run. The
-name of the initial log file can also be set by the command-line
-switch -log. See :ref:`Section_start 6 <start_7>` for
-details.
-
-Restrictions
-""""""""""""
- none
-
-**Related commands:** none
-
-Default
-"""""""
-
-The default LAMMPS log file is named log.lammps
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/mass.txt b/doc/_sources/mass.txt
deleted file mode 100644
index ac4f2a368..000000000
--- a/doc/_sources/mass.txt
+++ /dev/null
@@ -1,92 +0,0 @@
-.. index:: mass
-
-mass command
-============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- mass I value
-
-* I = atom type (see asterisk form below)
-* value = mass
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- mass 1 1.0
- mass * 62.5
- mass 2* 62.5
-
-Description
-"""""""""""
-
-Set the mass for all atoms of one or more atom types. Per-type mass
-values can also be set in the :doc:`read_data <read_data>` data file
-using the "Masses" keyword. See the :doc:`units <units>` command for
-what mass units to use.
-
-The I index can be specified in one of two ways. An explicit numeric
-value can be used, as in the 1st example above. Or a wild-card
-asterisk can be used to set the mass for multiple atom types. This
-takes the form "*" or "*n" or "n*" or "m*n". If N = the number of
-atom types, then an asterisk with no numeric values means all types
-from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive).
-
-A line in a :doc:`data file <read_data>` that follows the "Masses"
-keyword specifies mass using the same format as the arguments of the
-mass command in an input script, except that no wild-card asterisk can
-be used. For example, under the "Masses" section of a data file, the
-line that corresponds to the 1st example above would be listed as
-
-.. parsed-literal::
-
- 1 1.0
-
-Note that the mass command can only be used if the :doc:`atom style <atom_style>` requires per-type atom mass to be set.
-Currently, all but the *sphere* and *ellipsoid* and *peri* styles do.
-They require mass to be set for individual particles, not types.
-Per-atom masses are defined in the data file read by the
-:doc:`read_data <read_data>` command, or set to default values by the
-:doc:`create_atoms <create_atoms>` command. Per-atom masses can also be
-set to new values by the :doc:`set mass <set>` or :doc:`set density <set>`
-commands.
-
-Also note that :doc:`pair_style eam <pair_eam>` and :doc:`pair_style bop <pair_bop>` commands define the masses of atom types in their
-respective potential files, in which case the mass command is normally
-not used.
-
-If you define a :doc:`hybrid atom style <atom_style>` which includes one
-(or more) sub-styles which require per-type mass and one (or more)
-sub-styles which require per-atom mass, then you must define both.
-However, in this case the per-type mass will be ignored; only the
-per-atom mass will be used by LAMMPS.
-
-Restrictions
-""""""""""""
-
-
-This command must come after the simulation box is defined by a
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`, or
-:doc:`create_box <create_box>` command.
-
-All masses must be defined before a simulation is run. They must also
-all be defined before a :doc:`velocity <velocity>` or :doc:`fix shake <fix_shake>` command is used.
-
-The mass assigned to any type or atom must be > 0.0.
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/min_modify.txt b/doc/_sources/min_modify.txt
deleted file mode 100644
index b3171084a..000000000
--- a/doc/_sources/min_modify.txt
+++ /dev/null
@@ -1,90 +0,0 @@
-.. index:: min_modify
-
-min_modify command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- min_modify keyword values ...
-
-* one or more keyword/value pairs may be listed
-.. parsed-literal::
-
- keyword = *dmax* or *line*
- *dmax* value = max
- max = maximum distance for line search to move (distance units)
- *line* value = *backtrack* or *quadratic* or *forcezero*
- backtrack,quadratic,forcezero = style of linesearch to use
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- min_modify dmax 0.2
-
-Description
-"""""""""""
-
-This command sets parameters that affect the energy minimization
-algorithms selected by the :doc:`min_style <min_style>` command. The
-various settings may affect the convergence rate and overall number of
-force evaluations required by a minimization, so users can experiment
-with these parameters to tune their minimizations.
-
-The *cg* and *sd* minimization styles have an outer iteration and an
-inner iteration which is steps along a one-dimensional line search in
-a particular search direction. The *dmax* parameter is how far any
-atom can move in a single line search in any dimension (x, y, or z).
-For the *quickmin* and *fire* minimization styles, the *dmax* setting
-is how far any atom can move in a single iteration (timestep). Thus a
-value of 0.1 in real :doc:`units <units>` means no atom will move
-further than 0.1 Angstroms in a single outer iteration. This prevents
-highly overlapped atoms from being moved long distances (e.g. through
-another atom) due to large forces.
-
-The choice of line search algorithm for the *cg* and *sd* minimization
-styles can be selected via the *line* keyword.
-The default *quadratic* line search algorithm starts out using
-the robust backtracking method described below. However, once
-the system gets close to a local
-minimum and the linesearch steps get small, so that the energy
-is approximately quadratic in the step length, it uses the
-estimated location of zero gradient as the linesearch step,
-provided the energy change is downhill.
-This becomes more efficient than backtracking
-for highly-converged relaxations. The *forcezero*
-line search algorithm is similar to *quadratic*.
-It may be more efficient than *quadratic* on some systems.
-
-The backtracking search is robust and should always find a local energy
-minimum. However, it will "converge" when it can no longer reduce the
-energy of the system. Individual atom forces may still be larger than
-desired at this point, because the energy change is measured as the
-difference of two large values (energy before and energy after) and
-that difference may be smaller than machine epsilon even if atoms
-could move in the gradient direction to reduce forces further.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`min_style <min_style>`, :doc:`minimize <minimize>`
-
-Default
-"""""""
-
-The option defaults are dmax = 0.1 and line = quadratic.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/min_style.txt b/doc/_sources/min_style.txt
deleted file mode 100644
index 95b783e5d..000000000
--- a/doc/_sources/min_style.txt
+++ /dev/null
@@ -1,121 +0,0 @@
-.. index:: min_style
-
-min_style command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- min_style style
-
-* style = *cg* or *hftn* or *sd* or *quickmin* or *fire*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- min_style cg
- min_style fire
-
-Description
-"""""""""""
-
-Choose a minimization algorithm to use when a :doc:`minimize <minimize>`
-command is performed.
-
-Style *cg* is the Polak-Ribiere version of the conjugate gradient (CG)
-algorithm. At each iteration the force gradient is combined with the
-previous iteration information to compute a new search direction
-perpendicular (conjugate) to the previous search direction. The PR
-variant affects how the direction is chosen and how the CG method is
-restarted when it ceases to make progress. The PR variant is thought
-to be the most effective CG choice for most problems.
-
-Style *hftn* is a Hessian-free truncated Newton algorithm. At each
-iteration a quadratic model of the energy potential is solved by a
-conjugate gradient inner iteration. The Hessian (second derivatives)
-of the energy is not formed directly, but approximated in each
-conjugate search direction by a finite difference directional
-derivative. When close to an energy minimum, the algorithm behaves
-like a Newton method and exhibits a quadratic convergence rate to high
-accuracy. In most cases the behavior of *hftn* is similar to *cg*,
-but it offers an alternative if *cg* seems to perform poorly. This
-style is not affected by the :doc:`min_modify <min_modify>` command.
-
-Style *sd* is a steepest descent algorithm. At each iteration, the
-search direction is set to the downhill direction corresponding to the
-force vector (negative gradient of energy). Typically, steepest
-descent will not converge as quickly as CG, but may be more robust in
-some situations.
-
-Style *quickmin* is a damped dynamics method described in
-:ref:`(Sheppard) <Sheppard>`, where the damping parameter is related to the
-projection of the velocity vector along the current force vector for
-each atom. The velocity of each atom is initialized to 0.0 by this
-style, at the beginning of a minimization.
-
-Style *fire* is a damped dynamics method described in
-:ref:`(Bitzek) <Bitzek>`, which is similar to *quickmin* but adds a variable
-timestep and alters the projection operation to maintain components of
-the velocity non-parallel to the current force vector. The velocity
-of each atom is initialized to 0.0 by this style, at the beginning of
-a minimization.
-
-Either the *quickmin* and *fire* styles are useful in the context of
-nudged elastic band (NEB) calculations via the :doc:`neb <neb>` command.
-
-.. note::
-
- The damped dynamic minimizers use whatever timestep you have
- defined via the :doc:`timestep <timestep>` command. Often they will
- converge more quickly if you use a timestep about 10x larger than you
- would normally use for dynamics simulations.
-
-.. note::
-
- The *quickmin* and *fire* styles do not yet support the use of
- the :doc:`fix box/relax <fix_box_relax>` command or minimizations
- involving the electron radius in :doc:`eFF <pair_eff>` models.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`min_modify <min_modify>`, :doc:`minimize <minimize>`, :doc:`neb <neb>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- min_style cg
-
-
-----------
-
-
-.. _Sheppard:
-
-
-
-**(Sheppard)** Sheppard, Terrell, Henkelman, J Chem Phys, 128, 134106
-(2008). See ref 1 in this paper for original reference to Qmin in
-Jonsson, Mills, Jacobsen.
-
-.. _Bitzek:
-
-
-
-**(Bitzek)** Bitzek, Koskinen, Gahler, Moseler, Gumbsch, Phys Rev Lett,
-97, 170201 (2006).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/minimize.txt b/doc/_sources/minimize.txt
deleted file mode 100644
index ff56603d2..000000000
--- a/doc/_sources/minimize.txt
+++ /dev/null
@@ -1,292 +0,0 @@
-.. index:: minimize
-
-minimize command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- minimize etol ftol maxiter maxeval
-
-* etol = stopping tolerance for energy (unitless)
-* ftol = stopping tolerance for force (force units)
-* maxiter = max iterations of minimizer
-* maxeval = max number of force/energy evaluations
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- minimize 1.0e-4 1.0e-6 100 1000
- minimize 0.0 1.0e-8 1000 100000
-
-Description
-"""""""""""
-
-Perform an energy minimization of the system, by iteratively adjusting
-atom coordinates. Iterations are terminated when one of the stopping
-criteria is satisfied. At that point the configuration will hopefully
-be in local potential energy minimum. More precisely, the
-configuration should approximate a critical point for the objective
-function (see below), which may or may not be a local minimum.
-
-The minimization algorithm used is set by the
-:doc:`min_style <min_style>` command. Other options are set by the
-:doc:`min_modify <min_modify>` command. Minimize commands can be
-interspersed with :doc:`run <run>` commands to alternate between
-relaxation and dynamics. The minimizers bound the distance atoms move
-in one iteration, so that you can relax systems with highly overlapped
-atoms (large energies and forces) by pushing the atoms off of each
-other.
-
-Alternate means of relaxing a system are to run dynamics with a small
-or :doc:`limited timestep <fix_nve_limit>`. Or dynamics can be run
-using :doc:`fix viscous <fix_viscous>` to impose a damping force that
-slowly drains all kinetic energy from the system. The :doc:`pair_style soft <pair_soft>` potential can be used to un-overlap atoms while
-running dynamics.
-
-Note that you can minimize some atoms in the system while holding the
-coordiates of other atoms fixed by applying :doc:`fix setforce <fix_setforce>` to the other atoms. See a fuller
-discussion of using fixes while minimizing below.
-
-The :doc:`minimization styles <min_style>` *cg*, *sd*, and *hftn*
-involves an outer iteration loop which sets the search direction along
-which atom coordinates are changed. An inner iteration is then
-performed using a line search algorithm. The line search typically
-evaluates forces and energies several times to set new coordinates.
-Currently, a backtracking algorithm is used which may not be optimal
-in terms of the number of force evaulations performed, but appears to
-be more robust than previous line searches we've tried. The
-backtracking method is described in Nocedal and Wright's Numerical
-Optimization (Procedure 3.1 on p 41).
-
-The :doc:`minimization styles <min_style>` *quickmin* and *fire* perform
-damped dynamics using an Euler integration step. Thus they require a
-:doc:`timestep <timestep>` be defined.
-
-.. note::
-
- The damped dynamic minimizers use whatever timestep you have
- defined via the :doc:`timestep <timestep>` command. Often they will
- converge more quickly if you use a timestep about 10x larger than you
- would normally use for dynamics simulations.
-
-
-----------
-
-
-In all cases, the objective function being minimized is the total
-potential energy of the system as a function of the N atom
-coordinates:
-
-.. image:: Eqs/min_energy.jpg
- :align: center
-
-where the first term is the sum of all non-bonded :doc:`pairwise interactions <pair_style>` including :doc:`long-range Coulombic interactions <kspace_style>`, the 2nd thru 5th terms are
-:doc:`bond <bond_style>`, :doc:`angle <angle_style>`,
-:doc:`dihedral <dihedral_style>`, and :doc:`improper <improper_style>`
-interactions respectively, and the last term is energy due to
-:doc:`fixes <fix>` which can act as constraints or apply force to atoms,
-such as thru interaction with a wall. See the discussion below about
-how fix commands affect minimization.
-
-The starting point for the minimization is the current configuration
-of the atoms.
-
-
-----------
-
-
-The minimization procedure stops if any of several criteria are met:
-
-* the change in energy between outer iterations is less than *etol*
-* the 2-norm (length) of the global force vector is less than the *ftol*
-* the line search fails because the step distance backtracks to 0.0
-* the number of outer iterations or timesteps exceeds *maxiter*
-* the number of total force evaluations exceeds *maxeval*
-
-For the first criterion, the specified energy tolerance *etol* is
-unitless; it is met when the energy change between successive
-iterations divided by the energy magnitude is less than or equal to
-the tolerance. For example, a setting of 1.0e-4 for *etol* means an
-energy tolerance of one part in 10^4. For the damped dynamics
-minimizers this check is not performed for a few steps after
-velocities are reset to 0, otherwise the minimizer would prematurely
-converge.
-
-For the second criterion, the specified force tolerance *ftol* is in
-force units, since it is the length of the global force vector for all
-atoms, e.g. a vector of size 3N for N atoms. Since many of the
-components will be near zero after minimization, you can think of
-*ftol* as an upper bound on the final force on any component of any
-atom. For example, a setting of 1.0e-4 for *ftol* means no x, y, or z
-component of force on any atom will be larger than 1.0e-4 (in force
-units) after minimization.
-
-Either or both of the *etol* and *ftol* values can be set to 0.0, in
-which case some other criterion will terminate the minimization.
-
-During a minimization, the outer iteration count is treated as a
-timestep. Output is triggered by this timestep, e.g. thermodynamic
-output or dump and restart files.
-
-Using the :doc:`thermo_style custom <thermo_style>` command with the
-*fmax* or *fnorm* keywords can be useful for monitoring the progress
-of the minimization. Note that these outputs will be calculated only
-from forces on the atoms, and will not include any extra degrees of
-freedom, such as from the :doc:`fix box/relax <fix_box_relax>` command.
-
-Following minimization, a statistical summary is printed that lists
-which convergence criterion caused the minimizer to stop, as well as
-information about the energy, force, final line search, and
-iteration counts. An example is as follows:
-
-.. parsed-literal::
-
- Minimization stats:
- Stopping criterion = max iterations
- Energy initial, next-to-last, final =
- -0.626828169302 -2.82642039062 -2.82643549739
- Force two-norm initial, final = 2052.1 91.9642
- Force max component initial, final = 346.048 9.78056
- Final line search alpha, max atom move = 2.23899e-06 2.18986e-05
- Iterations, force evaluations = 2000 12724
-
-The 3 energy values are for before and after the minimization and on
-the next-to-last iteration. This is what the *etol* parameter checks.
-
-The two-norm force values are the length of the global force vector
-before and after minimization. This is what the *ftol* parameter
-checks.
-
-The max-component force values are the absolute value of the largest
-component (x,y,z) in the global force vector, i.e. the infinity-norm
-of the force vector.
-
-The alpha parameter for the line-search, when multiplied by the max
-force component (on the last iteration), gives the max distance any
-atom moved during the last iteration. Alpha will be 0.0 if the line
-search could not reduce the energy. Even if alpha is non-zero, if the
-"max atom move" distance is tiny compared to typical atom coordinates,
-then it is possible the last iteration effectively caused no atom
-movement and thus the evaluated energy did not change and the
-minimizer terminated. Said another way, even with non-zero forces,
-it's possible the effect of those forces is to move atoms a distance
-less than machine precision, so that the energy cannot be further
-reduced.
-
-The iterations and force evaluation values are what is checked by the
-*maxiter* and *maxeval* parameters.
-
-
-----------
-
-
-.. note::
-
- There are several force fields in LAMMPS which have
- discontinuities or other approximations which may prevent you from
- performing an energy minimization to high tolerances. For example,
- you should use a :doc:`pair style <pair_style>` that goes to 0.0 at the
- cutoff distance when performing minimization (even if you later change
- it when running dynamics). If you do not do this, the total energy of
- the system will have discontinuities when the relative distance
- between any pair of atoms changes from cutoff+epsilon to
- cutoff-epsilon and the minimizer may behave poorly. Some of the
- manybody potentials use splines and other internal cutoffs that
- inherently have this problem. The :doc:`long-range Coulombic styles <kspace_style>` (PPPM, Ewald) are approximate to within the
- user-specified tolerance, which means their energy and forces may not
- agree to a higher precision than the Kspace-specified tolerance. In
- all these cases, the minimizer may give up and stop before finding a
- minimum to the specified energy or force tolerance.
-
-Note that a cutoff Lennard-Jones potential (and others) can be shifted
-so that its energy is 0.0 at the cutoff via the
-:doc:`pair_modify <pair_modify>` command. See the doc pages for
-inidividual :doc:`pair styles <pair_style>` for details. Note that
-Coulombic potentials always have a cutoff, unless versions with a
-long-range component are used (e.g. :doc:`pair_style lj/cut/coul/long <pair_lj>`). The CHARMM potentials go to 0.0 at
-the cutoff (e.g. :doc:`pair_style lj/charmm/coul/charmm <pair_charmm>`),
-as do the GROMACS potentials (e.g. :doc:`pair_style lj/gromacs <pair_gromacs>`).
-
-If a soft potential (:doc:`pair_style soft <pair_soft>`) is used the
-Astop value is used for the prefactor (no time dependence).
-
-The :doc:`fix box/relax <fix_box_relax>` command can be used to apply an
-external pressure to the simulation box and allow it to shrink/expand
-during the minimization.
-
-Only a few other fixes (typically those that apply force constraints)
-are invoked during minimization. See the doc pages for individual
-:doc:`fix <fix>` commands to see which ones are relevant. Current
-examples of fixes that can be used include:
-
-* :doc:`fix addforce <fix_addforce>`
-* :doc:`fix addtorque <fix_addtorque>`
-* :doc:`fix efield <fix_efield>`
-* :doc:`fix enforce2d <fix_enforce2d>`
-* :doc:`fix indent <fix_indent>`
-* :doc:`fix lineforce <fix_lineforce>`
-* :doc:`fix planeforce <fix_planeforce>`
-* :doc:`fix setforce <fix_setforce>`
-* :doc:`fix spring <fix_spring>`
-* :doc:`fix spring/self <fix_spring_self>`
-* :doc:`fix viscous <fix_viscous>`
-* :doc:`fix wall <fix_wall>`
-* :doc:`fix wall/region <fix_wall_region>`
-
-.. note::
-
- Some fixes which are invoked during minimization have an
- associated potential energy. For that energy to be included in the
- total potential energy of the system (the quantity being minimized),
- you MUST enable the :doc:`fix_modify <fix_modify>` *energy* option for
- that fix. The doc pages for individual :doc:`fix <fix>` commands
- specify if this should be done.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Features that are not yet implemented are listed here, in case someone
-knows how they could be coded:
-
-It is an error to use :doc:`fix shake <fix_shake>` with minimization
-because it turns off bonds that should be included in the potential
-energy of the system. The effect of a fix shake can be approximated
-during a minimization by using stiff spring constants for the bonds
-and/or angles that would normally be constrained by the SHAKE
-algorithm.
-
-:doc:`Fix rigid <fix_rigid>` is also not supported by minimization. It
-is not an error to have it defined, but the energy minimization will
-not keep the defined body(s) rigid during the minimization. Note that
-if bonds, angles, etc internal to a rigid body have been turned off
-(e.g. via :doc:`neigh_modify exclude <neigh_modify>`), they will not
-contribute to the potential energy which is probably not what is
-desired.
-
-Pair potentials that produce torque on a particle (e.g. :doc:`granular potentials <pair_gran>` or the :doc:`GayBerne potential <pair_gayberne>` for ellipsoidal particles) are not
-relaxed by a minimization. More specifically, radial relaxations are
-induced, but no rotations are induced by a minimization, so such a
-system will not fully relax.
-
-Related commands
-""""""""""""""""
-
-:doc:`min_modify <min_modify>`, :doc:`min_style <min_style>`,
-:doc:`run_style <run_style>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/molecule.txt b/doc/_sources/molecule.txt
deleted file mode 100644
index 0f5798f43..000000000
--- a/doc/_sources/molecule.txt
+++ /dev/null
@@ -1,509 +0,0 @@
-.. index:: molecule
-
-molecule command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- molecule ID file1 keyword values ... file2 keyword values ... fileN ...
-
-* ID = user-assigned name for the molecule template
-* file1,file2,... = names of files containing molecule descriptions
-* zero or more keyword/value pairs may be appended after each file
-* keyword = *offset* or *toff* or *boff* or *aoff* or *doff* or *ioff* or *scale*
-.. parsed-literal::
-
- *offset* values = Toff Boff Aoff Doff Ioff
- Toff = offset to add to atom types
- Boff = offset to add to bond types
- Aoff = offset to add to angle types
- Doff = offset to add to dihedral types
- Ioff = offset to add to improper types
- *toff* value = Toff
- Toff = offset to add to atom types
- *boff* value = Boff
- Boff = offset to add to bond types
- *aoff* value = Aoff
- Aoff = offset to add to angle types
- *doff* value = Doff
- Doff = offset to add to dihedral types
- *ioff* value = Ioff
- Ioff = offset to add to improper types
- *scale* value = sfactor
- sfactor = scale factor to apply to the size and mass of the molecule
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- molecule 1 mymol.txt
- molecule 1 co2.txt h2o.txt
- molecule CO2 co2.txt boff 3 aoff 2
- molecule 1 mymol.txt offset 6 9 18 23 14
- molecule objects file.1 scale 1.5 file.1 scale 2.0 file.2 scale 1.3
-
-.. parsed-literal::
-
-
-Description
-"""""""""""
-
-Define a molecule template that can be used as part of other LAMMPS
-commands, typically to define a collection of particles as a bonded
-molecule or a rigid body. Commands that currently use molecule
-templates include:
-
-* :doc:`fix deposit <fix_deposit>`
-* :doc:`fix pour <fix_pour>`
-* :doc:`fix rigid/small <fix_rigid>`
-* :doc:`fix shake <fix_shake>`
-* :doc:`fix gcmc <fix_gcmc>`
-* :doc:`create_atoms <create_atoms>`
-* :doc:`atom_style template <atom_style>`
-
-The ID of a molecule template can only contain alphanumeric characters
-and underscores.
-
-A single template can contain multiple molecules, listed one per file.
-Some of the commands listed above currently use only the first
-molecule in the template, and will issue a warning if the template
-contains multiple molecules. The :doc:`atom_style template <atom_style>` command allows multiple-molecule templates
-to define a system with more than one templated molecule.
-
-Each filename can be followed by optional keywords which are applied
-only to the molecule in the file as used in this template. This is to
-make it easy to use the same molecule file in different molecule
-templates or in different simulations. You can specify the same file
-multiple times with different optional keywords.
-
-The *offset*, *toff*, *aoff*, *doff*, *ioff* keywords add the
-specified offset values to the atom types, bond types, angle types,
-dihedral types, and/or improper types as they are read from the
-molecule file. E.g. if *toff* = 2, and the file uses atom types
-1,2,3, then each created molecule will have atom types 3,4,5. For the
-*offset* keyword, all five offset values must be specified, but
-individual values will be ignored if the molecule template does not
-use that attribute (e.g. no bonds).
-
-The *scale* keyword scales the size of the molecule. This can be
-useful for modeling polydisperse granular rigid bodies. The scale
-factor is applied to each of these properties in the molecule file, if
-they are defined: the individual particle coordinates (Coords
-section), the individual mass of each particle (Masses section), the
-individual diameters of each particle (Diameters section), the total
-mass of the molecule (header keyword = mass), the center-of-mass of
-the molecule (header keyword = com), and the moments of inertia of the
-molecule (header keyword = inertia).
-
-.. note::
-
- The molecule command can be used to define molecules with bonds,
- angles, dihedrals, imporopers, or special bond lists of neighbors
- within a molecular topology, so that you can later add the molecules
- to your simulation, via one or more of the commands listed above. If
- such molecules do not already exist when LAMMPS creates the simulation
- box, via the :doc:`create_box <create_box>` or
- :doc:`read_data <read_data>` command, when you later add them you may
- overflow the pre-allocated data structures which store molecular
- topology information with each atom, and an error will be generated.
- Both the :doc:`create_box <create_box>` command and the data files read
- by the :doc:`read_data <read_data>` command have "extra" options which
- insure space is allocated for storing topology info for molecules that
- are added later.
-
-The format of an individual molecule file is similar to the data file
-read by the :doc:`read_data <read_data>` commands, and is as follows.
-
-A molecule file has a header and a body. The header appears first.
-The first line of the header is always skipped; it typically contains
-a description of the file. Then lines are read one at a time. Lines
-can have a trailing comment starting with '#' that is ignored. If the
-line is blank (only whitespace after comment is deleted), it is
-skipped. If the line contains a header keyword, the corresponding
-value(s) is read from the line. If it doesn't contain a header
-keyword, the line begins the body of the file.
-
-The body of the file contains zero or more sections. The first line
-of a section has only a keyword. The next line is skipped. The
-remaining lines of the section contain values. The number of lines
-depends on the section keyword as described below. Zero or more blank
-lines can be used between sections. Sections can appear in any order,
-with a few exceptions as noted below.
-
-These are the recognized header keywords. Header lines can come in
-any order. The numeric value(s) are read from the beginning of the
-line. The keyword should appear at the end of the line. All these
-settings have default values, as explained below. A line need only
-appear if the value(s) are different than the default.
-
-* N *atoms* = # of atoms N in molecule, default = 0
-* Nb *bonds* = # of bonds Nb in molecule, default = 0
-* Na *angles* = # of angles Na in molecule, default = 0
-* Nd *dihedrals* = # of dihedrals Nd in molecule, default = 0
-* Ni *impropers* = # of impropers Ni in molecule, default = 0
-* Mtotal *mass* = total mass of molecule
-* Xc Yc Zc *com* = coordinates of center-of-mass of molecule
-* Ixx Iyy Izz Ixy Ixz Iyz *inertia* = 6 components of inertia tensor of molecule
-
-For *mass*, *com*, and *inertia*, the default is for LAMMPS to
-calculate this quantity itself if needed, assuming the molecules
-consists of a set of point particles or finite-size particles (with a
-non-zero diameter) that do not overlap. If finite-size particles in
-the molecule do overlap, LAMMPS will not account for the overlap
-effects when calculating any of these 3 quantities, so you should
-pre-compute them yourself and list the values in the file.
-
-The mass and center-of-mass coordinates (Xc,Yc,Zc) are
-self-explanatory. The 6 moments of inertia (ixx,iyy,izz,ixy,ixz,iyz)
-should be the values consistent with the current orientation of the
-rigid body around its center of mass. The values are with respect to
-the simulation box XYZ axes, not with respect to the prinicpal axes of
-the rigid body itself. LAMMPS performs the latter calculation
-internally.
-
-These are the allowed section keywords for the body of the file.
-
-* *Coords, Types, Charges, Diameters, Masses* = atom-property sections
-* *Bonds, Angles, Dihedrals, Impropers* = molecular topology sections
-* *Special Bond Counts, Special Bonds* = special neighbor info
-* *Shake Flags, Shake Atoms, Shake Bond Types* = SHAKE info
-
-If a Bonds section is specified then the Special Bond Counts and
-Special Bonds sections can also be used, if desired, to explicitly
-list the 1-2, 1-3, 1-4 neighbors within the molecule topology (see
-details below). This is optional since if these sections are not
-included, LAMMPS will auto-generate this information. Note that
-LAMMPS uses this info to properly exclude or weight bonded pairwise
-interactions between bonded atoms. See the
-:doc:`special_bonds <special_bonds>` command for more details. One
-reason to list the special bond info explicitly is for the
-:doc:`thermalized Drude oscillator model <tutorial_drude>` which treats
-the bonds between nuclear cores and Drude electrons in a different
-manner.
-
-.. note::
-
- Whether a section is required depends on how the molecule
- template is used by other LAMMPS commands. For example, to add a
- molecule via the :doc:`fix deposit <fix_deposit>` command, the Coords
- and Types sections are required. To add a rigid body via the :doc:`fix pour <fix_pout>` command, the Bonds (Angles, etc) sections are not
- required, since the molecule will be treated as a rigid body. Some
- sections are optional. For example, the :doc:`fix pour <fix_pour>`
- command can be used to add "molecules" which are clusters of
- finite-size granular particles. If the Diameters section is not
- specified, each particle in the molecule will have a default diameter
- of 1.0. See the doc pages for LAMMPS commands that use molecule
- templates for more details.
-
-Each section is listed below in alphabetic order. The format of each
-section is described including the number of lines it must contain and
-rules (if any) for whether it can appear in the data file. In each
-case the ID is ignored; it is simply included for readability, and
-should be a number from 1 to Nlines for the section, indicating which
-atom (or bond, etc) the entry applies to. The lines are assumed to be
-listed in order from 1 to Nlines, but LAMMPS does not check for this.
-
-
-----------
-
-
-*Coords* section:
-
-* one line per atom
-* line syntax: ID x y z
-* x,y,z = coordinate of atom
-
-
-----------
-
-
-*Types* section:
-
-* one line per atom
-* line syntax: ID type
-* type = atom type of atom
-
-
-----------
-
-
-*Charges* section:
-
-* one line per atom
-* line syntax: ID q
-* q = charge on atom
-
-This section is only allowed for :doc:`atom styles <atom_style>` that
-support charge. If this section is not included, the default charge
-on each atom in the molecule is 0.0.
-
-
-----------
-
-
-*Diameters* section:
-
-* one line per atom
-* line syntax: ID diam
-* diam = diameter of atom
-
-This section is only allowed for :doc:`atom styles <atom_style>` that
-support finite-size spherical particles, e.g. atom_style sphere. If
-not listed, the default diameter of each atom in the molecule is 1.0.
-
-
-----------
-
-
-*Masses* section:
-
-* one line per atom
-* line syntax: ID mass
-* mass = mass of atom
-
-This section is only allowed for :doc:`atom styles <atom_style>` that
-support per-atom mass, as opposed to per-type mass. See the
-:doc:`mass <mass>` command for details. If this section is not
-included, the default mass for each atom is derived from its volume
-(see Diameters section) and a default density of 1.0, in
-:doc:`units <units>` of mass/volume.
-
-
-----------
-
-
-*Bonds* section:
-
-* one line per bond
-* line syntax: ID type atom1 atom2
-* type = bond type (1-Nbondtype)
-* atom1,atom2 = IDs of atoms in bond
-
-The IDs for the two atoms in each bond should be values
-from 1 to Natoms, where Natoms = # of atoms in the molecule.
-
-
-----------
-
-
-*Angles* section:
-
-* one line per angle
-* line syntax: ID type atom1 atom2 atom3
-* type = angle type (1-Nangletype)
-* atom1,atom2,atom3 = IDs of atoms in angle
-
-The IDs for the three atoms in each angle should be values from 1 to
-Natoms, where Natoms = # of atoms in the molecule. The 3 atoms are
-ordered linearly within the angle. Thus the central atom (around
-which the angle is computed) is the atom2 in the list.
-
-
-----------
-
-
-*Dihedrals* section:
-
-* one line per dihedral
-* line syntax: ID type atom1 atom2 atom3 atom4
-* type = dihedral type (1-Ndihedraltype)
-* atom1,atom2,atom3,atom4 = IDs of atoms in dihedral
-
-The IDs for the four atoms in each dihedral should be values from 1 to
-Natoms, where Natoms = # of atoms in the molecule. The 4 atoms are
-ordered linearly within the dihedral.
-
-
-----------
-
-
-*Impropers* section:
-
-* one line per improper
-* line syntax: ID type atom1 atom2 atom3 atom4
-* type = improper type (1-Nimpropertype)
-* atom1,atom2,atom3,atom4 = IDs of atoms in improper
-
-The IDs for the four atoms in each improper should be values from 1 to
-Natoms, where Natoms = # of atoms in the molecule. The ordering of
-the 4 atoms determines the definition of the improper angle used in
-the formula for the defined :doc:`improper style <improper_style>`. See
-the doc pages for individual styles for details.
-
-
-----------
-
-
-*Special Bond Counts* section:
-
-* one line per atom
-* line syntax: ID N1 N2 N3
-* N1 = # of 1-2 bonds
-* N2 = # of 1-3 bonds
-* N3 = # of 1-4 bonds
-
-N1, N2, N3 are the number of 1-2, 1-3, 1-4 neighbors respectively of
-this atom within the topology of the molecule. See the
-:doc:`special_bonds <special_bonds>` doc page for more discussion of
-1-2, 1-3, 1-4 neighbors. If this section appears, the Special Bonds
-section must also appear. If this section is not specied, the
-atoms in the molecule will have no special bonds.
-
-
-----------
-
-
-*Special Bonds* section:
-
-* one line per atom
-* line syntax: ID a b c d ...
-* a,b,c,d,... = IDs of atoms in N1+N2+N3 special bonds
-
-A, b, c, d, etc are the IDs of the n1+n2+n3 atoms that are 1-2, 1-3,
-1-4 neighbors of this atom. The IDs should be values from 1 to
-Natoms, where Natoms = # of atoms in the molecule. The first N1
-values should be the 1-2 neighbors, the next N2 should be the 1-3
-neighbors, the last N3 should be the 1-4 neighbors. No atom ID should
-appear more than once. See the :doc:`special_bonds <special_bonds>` doc
-page for more discussion of 1-2, 1-3, 1-4 neighbors. If this section
-appears, the Special Bond Counts section must also appear. If this
-section is not specied, the atoms in the molecule will have no special
-bonds.
-
-
-----------
-
-
-*Shake Flags* section:
-
-* one line per atom
-* line syntax: ID flag
-* flag = 0,1,2,3,4
-
-This section is only needed when molecules created using the template
-will be constrained by SHAKE via the "fix shake" command. The other
-two Shake sections must also appear in the file, following this one.
-
-The meaning of the flag for each atom is as follows. See the :doc:`fix shake <fix_shake>` doc page for a further description of SHAKE
-clusters.
-
-* 0 = not part of a SHAKE cluster
-* 1 = part of a SHAKE angle cluster (two bonds and the angle they form)
-* 2 = part of a 2-atom SHAKE cluster with a single bond
-* 3 = part of a 3-atom SHAKE cluster with two bonds
-* 4 = part of a 4-atom SHAKE cluster with three bonds
-
-
-----------
-
-
-*Shake Atoms* section:
-
-* one line per atom
-* line syntax: ID a b c d
-* a,b,c,d = IDs of atoms in cluster
-
-This section is only needed when molecules created using the template
-will be constrained by SHAKE via the "fix shake" command. The other
-two Shake sections must also appear in the file.
-
-The a,b,c,d values are atom IDs (from 1 to Natoms) for all the atoms
-in the SHAKE cluster that this atom belongs to. The number of values
-that must appear is determined by the shake flag for the atom (see the
-Shake Flags section above). All atoms in a particular cluster should
-list their a,b,c,d values identically.
-
-If flag = 0, no a,b,c,d values are listed on the line, just the
-(ignored) ID.
-
-If flag = 1, a,b,c are listed, where a = ID of central atom in the
-angle, and b,c the other two atoms in the angle.
-
-If flag = 2, a,b are listed, where a = ID of atom in bond with the the
-lowest ID, and b = ID of atom in bond with the highest ID.
-
-If flag = 3, a,b,c are listed, where a = ID of central atom,
-and b,c = IDs of other two atoms bonded to the central atom.
-
-If flag = 4, a,b,c,d are listed, where a = ID of central atom,
-and b,c,d = IDs of other three atoms bonded to the central atom.
-
-See the :doc:`fix shake <fix_shake>` doc page for a further description
-of SHAKE clusters.
-
-
-----------
-
-
-*Shake Bond Types* section:
-
-* one line per atom
-* line syntax: ID a b c
-* a,b,c = bond types (or angle type) of bonds (or angle) in cluster
-
-This section is only needed when molecules created using the template
-will be constrained by SHAKE via the "fix shake" command. The other
-two Shake sections must also appear in the file.
-
-The a,b,c values are bond types (from 1 to Nbondtypes) for all bonds
-in the SHAKE cluster that this atom belongs to. The number of values
-that must appear is determined by the shake flag for the atom (see the
-Shake Flags section above). All atoms in a particular cluster should
-list their a,b,c values identically.
-
-If flag = 0, no a,b,c values are listed on the line, just the
-(ignored) ID.
-
-If flag = 1, a,b,c are listed, where a = bondtype of the bond between
-the central atom and the first non-central atom (value b in the Shake
-Atoms section), b = bondtype of the bond between the central atom and
-the 2nd non-central atom (value c in the Shake Atoms section), and c =
-the angle type (1 to Nangletypes) of the angle between the 3 atoms.
-
-If flag = 2, only a is listed, where a = bondtype of the bond between
-the 2 atoms in the cluster.
-
-If flag = 3, a,b are listed, where a = bondtype of the bond between
-the central atom and the first non-central atom (value b in the Shake
-Atoms section), and b = bondtype of the bond between the central atom
-and the 2nd non-central atom (value c in the Shake Atoms section).
-
-If flag = 4, a,b,c are listed, where a = bondtype of the bond between
-the central atom and the first non-central atom (value b in the Shake
-Atoms section), b = bondtype of the bond between the central atom and
-the 2nd non-central atom (value c in the Shake Atoms section), and c =
-bondtype of the bond between the central atom and the 3rd non-central
-atom (value d in the Shake Atoms section).
-
-See the :doc:`fix shake <fix_shake>` doc page for a further description
-of SHAKE clusters.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix deposit <fix_deposit>`, :doc:`fix pour <fix_pour>`,
-:doc:`fix gcmc <fix_gcmc>`
-
-Default
-"""""""
-
-The default keywords values are offset 0 0 0 0 0 and scale = 1.0.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/neb.txt b/doc/_sources/neb.txt
deleted file mode 100644
index ca6fa1f5a..000000000
--- a/doc/_sources/neb.txt
+++ /dev/null
@@ -1,471 +0,0 @@
-.. index:: neb
-
-neb command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- neb etol ftol N1 N2 Nevery file-style arg
-
-* etol = stopping tolerance for energy (energy units)
-* ftol = stopping tolerance for force (force units)
-* N1 = max # of iterations (timesteps) to run initial NEB
-* N2 = max # of iterations (timesteps) to run barrier-climbing NEB
-* Nevery = print replica energies and reaction coordinates every this many timesteps
-* file-style= *final* or *each* or *none*
-.. parsed-literal::
-
- *final* arg = filename
- filename = file with initial coords for final replica
- coords for intermediate replicas are linearly interpolated between first and last replica
- *each* arg = filename
- filename = unique filename for each replica (except first) with its initial coords
- *none* arg = no argument
- all replicas assumed to already have their initial coords
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- neb 0.1 0.0 1000 500 50 final coords.final
- neb 0.0 0.001 1000 500 50 each coords.initial.$i
- neb 0.0 0.001 1000 500 50 none
-
-Description
-"""""""""""
-
-Perform a nudged elastic band (NEB) calculation using multiple
-replicas of a system. Two or more replicas must be used; the first
-and last are the end points of the transition path.
-
-NEB is a method for finding both the atomic configurations and height
-of the energy barrier associated with a transition state, e.g. for an
-atom to perform a diffusive hop from one energy basin to another in a
-coordinated fashion with its neighbors. The implementation in LAMMPS
-follows the discussion in these 3 papers: :ref:`(Henkelman1) <Henkelman1>`,
-:ref:`(Henkelman2) <Henkelman2>`, and :ref:`(Nakano) <Nakano>`.
-
-Each replica runs on a partition of one or more processors. Processor
-partitions are defined at run-time using the -partition command-line
-switch; see :ref:`Section_start 7 <start_7>` of the
-manual. Note that if you have MPI installed, you can run a
-multi-replica simulation with more replicas (partitions) than you have
-physical processors, e.g you can run a 10-replica simulation on just
-one or two processors. You will simply not get the performance
-speed-up you would see with one or more physical processors per
-replica. See :ref:`this section <howto_5>` of the manual
-for further discussion.
-
-.. note::
-
- The current NEB implementation in LAMMPS only allows there to be
- one processor per replica.
-
-.. note::
-
- As explained below, a NEB calculation perfoms a damped dynamics
- minimization across all the replicas. The mimimizer uses whatever
- timestep you have defined in your input script, via the
- :doc:`timestep <timestep>` command. Often NEB will converge more
- quickly if you use a timestep about 10x larger than you would normally
- use for dynamics simulations.
-
-When a NEB calculation is performed, it is assumed that each replica
-is running the same system, though LAMMPS does not check for this.
-I.e. the simulation domain, the number of atoms, the interaction
-potentials, and the starting configuration when the neb command is
-issued should be the same for every replica.
-
-In a NEB calculation each atom in a replica is connected to the same
-atom in adjacent replicas by springs, which induce inter-replica
-forces. These forces are imposed by the :doc:`fix neb <fix_neb>`
-command, which must be used in conjunction with the neb command. The
-group used to define the fix neb command defines the NEB atoms which
-are the only ones that inter-replica springs are applied to. If the
-group does not include all atoms, then non-NEB atoms have no
-inter-replica springs and the forces they feel and their motion is
-computed in the usual way due only to other atoms within their
-replica. Conceptually, the non-NEB atoms provide a background force
-field for the NEB atoms. They can be allowed to move during the NEB
-minimiation procedure (which will typically induce different
-coordinates for non-NEB atoms in different replicas), or held fixed
-using other LAMMPS commands such as `fix setforce <fix_setforce>`_. Note
-that the :doc:`partition <partition>` command can be used to invoke a
-command on a subset of the replicas, e.g. if you wish to hold NEB or
-non-NEB atoms fixed in only the end-point replicas.
-
-The initial atomic configuration for each of the replicas can be
-specified in different manners via the *file-style* setting, as
-discussed below. Only atoms whose initial coordinates should differ
-from the current configuration need be specified.
-
-Conceptually, the initial configuration for the first replica should
-be a state with all the atoms (NEB and non-NEB) having coordinates on
-one side of the energy barrier. A perfect energy minimum is not
-required, since atoms in the first replica experience no spring forces
-from the 2nd replica. Thus the damped dynamics minimizaiton will
-drive the first replica to an energy minimum if it is not already
-there. However, you will typically get better convergence if the
-initial state is already at a minimum. For example, for a system with
-a free surface, the surface should be fully relaxed before attempting
-a NEB calculation.
-
-Likewise, the initial configuration of the final replica should be a
-state with all the atoms (NEB and non-NEB) on the other side of the
-energy barrier. Again, a perfect energy minimum is not required,
-since the atoms in the last replica also experience no spring forces
-from the next-to-last replica, and thus the damped dynamics
-minimization will drive it to an energy minimum.
-
-As explained below, the initial configurations of intermediate
-replicas can be atomic coordinates interpolated in a linear fashion
-between the first and last replicas. This is often adequate state for
-simple transitions. For more complex transitions, it may lead to slow
-convergence or even bad results if the minimum energy path (MEP, see
-below) of states over the barrier cannot be correctly converged to
-from such an initial configuration. In this case, you will want to
-generate initial states for the intermediate replicas that are
-geometrically closer to the MEP and read them in.
-
-
-----------
-
-
-For a *file-style* setting of *final*, a filename is specified which
-contains atomic coordinates for zero or more atoms, in the format
-described below. For each atom that appears in the file, the new
-coordinates are assigned to that atom in the final replica. Each
-intermediate replica also assigns a new position to that atom in an
-interpolated manner. This is done by using the current position of
-the atom as the starting point and the read-in position as the final
-point. The distance between them is calculated, and the new position
-is assigned to be a fraction of the distance. E.g. if there are 10
-replicas, the 2nd replica will assign a position that is 10% of the
-distance along a line between the starting and final point, and the
-9th replica will assign a position that is 90% of the distance along
-the line. Note that this procedure to produce consistent coordinates
-across all the replicas, the current coordinates need to be the same
-in all replicas. LAMMPS does not check for this, but invalid initial
-configurations will likely result if it is not the case.
-
-.. note::
-
- The "distance" between the starting and final point is
- calculated in a minimum-image sense for a periodic simulation box.
- This means that if the two positions are on opposite sides of a box
- (periodic in that dimension), the distance between them will be small,
- because the periodic image of one of the atoms is close to the other.
- Similarly, even if the assigned position resulting from the
- interpolation is outside the periodic box, the atom will be wrapped
- back into the box when the NEB calculation begins.
-
-For a *file-style* setting of *each*, a filename is specified which is
-assumed to be unique to each replica. This can be done by
-using a variable in the filename, e.g.
-
-.. parsed-literal::
-
- variable i equal part
- neb 0.0 0.001 1000 500 50 each coords.initial.$i
-
-which in this case will substitute the partition ID (0 to N-1) for the
-variable I, which is also effectively the replica ID. See the
-:doc:`variable <variable>` command for other options, such as using
-world-, universe-, or uloop-style variables.
-
-Each replica (except the first replica) will read its file, formatted
-as described below, and for any atom that appears in the file, assign
-the specified coordinates to its atom. The various files do not need
-to contain the same set of atoms.
-
-For a *file-style* setting of *none*, no filename is specified. Each
-replica is assumed to already be in its initial configuration at the
-time the neb command is issued. This allows each replica to define
-its own configuration by reading a replica-specific data or restart or
-dump file, via the :doc:`read_data <read_data>`,
-:doc:`read_restart <read_restart>`, or :doc:`read_dump <read_dump>`
-commands. The replica-specific names of these files can be specified
-as in the discussion above for the *each* file-style. Also see the
-section below for how a NEB calculation can produce restart files, so
-that a long calculation can be restarted if needed.
-
-.. note::
-
- None of the *file-style* settings change the initial
- configuration of any atom in the first replica. The first replica
- must thus be in the correct initial configuration at the time the neb
- command is issued.
-
-
-----------
-
-
-A NEB calculation proceeds in two stages, each of which is a
-minimization procedure, performed via damped dynamics. To enable
-this, you must first define a damped dynamics
-:doc:`min_style <min_style>`, such as *quickmin* or *fire*. The *cg*,
-*sd*, and *hftn* styles cannot be used, since they perform iterative
-line searches in their inner loop, which cannot be easily synchronized
-across multiple replicas.
-
-The minimizer tolerances for energy and force are set by *etol* and
-*ftol*, the same as for the :doc:`minimize <minimize>` command.
-
-A non-zero *etol* means that the NEB calculation will terminate if the
-energy criterion is met by every replica. The energies being compared
-to *etol* do not include any contribution from the inter-replica
-forces, since these are non-conservative. A non-zero *ftol* means
-that the NEB calculation will terminate if the force criterion is met
-by every replica. The forces being compared to *ftol* include the
-inter-replica forces between an atom and its images in adjacent
-replicas.
-
-The maximum number of iterations in each stage is set by *N1* and
-*N2*. These are effectively timestep counts since each iteration of
-damped dynamics is like a single timestep in a dynamics
-:doc:`run <run>`. During both stages, the potential energy of each
-replica and its normalized distance along the reaction path (reaction
-coordinate RD) will be printed to the screen and log file every
-*Nevery* timesteps. The RD is 0 and 1 for the first and last replica.
-For intermediate replicas, it is the cumulative distance (normalized
-by the total cumulative distance) between adjacent replicas, where
-"distance" is defined as the length of the 3N-vector of differences in
-atomic coordinates, where N is the number of NEB atoms involved in the
-transition. These outputs allow you to monitor NEB's progress in
-finding a good energy barrier. *N1* and *N2* must both be multiples
-of *Nevery*.
-
-In the first stage of NEB, the set of replicas should converge toward
-the minimum energy path (MEP) of conformational states that transition
-over the barrier. The MEP for a barrier is defined as a sequence of
-3N-dimensional states that cross the barrier at its saddle point, each
-of which has a potential energy gradient parallel to the MEP itself.
-The replica states will also be roughly equally spaced along the MEP
-due to the inter-replica spring force added by the :doc:`fix neb <fix_neb>` command.
-
-In the second stage of NEB, the replica with the highest energy
-is selected and the inter-replica forces on it are converted to a
-force that drives its atom coordinates to the top or saddle point of
-the barrier, via the barrier-climbing calculation described in
-:ref:`(Henkelman2) <Hinkelman2>`. As before, the other replicas rearrange
-themselves along the MEP so as to be roughly equally spaced.
-
-When both stages are complete, if the NEB calculation was successful,
-one of the replicas should be an atomic configuration at the top or
-saddle point of the barrier, the potential energies for the set of
-replicas should represent the energy profile of the barrier along the
-MEP, and the configurations of the replicas should be a sequence of
-configurations along the MEP.
-
-
-----------
-
-
-A few other settings in your input script are required or advised to
-perform a NEB calculation. See the NOTE about the choice of timestep
-at the beginning of this doc page.
-
-An atom map must be defined which it is not by default for :doc:`atom_style atomic <atom_style>` problems. The :doc:`atom_modify map <atom_modify>` command can be used to do this.
-
-The "atom_modify sort 0 0.0" command should be used to turn off atom
-sorting.
-
-.. note::
-
- This sorting restriction will be removed in a future version of
- NEB in LAMMPS.
-
-The minimizers in LAMMPS operate on all atoms in your system, even
-non-NEB atoms, as defined above. To prevent non-NEB atoms from moving
-during the minimization, you should use the :doc:`fix setforce <fix_setforce>` command to set the force on each of those
-atoms to 0.0. This is not required, and may not even be desired in
-some cases, but if those atoms move too far (e.g. because the initial
-state of your system was not well-minimized), it can cause problems
-for the NEB procedure.
-
-The damped dynamics :doc:`minimizers <min_style>`, such as *quickmin*
-and *fire*), adjust the position and velocity of the atoms via an
-Euler integration step. Thus you must define an appropriate
-:doc:`timestep <timestep>` to use with NEB. As mentioned above, NEB
-will often converge more quickly if you use a timestep about 10x
-larger than you would normally use for dynamics simulations.
-
-
-----------
-
-
-Each file read by the neb command containing atomic coordinates used
-to initialize one or more replicas must be formatted as follows.
-
-The file can be ASCII text or a gzipped text file (detected by a .gz
-suffix). The file can contain initial blank lines or comment lines
-starting with "#" which are ignored. The first non-blank, non-comment
-line should list N = the number of lines to follow. The N successive
-lines contain the following information:
-
-.. parsed-literal::
-
- ID1 x1 y1 z1
- ID2 x2 y2 z2
- ...
- IDN xN yN zN
-
-The fields are the the atom ID, followed by the x,y,z coordinates.
-The lines can be listed in any order. Additional trailing information
-on the line is OK, such as a comment.
-
-Note that for a typical NEB calculation you do not need to specify
-initial coordinates for very many atoms to produce differing starting
-and final replicas whose intermediate replicas will converge to the
-energy barrier. Typically only new coordinates for atoms
-geometrically near the barrier need be specified.
-
-Also note there is no requirement that the atoms in the file
-correspond to the NEB atoms in the group defined by the :doc:`fix neb <fix_neb>` command. Not every NEB atom need be in the file,
-and non-NEB atoms can be listed in the file.
-
-
-----------
-
-
-Four kinds of output can be generated during a NEB calculation: energy
-barrier statistics, thermodynamic output by each replica, dump files,
-and restart files.
-
-When running with multiple partitions (each of which is a replica in
-this case), the print-out to the screen and master log.lammps file
-contains a line of output, printed once every *Nevery* timesteps. It
-contains the timestep, the maximum force per replica, the maximum
-force per atom (in any replica), potential gradients in the initial,
- final, and climbing replicas,
-the forward and backward energy barriers,
-the total reaction coordinate (RDT), and
-the normalized reaction coordinate and potential energy of each replica.
-
-The "maximum force per replica" is
-the two-norm of the 3N-length force vector for the atoms in each
-replica, maximized across replicas, which is what the *ftol* setting
-is checking against. In this case, N is all the atoms in each
-replica. The "maximum force per atom" is the maximum force component
-of any atom in any replica. The potential gradients are the two-norm
-of the 3N-length force vector solely due to the interaction potential i.e.
-without adding in inter-replica forces. Note that inter-replica forces
-are zero in the initial and final replicas, and only affect
-the direction in the climbing replica. For this reason, the "maximum
-force per replica" is often equal to the potential gradient in the
-climbing replica. In the first stage of NEB, there is no climbing
-replica, and so the potential gradient in the highest energy replica
-is reported, since this replica will become the climbing replica
-in the second stage of NEB.
-
-The "reaction coordinate" (RD) for each
-replica is the two-norm of the 3N-length vector of distances between
-its atoms and the preceding replica's atoms, added to the RD of the
-preceding replica. The RD of the first replica RD1 = 0.0;
-the RD of the final replica RDN = RDT, the total reaction coordinate.
-The normalized RDs are divided by RDT,
-so that they form a monotonically increasing sequence
-from zero to one. When computing RD, N only includes the atoms
-being operated on by the fix neb command.
-
-The forward (reverse) energy barrier is the potential energy of the highest
-replica minus the energy of the first (last) replica.
-
-When running on multiple partitions, LAMMPS produces additional log
-files for each partition, e.g. log.lammps.0, log.lammps.1, etc. For a
-NEB calculation, these contain the thermodynamic output for each
-replica.
-
-If :doc:`dump <dump>` commands in the input script define a filename
-that includes a *universe* or *uloop* style :doc:`variable <variable>`,
-then one dump file (per dump command) will be created for each
-replica. At the end of the NEB calculation, the final snapshot in
-each file will contain the sequence of snapshots that transition the
-system over the energy barrier. Earlier snapshots will show the
-convergence of the replicas to the MEP.
-
-Likewise, :doc:`restart <restart>` filenames can be specified with a
-*universe* or *uloop* style :doc:`variable <variable>`, to generate
-restart files for each replica. These may be useful if the NEB
-calculation fails to converge properly to the MEP, and you wish to
-restart the calculation from an intermediate point with altered
-parameters.
-
-There are 2 Python scripts provided in the tools/python directory,
-neb_combine.py and neb_final.py, which are useful in analyzing output
-from a NEB calculation. Assume a NEB simulation with M replicas, and
-the NEB atoms labelled with a specific atom type.
-
-The neb_combine.py script extracts atom coords for the NEB atoms from
-all M dump files and creates a single dump file where each snapshot
-contains the NEB atoms from all the replicas and one copy of non-NEB
-atoms from the first replica (presumed to be identical in other
-replicas). This can be visualized/animated to see how the NEB atoms
-relax as the NEB calculation proceeds.
-
-The neb_final.py script extracts the final snapshot from each of the M
-dump files to create a single dump file with M snapshots. This can be
-visualized to watch the system make its transition over the energy
-barrier.
-
-To illustrate, here are images from the final snapshot produced by the
-neb_combine.py script run on the dump files produced by the two
-example input scripts in examples/neb. Click on them to see a larger
-image.
-
-.. thumbnail:: JPG/hop1.jpg
-
-.. thumbnail:: JPG/hop2.jpg
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command can only be used if LAMMPS was built with the REPLICA
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`prd <prd>`, :doc:`temper <temper>`, :doc:`fix langevin <fix_langevin>`, :doc:`fix viscous <fix_viscous>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Henkelman1:
-
-
-
-**(Henkelman1)** Henkelman and Jonsson, J Chem Phys, 113, 9978-9985 (2000).
-
-.. _Henkelman2:
-
-
-
-**(Henkelman2)** Henkelman, Uberuaga, Jonsson, J Chem Phys, 113,
-9901-9904 (2000).
-
-.. _Nakano:
-
-
-
-**(Nakano)** Nakano, Comp Phys Comm, 178, 280-289 (2008).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/neigh_modify.txt b/doc/_sources/neigh_modify.txt
deleted file mode 100644
index 337ae888a..000000000
--- a/doc/_sources/neigh_modify.txt
+++ /dev/null
@@ -1,224 +0,0 @@
-.. index:: neigh_modify
-
-neigh_modify command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- neigh_modify keyword values ...
-
-* one or more keyword/value pairs may be listed
-.. parsed-literal::
-
- keyword = *delay* or *every* or *check* or *once* or *cluster* or *include* or *exclude* or *page* or *one* or *binsize*
- *delay* value = N
- N = delay building until this many steps since last build
- *every* value = M
- M = build neighbor list every this many steps
- *check* value = *yes* or *no*
- *yes* = only build if some atom has moved half the skin distance or more
- *no* = always build on 1st step that *every* and *delay* are satisfied
- *once*
- *yes* = only build neighbor list once at start of run and never rebuild
- *no* = rebuild neighbor list according to other settings
- *cluster*
- *yes* = check bond,angle,etc neighbor list for nearby clusters
- *no* = do not check bond,angle,etc neighbor list for nearby clusters
- *include* value = group-ID
- group-ID = only build pair neighbor lists for atoms in this group
- *exclude* values:
- type M N
- M,N = exclude if one atom in pair is type M, other is type N
- group group1-ID group2-ID
- group1-ID,group2-ID = exclude if one atom is in 1st group, other in 2nd
- molecule group-ID
- groupname = exclude if both atoms are in the same molecule and in the same group
- none
- delete all exclude settings
- *page* value = N
- N = number of pairs stored in a single neighbor page
- *one* value = N
- N = max number of neighbors of one atom
- *binsize* value = size
- size = bin size for neighbor list construction (distance units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- neigh_modify every 2 delay 10 check yes page 100000
- neigh_modify exclude type 2 3
- neigh_modify exclude group frozen frozen check no
- neigh_modify exclude group residue1 chain3
- neigh_modify exclude molecule rigid
-
-Description
-"""""""""""
-
-This command sets parameters that affect the building and use of
-pairwise neighbor lists. Depending on what pair interactions and
-other commands are defined, a simulation may require one or more
-neighbor lists.
-
-The *every*, *delay*, *check*, and *once* options affect how often
-lists are built as a simulation runs. The *delay* setting means never
-build new lists until at least N steps after the previous build. The
-*every* setting means build lists every M steps (after the delay has
-passed). If the *check* setting is *no*, the lists are built on the
-first step that satisfies the *delay* and *every* settings. If the
-*check* setting is *yes*, then the *every* and *delay* settings
-determine when a build may possibly be performed, but an actual build
-only occurs if some atom has moved more than half the skin distance
-(specified in the :doc:`neighbor <neighbor>` command) since the last
-build.
-
-If the *once* setting is yes, then the neighbor list is only built
-once at the beginning of each run, and never rebuilt, except on steps
-when a restart file is written, or steps when a fix forces a rebuild
-to occur (e.g. fixes that create or delete atoms, such as :doc:`fix deposit <fix_deposit>` or :doc:`fix evaporate <fix_evaporate>`).
-This setting should only be made if you are certain atoms will not
-move far enough that the neighbor list should be rebuilt, e.g. running
-a simulation of a cold crystal. Note that it is not that expensive to
-check if neighbor lists should be rebuilt.
-
-When the rRESPA integrator is used (see the :doc:`run_style <run_style>`
-command), the *every* and *delay* parameters refer to the longest
-(outermost) timestep.
-
-The *cluster* option does a sanity test every time neighbor lists are
-built for bond, angle, dihedral, and improper interactions, to check
-that each set of 2, 3, or 4 atoms is a cluster of nearby atoms. It
-does this by computing the distance between pairs of atoms in the
-interaction and insuring they are not further apart than half the
-periodic box length. If they are, an error is generated, since the
-interaction would be computed between far-away atoms instead of their
-nearby periodic images. The only way this should happen is if the
-pairwise cutoff is so short that atoms that are part of the same
-interaction are not communicated as ghost atoms. This is an unusual
-model (e.g. no pair interactions at all) and the problem can be fixed
-by use of the :doc:`comm_modify cutoff <comm_modify>` command. Note
-that to save time, the default *cluster* setting is *no*, so that this
-check is not performed.
-
-The *include* option limits the building of pairwise neighbor lists to
-atoms in the specified group. This can be useful for models where a
-large portion of the simulation is particles that do not interact with
-other particles or with each other via pairwise interactions. The
-group specified with this option must also be specified via the
-:doc:`atom_modify first <atom_modify>` command.
-
-The *exclude* option turns off pairwise interactions between certain
-pairs of atoms, by not including them in the neighbor list. These are
-sample scenarios where this is useful:
-
-* In crack simulations, pairwise interactions can be shut off between 2
- slabs of atoms to effectively create a crack.
-* When a large collection of atoms is treated as frozen, interactions
- between those atoms can be turned off to save needless
- computation. E.g. Using the :doc:`fix setforce <fix_setforce>` command
- to freeze a wall or portion of a bio-molecule.
-* When one or more rigid bodies are specified, interactions within each
- body can be turned off to save needless computation. See the :doc:`fix rigid <fix_rigid>` command for more details.
-The *exclude type* option turns off the pairwise interaction if one
-atom is of type M and the other of type N. M can equal N. The
-*exclude group* option turns off the interaction if one atom is in the
-first group and the other is the second. Group1-ID can equal
-group2-ID. The *exclude molecule* option turns off the interaction if
-both atoms are in the specified group and in the same molecule, as
-determined by their molecule ID.
-
-Each of the exclude options can be specified multiple times. The
-*exclude type* option is the most efficient option to use; it requires
-only a single check, no matter how many times it has been specified.
-The other exclude options are more expensive if specified multiple
-times; they require one check for each time they have been specified.
-
-Note that the exclude options only affect pairwise interactions; see
-the :doc:`delete_bonds <delete_bonds>` command for information on
-turning off bond interactions.
-
-.. note::
-
- Excluding pairwise interactions will not work correctly when
- also using a long-range solver via the
- :doc:`kspace_style <kspace_style>` command. LAMMPS will give a warning
- to this effect. This is because the short-range pairwise interaction
- needs to subtract off a term from the total energy for pairs whose
- short-range interaction is excluded, to compensate for how the
- long-range solver treats the interaction. This is done correctly for
- pairwise interactions that are excluded (or weighted) via the
- :doc:`special_bonds <special_bonds>` command. But it is not done for
- interactions that are excluded via these neigh_modify exclude options.
-
-The *page* and *one* options affect how memory is allocated for the
-neighbor lists. For most simulations the default settings for these
-options are fine, but if a very large problem is being run or a very
-long cutoff is being used, these parameters can be tuned. The indices
-of neighboring atoms are stored in "pages", which are allocated one
-after another as they fill up. The size of each page is set by the
-*page* value. A new page is allocated when the next atom's neighbors
-could potentially overflow the list. This threshold is set by the
-*one* value which tells LAMMPS the maximum number of neighbor's one
-atom can have.
-
-.. note::
-
- LAMMPS can crash without an error message if the number of
- neighbors for a single particle is larger than the *page* setting,
- which means it is much, much larger than the *one* setting. This is
- because LAMMPS doesn't error check these limits for every pairwise
- interaction (too costly), but only after all the particle's neighbors
- have been found. This problem usually means something is very wrong
- with the way you've setup your problem (particle spacing, cutoff
- length, neighbor skin distance, etc). If you really expect that many
- neighbors per particle, then boost the *one* and *page* settings
- accordingly.
-
-The *binsize* option allows you to specify what size of bins will be
-used in neighbor list construction to sort and find neighboring atoms.
-By default, for :doc:`neighbor style bin <neighbor>`, LAMMPS uses bins
-that are 1/2 the size of the maximum pair cutoff. For :doc:`neighbor style multi <neighbor>`, the bins are 1/2 the size of the minimum pair
-cutoff. Typically these are good values values for minimizing the
-time for neighbor list construction. This setting overrides the
-default. If you make it too big, there is little overhead due to
-looping over bins, but more atoms are checked. If you make it too
-small, the optimal number of atoms is checked, but bin overhead goes
-up. If you set the binsize to 0.0, LAMMPS will use the default
-binsize of 1/2 the cutoff.
-
-Restrictions
-""""""""""""
-
-
-If the "delay" setting is non-zero, then it must be a multiple of the
-"every" setting.
-
-The exclude molecule option can only be used with atom styles that
-define molecule IDs.
-
-The value of the *page* setting must be at least 10x larger than the
-*one* setting. This insures neighbor pages are not mostly empty
-space.
-
-Related commands
-""""""""""""""""
-
-:doc:`neighbor <neighbor>`, :doc:`delete_bonds <delete_bonds>`
-
-Default
-"""""""
-
-The option defaults are delay = 10, every = 1, check = yes, once = no,
-cluster = no, include = all, exclude = none, page = 100000, one =
-2000, and binsize = 0.0.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/neighbor.txt b/doc/_sources/neighbor.txt
deleted file mode 100644
index bca26e303..000000000
--- a/doc/_sources/neighbor.txt
+++ /dev/null
@@ -1,93 +0,0 @@
-.. index:: neighbor
-
-neighbor command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- neighbor skin style
-
-* skin = extra distance beyond force cutoff (distance units)
-* style = *bin* or *nsq* or *multi*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- neighbor 0.3 bin
- neighbor 2.0 nsq
-
-Description
-"""""""""""
-
-This command sets parameters that affect the building of pairwise
-neighbor lists. All atom pairs within a neighbor cutoff distance
-equal to the their force cutoff plus the *skin* distance are stored in
-the list. Typically, the larger the skin distance, the less often
-neighbor lists need to be built, but more pairs must be checked for
-possible force interactions every timestep. The default value for
-*skin* depends on the choice of units for the simulation; see the
-default values below.
-
-The *skin* distance is also used to determine how often atoms migrate
-to new processors if the *check* option of the
-:doc:`neigh_modify <neigh_modify>` command is set to *yes*. Atoms are
-migrated (communicated) to new processors on the same timestep that
-neighbor lists are re-built.
-
-The *style* value selects what algorithm is used to build the list.
-The *bin* style creates the list by binning which is an operation that
-scales linearly with N/P, the number of atoms per processor where N =
-total number of atoms and P = number of processors. It is almost
-always faster than the *nsq* style which scales as (N/P)^2. For
-unsolvated small molecules in a non-periodic box, the *nsq* choice can
-sometimes be faster. Either style should give the same answers.
-
-The *multi* style is a modified binning algorithm that is useful for
-systems with a wide range of cutoff distances, e.g. due to different
-size particles. For the *bin* style, the bin size is set to 1/2 of
-the largest cutoff distance between any pair of atom types and a
-single set of bins is defined to search over for all atom types. This
-can be inefficient if one pair of types has a very long cutoff, but
-other type pairs have a much shorter cutoff. For style *multi* the
-bin size is set to 1/2 of the shortest cutoff distance and multiple
-sets of bins are defined to search over for different atom types.
-This imposes some extra setup overhead, but the searches themselves
-may be much faster for the short-cutoff cases. See the :doc:`comm_modify mode multi <comm_modify>` command for a communication option option
-that may also be beneficial for simulations of this kind.
-
-The :doc:`neigh_modify <neigh_modify>` command has additional options
-that control how often neighbor lists are built and which pairs are
-stored in the list.
-
-When a run is finished, counts of the number of neighbors stored in
-the pairwise list and the number of times neighbor lists were built
-are printed to the screen and log file. See :ref:`this section <start_8>` for details.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`neigh_modify <neigh_modify>`, :doc:`units <units>`,
-:doc:`comm_modify <cmom_modify>`
-
-Default
-"""""""
-
-| 0.3 bin for units = lj, skin = 0.3 sigma
-| 2.0 bin for units = real or metal, skin = 2.0 Angstroms
-| 0.001 bin for units = si, skin = 0.001 meters = 1.0 mm
-| 0.1 bin for units = cgs, skin = 0.1 cm = 1.0 mm
-|
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/newton.txt b/doc/_sources/newton.txt
deleted file mode 100644
index 4f0f10c54..000000000
--- a/doc/_sources/newton.txt
+++ /dev/null
@@ -1,75 +0,0 @@
-.. index:: newton
-
-newton command
-==============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- newton flag
- newton flag1 flag2
-
-* flag = *on* or *off* for both pairwise and bonded interactions
-* flag1 = *on* or *off* for pairwise interactions
-* flag2 = *on* or *off* for bonded interactions
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- newton off
- newton on off
-
-Description
-"""""""""""
-
-This command turns Newton's 3rd law *on* or *off* for pairwise and
-bonded interactions. For most problems, setting Newton's 3rd law to
-*on* means a modest savings in computation at the cost of two times
-more communication. Whether this is faster depends on problem size,
-force cutoff lengths, a machine's compute/communication ratio, and how
-many processors are being used.
-
-Setting the pairwise newton flag to *off* means that if two
-interacting atoms are on different processors, both processors compute
-their interaction and the resulting force information is not
-communicated. Similarly, for bonded interactions, newton *off* means
-that if a bond, angle, dihedral, or improper interaction contains
-atoms on 2 or more processors, the interaction is computed by each
-processor.
-
-LAMMPS should produce the same answers for any newton flag settings,
-except for round-off issues.
-
-With :doc:`run_style <run_style>` *respa* and only bonded interactions
-(bond, angle, etc) computed in the innermost timestep, it may be
-faster to turn newton *off* for bonded interactions, to avoid extra
-communication in the innermost loop.
-
-Restrictions
-""""""""""""
-
-
-The newton bond setting cannot be changed after the simulation box is
-defined by a :doc:`read_data <read_data>` or
-:doc:`create_box <create_box>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`run_style <run_style>` respa
-
-Default
-"""""""
-
-.. parsed-literal::
-
- newton on
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/next.txt b/doc/_sources/next.txt
deleted file mode 100644
index b4b9a4c5f..000000000
--- a/doc/_sources/next.txt
+++ /dev/null
@@ -1,161 +0,0 @@
-.. index:: next
-
-next command
-============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- next variables
-
-* variables = one or more variable names
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- next x
- next a t x myTemp
-
-Description
-"""""""""""
-
-This command is used with variables defined by the
-:doc:`variable <variable>` command. It assigns the next value to the
-variable from the list of values defined for that variable by the
-:doc:`variable <variable>` command. Thus when that variable is
-subsequently substituted for in an input script command, the new value
-is used.
-
-See the :doc:`variable <variable>` command for info on how to define and
-use different kinds of variables in LAMMPS input scripts. If a
-variable name is a single lower-case character from "a" to "z", it can
-be used in an input script command as $a or $z. If it is multiple
-letters, it can be used as ${myTemp}.
-
-If multiple variables are used as arguments to the *next* command,
-then all must be of the same variable style: *index*, *loop*, *file*,
-*universe*, or *uloop*. An exception is that *universe*- and
-*uloop*-style variables can be mixed in the same *next* command.
-
-All the variables specified with the next command are incremented by
-one value from their respective list of values. A *file*-style
-variable reads the next line from its associated file. An
-*atomfile*-style variable reads the next set of lines (one per atom)
-from its associated file. *String-* or *atom*- or *equal*- or
-*world*-style variables cannot be used with the the next command,
-since they only store a single value.
-
-When any of the variables in the next command has no more values, a
-flag is set that causes the input script to skip the next
-:doc:`jump <jump>` command encountered. This enables a loop containing
-a next command to exit. As explained in the :doc:`variable <variable>`
-command, the variable that has exhausted its values is also deleted.
-This allows it to be used and re-defined later in the input script.
-*File*-style and *atomfile*-style variables are exhausted when the
-end-of-file is reached.
-
-When the next command is used with *index*- or *loop*-style variables,
-the next value is assigned to the variable for all processors. When
-the next command is used with *file*-style variables, the next line is
-read from its file and the string assigned to the variable. When the
-next command is used with *atomfile*-style variables, the next set of
-per-atom values is read from its file and assigned to the variable.
-
-When the next command is used with *universe*- or *uloop*-style
-variables, all *universe*- or *uloop*-style variables must be listed
-in the next command. This is because of the manner in which the
-incrementing is done, using a single lock file for all variables. The
-next value (for each variable) is assigned to whichever processor
-partition executes the command first. All processors in the partition
-are assigned the same value(s). Running LAMMPS on multiple partitions
-of processors via the "-partition" command-line switch is described in
-:ref:`this section <start_7>` of the manual. *Universe*-
-and *uloop*-style variables are incremented using the files
-"tmp.lammps.variable" and "tmp.lammps.variable.lock" which you will
-see in your directory during and after such a LAMMPS run.
-
-Here is an example of running a series of simulations using the next
-command with an *index*-style variable. If this input script is named
-in.polymer, 8 simulations would be run using data files from
-directories run1 thru run8.
-
-.. parsed-literal::
-
- variable d index run1 run2 run3 run4 run5 run6 run7 run8
- shell cd $d
- read_data data.polymer
- run 10000
- shell cd ..
- clear
- next d
- jump in.polymer
-
-If the variable "d" were of style *universe*, and the same in.polymer
-input script were run on 3 partitions of processors, then the first 3
-simulations would begin, one on each set of processors. Whichever
-partition finished first, it would assign variable "d" the 4th value
-and run another simulation, and so forth until all 8 simulations were
-finished.
-
-Jump and next commands can also be nested to enable multi-level loops.
-For example, this script will run 15 simulations in a double loop.
-
-.. parsed-literal::
-
- variable i loop 3
- variable j loop 5
- clear
- ...
- read_data data.polymer.$i$j
- print Running simulation $i.$j
- run 10000
- next j
- jump in.script
- next i
- jump in.script
-
-Here is an example of a double loop which uses the :doc:`if <if>` and
-:doc:`jump <jump>` commands to break out of the inner loop when a
-condition is met, then continues iterating thru the outer loop.
-
-.. parsed-literal::
-
- label loopa
- variable a loop 5
- label loopb
- variable b loop 5
- print "A,B = $a,$b"
- run 10000
- if $b > 2 then "jump in.script break"
- next b
- jump in.script loopb
- label break
- variable b delete
-
-.. parsed-literal::
-
- next a
- jump in.script loopa
-
-Restrictions
-""""""""""""
-
-
-As described above.
-
-Related commands
-""""""""""""""""
-
-:doc:`jump <jump>`, :doc:`include <include>`, :doc:`shell <shell>`,
-:doc:`variable <variable>`,
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/old/tmp_server/doc/fix_smd.txt b/doc/_sources/old/tmp_server/doc/fix_smd.txt
deleted file mode 100644
index 62d215a64..000000000
--- a/doc/_sources/old/tmp_server/doc/fix_smd.txt
+++ /dev/null
@@ -1,168 +0,0 @@
-.. index:: fix smd
-
-fix smd command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- fix ID group-ID smd type values keyword values
-
-* ID, group-ID are documented in :doc:`fix <fix>` command
-* smd = style name of this fix command
-* mode = *cvel* or *cfor* to select constant velocity or constant force SMD
-.. parsed-literal::
-
- *cvel* values = K vel
- K = spring constant (force/distance units)
- vel = velocity of pulling (distance/time units)
- *cfor* values = force
- force = pulling force (force units)
-
-* keyword = *tether* or *couple*
-.. parsed-literal::
-
- *tether* values = x y z R0
- x,y,z = point to which spring is tethered
- R0 = distance of end of spring from tether point (distance units)
- *couple* values = group-ID2 x y z R0
- group-ID2 = 2nd group to couple to fix group with a spring
- x,y,z = direction of spring, automatically computed with 'auto'
- R0 = distance of end of spring (distance units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- fix pull cterm smd cvel 20.0 -0.00005 tether NULL NULL 100.0 0.0
- fix pull cterm smd cvel 20.0 -0.0001 tether 25.0 25 25.0 0.0
- fix stretch cterm smd cvel 20.0 0.0001 couple nterm auto auto auto 0.0
- fix pull cterm smd cfor 5.0 tether 25.0 25.0 25.0 0.0
-
-Description
-"""""""""""
-
-This fix implements several options of steered MD (SMD) as reviewed in
-:ref:`(Izrailev) <Izrailev>`, which allows to induce conformational changes
-in systems and to compute the potential of mean force (PMF) along the
-assumed reaction coordinate :ref:`(Park) <Park>` based on Jarzynski's
-equality :ref:`(Jarzynski) <Jarzynski>`. This fix borrows a lot from :doc:`fix spring <fix_spring>` and :doc:`fix setforce <fix_setforce>`.
-
-You can apply a moving spring force to a group of atoms (*tether*
-style) or between two groups of atoms (*couple* style). The spring
-can then be used in either constant velocity (*cvel*) mode or in
-constant force (*cfor*) mode to induce transitions in your systems.
-When running in *tether* style, you may need some way to fix some
-other part of the system (e.g. via :doc:`fix spring/self <fix_spring_self>`)
-
-The *tether* style attaches a spring between a point at a distance of
-R0 away from a fixed point *x,y,z* and the center of mass of the fix
-group of atoms. A restoring force of magnitude K (R - R0) Mi / M is
-applied to each atom in the group where *K* is the spring constant, Mi
-is the mass of the atom, and M is the total mass of all atoms in the
-group. Note that *K* thus represents the total force on the group of
-atoms, not a per-atom force.
-
-In *cvel* mode the distance R is incremented or decremented
-monotonously according to the pulling (or pushing) velocity.
-In *cfor* mode a constant force is added and the actual distance
-in direction of the spring is recorded.
-
-The *couple* style links two groups of atoms together. The first
-group is the fix group; the second is specified by group-ID2. The
-groups are coupled together by a spring that is at equilibrium when
-the two groups are displaced by a vector in direction *x,y,z* with
-respect to each other and at a distance R0 from that displacement.
-Note that *x,y,z* only provides a direction and will be internally
-normalized. But since it represents the *absolute* displacement of
-group-ID2 relative to the fix group, (1,1,0) is a different spring
-than (-1,-1,0). For each vector component, the displacement can be
-described with the *auto* parameter. In this case the direction is
-recomputed in every step, which can be useful for steering a local
-process where the whole object undergoes some other change. When the
-relative positions and distance between the two groups are not in
-equilibrium, the same spring force described above is applied to atoms
-in each of the two groups.
-
-For both the *tether* and *couple* styles, any of the x,y,z values can
-be specified as NULL which means do not include that dimension in the
-distance calculation or force application.
-
-For constant velocity pulling (*cvel* mode), the running integral
-over the pulling force in direction of the spring is recorded and
-can then later be used to compute the potential of mean force (PMF)
-by averaging over multiple independent trajectories along the same
-pulling path.
-
-Restart, fix_modify, output, run start/stop, minimize info
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-The fix stores the direction of the spring, current pulling target
-distance and the running PMF to :doc:`binary restart files <restart>`.
-See the :doc:`read_restart <read_restart>` command for info on how to
-re-specify a fix in an input script that reads a restart file, so that
-the operation of the fix continues in an uninterrupted fashion.
-
-None of the :doc:`fix_modify <fix_modify>` options are relevant to this
-fix.
-
-This fix computes a vector list of 7 quantities, which can be accessed
-by various :ref:`output commands <howto_15>`. The
-quantities in the vector are in this order: the x-, y-, and
-z-component of the pulling force, the total force in direction of the
-pull, the equilibrium distance of the spring, the distance between the
-two reference points, and finally the accumulated PMF (the sum of
-pulling forces times displacement).
-
-The force is the total force on the group of atoms by the spring. In
-the case of the *couple* style, it is the force on the fix group
-(group-ID) or the negative of the force on the 2nd group (group-ID2).
-The vector values calculated by this fix are "extensive".
-
-No parameter of this fix can be used with the *start/stop* keywords of
-the :doc:`run <run>` command. This fix is not invoked during :doc:`energy minimization <minimize>`.
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix drag <fix_drag>`, :doc:`fix spring <fix_spring>`,
-:doc:`fix spring/self <fix_spring_self>`,
-:doc:`fix spring/rg <fix_spring_rg>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Israilev:
-
-
-
-**(Izrailev)** Izrailev, Stepaniants, Isralewitz, Kosztin, Lu, Molnar,
-Wriggers, Schulten. Computational Molecular Dynamics: Challenges,
-Methods, Ideas, volume 4 of Lecture Notes in Computational Science and
-Engineering, pp. 39-65. Springer-Verlag, Berlin, 1998.
-
-**(Park)**
-Park, Schulten, J. Chem. Phys. 120 (13), 5946 (2004)
-
-**(Jarzynski)**
-Jarzynski, Phys. Rev. Lett. 78, 2690 (1997)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/package.txt b/doc/_sources/package.txt
deleted file mode 100644
index b17dba9a9..000000000
--- a/doc/_sources/package.txt
+++ /dev/null
@@ -1,686 +0,0 @@
-.. index:: package
-
-package command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- package style args
-
-* style = *cuda* or *gpu* or *intel* or *kokkos* or *omp*
-* args = arguments specific to the style
-.. parsed-literal::
-
- *cuda* args = Ngpu keyword value ...
- Ngpu = # of GPUs per node
- zero or more keyword/value pairs may be appended
- keywords = *newton* or *gpuID* or *timing* or *test* or *thread*
- *newton* = *off* or *on*
- off = set Newton pairwise and bonded flags off (default)
- on = set Newton pairwise and bonded flags on
- *gpuID* values = gpu1 .. gpuN
- gpu1 .. gpuN = IDs of the Ngpu GPUs to use
- *timing* values = none
- *test* values = id
- id = atom-ID of a test particle
- *thread* = auto or tpa or bpa
- auto = test whether tpa or bpa is faster
- tpa = one thread per atom
- bpa = one block per atom
- *gpu* args = Ngpu keyword value ...
- Ngpu = # of GPUs per node
- zero or more keyword/value pairs may be appended
- keywords = *neigh* or *newton* or *binsize* or *split* or *gpuID* or *tpa* or *device* or *blocksize*
- *neigh* value = *yes* or *no*
- yes = neighbor list build on GPU (default)
- no = neighbor list build on CPU
- *newton* = *off* or *on*
- off = set Newton pairwise flag off (default and required)
- on = set Newton pairwise flag on (currently not allowed)
- *binsize* value = size
- size = bin size for neighbor list construction (distance units)
- *split* = fraction
- fraction = fraction of atoms assigned to GPU (default = 1.0)
- *gpuID* values = first last
- first = ID of first GPU to be used on each node
- last = ID of last GPU to be used on each node
- *tpa* value = Nthreads
- Nthreads = # of GPU threads used per atom
- *device* value = device_type
- device_type = *kepler* or *fermi* or *cypress* or *generic*
- *blocksize* value = size
- size = thread block size for pair force computation
- *intel* args = NPhi keyword value ...
- Nphi = # of coprocessors per node
- zero or more keyword/value pairs may be appended
- keywords = *omp* or *mode* or *balance* or *ghost* or *tpc* or *tptask* or *no_affinity*
- *omp* value = Nthreads
- Nthreads = number of OpenMP threads to use on CPU (default = 0)
- *mode* value = *single* or *mixed* or *double*
- single = perform force calculations in single precision
- mixed = perform force calculations in mixed precision
- double = perform force calculations in double precision
- *balance* value = split
- split = fraction of work to offload to coprocessor, -1 for dynamic
- *ghost* value = *yes* or *no*
- yes = include ghost atoms for offload
- no = do not include ghost atoms for offload
- *tpc* value = Ntpc
- Ntpc = max number of coprocessor threads per coprocessor core (default = 4)
- *tptask* value = Ntptask
- Ntptask = max number of coprocessor threads per MPI task (default = 240)
- *no_affinity* values = none
- *kokkos* args = keyword value ...
- zero or more keyword/value pairs may be appended
- keywords = *neigh* or *newton* or *binsize* or *comm* or *comm/exchange* or *comm/forward*
- *neigh* value = *full* or *half* or *n2* or *full/cluster*
- full = full neighbor list
- half = half neighbor list built in thread-safe manner
- n2 = non-binning neighbor list build, O(N^2) algorithm
- full/cluster = full neighbor list with clustered groups of atoms
- *newton* = *off* or *on*
- off = set Newton pairwise and bonded flags off (default)
- on = set Newton pairwise and bonded flags on
- *binsize* value = size
- size = bin size for neighbor list construction (distance units)
- *comm* value = *no* or *host* or *device*
- use value for both comm/exchange and comm/forward
- *comm/exchange* value = *no* or *host* or *device*
- *comm/forward* value = *no* or *host* or *device*
- no = perform communication pack/unpack in non-KOKKOS mode
- host = perform pack/unpack on host (e.g. with OpenMP threading)
- device = perform pack/unpack on device (e.g. on GPU)
- *omp* args = Nthreads keyword value ...
- Nthread = # of OpenMP threads to associate with each MPI process
- zero or more keyword/value pairs may be appended
- keywords = *neigh*
- *neigh* value = *yes* or *no*
- yes = threaded neighbor list build (default)
- no = non-threaded neighbor list build
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- package gpu 1
- package gpu 1 split 0.75
- package gpu 2 split -1.0
- package cuda 2 gpuID 0 2
- package cuda 1 test 3948
- package kokkos neigh half comm device
- package omp 0 neigh no
- package omp 4
- package intel 1
- package intel 2 omp 4 mode mixed balance 0.5
-
-Description
-"""""""""""
-
-This command invokes package-specific settings for the various
-accelerator packages available in LAMMPS. Currently the following
-packages use settings from this command: USER-CUDA, GPU, USER-INTEL,
-KOKKOS, and USER-OMP.
-
-If this command is specified in an input script, it must be near the
-top of the script, before the simulation box has been defined. This
-is because it specifies settings that the accelerator packages use in
-their intialization, before a simultion is defined.
-
-This command can also be specified from the command-line when
-launching LAMMPS, using the "-pk" :ref:`command-line switch <start_7>`. The syntax is exactly the same as
-when used in an input script.
-
-Note that all of the accelerator packages require the package command
-to be specified (except the OPT package), if the package is to be used
-in a simulation (LAMMPS can be built with an accelerator package
-without using it in a particular simulation). However, in all cases,
-a default version of the command is typically invoked by other
-accelerator settings.
-
-The USER-CUDA and KOKKOS packages require a "-c on" or "-k on"
-:ref:`command-line switch <start_7>` respectively, which
-invokes a "package cuda" or "package kokkos" command with default
-settings.
-
-For the GPU, USER-INTEL, and USER-OMP packages, if a "-sf gpu" or "-sf
-intel" or "-sf omp" :ref:`command-line switch <start_7>`
-is used to auto-append accelerator suffixes to various styles in the
-input script, then those switches also invoke a "package gpu",
-"package intel", or "package omp" command with default settings.
-
-.. note::
-
- A package command for a particular style can be invoked multiple
- times when a simulation is setup, e.g. by the "-c on", "-k on", "-sf",
- and "-pk" :ref:`command-line switches <start_7>`, and by
- using this command in an input script. Each time it is used all of
- the style options are set, either to default values or to specified
- settings. I.e. settings from previous invocations do not persist
- across multiple invocations.
-
-See the :doc:`Section Accelerate <Section_accelerate>` section of the
-manual for more details about using the various accelerator packages
-for speeding up LAMMPS simulations.
-
-
-----------
-
-
-The *cuda* style invokes settings associated with the use of the
-USER-CUDA package.
-
-The *Ngpus* argument sets the number of GPUs per node. There must be
-exactly one MPI task per GPU, as set by the mpirun or mpiexec command.
-
-Optional keyword/value pairs can also be specified. Each has a
-default value as listed below.
-
-The *newton* keyword sets the Newton flags for pairwise and bonded
-interactions to *off* or *on*, the same as the :doc:`newton <newton>`
-command allows. The default is *off* because this will almost always
-give better performance for the USER-CUDA package. This means
-more computation is done, but less communication.
-
-The *gpuID* keyword allows selection of which GPUs on each node will
-be used for a simulation. GPU IDs range from 0 to N-1 where N is the
-physical number of GPUs/node. An ID is specified for each of the
-Ngpus being used. For example if you have three GPUs on a machine,
-one of which is used for the X-Server (the GPU with the ID 1) while
-the others (with IDs 0 and 2) are used for computations you would
-specify:
-
-.. parsed-literal::
-
- package cuda 2 gpuID 0 2
-
-The purpose of the *gpuID* keyword is to allow two (or more)
-simulations to be run on one workstation. In that case one could set
-the first simulation to use GPU 0 and the second to use GPU 1. This is
-not necessary however, if the GPUs are in what is called *compute
-exclusive* mode. Using that setting, every process will get its own
-GPU automatically. This *compute exclusive* mode can be set as root
-using the *nvidia-smi* tool which is part of the CUDA installation.
-
-Also note that if the *gpuID* keyword is not used, the USER-CUDA
-package sorts existing GPUs on each node according to their number of
-multiprocessors. This way, compute GPUs will be priorized over
-X-Server GPUs.
-
-If the *timing* keyword is specified, detailed timing information for
-various subroutines will be output.
-
-If the *test* keyword is specified, information for the specified atom
-with atom-ID will be output at several points during each timestep.
-This is mainly usefull for debugging purposes. Note that the
-simulation slow down dramatically if this option is used.
-
-The *thread* keyword can be used to specify how GPU threads are
-assigned work during pair style force evaluation. If the value =
-*tpa*, one thread per atom is used. If the value = *bpa*, one block
-per atom is used. If the value = *auto*, a short test is performed at
-the beginning of each run to determing where *tpa* or *bpa* mode is
-faster. The result of this test is output. Since *auto* is the
-default value, it is usually not necessary to use this keyword.
-
-
-----------
-
-
-The *gpu* style invokes settings associated with the use of the GPU
-package.
-
-The *Ngpu* argument sets the number of GPUs per node. There must be
-at least as many MPI tasks per node as GPUs, as set by the mpirun or
-mpiexec command. If there are more MPI tasks (per node)
-than GPUs, multiple MPI tasks will share each GPU.
-
-Optional keyword/value pairs can also be specified. Each has a
-default value as listed below.
-
-The *neigh* keyword specifies where neighbor lists for pair style
-computation will be built. If *neigh* is *yes*, which is the default,
-neighbor list building is performed on the GPU. If *neigh* is *no*,
-neighbor list building is performed on the CPU. GPU neighbor list
-building currently cannot be used with a triclinic box. GPU neighbor
-list calculation currently cannot be used with
-:doc:`hybrid <pair_hybrid>` pair styles. GPU neighbor lists are not
-compatible with comannds that are not GPU-enabled. When a non-GPU
-enabled command requires a neighbor list, it will also be built on the
-CPU. In these cases, it will typically be more efficient to only use
-CPU neighbor list builds.
-
-The *newton* keyword sets the Newton flags for pairwise (not bonded)
-interactions to *off* or *on*, the same as the :doc:`newton <newton>`
-command allows. Currently, only an *off* value is allowed, since all
-the GPU package pair styles require this setting. This means more
-computation is done, but less communication. In the future a value of
-*on* may be allowed, so the *newton* keyword is included as an option
-for compatibility with the package command for other accelerator
-styles. Note that the newton setting for bonded interactions is not
-affected by this keyword.
-
-The *binsize* keyword sets the size of bins used to bin atoms in
-neighbor list builds performed on the GPU, if *neigh* = *yes* is set.
-If *binsize* is set to 0.0 (the default), then bins = the size of the
-pairwise cutoff + neighbor skin distance. This is 2x larger than the
-LAMMPS default used for neighbor list building on the CPU. This will
-be close to optimal for the GPU, so you do not normally need to use
-this keyword. Note that if you use a longer-than-usual pairwise
-cutoff, e.g. to allow for a smaller fraction of KSpace work with a
-:doc:`long-range Coulombic solver <kspace_style>` because the GPU is
-faster at performing pairwise interactions, then it may be optimal to
-make the *binsize* smaller than the default. For example, with a
-cutoff of 20*sigma in LJ :doc:`units <units>` and a neighbor skin
-distance of sigma, a *binsize* = 5.25*sigma can be more efficient than
-the default.
-
-The *split* keyword can be used for load balancing force calculations
-between CPU and GPU cores in GPU-enabled pair styles. If 0 < *split* <
-1.0, a fixed fraction of particles is offloaded to the GPU while force
-calculation for the other particles occurs simulataneously on the CPU.
-If *split* < 0.0, the optimal fraction (based on CPU and GPU timings)
-is calculated every 25 timesteps, i.e. dynamic load-balancing across
-the CPU and GPU is performed. If *split* = 1.0, all force
-calculations for GPU accelerated pair styles are performed on the GPU.
-In this case, other :doc:`hybrid <pair_hybrid>` pair interactions,
-:doc:`bond <bond_style>`, :doc:`angle <angle_style>`,
-:doc:`dihedral <dihedral_style>`, :doc:`improper <improper_style>`, and
-:doc:`long-range <kspace_style>` calculations can be performed on the
-CPU while the GPU is performing force calculations for the GPU-enabled
-pair style. If all CPU force computations complete before the GPU
-completes, LAMMPS will block until the GPU has finished before
-continuing the timestep.
-
-As an example, if you have two GPUs per node and 8 CPU cores per node,
-and would like to run on 4 nodes (32 cores) with dynamic balancing of
-force calculation across CPU and GPU cores, you could specify
-
-.. parsed-literal::
-
- mpirun -np 32 -sf gpu -in in.script # launch command
- package gpu 2 split -1 # input script command
-
-In this case, all CPU cores and GPU devices on the nodes would be
-utilized. Each GPU device would be shared by 4 CPU cores. The CPU
-cores would perform force calculations for some fraction of the
-particles at the same time the GPUs performed force calculation for
-the other particles.
-
-The *gpuID* keyword allows selection of which GPUs on each node will
-be used for a simulation. The *first* and *last* values specify the
-GPU IDs to use (from 0 to Ngpu-1). By default, first = 0 and last =
-Ngpu-1, so that all GPUs are used, assuming Ngpu is set to the number
-of physical GPUs. If you only wish to use a subset, set Ngpu to a
-smaller number and first/last to a sub-range of the available GPUs.
-
-The *tpa* keyword sets the number of GPU thread per atom used to
-perform force calculations. With a default value of 1, the number of
-threads will be chosen based on the pair style, however, the value can
-be set explicitly with this keyword to fine-tune performance. For
-large cutoffs or with a small number of particles per GPU, increasing
-the value can improve performance. The number of threads per atom must
-be a power of 2 and currently cannot be greater than 32.
-
-The *device* keyword can be used to tune parameters optimized for a
-specific accelerator, when using OpenCL. For CUDA, the *device*
-keyword is ignored. Currently, the device type is limited to NVIDIA
-Kepler, NVIDIA Fermi, AMD Cypress, or a generic device. More devices
-may be added later. The default device type can be specified when
-building LAMMPS with the GPU library, via settings in the
-lib/gpu/Makefile that is used.
-
-The *blocksize* keyword allows you to tweak the number of threads used
-per thread block. This number should be a multiple of 32 (for GPUs)
-and its maximum depends on the specific GPU hardware. Typical choices
-are 64, 128, or 256. A larger blocksize increases occupancy of
-individual GPU cores, but reduces the total number of thread blocks,
-thus may lead to load imbalance.
-
-
-----------
-
-
-The *intel* style invokes settings associated with the use of the
-USER-INTEL package. All of its settings, except the *omp* and *mode*
-keywords, are ignored if LAMMPS was not built with Xeon Phi
-coprocessor support. All of its settings, including the *omp* and
-*mode* keyword are applicable if LAMMPS was built with coprocessor
-support.
-
-The *Nphi* argument sets the number of coprocessors per node.
-This can be set to any value, including 0, if LAMMPS was not
-built with coprocessor support.
-
-Optional keyword/value pairs can also be specified. Each has a
-default value as listed below.
-
-The *omp* keyword determines the number of OpenMP threads allocated
-for each MPI task when any portion of the interactions computed by a
-USER-INTEL pair style are run on the CPU. This can be the case even
-if LAMMPS was built with coprocessor support; see the *balance*
-keyword discussion below. If you are running with less MPI tasks/node
-than there are CPUs, it can be advantageous to use OpenMP threading on
-the CPUs.
-
-.. note::
-
- The *omp* keyword has nothing to do with coprocessor threads on
- the Xeon Phi; see the *tpc* and *tptask* keywords below for a
- discussion of coprocessor threads.
-
-The *Nthread* value for the *omp* keyword sets the number of OpenMP
-threads allocated for each MPI task. Setting *Nthread* = 0 (the
-default) instructs LAMMPS to use whatever value is the default for the
-given OpenMP environment. This is usually determined via the
-*OMP_NUM_THREADS* environment variable or the compiler runtime, which
-is usually a value of 1.
-
-For more details, including examples of how to set the OMP_NUM_THREADS
-environment variable, see the discussion of the *Nthreads* setting on
-this doc page for the "package omp" command. Nthreads is a required
-argument for the USER-OMP package. Its meaning is exactly the same
-for the USER-INTEL pacakge.
-
-.. note::
-
- If you build LAMMPS with both the USER-INTEL and USER-OMP
- packages, be aware that both packages allow setting of the *Nthreads*
- value via their package commands, but there is only a single global
- *Nthreads* value used by OpenMP. Thus if both package commands are
- invoked, you should insure the two values are consistent. If they are
- not, the last one invoked will take precedence, for both packages.
- Also note that if the "-sf hybrid intel omp" :ref:`command-line switch <start_7>` is used, it invokes a "package
- intel" command, followed by a "package omp" command, both with a
- setting of *Nthreads* = 0.
-
-The *mode* keyword determines the precision mode to use for
-computing pair style forces, either on the CPU or on the coprocessor,
-when using a USER-INTEL supported :doc:`pair style <pair_style>`. It
-can take a value of *single*, *mixed* which is the default, or
-*double*. *Single* means single precision is used for the entire
-force calculation. *Mixed* means forces between a pair of atoms are
-computed in single precision, but accumulated and stored in double
-precision, including storage of forces, torques, energies, and virial
-quantities. *Double* means double precision is used for the entire
-force calculation.
-
-The *balance* keyword sets the fraction of :doc:`pair style <pair_style>` work offloaded to the coprocessor for split
-values between 0.0 and 1.0 inclusive. While this fraction of work is
-running on the coprocessor, other calculations will run on the host,
-including neighbor and pair calculations that are not offloaded, as
-well as angle, bond, dihedral, kspace, and some MPI communications.
-If *split* is set to -1, the fraction of work is dynamically adjusted
-automatically throughout the run. This typically give performance
-within 5 to 10 percent of the optimal fixed fraction.
-
-The *ghost* keyword determines whether or not ghost atoms, i.e. atoms
-at the boundaries of proessor sub-domains, are offloaded for neighbor
-and force calculations. When the value = "no", ghost atoms are not
-offloaded. This option can reduce the amount of data transfer with
-the coprocessor and can also overlap MPI communication of forces with
-computation on the coprocessor when the :doc:`newton pair <newton>`
-setting is "on". When the value = "yes", ghost atoms are offloaded.
-In some cases this can provide better performance, especially if the
-*balance* fraction is high.
-
-The *tpc* keyword sets the max # of coprocessor threads *Ntpc* that
-will run on each core of the coprocessor. The default value = 4,
-which is the number of hardware threads per core supported by the
-current generation Xeon Phi chips.
-
-The *tptask* keyword sets the max # of coprocessor threads (Ntptask*
-assigned to each MPI task. The default value = 240, which is the
-total # of threads an entire current generation Xeon Phi chip can run
-(240 = 60 cores * 4 threads/core). This means each MPI task assigned
-to the Phi will enough threads for the chip to run the max allowed,
-even if only 1 MPI task is assigned. If 8 MPI tasks are assigned to
-the Phi, each will run with 30 threads. If you wish to limit the
-number of threads per MPI task, set *tptask* to a smaller value.
-E.g. for *tptask* = 16, if 8 MPI tasks are assigned, each will run
-with 16 threads, for a total of 128.
-
-Note that the default settings for *tpc* and *tptask* are fine for
-most problems, regardless of how many MPI tasks you assign to a Phi.
-
-The *no_affinity* keyword will turn off automatic setting of core
-affinity for MPI tasks and OpenMP threads on the host when using
-offload to a coprocessor. Affinity settings are used when possible
-to prevent MPI tasks and OpenMP threads from being on separate NUMA
-domains and to prevent offload threads from interfering with other
-processes/threads used for LAMMPS.
-
-
-----------
-
-
-The *kokkos* style invokes settings associated with the use of the
-KOKKOS package.
-
-All of the settings are optional keyword/value pairs. Each has a
-default value as listed below.
-
-The *neigh* keyword determines how neighbor lists are built. A value
-of *half* uses a thread-safe variant of half-neighbor lists,
-the same as used by most pair styles in LAMMPS. A value of
-*n2* uses an O(N^2) algorithm to build the neighbor list without
-binning, where N = # of atoms on a processor. It is typically slower
-than the other methods, which use binning.
-
-A value of *full* uses a full neighbor lists and is the default. This
-performs twice as much computation as the *half* option, however that
-is often a win because it is thread-safe and doesn't require atomic
-operations in the calculation of pair forces. For that reason, *full*
-is the default setting. However, when running in MPI-only mode with 1
-thread per MPI task, *half* neighbor lists will typically be faster,
-just as it is for non-accelerated pair styles.
-
-A value of *full/cluster* is an experimental neighbor style, where
-particles interact with all particles within a small cluster, if at
-least one of the clusters particles is within the neighbor cutoff
-range. This potentially allows for better vectorization on
-architectures such as the Intel Phi. If also reduces the size of the
-neighbor list by roughly a factor of the cluster size, thus reducing
-the total memory footprint considerably.
-
-The *newton* keyword sets the Newton flags for pairwise and bonded
-interactions to *off* or *on*, the same as the :doc:`newton <newton>`
-command allows. The default is *off* because this will almost always
-give better performance for the KOKKOS package. This means more
-computation is done, but less communication. However, when running in
-MPI-only mode with 1 thread per MPI task, a value of *on* will
-typically be faster, just as it is for non-accelerated pair styles.
-
-The *binsize* keyword sets the size of bins used to bin atoms in
-neighbor list builds. The same value can be set by the :doc:`neigh_modify binsize <neigh_modify>` command. Making it an option in the
-package kokkos command allows it to be set from the command line. The
-default value is 0.0, which means the LAMMPS default will be used,
-which is bins = 1/2 the size of the pairwise cutoff + neighbor skin
-distance. This is fine when neighbor lists are built on the CPU. For
-GPU builds, a 2x larger binsize equal to the pairwise cutoff +
-neighbor skin, is often faster, which can be set by this keyword.
-Note that if you use a longer-than-usual pairwise cutoff, e.g. to
-allow for a smaller fraction of KSpace work with a :doc:`long-range Coulombic solver <kspace_style>` because the GPU is faster at
-performing pairwise interactions, then this rule of thumb may give too
-large a binsize.
-
-The *comm* and *comm/exchange* and *comm/forward* keywords determine
-whether the host or device performs the packing and unpacking of data
-when communicating per-atom data between processors. "Exchange"
-communication happens only on timesteps that neighbor lists are
-rebuilt. The data is only for atoms that migrate to new processors.
-"Forward" communication happens every timestep. The data is for atom
-coordinates and any other atom properties that needs to be updated for
-ghost atoms owned by each processor.
-
-The *comm* keyword is simply a short-cut to set the same value
-for both the *comm/exchange* and *comm/forward* keywords.
-
-The value options for all 3 keywords are *no* or *host* or *device*.
-A value of *no* means to use the standard non-KOKKOS method of
-packing/unpacking data for the communication. A value of *host* means
-to use the host, typically a multi-core CPU, and perform the
-packing/unpacking in parallel with threads. A value of *device* means
-to use the device, typically a GPU, to perform the packing/unpacking
-operation.
-
-The optimal choice for these keywords depends on the input script and
-the hardware used. The *no* value is useful for verifying that the
-Kokkos-based *host* and *device* values are working correctly. It may
-also be the fastest choice when using Kokkos styles in MPI-only mode
-(i.e. with a thread count of 1).
-
-When running on CPUs or Xeon Phi, the *host* and *device* values work
-identically. When using GPUs, the *device* value will typically be
-optimal if all of your styles used in your input script are supported
-by the KOKKOS package. In this case data can stay on the GPU for many
-timesteps without being moved between the host and GPU, if you use the
-*device* value. This requires that your MPI is able to access GPU
-memory directly. Currently that is true for OpenMPI 1.8 (or later
-versions), Mvapich2 1.9 (or later), and CrayMPI. If your script uses
-styles (e.g. fixes) which are not yet supported by the KOKKOS package,
-then data has to be move between the host and device anyway, so it is
-typically faster to let the host handle communication, by using the
-*host* value. Using *host* instead of *no* will enable use of
-multiple threads to pack/unpack communicated data.
-
-
-----------
-
-
-The *omp* style invokes settings associated with the use of the
-USER-OMP package.
-
-The *Nthread* argument sets the number of OpenMP threads allocated for
-each MPI task. For example, if your system has nodes with dual
-quad-core processors, it has a total of 8 cores per node. You could
-use two MPI tasks per node (e.g. using the -ppn option of the mpirun
-command in MPICH or -npernode in OpenMPI), and set *Nthreads* = 4.
-This would use all 8 cores on each node. Note that the product of MPI
-tasks * threads/task should not exceed the physical number of cores
-(on a node), otherwise performance will suffer.
-
-Setting *Nthread* = 0 instructs LAMMPS to use whatever value is the
-default for the given OpenMP environment. This is usually determined
-via the *OMP_NUM_THREADS* environment variable or the compiler
-runtime. Note that in most cases the default for OpenMP capable
-compilers is to use one thread for each available CPU core when
-*OMP_NUM_THREADS* is not explicitly set, which can lead to poor
-performance.
-
-Here are examples of how to set the environment variable when
-launching LAMMPS:
-
-.. parsed-literal::
-
- env OMP_NUM_THREADS=4 lmp_machine -sf omp -in in.script
- env OMP_NUM_THREADS=2 mpirun -np 2 lmp_machine -sf omp -in in.script
- mpirun -x OMP_NUM_THREADS=2 -np 2 lmp_machine -sf omp -in in.script
-
-or you can set it permanently in your shell's start-up script.
-All three of these examples use a total of 4 CPU cores.
-
-Note that different MPI implementations have different ways of passing
-the OMP_NUM_THREADS environment variable to all MPI processes. The
-2nd example line above is for MPICH; the 3rd example line with -x is
-for OpenMPI. Check your MPI documentation for additional details.
-
-What combination of threads and MPI tasks gives the best performance
-is difficult to predict and can depend on many components of your
-input. Not all features of LAMMPS support OpenMP threading via the
-USER-OMP packaage and the parallel efficiency can be very different,
-too.
-
-Optional keyword/value pairs can also be specified. Each has a
-default value as listed below.
-
-The *neigh* keyword specifies whether neighbor list building will be
-multi-threaded in addition to force calculations. If *neigh* is set
-to *no* then neighbor list calculation is performed only by MPI tasks
-with no OpenMP threading. If *mode* is *yes* (the default), a
-multi-threaded neighbor list build is used. Using *neigh* = *yes* is
-almost always faster and should produce idential neighbor lists at the
-expense of using more memory. Specifically, neighbor list pages are
-allocated for all threads at the same time and each thread works
-within its own pages.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command cannot be used after the simulation box is defined by a
-:doc:`read_data <read_data>` or :doc:`create_box <create_box>` command.
-
-The cuda style of this command can only be invoked if LAMMPS was built
-with the USER-CUDA package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The gpu style of this command can only be invoked if LAMMPS was built
-with the GPU package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The intel style of this command can only be invoked if LAMMPS was
-built with the USER-INTEL package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The kk style of this command can only be invoked if LAMMPS was built
-with the KOKKOS package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The omp style of this command can only be invoked if LAMMPS was built
-with the USER-OMP package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`suffix <suffix>`, "-pk" :ref:`command-line setting <start_7>`
-
-Default
-"""""""
-
-For the USER-CUDA package, the default is Ngpu = 1 and the option
-defaults are newton = off, gpuID = 0 to Ngpu-1, timing = not enabled,
-test = not enabled, and thread = auto. These settings are made
-automatically by the required "-c on" :ref:`command-line switch <start_7>`. You can change them bu using the
-package cuda command in your input script or via the "-pk cuda"
-:ref:`command-line switch <start_7>`.
-
-For the GPU package, the default is Ngpu = 1 and the option defaults
-are neigh = yes, newton = off, binsize = 0.0, split = 1.0, gpuID = 0
-to Ngpu-1, tpa = 1, and device = not used. These settings are made
-automatically if the "-sf gpu" :ref:`command-line switch <start_7>` is used. If it is not used, you
-must invoke the package gpu command in your input script or via the
-"-pk gpu" :ref:`command-line switch <start_7>`.
-
-For the USER-INTEL package, the default is Nphi = 1 and the option
-defaults are omp = 0, mode = mixed, balance = -1, tpc = 4, tptask =
-240. The default ghost option is determined by the pair style being
-used. This value is output to the screen in the offload report at the
-end of each run. Note that all of these settings, except "omp" and
-"mode", are ignored if LAMMPS was not built with Xeon Phi coprocessor
-support. These settings are made automatically if the "-sf intel"
-:ref:`command-line switch <start_7>` is used. If it is
-not used, you must invoke the package intel command in your input
-script or or via the "-pk intel" :ref:`command-line switch <start_7>`.
-
-For the KOKKOS package, the option defaults neigh = full, newton =
-off, binsize = 0.0, and comm = device. These settings are made
-automatically by the required "-k on" :ref:`command-line switch <start_7>`. You can change them bu using the
-package kokkos command in your input script or via the "-pk kokkos"
-:ref:`command-line switch <start_7>`.
-
-For the OMP package, the default is Nthreads = 0 and the option
-defaults are neigh = yes. These settings are made automatically if
-the "-sf omp" :ref:`command-line switch <start_7>` is
-used. If it is not used, you must invoke the package omp command in
-your input script or via the "-pk omp" :ref:`command-line switch <start_7>`.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_adp.txt b/doc/_sources/pair_adp.txt
deleted file mode 100644
index 851e83454..000000000
--- a/doc/_sources/pair_adp.txt
+++ /dev/null
@@ -1,215 +0,0 @@
-.. index:: pair_style adp
-
-pair_style adp command
-======================
-
-pair_style adp/omp command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style adp
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style adp
- pair_coeff * * Ta.adp Ta
- pair_coeff * * ../potentials/AlCu.adp Al Al Cu
-
-Description
-"""""""""""
-
-Style *adp* computes pairwise interactions for metals and metal alloys
-using the angular dependent potential (ADP) of :ref:`(Mishin) <Mishin>`,
-which is a generalization of the :doc:`embedded atom method (EAM) potential <pair_eam>`. The LAMMPS implementation is discussed in
-:ref:`(Singh) <Singh>`. The total energy Ei of an atom I is given by
-
-.. image:: Eqs/pair_adp.jpg
- :align: center
-
-where F is the embedding energy which is a function of the atomic
-electron density rho, phi is a pair potential interaction, alpha and
-beta are the element types of atoms I and J, and s and t = 1,2,3 and
-refer to the cartesian coordinates. The mu and lambda terms represent
-the dipole and quadruple distortions of the local atomic environment
-which extend the original EAM framework by introducing angular forces.
-
-Note that unlike for other potentials, cutoffs for ADP potentials are
-not set in the pair_style or pair_coeff command; they are specified in
-the ADP potential files themselves. Likewise, the ADP potential files
-list atomic masses; thus you do not need to use the :doc:`mass <mass>`
-command to specify them.
-
-The NIST WWW site distributes and documents ADP potentials:
-
-.. parsed-literal::
-
- http://www.ctcms.nist.gov/potentials
-
-Note that these must be converted into the extended DYNAMO *setfl*
-format discussed below.
-
-The NIST site is maintained by Chandler Becker (cbecker at nist.gov)
-who is good resource for info on interatomic potentials and file
-formats.
-
-
-----------
-
-
-Only a single pair_coeff command is used with the *adp* style which
-specifies an extended DYNAMO *setfl* file, which contains information
-for M elements. These are mapped to LAMMPS atom types by specifying N
-additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of extended *setfl* elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways to
-specify the path for the potential file.
-
-As an example, the potentials/AlCu.adp file, included in the
-potentials directory of the LAMMPS distrbution, is an extended *setfl*
-file which has tabulated ADP values for w elements and their alloy
-interactions: Cu and Al. If your LAMMPS simulation has 4 atoms types
-and you want the 1st 3 to be Al, and the 4th to be Cu, you would use
-the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * AlCu.adp Al Al Al Cu
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Al arguments map LAMMPS atom types 1,2,3 to the Al
-element in the extended *setfl* file. The final Cu argument maps
-LAMMPS atom type 4 to the Al element in the extended *setfl* file.
-Note that there is no requirement that your simulation use all the
-elements specified by the extended *setfl* file.
-
-If a mapping value is specified as NULL, the mapping is not performed.
-This can be used when an *adp* potential is used as part of the
-*hybrid* pair style. The NULL values are placeholders for atom types
-that will be used with other potentials.
-
-*Adp* files in the *potentials* directory of the LAMMPS distribution
-have an ".adp" suffix. A DYNAMO *setfl* file extended for ADP is
-formatted as follows. Basically it is the standard *setfl* format
-with additional tabulated functions u and w added to the file after
-the tabulated pair potentials. See the :doc:`pair_eam <pair_eam>`
-command for further details on the *setfl* format.
-
-* lines 1,2,3 = comments (ignored)
-* line 4: Nelements Element1 Element2 ... ElementN
-* line 5: Nrho, drho, Nr, dr, cutoff
-
-Following the 5 header lines are Nelements sections, one for each
-element, each with the following format:
-
-* line 1 = atomic number, mass, lattice constant, lattice type (e.g. FCC)
-* embedding function F(rho) (Nrho values)
-* density function rho(r) (Nr values)
-
-Following the Nelements sections, Nr values for each pair potential
-phi(r) array are listed for all i,j element pairs in the same format
-as other arrays. Since these interactions are symmetric (i,j = j,i)
-only phi arrays with i >= j are listed, in the following order: i,j =
-(1,1), (2,1), (2,2), (3,1), (3,2), (3,3), (4,1), ..., (Nelements,
-Nelements). The tabulated values for each phi function are listed as
-r*phi (in units of eV-Angstroms), since they are for atom pairs, the
-same as for :doc:`other EAM files <pair_eam>`.
-
-After the phi(r) arrays, each of the u(r) arrays are listed in the
-same order with the same assumptions of symmetry. Directly following
-the u(r), the w(r) arrays are listed. Note that phi(r) is the only
-array tabulated with a scaling by r.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, no special mixing rules are needed, since
-the ADP potential files specify alloy interactions explicitly.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in tabulated potential files.
-Thus, you need to re-specify the pair_style and pair_coeff commands in
-an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default).
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_eam <pair_eam>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mishin:
-
-
-
-**(Mishin)** Mishin, Mehl, and Papaconstantopoulos, Acta Mater, 53, 4029
-(2005).
-
-.. _Singh:
-
-
-
-**(Singh)** Singh and Warner, Acta Mater, 58, 5797-5805 (2010),
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_airebo.txt b/doc/_sources/pair_airebo.txt
deleted file mode 100644
index 02c1d6ee7..000000000
--- a/doc/_sources/pair_airebo.txt
+++ /dev/null
@@ -1,260 +0,0 @@
-.. index:: pair_style airebo
-
-pair_style airebo command
-=========================
-
-pair_style airebo/omp command
-=============================
-
-pair_style airebo/morse command
-===============================
-
-pair_style airebo/morse/omp command
-===================================
-
-pair_style rebo command
-=======================
-
-pair_style rebo/omp command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style cutoff LJ_flag TORSION_flag
-
-* style = *airebo* or *airebo/morse* or *rebo*
-* cutoff = LJ or Morse cutoff (sigma scale factor) (AIREBO and AIREBO-M only)
-* LJ_flag = 0/1 to turn off/on the LJ or Morse term (AIREBO and AIREBO-M only, optional)
-* TORSION_flag = 0/1 to turn off/on the torsion term (AIREBO and AIREBO-M only, optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style airebo 3.0
- pair_style airebo 2.5 1 0
- pair_coeff * * ../potentials/CH.airebo H C
-
-.. parsed-literal::
-
- pair_style airebo/morse 3.0
- pair_coeff * * ../potentials/CH.airebo-m H C
-
-.. parsed-literal::
-
- pair_style rebo
- pair_coeff * * ../potentials/CH.airebo H C
-
-Description
-"""""""""""
-
-The *airebo* pair style computes the Adaptive Intermolecular Reactive
-Empirical Bond Order (AIREBO) Potential of :ref:`(Stuart) <Stuart>` for a
-system of carbon and/or hydrogen atoms. Note that this is the initial
-formulation of AIREBO from 2000, not the later formulation.
-
-The *airebo/morse* pair style computes the AIREBO-M potential, which
-is equivalent to AIREBO, but replaces the LJ term with a Morse potential.
-The Morse potentials are parameterized by high-quality quantum chemistry
-(MP2) calculations and do not diverge as quickly as particle density
-increases. This allows AIREBO-M to retain accuracy to much higher pressures
-than AIREBO (up to 40 GPa for Polyethylene). Details for this potential
-and its parameterization are given in :ref:`(O'Conner) <OConnor>`.
-
-The *rebo* pair style computes the Reactive Empirical Bond Order (REBO)
-Potential of :ref:`(Brenner) <Brenner>`. Note that this is the so-called
-2nd generation REBO from 2002, not the original REBO from 1990.
-As discussed below, 2nd generation REBO is closely related to the
-intial AIREBO; it is just a subset of the potential energy terms.
-
-The AIREBO potential consists of three terms:
-
-.. image:: Eqs/pair_airebo.jpg
- :align: center
-
-By default, all three terms are included. For the *airebo* style, if
-the two optional flag arguments to the pair_style command are
-included, the LJ and torsional terms can be turned off. Note that
-both or neither of the flags must be included. If both of the LJ an
-torsional terms are turned off, it becomes the 2nd-generation REBO
-potential, with a small caveat on the spline fitting procedure
-mentioned below. This can be specified directly as pair_style *rebo*
-with no additional arguments.
-
-The detailed formulas for this potential are given in
-:ref:`(Stuart) <Stuart>`; here we provide only a brief description.
-
-The E_REBO term has the same functional form as the hydrocarbon REBO
-potential developed in :ref:`(Brenner) <Brenner>`. The coefficients for
-E_REBO in AIREBO are essentially the same as Brenner's potential, but
-a few fitted spline values are slightly different. For most cases the
-E_REBO term in AIREBO will produce the same energies, forces and
-statistical averages as the original REBO potential from which it was
-derived. The E_REBO term in the AIREBO potential gives the model its
-reactive capabilities and only describes short-ranged C-C, C-H and H-H
-interactions (r < 2 Angstroms). These interactions have strong
-coordination-dependence through a bond order parameter, which adjusts
-the attraction between the I,J atoms based on the position of other
-nearby atoms and thus has 3- and 4-body dependence.
-
-The E_LJ term adds longer-ranged interactions (2 < r < cutoff) using a
-form similar to the standard :doc:`Lennard Jones potential <pair_lj>`.
-The E_LJ term in AIREBO contains a series of switching functions so
-that the short-ranged LJ repulsion (1/r^12) does not interfere with
-the energetics captured by the E_REBO term. The extent of the E_LJ
-interactions is determined by the *cutoff* argument to the pair_style
-command which is a scale factor. For each type pair (C-C, C-H, H-H)
-the cutoff is obtained by multiplying the scale factor by the sigma
-value defined in the potential file for that type pair. In the
-standard AIREBO potential, sigma_CC = 3.4 Angstroms, so with a scale
-factor of 3.0 (the argument in pair_style), the resulting E_LJ cutoff
-would be 10.2 Angstroms.
-
-The E_TORSION term is an explicit 4-body potential that describes
-various dihedral angle preferences in hydrocarbon configurations.
-
-
-----------
-
-
-Only a single pair_coeff command is used with the *airebo*, *airebo*
-or *rebo* style which specifies an AIREBO or AIREBO-M potential file
-with parameters for C and H. Note that the *rebo* style in LAMMPS
-uses the same AIREBO-formatted potential file. These are mapped to
-LAMMPS atom types by specifying N additional arguments after the
-filename in the pair_coeff command, where N is the number of LAMMPS
-atom types:
-
-* filename
-* N element names = mapping of AIREBO elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, if your LAMMPS simulation has 4 atom types and you want
-the 1st 3 to be C, and the 4th to be H, you would use the following
-pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * CH.airebo C C C H
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three C arguments map LAMMPS atom types 1,2,3 to the C
-element in the AIREBO file. The final H argument maps LAMMPS atom
-type 4 to the H element in the SW file. If a mapping value is
-specified as NULL, the mapping is not performed. This can be used
-when a *airebo* potential is used as part of the *hybrid* pair style.
-The NULL values are placeholders for atom types that will be used with
-other potentials.
-
-The parameters/coefficients for the AIREBO potentials are listed in
-the CH.airebo file to agree with the original :ref:`(Stuart) <Stuart>`
-paper. Thus the parameters are specific to this potential and the way
-it was fit, so modifying the file should be done cautiously.
-
-Similarly the parameters/coefficients for the AIREBO-M potentials are
-listed in the CH.airebo-m file to agree with the :ref:`(O'Connor) <OConnor>`
-paper. Thus the parameters are specific to this potential and the way
-it was fit, so modifying the file should be done cautiously. The
-AIREBO-M Morse potentials were parameterized using a cutoff of
-3.0 (sigma). Modifying this cutoff may impact simulation accuracy.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-These pair styles do not write their information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-These pair styles are part of the MANYBODY package. They are only
-enabled if LAMMPS was built with that package (which it is by
-default). See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-These pair potentials require the :doc:`newton <newton>` setting to be
-"on" for pair interactions.
-
-The CH.airebo and CH.airebo-m potential files provided with LAMMPS
-(see the potentials directory) are parameterized for metal :doc:`units <units>`.
-You can use the AIREBO, AIREBO-M or REBO potential with any LAMMPS units,
-but you would need to create your own AIREBO or AIREBO-M potential file
-with coefficients listed in the appropriate units, if your simulation
-doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Stuart:
-
-
-
-**(Stuart)** Stuart, Tutein, Harrison, J Chem Phys, 112, 6472-6486
-(2000).
-
-.. _Brenner:
-
-
-
-**(Brenner)** Brenner, Shenderova, Harrison, Stuart, Ni, Sinnott, J
-Physics: Condensed Matter, 14, 783-802 (2002).
-
-.. _OConnor:
-
-
-
-**(O'Connor)** O'Connor et al., J. Chem. Phys. 142, 024903 (2015).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_awpmd.txt b/doc/_sources/pair_awpmd.txt
deleted file mode 100644
index 534f0bbcd..000000000
--- a/doc/_sources/pair_awpmd.txt
+++ /dev/null
@@ -1,137 +0,0 @@
-.. index:: pair_style awpmd/cut
-
-pair_style awpmd/cut command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style awpmd/cut Rc keyword value ...
-
-* Rc = global cutoff, -1 means cutoff of half the shortest box length
-* zero or more keyword/value pairs may be appended
-* keyword = *hartree* or *dproduct* or *uhf* or *free* or *pbc* or *fix* or *harm* or *ermscale* or *flex_press*
-.. parsed-literal::
-
- *hartree* value = none
- *dproduct* value = none
- *uhf* value = none
- *free* value = none
- *pbc* value = Plen
- Plen = periodic width of electron = -1 or positive value (distance units)
- *fix* value = Flen
- Flen = fixed width of electron = -1 or positive value (distance units)
- *harm* value = width
- width = harmonic width constraint
- *ermscale* value = factor
- factor = scaling between electron mass and width variable mass
- *flex_press* value = none
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style awpmd/cut -1
- pair_style awpmd/cut 40.0 uhf free
- pair_coeff * *
- pair_coeff 2 2 20.0
-
-Description
-"""""""""""
-
-This pair style contains an implementation of the Antisymmetrized Wave
-Packet Molecular Dynamics (AWPMD) method. Need citation here. Need
-basic formulas here. Could be links to other documents.
-
-Rc is the cutoff.
-
-The pair_style command allows for several optional keywords
-to be specified.
-
-The *hartree*, *dproduct*, and *uhf* keywords specify the form of the
-initial trial wave function for the system. If the *hartree* keyword
-is used, then a Hartree multielectron trial wave function is used. If
-the *dproduct* keyword is used, then a trial function which is a
-product of two determinants for each spin type is used. If the *uhf*
-keyword is used, then an unrestricted Hartree-Fock trial wave function
-is used.
-
-The *free*, *pbc*, and *fix* keywords specify a width constraint on
-the electron wavepackets. If the *free* keyword is specified, then there is no
-constraint. If the *pbc* keyword is used and *Plen* is specified as
--1, then the maximum width is half the shortest box length. If *Plen*
-is a positive value, then the value is the maximum width. If the
-*fix* keyword is used and *Flen* is specified as -1, then electrons
-have a constant width that is read from the data file. If *Flen* is a
-positive value, then the constant width for all electrons is set to
-*Flen*.
-
-The *harm* keyword allow oscillations in the width of the
-electron wavepackets. More details are needed.
-
-The *ermscale* keyword specifies a unitless scaling factor
-between the electron masses and the width variable mass. More
-details needed.
-
-If the *flex_press* keyword is used, then a contribution from the
-electrons is added to the total virial and pressure of the system.
-
-This potential is designed to be used with :doc:`atom_style wavepacket <atom_style>` definitions, in order to handle the
-description of systems with interacting nuclei and explicit electrons.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cutoff (distance units)
-
-For *awpmd/cut*, the cutoff coefficient is optional. If it is not
-used (as in some of the examples above), the default global value
-specified in the pair_style command is used.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-The :doc:`pair_modify <pair_modify>` mix, shift, table, and tail options
-are not relevant for this pair style.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-Default
-"""""""
-
-These are the defaults for the pair_style keywords: *hartree* for the
-initial wavefunction, *free* for the wavepacket width.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_beck.txt b/doc/_sources/pair_beck.txt
deleted file mode 100644
index 231f821e9..000000000
--- a/doc/_sources/pair_beck.txt
+++ /dev/null
@@ -1,132 +0,0 @@
-.. index:: pair_style beck
-
-pair_style beck command
-=======================
-
-pair_style beck/gpu command
-===========================
-
-pair_style beck/omp command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style beck Rc
-
-* Rc = cutoff for interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style beck 8.0
- pair_coeff * * 399.671876712 0.0000867636112694 0.675 4.390 0.0003746
- pair_coeff 1 1 399.671876712 0.0000867636112694 0.675 4.390 0.0003746 6.0
-
-Description
-"""""""""""
-
-Style *beck* computes interactions based on the potential by
-:ref:`(Beck) <Beck>`, originally designed for simulation of Helium. It
-includes truncation at a cutoff distance Rc.
-
-.. image:: Eqs/pair_beck.jpg
- :align: center
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands.
-
-* A (energy units)
-* B (energy-distance^6 units)
-* a (distance units)
-* alpha (1/distance units)
-* beta (1/distance^6 units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global cutoff
-Rc is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, coeffiecients must be specified.
-No default mixing rules are used.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Beck:
-
-
-
-**(Beck)** Beck, Molecular Physics, 14, 311 (1968).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_body.txt b/doc/_sources/pair_body.txt
deleted file mode 100644
index fc3ca1f31..000000000
--- a/doc/_sources/pair_body.txt
+++ /dev/null
@@ -1,132 +0,0 @@
-.. index:: pair_style body
-
-pair_style body command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style body cutoff
-
-cutoff = global cutoff for interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style body 3.0
- pair_coeff * * 1.0 1.0
- pair_coeff 1 1 1.0 1.5 2.5
-
-Description
-"""""""""""
-
-Style *body* is for use with body particles and calculates pairwise
-body/body interactions as well as interactions between body and
-point-particles. See :ref:`Section_howto 14 <howto_14>`
-of the manual and the :doc:`body <body>` doc page for more details on
-using body particles.
-
-This pair style is designed for use with the "nparticle" body style,
-which is specified as an argument to the "atom-style body" command.
-See the :doc:`body <body>` doc page for more details about the body
-styles LAMMPS supports. The "nparticle" style treats a body particle
-as a rigid body composed of N sub-particles.
-
-The coordinates of a body particle are its center-of-mass (COM). If
-the COMs of a pair of body particles are within the cutoff (global or
-type-specific, as specified above), then all interactions between
-pairs of sub-particles in the two body particles are computed.
-E.g. if the first body particle has 3 sub-particles, and the second
-has 10, then 30 interactions are computed and summed to yield the
-total force and torque on each body particle.
-
-.. note::
-
- In the example just described, all 30 interactions are computed
- even if the distance between a particular pair of sub-particles is
- greater than the cutoff. Likewise, no interaction between two body
- particles is computed if the two COMs are further apart than the
- cutoff, even if the distance between some pairs of their sub-particles
- is within the cutoff. Thus care should be used in defining the cutoff
- distances for body particles, depending on their shape and size.
-
-Similar rules apply for a body particle interacting with a point
-particle. The distance between the two particles is calculated using
-the COM of the body particle and the position of the point particle.
-If the distance is within the cutoff and the body particle has N
-sub-particles, then N interactions with the point particle are
-computed and summed. If the distance is not within the cutoff, no
-interactions between the body and point particle are computed.
-
-The interaction between two sub-particles, or a sub-particle and point
-particle, or betwee two point particles is computed as a Lennard-Jones
-interaction, using the standard formula
-
-.. image:: Eqs/pair_lj.jpg
- :align: center
-
-where Rc is the cutoff. As explained above, an interaction involving
-one or two body sub-particles may be computed even for r > Rc.
-
-For style *body*, the following coefficients must be defined for each
-pair of atoms types via the :doc:`pair_coeff <pair_coeff>` command as in
-the examples above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global cutoff
-is used.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of this pair style can be mixed. The
-default mix value is *geometric*. See the "pair_modify" command for
-details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the BODY package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <2_3>` section for more info.
-
-Defining particles to be bodies so they participate in body/body or
-body/particle interactions requires the use of the :doc:`atom_style body <atom_style>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix rigid <fix_rigid>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_bop.txt b/doc/_sources/pair_bop.txt
deleted file mode 100644
index ace6b7ca3..000000000
--- a/doc/_sources/pair_bop.txt
+++ /dev/null
@@ -1,452 +0,0 @@
-.. index:: pair_style bop
-
-pair_style bop command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style bop keyword ...
-
-* zero or more keywords may be appended
-* keyword = *save*
-.. parsed-literal::
-
- save = pre-compute and save some values
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style bop
- pair_coeff * * ../potentials/CdTe_bop Cd Te
- pair_style bop save
- pair_coeff * * ../potentials/CdTe.bop.table Cd Te Te
- comm_modify cutoff 14.70
-
-Description
-"""""""""""
-
-The *bop* pair style computes Bond-Order Potentials (BOP) based on
-quantum mechanical theory incorporating both sigma and pi bondings.
-By analytically deriving the BOP from quantum mechanical theory its
-transferability to different phases can approach that of quantum
-mechanical methods. This potential is similar to the original BOP
-developed by Pettifor (:ref:`Pettifor_1 <Pettifor_1>`,
-:ref:`Pettifor_2 <Pettifor_2>`, :ref:`Pettifor_3 <Pettifor_3>`) and later updated
-by Murdick, Zhou, and Ward (:ref:`Murdick <Murdick>`, :ref:`Ward <Ward>`).
-Currently, BOP potential files for these systems are provided with
-LAMMPS: AlCu, CCu, CdTe, CdTeSe, CdZnTe, CuH, GaAs. A sysstem with
-only a subset of these elements, including a single element (e.g. C or
-Cu or Al or Ga or Zn or CdZn), can also be modeled by using the
-appropriate alloy file and assigning all atom types to the
-singleelement or subset of elements via the pair_coeff command, as
-discussed below.
-
-The BOP potential consists of three terms:
-
-.. image:: Eqs/pair_bop.jpg
- :align: center
-
-where phi_ij(r_ij) is a short-range two-body function representing the
-repulsion between a pair of ion cores, beta_(sigma,ij)(r_ij) and
-beta_(sigma,ij)(r_ij) are respectively sigma and pi bond ingtegrals,
-THETA_(sigma,ij) and THETA_(pi,ij) are sigma and pi bond-orders, and
-U_prom is the promotion energy for sp-valent systems.
-
-The detailed formulas for this potential are given in Ward
-(:ref:`Ward <Ward>`); here we provide only a brief description.
-
-The repulsive energy phi_ij(r_ij) and the bond integrals
-beta_(sigma,ij)(r_ij) and beta_(phi,ij)(r_ij) are functions of the
-interatomic distance r_ij between atom i and j. Each of these
-potentials has a smooth cutoff at a radius of r_(cut,ij). These
-smooth cutoffs ensure stable behavior at situations with high sampling
-near the cutoff such as melts and surfaces.
-
-The bond-orders can be viewed as environment-dependent local variables
-that are ij bond specific. The maximum value of the sigma bond-order
-(THETA_sigma) is 1, while that of the pi bond-order (THETA_pi) is 2,
-attributing to a maximum value of the total bond-order
-(THETA_sigma+THETA_pi) of 3. The sigma and pi bond-orders reflect the
-ubiquitous single-, double-, and triple- bond behavior of
-chemistry. Their analytical expressions can be derived from tight-
-binding theory by recursively expanding an inter-site Green's function
-as a continued fraction. To accurately represent the bonding with a
-computationally efficient potential formulation suitable for MD
-simulations, the derived BOP only takes (and retains) the first two
-levels of the recursive representations for both the sigma and the pi
-bond-orders. Bond-order terms can be understood in terms of molecular
-orbital hopping paths based upon the Cyrot-Lackmann theorem
-(:ref:`Pettifor_1 <Pettifor_1>`). The sigma bond-order with a half-full
-valence shell is used to interpolate the bond-order expressiont that
-incorporated explicite valance band filling. This pi bond-order
-expression also contains also contains a three-member ring term that
-allows implementation of an asymmetric density of states, which helps
-to either stabilize or destabilize close-packed structures. The pi
-bond-order includes hopping paths of length 4. This enables the
-incorporation of dihedral angles effects.
-
-.. note::
-
- Note that unlike for other potentials, cutoffs for BOP
- potentials are not set in the pair_style or pair_coeff command; they
- are specified in the BOP potential files themselves. Likewise, the
- BOP potential files list atomic masses; thus you do not need to use
- the :doc:`mass <mass>` command to specify them. Note that for BOP
- potentials with hydrogen, you will likely want to set the mass of H
- atoms to be 10x or 20x larger to avoid having to use a tiny timestep.
- You can do this by using the :doc:`mass <mass>` command after using the
- :doc:`pair_coeff <doc/pair_coeff>` command to read the BOP potential
- file.
-
-One option can be specified as a keyword with the pair_style command.
-
-The *save* keyword gives you the option to calculate in advance and
-store a set of distances, angles, and derivatives of angles. The
-default is to not do this, but to calculate them on-the-fly each time
-they are needed. The former may be faster, but takes more memory.
-The latter requires less memory, but may be slower. It is best to
-test this option to optimize the speed of BOP for your particular
-system configuration.
-
-
-----------
-
-
-Only a single pair_coeff command is used with the *bop* style which
-specifies a BOP potential file, with parameters for all needed
-elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of BOP elements to atom types
-
-As an example, imagine the CdTe.bop file has BOP values for Cd
-and Te. If your LAMMPS simulation has 4 atoms types and you want the
-1st 3 to be Cd, and the 4th to be Te, you would use the following
-pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * CdTe Cd Cd Cd Te
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Cd arguments map LAMMPS atom types 1,2,3 to the Cd
-element in the BOP file. The final Te argument maps LAMMPS atom type
-4 to the Te element in the BOP file.
-
-BOP files in the *potentials* directory of the LAMMPS distribution
-have a ".bop" suffix. The potentials are in tabulated form containing
-pre-tabulated pair functions for phi_ij(r_ij), beta_(sigma,ij)(r_ij),
-and beta_pi,ij)(r_ij).
-
-The parameters/coefficients format for the different kinds of BOP
-files are given below with variables matching the formulation of Ward
-(:ref:`Ward <Ward>`) and Zhou (:ref:`Zhou <Zhou>`). Each header line containing a
-":" is preceded by a blank line.
-
-
-----------
-
-
-**No angular table file format**:
-
-The parameters/coefficients format for the BOP potentials input file
-containing pre-tabulated functions of g is given below with variables
-matching the formulation of Ward (:ref:`Ward <Ward>`). This format also
-assumes the angular functions have the formulation of (:ref:`Ward <Ward>`).
-
-* Line 1: # elements N
-
-The first line is followed by N lines containing the atomic
-number, mass, and element symbol of each element.
-
-Following the definition of the elements several global variables for
-the tabulated functions are given.
-
-* Line 1: nr, nBOt (nr is the number of divisions the radius is broken
- into for function tables and MUST be a factor of 5; nBOt is the number
- of divisions for the tabulated values of THETA_(S,ij)
-* Line 2: delta_1-delta_7 (if all are not used in the particular
-* formulation, set unused values to 0.0)
-Following this N lines for e_1-e_N containing p_pi.
-
-* Line 3: p_pi (for e_1)
-* Line 4: p_pi (for e_2 and continues to e_N)
-
-The next section contains several pair constants for the number of
-interaction types e_i-e_j, with i=1->N, j=i->N
-
-* Line 1: r_cut (for e_1-e_1 interactions)
-* Line 2: c_sigma, a_sigma, c_pi, a_pi
-* Line 3: delta_sigma, delta_pi
-* Line 4: f_sigma, k_sigma, delta_3 (This delta_3 is similar to that of
- the previous section but is interaction type dependent)
-The next section contains a line for each three body interaction type
-e_j-e_i-e_k with i=0->N, j=0->N, k=j->N
-
-* Line 1: g_(sigma0), g_(sigma1), g_(sigma2) (These are coefficients for
- g_(sigma,jik)(THETA_ijk) for e_1-e_1-e_1 interaction. :ref:`Ward <Ward>`
- contains the full expressions for the constants as functions of
- b_(sigma,ijk), p_(sigma,ijk), u_(sigma,ijk))
-* Line 2: g_(sigma0), g_(sigma1), g_(sigma2) (for e_1-e_1-e_2)
-The next section contains a block for each interaction type for the
-phi_ij(r_ij). Each block has nr entries with 5 entries per line.
-
-* Line 1: phi(r1), phi(r2), phi(r3), phi(r4), phi(r5) (for the e_1-e_1
- interaction type)
-* Line 2: phi(r6), phi(r7), phi(r8), phi(r9), phi(r10) (this continues
- until nr)
-* ...
-* Line nr/5_1: phi(r1), phi(r2), phi(r3), phi(r4), phi(r5), (for the
- e_1-e_1 interaction type)
-The next section contains a block for each interaction type for the
-beta_(sigma,ij)(r_ij). Each block has nr entries with 5 entries per
-line.
-
-* Line 1: beta_sigma(r1), beta_sigma(r2), beta_sigma(r3), beta_sigma(r4),
- beta_sigma(r5) (for the e_1-e_1 interaction type)
-* Line 2: beta_sigma(r6), beta_sigma(r7), beta_sigma(r8), beta_sigma(r9),
- beta_sigma(r10) (this continues until nr)
-* ...
-* Line nr/5+1: beta_sigma(r1), beta_sigma(r2), beta_sigma(r3),
- beta_sigma(r4), beta_sigma(r5) (for the e_1-e_2 interaction type)
-The next section contains a block for each interaction type for
-beta_(pi,ij)(r_ij). Each block has nr entries with 5 entries per line.
-
-* Line 1: beta_pi(r1), beta_pi(r2), beta_pi(r3), beta_pi(r4), beta_pi(r5)
- (for the e_1-e_1 interaction type)
-* Line 2: beta_pi(r6), beta_pi(r7), beta_pi(r8), beta_pi(r9),
- beta_pi(r10) (this continues until nr)
-* ...
-* Line nr/5+1: beta_pi(r1), beta_pi(r2), beta_pi(r3), beta_pi(r4),
- beta_pi(r5) (for the e_1-e_2 interaction type)
-The next section contains a block for each interaction type for the
-THETA_(S,ij)((THETA_(sigma,ij))^(1/2), f_(sigma,ij)). Each block has
-nBOt entries with 5 entries per line.
-
-* Line 1: THETA_(S,ij)(r1), THETA_(S,ij)(r2), THETA_(S,ij)(r3),
- THETA_(S,ij)(r4), THETA_(S,ij)(r5) (for the e_1-e_2 interaction type)
-* Line 2: THETA_(S,ij)(r6), THETA_(S,ij)(r7), THETA_(S,ij)(r8),
- THETA_(S,ij)(r9), THETA_(S,ij)(r10) (this continues until nBOt)
-* ...
-* Line nBOt/5+1: THETA_(S,ij)(r1), THETA_(S,ij)(r2), THETA_(S,ij)(r3),
- THETA_(S,ij)(r4), THETA_(S,ij)(r5) (for the e_1-e_2 interaction type)
-The next section contains a block of N lines for e_1-e_N
-
-* Line 1: delta^mu (for e_1)
-* Line 2: delta^mu (for e_2 and repeats to e_N)
-
-The last section contains more constants for e_i-e_j interactions with
-i=0->N, j=i->N
-
-* Line 1: (A_ij)^(mu*nu) (for e1-e1)
-* Line 2: (A_ij)^(mu*nu) (for e1-e2 and repeats as above)
-
-
-----------
-
-
-**Angular spline table file format**:
-
-The parameters/coefficients format for the BOP potentials input file
-containing pre-tabulated functions of g is given below with variables
-matching the formulation of Ward (:ref:`Ward <Ward>`). This format also
-assumes the angular functions have the formulation of (:ref:`Zhou <Zhou>`).
-
-* Line 1: # elements N
-
-The first line is followed by N lines containing the atomic
-number, mass, and element symbol of each element.
-
-Following the definition of the elements several global variables for
-the tabulated functions are given.
-
-* Line 1: nr, ntheta, nBOt (nr is the number of divisions the radius is broken
- into for function tables and MUST be a factor of 5; ntheta is the power of the
- power of the spline used to fit the angular function; nBOt is the number
- of divisions for the tabulated values of THETA_(S,ij)
-* Line 2: delta_1-delta_7 (if all are not used in the particular
-* formulation, set unused values to 0.0)
-Following this N lines for e_1-e_N containing p_pi.
-
-* Line 3: p_pi (for e_1)
-* Line 4: p_pi (for e_2 and continues to e_N)
-
-The next section contains several pair constants for the number of
-interaction types e_i-e_j, with i=1->N, j=i->N
-
-* Line 1: r_cut (for e_1-e_1 interactions)
-* Line 2: c_sigma, a_sigma, c_pi, a_pi
-* Line 3: delta_sigma, delta_pi
-* Line 4: f_sigma, k_sigma, delta_3 (This delta_3 is similar to that of
- the previous section but is interaction type dependent)
-The next section contains a line for each three body interaction type
-e_j-e_i-e_k with i=0->N, j=0->N, k=j->N
-
-* Line 1: g0, g1, g2... (These are coefficients for the angular spline
- of the g_(sigma,jik)(THETA_ijk) for e_1-e_1-e_1 interaction. The
- function can contain up to 10 term thus 10 constants. The first line
- can contain up to five constants. If the spline has more than five
- terms the second line will contain the remaining constants The
- following lines will then contain the constants for the remainaing g0,
- g1, g2... (for e_1-e_1-e_2) and the other three body
- interactions
-The rest of the table has the same structure as the previous section
-(see above).
-
-
-----------
-
-
-**Angular no-spline table file format**:
-
-The parameters/coefficients format for the BOP potentials input file
-containing pre-tabulated functions of g is given below with variables
-matching the formulation of Ward (:ref:`Ward <Ward>`). This format also
-assumes the angular functions have the formulation of (:ref:`Zhou <Zhou>`).
-
-* Line 1: # elements N
-
-The first two lines are followed by N lines containing the atomic
-number, mass, and element symbol of each element.
-
-Following the definition of the elements several global variables for
-the tabulated functions are given.
-
-* Line 1: nr, ntheta, nBOt (nr is the number of divisions the radius is broken
- into for function tables and MUST be a factor of 5; ntheta is the number of
- divisions for the tabulated values of the g angular function; nBOt is the number
- of divisions for the tabulated values of THETA_(S,ij)
-* Line 2: delta_1-delta_7 (if all are not used in the particular
-* formulation, set unused values to 0.0)
-Following this N lines for e_1-e_N containing p_pi.
-
-* Line 3: p_pi (for e_1)
-* Line 4: p_pi (for e_2 and continues to e_N)
-
-The next section contains several pair constants for the number of
-interaction types e_i-e_j, with i=1->N, j=i->N
-
-* Line 1: r_cut (for e_1-e_1 interactions)
-* Line 2: c_sigma, a_sigma, c_pi, a_pi
-* Line 3: delta_sigma, delta_pi
-* Line 4: f_sigma, k_sigma, delta_3 (This delta_3 is similar to that of
- the previous section but is interaction type dependent)
-The next section contains a line for each three body interaction type
-e_j-e_i-e_k with i=0->N, j=0->N, k=j->N
-
-* Line 1: g(theta1), g(theta2), g(theta3), g(theta4), g(theta5) (for the e_1-e_1-e_1
- interaction type)
-* Line 2: g(theta6), g(theta7), g(theta8), g(theta9), g(theta10) (this continues
- until ntheta)
-* ...
-* Line ntheta/5+1: g(theta1), g(theta2), g(theta3), g(theta4), g(theta5), (for the
- e_1-e_1-e_2 interaction type)
-The rest of the table has the same structure as the previous section (see above).
-
-
-----------
-
-
-**Mixing, shift, table tail correction, restart**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These pair styles are part of the MANYBODY package. They are only
-enabled if LAMMPS was built with that package (which it is by default).
-See the :ref:`Making LAMMPS <start_3>` section for more
-info.
-
-These pair potentials require the :doc:`newtion <newton>` setting to be
-"on" for pair interactions.
-
-The CdTe.bop and GaAs.bop potential files provided with LAMMPS (see the
-potentials directory) are parameterized for metal :doc:`units <units>`.
-You can use the BOP potential with any LAMMPS units, but you would need
-to create your own BOP potential file with coefficients listed in the
-appropriate units if your simulation does not use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-Default
-"""""""
-
-non-tabulated potential file, a_0 is non-zero.
-
-
-----------
-
-
-.. _Pettofor_1:
-
-
-
-**(Pettifor_1)** D.G. Pettifor and I.I. Oleinik, Phys. Rev. B, 59, 8487
-(1999).
-
-.. _Pettofor_2:
-
-
-
-**(Pettifor_2)** D.G. Pettifor and I.I. Oleinik, Phys. Rev. Lett., 84,
-4124 (2000).
-
-.. _Pettofor_3:
-
-
-
-**(Pettifor_3)** D.G. Pettifor and I.I. Oleinik, Phys. Rev. B, 65, 172103
-(2002).
-
-.. _Murdick:
-
-
-
-**(Murdick)** D.A. Murdick, X.W. Zhou, H.N.G. Wadley, D. Nguyen-Manh, R.
-Drautz, and D.G. Pettifor, Phys. Rev. B, 73, 45206 (2006).
-
-.. _Ward:
-
-
-
-**(Ward)** D.K. Ward, X.W. Zhou, B.M. Wong, F.P. Doty, and J.A.
-Zimmerman, Phys. Rev. B, 85,115206 (2012).
-
-.. _Zhou:
-
-
-
-**(Zhou)** X.W. Zhou, D.K. Ward, M. Foster (TBP).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_born.txt b/doc/_sources/pair_born.txt
deleted file mode 100644
index 28f302167..000000000
--- a/doc/_sources/pair_born.txt
+++ /dev/null
@@ -1,242 +0,0 @@
-.. index:: pair_style born
-
-pair_style born command
-=======================
-
-pair_style born/omp command
-===========================
-
-pair_style born/gpu command
-===========================
-
-pair_style born/coul/long command
-=================================
-
-pair_style born/coul/long/cs command
-====================================
-
-pair_style born/coul/long/cuda command
-======================================
-
-pair_style born/coul/long/gpu command
-=====================================
-
-pair_style born/coul/long/omp command
-=====================================
-
-pair_style born/coul/msm command
-================================
-
-pair_style born/coul/msm/omp command
-====================================
-
-pair_style born/coul/wolf command
-=================================
-
-pair_style born/coul/wolf/gpu command
-=====================================
-
-pair_style born/coul/wolf/omp command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *born* or *born/coul/long* or *born/coul/long/cs* or *born/coul/msm* or *born/coul/wolf*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *born* args = cutoff
- cutoff = global cutoff for non-Coulombic interactions (distance units)
- *born/coul/long* or *born/coul/long/cs* args = cutoff (cutoff2)
- cutoff = global cutoff for non-Coulombic (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *born/coul/msm* args = cutoff (cutoff2)
- cutoff = global cutoff for non-Coulombic (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *born/coul/wolf* args = alpha cutoff (cutoff2)
- alpha = damping parameter (inverse distance units)
- cutoff = global cutoff for non-Coulombic (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style born 10.0
- pair_coeff * * 6.08 0.317 2.340 24.18 11.51
- pair_coeff 1 1 6.08 0.317 2.340 24.18 11.51
-
-.. parsed-literal::
-
- pair_style born/coul/long 10.0
- pair_style born/coul/long/cs 10.0
- pair_style born/coul/long 10.0 8.0
- pair_style born/coul/long/cs 10.0 8.0
- pair_coeff * * 6.08 0.317 2.340 24.18 11.51
- pair_coeff 1 1 6.08 0.317 2.340 24.18 11.51
-
-.. parsed-literal::
-
- pair_style born/coul/msm 10.0
- pair_style born/coul/msm 10.0 8.0
- pair_coeff * * 6.08 0.317 2.340 24.18 11.51
- pair_coeff 1 1 6.08 0.317 2.340 24.18 11.51
-
-.. parsed-literal::
-
- pair_style born/coul/wolf 0.25 10.0
- pair_style born/coul/wolf 0.25 10.0 9.0
- pair_coeff * * 6.08 0.317 2.340 24.18 11.51
- pair_coeff 1 1 6.08 0.317 2.340 24.18 11.51
-
-Description
-"""""""""""
-
-The *born* style computes the Born-Mayer-Huggins or Tosi/Fumi
-potential described in :ref:`(Fumi and Tosi) <FumiTosi>`, given by
-
-.. image:: Eqs/pair_born.jpg
- :align: center
-
-where sigma is an interaction-dependent length parameter, rho is an
-ionic-pair dependent length parameter, and Rc is the cutoff.
-
-The styles with *coul/long* or *coul/msm* add a Coulombic term as
-described for the :doc:`lj/cut <pair_lj>` pair styles. An additional
-damping factor is applied to the Coulombic term so it can be used in
-conjunction with the :doc:`kspace_style <kspace_style>` command and its
-*ewald* or *pppm* of *msm* option. The Coulombic cutoff specified for
-this style means that pairwise interactions within this distance are
-computed directly; interactions outside that distance are computed in
-reciprocal space.
-
-If one cutoff is specified for the *born/coul/long* and
-*born/coul/msm* style, it is used for both the A,C,D and Coulombic
-terms. If two cutoffs are specified, the first is used as the cutoff
-for the A,C,D terms, and the second is the cutoff for the Coulombic
-term.
-
-The *born/coul/wolf* style adds a Coulombic term as described for the
-Wolf potential in the :doc:`coul/wolf <pair_coul>` pair style.
-
-Style *born/coul/long/cs* is identical to *born/coul/long* except that
-a term is added for the :ref:`core/shell model <howto_25>`
-to allow charges on core and shell particles to be separated by r =
-0.0.
-
-Note that these potentials are related to the :doc:`Buckingham potential <pair_buck>`.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* A (energy units)
-* rho (distance units)
-* sigma (distance units)
-* C (energy units * distance units^6)
-* D (energy units * distance units^8)
-* cutoff (distance units)
-
-The second coefficient, rho, must be greater than zero.
-
-The last coefficient is optional. If not specified, the global A,C,D
-cutoff specified in the pair_style command is used.
-
-For *born/coul/long* and *born/coul/wolf* no Coulombic cutoff can be
-specified for an individual I,J type pair. All type pairs use the
-same global Coulombic cutoff specified in the pair_style command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-These styles support the :doc:`pair_modify <pair_modify>` shift option
-for the energy of the exp(), 1/r^6, and 1/r^8 portion of the pair
-interaction.
-
-The *born/coul/long* pair style supports the
-:doc:`pair_modify <pair_modify>` table option ti tabulate the
-short-range portion of the long-range Coulombic interaction.
-
-These styles support the pair_modify tail option for adding long-range
-tail corrections to energy and pressure.
-
-Thess styles writes thei information to binary :doc:`restart <restart>`
-files, so pair_style and pair_coeff commands do not need to be
-specified in an input script that reads a restart file.
-
-These styles can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. They do not support the *inner*,
-*middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *born/coul/long* style is part of the KSPACE package. It is only
-enabled if LAMMPS was built with that package (which it is by
-default). See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style buck <pair_buck>`
-
-**Default:** none
-
-
-----------
-
-
-.. _FumiTosi:
-
-
-
-Fumi and Tosi, J Phys Chem Solids, 25, 31 (1964),
-Fumi and Tosi, J Phys Chem Solids, 25, 45 (1964).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_brownian.txt b/doc/_sources/pair_brownian.txt
deleted file mode 100644
index a6447aaae..000000000
--- a/doc/_sources/pair_brownian.txt
+++ /dev/null
@@ -1,159 +0,0 @@
-.. index:: pair_style brownian
-
-pair_style brownian command
-===========================
-
-pair_style brownian/omp command
-===============================
-
-pair_style brownian/poly command
-================================
-
-pair_style brownian/poly/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style mu flaglog flagfld cutinner cutoff t_target seed flagHI flagVF
-
-* style = *brownian* or *brownian/poly*
-* mu = dynamic viscosity (dynamic viscosity units)
-* flaglog = 0/1 log terms in the lubrication approximation on/off
-* flagfld = 0/1 to include/exclude Fast Lubrication Dynamics effects
-* cutinner = inner cutoff distance (distance units)
-* cutoff = outer cutoff for interactions (distance units)
-* t_target = target temp of the system (temperature units)
-* seed = seed for the random number generator (positive integer)
-* flagHI (optional) = 0/1 to include/exclude 1/r hydrodynamic interactions
-* flagVF (optional) = 0/1 to include/exclude volume fraction corrections in the long-range isotropic terms
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style brownian 1.5 1 1 2.01 2.5 2.0 5878567 (assuming radius = 1)
- pair_coeff 1 1 2.05 2.8
- pair_coeff * *
-
-Description
-"""""""""""
-
-Styles *brownian* and *brownain/poly* compute Brownian forces and
-torques on finite-size spherical particles. The former requires
-monodisperse spherical particles; the latter allows for polydisperse
-spherical particles.
-
-These pair styles are designed to be used with either the :doc:`pair_style lubricate <pair_lubricate>` or :doc:`pair_style lubricateU <pair_lubricateU>` commands to provide thermostatting
-when dissipative lubrication forces are acting. Thus the parameters
-*mu*, *flaglog*, *flagfld*, *cutinner*, and *cutoff* should be
-specified consistent with the settings in the lubrication pair styles.
-For details, refer to either of the lubrication pair styles.
-
-The *t_target* setting is used to specify the target temperature of
-the system. The random number *seed* is used to generate random
-numbers for the thermostatting procedure.
-
-The *flagHI* and *flagVF* settings are optional. Neither should be
-used, or both must be defined.
-
-
-----------
-
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cutinner (distance units)
-* cutoff (distance units)
-
-The two coefficients are optional. If neither is specified, the two
-cutoffs specified in the pair_style command are used. Otherwise both
-must be specified.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`this section <Section_accelerate>` of
-the manual. The accelerated styles take the same arguments and should
-produce the same results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`this section <Section_accelerate>` of the manual for more
-instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the two cutoff distances for this
-pair style can be mixed. The default mix value is *geometric*. See
-the "pair_modify" command for details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These styles are part of the COLLOID package. They are only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <2_3>` section for more info.
-
-Only spherical monodisperse particles are allowed for pair_style
-brownian.
-
-Only spherical particles are allowed for pair_style brownian/poly.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style lubricate <pair_lubricate>`, :doc:`pair_style lubricateU <pair_lubricateU>`
-
-Default
-"""""""
-
-The default settings for the optional args are flagHI = 1 and flagVF =
-1.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_buck.txt b/doc/_sources/pair_buck.txt
deleted file mode 100644
index 2f1e8020b..000000000
--- a/doc/_sources/pair_buck.txt
+++ /dev/null
@@ -1,260 +0,0 @@
-.. index:: pair_style buck
-
-pair_style buck command
-=======================
-
-pair_style buck/cuda command
-============================
-
-pair_style buck/gpu command
-===========================
-
-pair_style buck/intel command
-=============================
-
-pair_style buck/kk command
-==========================
-
-pair_style buck/omp command
-===========================
-
-pair_style buck/coul/cut command
-================================
-
-pair_style buck/coul/cut/cuda command
-=====================================
-
-pair_style buck/coul/cut/gpu command
-====================================
-
-pair_style buck/coul/cut/intel command
-======================================
-
-pair_style buck/coul/cut/kk command
-===================================
-
-pair_style buck/coul/cut/omp command
-====================================
-
-pair_style buck/coul/long command
-=================================
-
-pair_style buck/coul/long/cs command
-====================================
-
-pair_style buck/coul/long/cuda command
-======================================
-
-pair_style buck/coul/long/gpu command
-=====================================
-
-pair_style buck/coul/long/intel command
-=======================================
-
-pair_style buck/coul/long/kk command
-====================================
-
-pair_style buck/coul/long/omp command
-=====================================
-
-pair_style buck/coul/msm command
-================================
-
-pair_style buck/coul/msm/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *buck* or *buck/coul/cut* or *buck/coul/long* or *buck/coul/long/cs* or *buck/coul/msm*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *buck* args = cutoff
- cutoff = global cutoff for Buckingham interactions (distance units)
- *buck/coul/cut* args = cutoff (cutoff2)
- cutoff = global cutoff for Buckingham (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *buck/coul/long* or *buck/coul/long/cs* args = cutoff (cutoff2)
- cutoff = global cutoff for Buckingham (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *buck/coul/msm* args = cutoff (cutoff2)
- cutoff = global cutoff for Buckingham (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style buck 2.5
- pair_coeff * * 100.0 1.5 200.0
- pair_coeff * * 100.0 1.5 200.0 3.0
-
-.. parsed-literal::
-
- pair_style buck/coul/cut 10.0
- pair_style buck/coul/cut 10.0 8.0
- pair_coeff * * 100.0 1.5 200.0
- pair_coeff 1 1 100.0 1.5 200.0 9.0
- pair_coeff 1 1 100.0 1.5 200.0 9.0 8.0
-
-.. parsed-literal::
-
- pair_style buck/coul/long 10.0
- pair_style buck/coul/long/cs 10.0
- pair_style buck/coul/long 10.0 8.0
- pair_style buck/coul/long/cs 10.0 8.0
- pair_coeff * * 100.0 1.5 200.0
- pair_coeff 1 1 100.0 1.5 200.0 9.0
-
-.. parsed-literal::
-
- pair_style buck/coul/msm 10.0
- pair_style buck/coul/msm 10.0 8.0
- pair_coeff * * 100.0 1.5 200.0
- pair_coeff 1 1 100.0 1.5 200.0 9.0
-
-Description
-"""""""""""
-
-The *buck* style computes a Buckingham potential (exp/6 instead of
-Lennard-Jones 12/6) given by
-
-.. image:: Eqs/pair_buck.jpg
- :align: center
-
-where rho is an ionic-pair dependent length parameter, and Rc is the
-cutoff on both terms.
-
-The styles with *coul/cut* or *coul/long* or *coul/msm* add a
-Coulombic term as described for the :doc:`lj/cut <pair_lj>` pair styles.
-For *buck/coul/long* and *buc/coul/msm*, an additional damping factor
-is applied to the Coulombic term so it can be used in conjunction with
-the :doc:`kspace_style <kspace_style>` command and its *ewald* or *pppm*
-or *msm* option. The Coulombic cutoff specified for this style means
-that pairwise interactions within this distance are computed directly;
-interactions outside that distance are computed in reciprocal space.
-
-If one cutoff is specified for the *born/coul/cut* and
-*born/coul/long* and *born/coul/msm* styles, it is used for both the
-A,C and Coulombic terms. If two cutoffs are specified, the first is
-used as the cutoff for the A,C terms, and the second is the cutoff for
-the Coulombic term.
-
-Style *buck/coul/long/cs* is identical to *buck/coul/long* except that
-a term is added for the :ref:`core/shell model <howto_25>`
-to allow charges on core and shell particles to be separated by r =
-0.0.
-
-Note that these potentials are related to the :doc:`Born-Mayer-Huggins potential <pair_born>`.
-
-.. note::
-
- For all these pair styles, the terms with A and C are always
- cutoff. The additional Coulombic term can be cutoff or long-range (no
- cutoff) depending on whether the style name includes coul/cut or
- coul/long or coul/msm. If you wish the C/r^6 term to be long-range
- (no cutoff), then see the :doc:`pair_style buck/long/coul/long <pair_buck_long>` command.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* A (energy units)
-* rho (distance units)
-* C (energy-distance^6 units)
-* cutoff (distance units)
-* cutoff2 (distance units)
-
-The second coefficient, rho, must be greater than zero.
-
-The latter 2 coefficients are optional. If not specified, the global
-A,C and Coulombic cutoffs are used. If only one cutoff is specified,
-it is used as the cutoff for both A,C and Coulombic interactions for
-this type pair. If both coefficients are specified, they are used as
-the A,C and Coulombic cutoffs for this type pair. You cannot specify
-2 cutoffs for style *buck*, since it has no Coulombic terms.
-
-For *buck/coul/long* only the LJ cutoff can be specified since a
-Coulombic cutoff cannot be specified for an individual I,J type pair.
-All type pairs use the same global Coulombic cutoff specified in the
-pair_style command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-These styles support the :doc:`pair_modify <pair_modify>` shift option
-for the energy of the exp() and 1/r^6 portion of the pair interaction.
-
-The *buck/coul/long* pair style supports the
-:doc:`pair_modify <pair_modify>` table option to tabulate the
-short-range portion of the long-range Coulombic interaction.
-
-These styles support the pair_modify tail option for adding long-range
-tail corrections to energy and pressure for the A,C terms in the
-pair interaction.
-
-These styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-These styles can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. They do not support the *inner*,
-*middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-The *buck/coul/long* style is part of the KSPACE package. The
-*buck/coul/long/cs* style is part of the CORESHELL package. They are
-only enabled if LAMMPS was built with that package (which it is by
-default). See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style born <pair_born>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_buck_long.txt b/doc/_sources/pair_buck_long.txt
deleted file mode 100644
index ce837e76b..000000000
--- a/doc/_sources/pair_buck_long.txt
+++ /dev/null
@@ -1,195 +0,0 @@
-.. index:: pair_style buck/long/coul/long
-
-pair_style buck/long/coul/long command
-======================================
-
-pair_style buck/long/coul/long/omp command
-==========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style buck/long/coul/long flag_buck flag_coul cutoff (cutoff2)
-
-* flag_buck = *long* or *cut*
-.. parsed-literal::
-
- *long* = use Kspace long-range summation for the dispersion term 1/r^6
- *cut* = use a cutoff
-
-* flag_coul = *long* or *off*
-.. parsed-literal::
-
- *long* = use Kspace long-range summation for the Coulombic term 1/r
- *off* = omit the Coulombic term
-
-* cutoff = global cutoff for Buckingham (and Coulombic if only 1 cutoff) (distance units)
-* cutoff2 = global cutoff for Coulombic (optional) (distance units)
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style buck/long/coul/long cut off 2.5
- pair_style buck/long/coul/long cut long 2.5 4.0
- pair_style buck/long/coul/long long long 4.0
- pair_coeff * * 1 1
- pair_coeff 1 1 1 3 4
-
-Description
-"""""""""""
-
-The *buck/long/coul/long* style computes a Buckingham potential (exp/6
-instead of Lennard-Jones 12/6) and Coulombic potential, given by
-
-.. image:: Eqs/pair_buck.jpg
- :align: center
-
-.. image:: Eqs/pair_coulomb.jpg
- :align: center
-
-Rc is the cutoff. If one cutoff is specified in the pair_style
-command, it is used for both the Buckingham and Coulombic terms. If
-two cutoffs are specified, they are used as cutoffs for the Buckingham
-and Coulombic terms respectively.
-
-The purpose of this pair style is to capture long-range interactions
-resulting from both attractive 1/r^6 Buckingham and Coulombic 1/r
-interactions. This is done by use of the *flag_buck* and *flag_coul*
-settings. The ":ref:`Ismail <Ismail>` paper has more details on when it is
-appropriate to include long-range 1/r^6 interactions, using this
-potential.
-
-If *flag_buck* is set to *long*, no cutoff is used on the Buckingham
-1/r^6 dispersion term. The long-range portion can be calculated by
-using the :doc:`kspace_style ewald/disp or pppm/disp <kspace_style>`
-commands. The specified Buckingham cutoff then determines which
-portion of the Buckingham interactions are computed directly by the
-pair potential versus which part is computed in reciprocal space via
-the Kspace style. If *flag_buck* is set to *cut*, the Buckingham
-interactions are simply cutoff, as with :doc:`pair_style buck <pair_buck>`.
-
-If *flag_coul* is set to *long*, no cutoff is used on the Coulombic
-interactions. The long-range portion can calculated by using any of
-several :doc:`kspace_style <kspace_style>` command options such as
-*pppm* or *ewald*. Note that if *flag_buck* is also set to long, then
-the *ewald/disp* or *pppm/disp* Kspace style needs to be used to
-perform the long-range calculations for both the Buckingham and
-Coulombic interactions. If *flag_coul* is set to *off*, Coulombic
-interactions are not computed.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* A (energy units)
-* rho (distance units)
-* C (energy-distance^6 units)
-* cutoff (distance units)
-* cutoff2 (distance units)
-
-The second coefficient, rho, must be greater than zero.
-
-The latter 2 coefficients are optional. If not specified, the global
-Buckingham and Coulombic cutoffs specified in the pair_style command
-are used. If only one cutoff is specified, it is used as the cutoff
-for both Buckingham and Coulombic interactions for this type pair. If
-both coefficients are specified, they are used as the Buckingham and
-Coulombic cutoffs for this type pair. Note that if you are using
-*flag_buck* set to *long*, you cannot specify a Buckingham cutoff for
-an atom type pair, since only one global Buckingham cutoff is allowed.
-Similarly, if you are using *flag_coul* set to *long*, you cannot
-specify a Coulombic cutoff for an atom type pair, since only one
-global Coulombic cutoff is allowed.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair styles does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the exp() and 1/r^6 portion of the pair
-interaction, assuming *flag_buck* is *cut*.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the Buckingham portion of the pair
-interaction.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` table and
-table/disp options since they can tabulate the short-range portion of
-the long-range Coulombic and dispersion interactions.
-
-This pair style write its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style supports the use of the *inner*, *middle*, and *outer*
-keywords of the :doc:`run_style respa <run_style>` command, meaning the
-pairwise forces can be partitioned by distance at different levels of
-the rRESPA hierarchy. See the :doc:`run_style <run_style>` command for
-details.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the KSPACE package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. Note that
-the KSPACE package is installed by default.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Ismail:
-
-
-
-**(Ismail)** Ismail, Tsige, In 't Veld, Grest, Molecular Physics
-(accepted) (2007).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_charmm.txt b/doc/_sources/pair_charmm.txt
deleted file mode 100644
index 79ef79d9d..000000000
--- a/doc/_sources/pair_charmm.txt
+++ /dev/null
@@ -1,252 +0,0 @@
-.. index:: pair_style lj/charmm/coul/charmm
-
-pair_style lj/charmm/coul/charmm command
-========================================
-
-pair_style lj/charmm/coul/charmm/cuda command
-=============================================
-
-pair_style lj/charmm/coul/charmm/omp command
-============================================
-
-pair_style lj/charmm/coul/charmm/implicit command
-=================================================
-
-pair_style lj/charmm/coul/charmm/implicit/cuda command
-======================================================
-
-pair_style lj/charmm/coul/charmm/implicit/omp command
-=====================================================
-
-pair_style lj/charmm/coul/long command
-======================================
-
-pair_style lj/charmm/coul/long/cuda command
-===========================================
-
-pair_style lj/charmm/coul/long/gpu command
-==========================================
-
-pair_style lj/charmm/coul/long/intel command
-============================================
-
-pair_style lj/charmm/coul/long/opt command
-==========================================
-
-pair_style lj/charmm/coul/long/omp command
-==========================================
-
-pair_style lj/charmm/coul/msm command
-=====================================
-
-pair_style lj/charmm/coul/msm/omp command
-=========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/charmm/coul/charmm* or *lj/charmm/coul/charmm/implicit* or *lj/charmm/coul/long* or *lj/charmm/coul/msm*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *lj/charmm/coul/charmm* args = inner outer (inner2) (outer2)
- inner, outer = global switching cutoffs for Lennard Jones (and Coulombic if only 2 args)
- inner2, outer2 = global switching cutoffs for Coulombic (optional)
- *lj/charmm/coul/charmm/implicit* args = inner outer (inner2) (outer2)
- inner, outer = global switching cutoffs for LJ (and Coulombic if only 2 args)
- inner2, outer2 = global switching cutoffs for Coulombic (optional)
- *lj/charmm/coul/long* args = inner outer (cutoff)
- inner, outer = global switching cutoffs for LJ (and Coulombic if only 2 args)
- cutoff = global cutoff for Coulombic (optional, outer is Coulombic cutoff if only 2 args)
- *lj/charmm/coul/msm* args = inner outer (cutoff)
- inner, outer = global switching cutoffs for LJ (and Coulombic if only 2 args)
- cutoff = global cutoff for Coulombic (optional, outer is Coulombic cutoff if only 2 args)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/charmm/coul/charmm 8.0 10.0
- pair_style lj/charmm/coul/charmm 8.0 10.0 7.0 9.0
- pair_coeff * * 100.0 2.0
- pair_coeff 1 1 100.0 2.0 150.0 3.5
-
-.. parsed-literal::
-
- pair_style lj/charmm/coul/charmm/implicit 8.0 10.0
- pair_style lj/charmm/coul/charmm/implicit 8.0 10.0 7.0 9.0
- pair_coeff * * 100.0 2.0
- pair_coeff 1 1 100.0 2.0 150.0 3.5
-
-.. parsed-literal::
-
- pair_style lj/charmm/coul/long 8.0 10.0
- pair_style lj/charmm/coul/long 8.0 10.0 9.0
- pair_coeff * * 100.0 2.0
- pair_coeff 1 1 100.0 2.0 150.0 3.5
-
-.. parsed-literal::
-
- pair_style lj/charmm/coul/msm 8.0 10.0
- pair_style lj/charmm/coul/msm 8.0 10.0 9.0
- pair_coeff * * 100.0 2.0
- pair_coeff 1 1 100.0 2.0 150.0 3.5
-
-Description
-"""""""""""
-
-The *lj/charmm* styles compute LJ and Coulombic interactions with an
-additional switching function S(r) that ramps the energy and force
-smoothly to zero between an inner and outer cutoff. It is a widely
-used potential in the `CHARMM <http://www.scripps.edu/brooks>`_ MD code.
-See :ref:`(MacKerell) <MacKerell>` for a description of the CHARMM force
-field.
-
-.. image:: Eqs/pair_charmm.jpg
- :align: center
-
-Both the LJ and Coulombic terms require an inner and outer cutoff.
-They can be the same for both formulas or different depending on
-whether 2 or 4 arguments are used in the pair_style command. In each
-case, the inner cutoff distance must be less than the outer cutoff.
-It it typical to make the difference between the 2 cutoffs about 1.0
-Angstrom.
-
-Style *lj/charmm/coul/charmm/implicit* computes the same formulas as
-style *lj/charmm/coul/charmm* except that an additional 1/r term is
-included in the Coulombic formula. The Coulombic energy thus varies
-as 1/r^2. This is effectively a distance-dependent dielectric term
-which is a simple model for an implicit solvent with additional
-screening. It is designed for use in a simulation of an unsolvated
-biomolecule (no explicit water molecules).
-
-Styles *lj/charmm/coul/long* and *lj/charmm/coul/msm* compute the same
-formulas as style *lj/charmm/coul/charmm* except that an additional
-damping factor is applied to the Coulombic term, as described for the
-:doc:`lj/cut <pair_lj>` pair styles. Only one Coulombic cutoff is
-specified for *lj/charmm/coul/long* and *lj/charmm/coul/msm*; if only
-2 arguments are used in the pair_style command, then the outer LJ
-cutoff is used as the single Coulombic cutoff.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* epsilon_14 (energy units)
-* sigma_14 (distance units)
-
-Note that sigma is defined in the LJ formula as the zero-crossing
-distance for the potential, not as the energy minimum at 2^(1/6)
-sigma.
-
-The latter 2 coefficients are optional. If they are specified, they
-are used in the LJ formula between 2 atoms of these types which are
-also first and fourth atoms in any dihedral. No cutoffs are specified
-because this CHARMM force field does not allow varying cutoffs for
-individual atom pairs; all pairs use the global cutoff(s) specified in
-the pair_style command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon, sigma, epsilon_14,
-and sigma_14 coefficients for all of the lj/charmm pair styles can be
-mixed. The default mix value is *arithmetic* to coincide with the
-usual settings for the CHARMM force field. See the "pair_modify"
-command for details.
-
-None of the lj/charmm pair styles support the
-:doc:`pair_modify <pair_modify>` shift option, since the Lennard-Jones
-portion of the pair interaction is smoothed to 0.0 at the cutoff.
-
-The *lj/charmm/coul/long* style supports the
-:doc:`pair_modify <pair_modify>` table option since it can tabulate the
-short-range portion of the long-range Coulombic interaction.
-
-None of the lj/charmm pair styles support the
-:doc:`pair_modify <pair_modify>` tail option for adding long-range tail
-corrections to energy and pressure, since the Lennard-Jones portion of
-the pair interaction is smoothed to 0.0 at the cutoff.
-
-All of the lj/charmm pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do
-not need to be specified in an input script that reads a restart file.
-
-The lj/charmm/coul/long pair style supports the use of the *inner*,
-*middle*, and *outer* keywords of the :doc:`run_style respa <run_style>`
-command, meaning the pairwise forces can be partitioned by distance at
-different levels of the rRESPA hierarchy. The other styles only
-support the *pair* keyword of run_style respa. See the
-:doc:`run_style <run_style>` command for details.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *lj/charmm/coul/charmm* and *lj/charmm/coul/charmm/implicit*
-styles are part of the MOLECULE package. The *lj/charmm/coul/long*
-style is part of the KSPACE package. They are only enabled if LAMMPS
-was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info. Note that
-the MOLECULE and KSPACE packages are installed by default.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _MacKerell:
-
-
-
-**(MacKerell)** MacKerell, Bashford, Bellott, Dunbrack, Evanseck, Field,
-Fischer, Gao, Guo, Ha, et al, J Phys Chem, 102, 3586 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_class2.txt b/doc/_sources/pair_class2.txt
deleted file mode 100644
index aea7b812a..000000000
--- a/doc/_sources/pair_class2.txt
+++ /dev/null
@@ -1,223 +0,0 @@
-.. index:: pair_style lj/class2
-
-pair_style lj/class2 command
-============================
-
-pair_style lj/class2/cuda command
-=================================
-
-pair_style lj/class2/gpu command
-================================
-
-pair_style lj/class2/kk command
-===============================
-
-pair_style lj/class2/omp command
-================================
-
-pair_style lj/class2/coul/cut command
-=====================================
-
-pair_style lj/class2/coul/cut/cuda command
-==========================================
-
-pair_style lj/class2/coul/cut/kk command
-========================================
-
-pair_style lj/class2/coul/cut/omp command
-=========================================
-
-pair_style lj/class2/coul/long command
-======================================
-
-pair_style lj/class2/coul/long/cuda command
-===========================================
-
-pair_style lj/class2/coul/long/gpu command
-==========================================
-
-pair_style lj/class2/coul/long/kk command
-=========================================
-
-pair_style lj/class2/coul/long/omp command
-==========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/class2* or *lj/class2/coul/cut* or *lj/class2/coul/long*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *lj/class2* args = cutoff
- cutoff = global cutoff for class 2 interactions (distance units)
- *lj/class2/coul/cut* args = cutoff (cutoff2)
- cutoff = global cutoff for class 2 (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/class2/coul/long* args = cutoff (cutoff2)
- cutoff = global cutoff for class 2 (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/class2 10.0
- pair_coeff * * 100.0 2.5
- pair_coeff 1 2* 100.0 2.5 9.0
-
-.. parsed-literal::
-
- pair_style lj/class2/coul/cut 10.0
- pair_style lj/class2/coul/cut 10.0 8.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
- pair_coeff 1 1 100.0 3.5 9.0 9.0
-
-.. parsed-literal::
-
- pair_style lj/class2/coul/long 10.0
- pair_style lj/class2/coul/long 10.0 8.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
-
-Description
-"""""""""""
-
-The *lj/class2* styles compute a 6/9 Lennard-Jones potential given by
-
-.. image:: Eqs/pair_class2.jpg
- :align: center
-
-Rc is the cutoff.
-
-The *lj/class2/coul/cut* and *lj/class2/coul/long* styles add a
-Coulombic term as described for the :doc:`lj/cut <pair_lj>` pair styles.
-
-See :ref:`(Sun) <Sun>` for a description of the COMPASS class2 force field.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff1 (distance units)
-* cutoff2 (distance units)
-
-The latter 2 coefficients are optional. If not specified, the global
-class 2 and Coulombic cutoffs are used. If only one cutoff is
-specified, it is used as the cutoff for both class 2 and Coulombic
-interactions for this type pair. If both coefficients are specified,
-they are used as the class 2 and Coulombic cutoffs for this type pair.
-You cannot specify 2 cutoffs for style *lj/class2*, since it has no
-Coulombic terms.
-
-For *lj/class2/coul/long* only the class 2 cutoff can be specified
-since a Coulombic cutoff cannot be specified for an individual I,J
-type pair. All type pairs use the same global Coulombic cutoff
-specified in the pair_style command.
-
-
-----------
-
-
-If the pair_coeff command is not used to define coefficients for a
-particular I != J type pair, the mixing rule for epsilon and sigma for
-all class2 potentials is to use the *sixthpower* formulas documented
-by the :doc:`pair_modify <pair_modify>` command. The :doc:`pair_modify mix <pair_modify>` setting is thus ignored for class2 potentials
-for epsilon and sigma. However it is still followed for mixing the
-cutoff distance.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/class2 pair styles can be mixed.
-Epsilon and sigma are always mixed with the value *sixthpower*. The
-cutoff distance is mixed by whatever option is set by the pair_modify
-command (default = geometric). See the "pair_modify" command for
-details.
-
-All of the lj/class2 pair styles support the
-:doc:`pair_modify <pair_modify>` shift option for the energy of the
-Lennard-Jones portion of the pair interaction.
-
-The *lj/class2/coul/long* pair style does not support the
-:doc:`pair_modify <pair_modify>` table option since a tabulation
-capability has not yet been added to this potential.
-
-All of the lj/class2 pair styles support the
-:doc:`pair_modify <pair_modify>` tail option for adding a long-range
-tail correction to the energy and pressure of the Lennard-Jones
-portion of the pair interaction.
-
-All of the lj/class2 pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do
-not need to be specified in an input script that reads a restart file.
-
-All of the lj/class2 pair styles can only be used via the *pair*
-keyword of the :doc:`run_style respa <run_style>` command. They do not
-support the *inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-These styles are part of the CLASS2 package. They are only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Sun:
-
-
-
-**(Sun)** Sun, J Phys Chem B 102, 7338-7364 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_coeff.txt b/doc/_sources/pair_coeff.txt
deleted file mode 100644
index a4cd065d3..000000000
--- a/doc/_sources/pair_coeff.txt
+++ /dev/null
@@ -1,170 +0,0 @@
-.. index:: pair_coeff
-
-pair_coeff command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_coeff I J args
-
-* I,J = atom types (see asterisk form below)
-* args = coefficients for one or more pairs of atom types
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_coeff 1 2 1.0 1.0 2.5
- pair_coeff 2 * 1.0 1.0
- pair_coeff 3* 1*2 1.0 1.0 2.5
- pair_coeff * * 1.0 1.0
- pair_coeff * * nialhjea 1 1 2
- pair_coeff * 3 morse.table ENTRY1
- pair_coeff 1 2 lj/cut 1.0 1.0 2.5 (for pair_style hybrid)
-
-Description
-"""""""""""
-
-Specify the pairwise force field coefficients for one or more pairs of
-atom types. The number and meaning of the coefficients depends on the
-pair style. Pair coefficients can also be set in the data file read
-by the :doc:`read_data <read_data>` command or in a restart file.
-
-I and J can be specified in one of two ways. Explicit numeric values
-can be used for each, as in the 1st example above. I <= J is
-required. LAMMPS sets the coefficients for the symmetric J,I
-interaction to the same values.
-
-A wildcard asterisk can be used in place of or in conjunction with the
-I,J arguments to set the coefficients for multiple pairs of atom
-types. This takes the form "*" or "*n" or "n*" or "m*n". If N = the
-number of atom types, then an asterisk with no numeric values means all
-types from 1 to N. A leading asterisk means all types from 1 to n
-(inclusive). A trailing asterisk means all types from n to N
-(inclusive). A middle asterisk means all types from m to n
-(inclusive). Note that only type pairs with I <= J are considered; if
-asterisks imply type pairs where J < I, they are ignored.
-
-Note that a pair_coeff command can override a previous setting for the
-same I,J pair. For example, these commands set the coeffs for all I,J
-pairs, then overwrite the coeffs for just the I,J = 2,3 pair:
-
-.. parsed-literal::
-
- pair_coeff * * 1.0 1.0 2.5
- pair_coeff 2 3 2.0 1.0 1.12
-
-A line in a data file that specifies pair coefficients uses the exact
-same format as the arguments of the pair_coeff command in an input
-script, with the exception of the I,J type arguments. In each line of
-the "Pair Coeffs" section of a data file, only a single type I is
-specified, which sets the coefficients for type I interacting with
-type I. This is because the section has exactly N lines, where N =
-the number of atom types. For this reason, the wild-card asterisk
-should also not be used as part of the I argument. Thus in a data
-file, the line corresponding to the 1st example above would be listed
-as
-
-.. parsed-literal::
-
- 2 1.0 1.0 2.5
-
-For many potentials, if coefficients for type pairs with I != J are
-not set explicitly by a pair_coeff command, the values are inferred
-from the I,I and J,J settings by mixing rules; see the
-:doc:`pair_modify <pair_modify>` command for a discussion. Details on
-this option as it pertains to individual potentials are described on
-the doc page for the potential.
-
-Many pair styles, typically for many-body potentials, use tabulated
-potential files as input, when specifying the pair_coeff command.
-Potential files provided with LAMMPS are in the potentials directory
-of the distribution. For some potentials, such as EAM, other archives
-of suitable files can be found on the Web. They can be used with
-LAMMPS so long as they are in the format LAMMPS expects, as discussed
-on the individual doc pages.
-
-When a pair_coeff command using a potential file is specified, LAMMPS
-looks for the potential file in 2 places. First it looks in the
-location specified. E.g. if the file is specified as "niu3.eam", it
-is looked for in the current working directory. If it is specified as
-"../potentials/niu3.eam", then it is looked for in the potentials
-directory, assuming it is a sister directory of the current working
-directory. If the file is not found, it is then looked for in the
-directory specified by the LAMMPS_POTENTIALS environment variable.
-Thus if this is set to the potentials directory in the LAMMPS distro,
-then you can use those files from anywhere on your system, without
-copying them into your working directory. Environment variables are
-set in different ways for different shells. Here are example settings
-for
-
-csh, tcsh:
-
-.. parsed-literal::
-
- % setenv LAMMPS_POTENTIALS /path/to/lammps/potentials
-
-bash:
-
-.. parsed-literal::
-
- % export LAMMPS_POTENTIALS=/path/to/lammps/potentials
-
-Windows:
-
-.. parsed-literal::
-
- % set LAMMPS_POTENTIALS="C:\Path to LAMMPS\Potentials"
-
-
-----------
-
-
-The alphabetic list of pair styles defined in LAMMPS is given on the
-:doc:`pair_style <pair_style>` doc page. They are also given in more
-compact form in the pair section of :ref:`this page <cmd_5>`.
-
-Click on the style to display the formula it computes, arguments
-specified in the pair_style command, and coefficients specified by the
-associated :doc:`pair_coeff <pair_coeff>` command.
-
-Note that there are also additional pair styles (not listed on the
-:doc:`pair_style <pair_style>` doc page) submitted by users which are
-included in the LAMMPS distribution. The list of these with links to
-the individual styles are given in the pair section of :ref:`this page <cmd_5>`.
-
-There are also additional accelerated pair styles (not listed on the
-:doc:`pair_style <pair_style>` doc page) included in the LAMMPS
-distribution for faster performance on CPUs and GPUs. The list of
-these with links to the individual styles are given in the pair
-section of :ref:`this page <cmd_5>`.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command must come after the simulation box is defined by a
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`, or
-:doc:`create_box <create_box>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style <pair_style>`, :doc:`pair_modify <pair_modify>`,
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`,
-:doc:`pair_write <pair_write>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_colloid.txt b/doc/_sources/pair_colloid.txt
deleted file mode 100644
index b49fd7f2d..000000000
--- a/doc/_sources/pair_colloid.txt
+++ /dev/null
@@ -1,229 +0,0 @@
-.. index:: pair_style colloid
-
-pair_style colloid command
-==========================
-
-pair_style colloid/gpu command
-==============================
-
-pair_style colloid/omp command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style colloid cutoff
-
-* cutoff = global cutoff for colloidal interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style colloid 10.0
- pair_coeff * * 25 1.0 10.0 10.0
- pair_coeff 1 1 144 1.0 0.0 0.0 3.0
- pair_coeff 1 2 75.398 1.0 0.0 10.0 9.0
- pair_coeff 2 2 39.478 1.0 10.0 10.0 25.0
-
-Description
-"""""""""""
-
-Style *colloid* computes pairwise interactions between large colloidal
-particles and small solvent particles using 3 formulas. A colloidal
-particle has a size > sigma; a solvent particle is the usual
-Lennard-Jones particle of size sigma.
-
-The colloid-colloid interaction energy is given by
-
-.. image:: Eqs/pair_colloid_cc.jpg
- :align: center
-
-where A_cc is the Hamaker constant, a1 and a2 are the radii of the two
-colloidal particles, and Rc is the cutoff. This equation results from
-describing each colloidal particle as an integrated collection of
-Lennard-Jones particles of size sigma and is derived in
-:ref:`(Everaers) <Everaers>`.
-
-The colloid-solvent interaction energy is given by
-
-.. image:: Eqs/pair_colloid_cs.jpg
- :align: center
-
-where A_cs is the Hamaker constant, a is the radius of the colloidal
-particle, and Rc is the cutoff. This formula is derived from the
-colloid-colloid interaction, letting one of the particle sizes go to
-zero.
-
-The solvent-solvent interaction energy is given by the usual
-Lennard-Jones formula
-
-.. image:: Eqs/pair_colloid_ss.jpg
- :align: center
-
-with A_ss set appropriately, which results from letting both particle
-sizes go to zero.
-
-When used in combination with :doc:`pair_style yukawa/colloid <pair_colloid>`, the two terms become the so-called
-DLVO potential, which combines electrostatic repulsion and van der
-Waals attraction.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* A (energy units)
-* sigma (distance units)
-* d1 (distance units)
-* d2 (distance units)
-* cutoff (distance units)
-
-A is the Hamaker energy prefactor and should typically be set as
-follows:
-
-* A_cc = colloid/colloid = 4 pi^2 = 39.5
-* A_cs = colloid/solvent = sqrt(A_cc*A_ss)
-* A_ss = solvent/solvent = 144 (assuming epsilon = 1, so that 144/36 = 4)
-
-Sigma is the size of the solvent particle or the constituent particles
-integrated over in the colloidal particle and should typically be set
-as follows:
-
-* Sigma_cc = colloid/colloid = 1.0
-* Sigma_cs = colloid/solvent = arithmetic mixing between colloid sigma and solvent sigma
-* Sigma_ss = solvent/solvent = 1.0 or whatever size the solvent particle is
-
-Thus typically Sigma_cs = 1.0, unless the solvent particle's size !=
-1.0.
-
-D1 and d2 are particle diameters, so that d1 = 2*a1 and d2 = 2*a2 in
-the formulas above. Both d1 and d2 must be values >= 0. If d1 > 0
-and d2 > 0, then the pair interacts via the colloid-colloid formula
-above. If d1 = 0 and d2 = 0, then the pair interacts via the
-solvent-solvent formula. I.e. a d value of 0 is a Lennard-Jones
-particle of size sigma. If either d1 = 0 or d2 = 0 and the other is
-larger, then the pair interacts via the colloid-solvent formula.
-
-Note that the diameter of a particular particle type may appear in
-multiple pair_coeff commands, as it interacts with other particle
-types. You should insure the particle diameter is specified
-consistently each time it appears.
-
-The last coefficient is optional. If not specified, the global cutoff
-specified in the pair_style command is used. However, you typically
-want different cutoffs for interactions between different particle
-sizes. E.g. if colloidal particles of diameter 10 are used with
-solvent particles of diameter 1, then a solvent-solvent cutoff of 2.5
-would correspond to a colloid-colloid cutoff of 25. A good
-rule-of-thumb is to use a colloid-solvent cutoff that is half the big
-diameter + 4 times the small diameter. I.e. 9 = 5 + 4 for the
-colloid-solvent cutoff in this case.
-
-.. note::
-
- When using pair_style colloid for a mixture with 2 (or more)
- widely different particles sizes (e.g. sigma=10 colloids in a
- background sigma=1 LJ fluid), you will likely want to use these
- commands for efficiency: :doc:`neighbor multi <neighbor>` and
- :doc:`comm_modify multi <comm_modify>`.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the A, sigma, d1, and d2
-coefficients and cutoff distance for this pair style can be mixed. A
-is an energy value mixed like a LJ epsilon. D1 and d2 are distance
-values and are mixed like sigma. The default mix value is
-*geometric*. See the "pair_modify" command for details.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the COLLOID package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Normally, this pair style should be used with finite-size particles
-which have a diameter, e.g. see the :doc:`atom_style sphere <atom_style>` command. However, this is not a requirement,
-since the only definition of particle size is via the pair_coeff
-parameters for each type. In other words, the physical radius of the
-particle is ignored. Thus you should insure that the d1,d2 parameters
-you specify are consistent with the physical size of the particles of
-that type.
-
-Per-particle polydispersity is not yet supported by this pair style;
-only per-type polydispersity is enabled via the pair_coeff parameters.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Everaers:
-
-
-
-**(Everaers)** Everaers, Ejtehadi, Phys Rev E, 67, 041710 (2003).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_comb.txt b/doc/_sources/pair_comb.txt
deleted file mode 100644
index b9ae5b37c..000000000
--- a/doc/_sources/pair_comb.txt
+++ /dev/null
@@ -1,230 +0,0 @@
-.. index:: pair_style comb
-
-pair_style comb command
-=======================
-
-pair_style comb/omp command
-===========================
-
-pair_style comb3 command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style comb
- pair_style comb3 keyword
-
-.. parsed-literal::
-
- keyword = *polar*
- *polar* value = *polar_on* or *polar_off* = whether or not to include atomic polarization
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style comb
- pair_coeff * * ../potentials/ffield.comb Si
- pair_coeff * * ../potentials/ffield.comb Hf Si O
-
-.. parsed-literal::
-
- pair_style comb3 polar_off
- pair_coeff * * ../potentials/ffield.comb3 O Cu N C O
-
-Description
-"""""""""""
-
-Style *comb* computes the second-generation variable charge COMB
-(Charge-Optimized Many-Body) potential. Style *comb3* computes the
-third-generation COMB potential. These COMB potentials are described
-in :ref:`(COMB) <COMB>` and :ref:`(COMB3) <COMB3>`. Briefly, the total energy
-*E<sub>T</sub>* of a system of atoms is given by
-
-.. image:: Eqs/pair_comb1.jpg
- :align: center
-
-where *E<sub>i</sub><sup>self</sup>* is the self-energy of atom *i*
-(including atomic ionization energies and electron affinities),
-*E<sub>ij</sub><sup>short</sup>* is the bond-order potential between
-atoms *i* and *j*,
-*E<sub>ij</sub><sup>Coul</sup>* is the Coulomb interactions,
-*E<sup>polar</sup>* is the polarization term for organic systems
-(style *comb3* only),
-*E<sup>vdW</sup>* is the van der Waals energy (style *comb3* only),
-*E<sup>barr</sup>* is a charge barrier function, and
-*E<sup>corr</sup>* are angular correction terms.
-
-The COMB potentials (styles *comb* and *comb3*) are variable charge
-potentials. The equilibrium charge on each atom is calculated by the
-electronegativity equalization (QEq) method. See :ref:`Rick <Rick>` for
-further details. This is implemented by the :doc:`fix qeq/comb <fix_qeq_comb>` command, which should normally be
-specified in the input script when running a model with the COMB
-potential. The :doc:`fix qeq/comb <fix_qeq_comb>` command has options
-that determine how often charge equilibration is performed, its
-convergence criterion, and which atoms are included in the
-calculation.
-
-Only a single pair_coeff command is used with the *comb* and *comb3*
-styles which specifies the COMB potential file with parameters for all
-needed elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the potential file in the pair_coeff
-command, where N is the number of LAMMPS atom types.
-
-For example, if your LAMMPS simulation of a Si/SiO<sub>2</sub>/
-HfO<sub>2</sub> interface has 4 atom types, and you want the 1st and
-last to be Si, the 2nd to be Hf, and the 3rd to be O, and you would
-use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * ../potentials/ffield.comb Si Hf O Si
-
-The first two arguments must be * * so as to span all LAMMPS atom
-types. The first and last Si arguments map LAMMPS atom types 1 and 4
-to the Si element in the *ffield.comb* file. The second Hf argument
-maps LAMMPS atom type 2 to the Hf element, and the third O argument
-maps LAMMPS atom type 3 to the O element in the potential file. If a
-mapping value is specified as NULL, the mapping is not performed.
-This can be used when a *comb* potential is used as part of the
-*hybrid* pair style. The NULL values are placeholders for atom types
-that will be used with other potentials.
-
-For style *comb*, the provided potential file *ffield.comb* contains
-all currently-available 2nd generation COMB parameterizations: for Si,
-Cu, Hf, Ti, O, their oxides and Zr, Zn and U metals. For style
-*comb3*, the potential file *ffield.comb3* contains all
-currently-available 3rd generation COMB paramterizations: O, Cu, N, C,
-H, Ti, Zn and Zr. The status of the optimization of the compounds, for
-example Cu<sub>2</sub>O, TiN and hydrocarbons, are given in the
-following table:
-
-.. image:: Eqs/pair_comb2.jpg
- :align: center
-
-For style *comb3*, in addition to ffield.comb3, a special parameter
-file, *lib.comb3*, that is exclusively used for C/O/H systems, will be
-automatically loaded if carbon atom is detected in LAMMPS input
-structure. This file must be in your working directory or in the
-directory pointed to by the environment variable LAMMPS_POTENTIALS, as
-described on the :doc:`pair_coeff <pair_coeff>` command doc page.
-
-Keyword *polar* indicates whether the force field includes
-the atomic polarization. Since the equilibration of the polarization
-has not yet been implemented, it can only set polar_off at present.
-
-.. note::
-
- You can not use potential file *ffield.comb* with style *comb3*,
- nor file *ffield.comb3* with style *comb*.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS as
-described above from values in the potential file.
-
-These pair styles does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-These pair styles do not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style, pair_coeff, and :doc:`fix qeq/comb <fix_qeq_comb>` commands in an input script that reads a
-restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These pair styles are part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default). See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-These pair styles requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The COMB potentials in the *ffield.comb* and *ffield.comb3* files provided
-with LAMMPS (see the potentials directory) are parameterized for metal
-:doc:`units <units>`. You can use the COMB potential with any LAMMPS
-units, but you would need to create your own COMB potential file with
-coefficients listed in the appropriate units if your simulation
-doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style <pair_style>`, :doc:`pair_coeff <pair_coeff>`,
-:doc:`fix qeq/comb <fix_qeq_comb>`
-
-**Default:** none
-
-
-----------
-
-
-.. _COMB:
-
-
-
-**(COMB)** T.-R. Shan, B. D. Devine, T. W. Kemper, S. B. Sinnott, and
-S. R. Phillpot, Phys. Rev. B 81, 125328 (2010)
-
-.. _COMB3:
-
-
-
-**(COMB3)** T. Liang, T.-R. Shan, Y.-T. Cheng, B. D. Devine, M. Noordhoek,
-Y. Li, Z. Lu, S. R. Phillpot, and S. B. Sinnott, Mat. Sci. & Eng: R 74,
-255-279 (2013).
-
-.. _Rick:
-
-
-
-**(Rick)** S. W. Rick, S. J. Stuart, B. J. Berne, J Chem Phys 101, 6141
-(1994).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_coul.txt b/doc/_sources/pair_coul.txt
deleted file mode 100644
index 5c8a6acea..000000000
--- a/doc/_sources/pair_coul.txt
+++ /dev/null
@@ -1,449 +0,0 @@
-.. index:: pair_style coul/cut
-
-pair_style coul/cut command
-===========================
-
-pair_style coul/cut/gpu command
-===============================
-
-pair_style coul/cut/kk command
-==============================
-
-pair_style coul/cut/omp command
-===============================
-
-pair_style coul/debye command
-=============================
-
-pair_style coul/debye/gpu command
-=================================
-
-pair_style coul/debye/kk command
-================================
-
-pair_style coul/debye/omp command
-=================================
-
-pair_style coul/dsf command
-===========================
-
-pair_style coul/dsf/gpu command
-===============================
-
-pair_style coul/dsf/kk command
-==============================
-
-pair_style coul/dsf/omp command
-===============================
-
-pair_style coul/long command
-============================
-
-pair_style coul/long/cs command
-===============================
-
-pair_style coul/long/omp command
-================================
-
-pair_style coul/long/gpu command
-================================
-
-pair_style coul/long/kk command
-===============================
-
-pair_style coul/msm command
-===========================
-
-pair_style coul/msm/omp command
-===============================
-
-pair_style coul/streitz command
-===============================
-
-pair_style coul/wolf command
-============================
-
-pair_style coul/wolf/kk command
-===============================
-
-pair_style coul/wolf/omp command
-================================
-
-pair_style tip4p/cut command
-============================
-
-pair_style tip4p/long command
-=============================
-
-pair_style tip4p/cut/omp command
-================================
-
-pair_style tip4p/long/omp command
-=================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style coul/cut cutoff
- pair_style coul/debye kappa cutoff
- pair_style coul/dsf alpha cutoff
- pair_style coul/long cutoff
- pair_style coul/long/cs cutoff
- pair_style coul/long/gpu cutoff
- pair_style coul/wolf alpha cutoff
- pair_style coul/streitz cutoff keyword alpha
- pair_style tip4p/cut otype htype btype atype qdist cutoff
- pair_style tip4p/long otype htype btype atype qdist cutoff
-
-* cutoff = global cutoff for Coulombic interactions
-* kappa = Debye length (inverse distance units)
-* alpha = damping parameter (inverse distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style coul/cut 2.5
- pair_coeff * *
- pair_coeff 2 2 3.5
-
-.. parsed-literal::
-
- pair_style coul/debye 1.4 3.0
- pair_coeff * *
- pair_coeff 2 2 3.5
-
-.. parsed-literal::
-
- pair_style coul/dsf 0.05 10.0
- pair_coeff * *
-
-.. parsed-literal::
-
- pair_style coul/long 10.0
- pair_style coul/long/cs 10.0
- pair_coeff * *
-
-.. parsed-literal::
-
- pair_style coul/msm 10.0
- pair_coeff * *
-
-.. parsed-literal::
-
- pair_style coul/wolf 0.2 9.0
- pair_coeff * *
-
-.. parsed-literal::
-
- pair_style coul/streitz 12.0 ewald
- pair_style coul/streitz 12.0 wolf 0.30
- pair_coeff * * AlO.streitz Al O
-
-.. parsed-literal::
-
- pair_style tip4p/cut 1 2 7 8 0.15 12.0
- pair_coeff * *
-
-.. parsed-literal::
-
- pair_style tip4p/long 1 2 7 8 0.15 10.0
- pair_coeff * *
-
-Description
-"""""""""""
-
-The *coul/cut* style computes the standard Coulombic interaction
-potential given by
-
-.. image:: Eqs/pair_coulomb.jpg
- :align: center
-
-where C is an energy-conversion constant, Qi and Qj are the charges on
-the 2 atoms, and epsilon is the dielectric constant which can be set
-by the :doc:`dielectric <dielectric>` command. The cutoff Rc truncates
-the interaction distance.
-
-
-----------
-
-
-Style *coul/debye* adds an additional exp() damping factor to the
-Coulombic term, given by
-
-.. image:: Eqs/pair_debye.jpg
- :align: center
-
-where kappa is the Debye length. This potential is another way to
-mimic the screening effect of a polar solvent.
-
-
-----------
-
-
-Style *coul/dsf* computes Coulombic interactions via the damped
-shifted force model described in :ref:`Fennell <Fennell>`, given by:
-
-.. image:: Eqs/pair_coul_dsf.jpg
- :align: center
-
-where *alpha* is the damping parameter and erfc() is the
-complementary error-function. The potential corrects issues in the
-Wolf model (described below) to provide consistent forces and energies
-(the Wolf potential is not differentiable at the cutoff) and smooth
-decay to zero.
-
-
-----------
-
-
-Style *coul/wolf* computes Coulombic interactions via the Wolf
-summation method, described in :ref:`Wolf <Wolf>`, given by:
-
-.. image:: Eqs/pair_coul_wolf.jpg
- :align: center
-
-where *alpha* is the damping parameter, and erc() and erfc() are
-error-fuction and complementary error-function terms. This potential
-is essentially a short-range, spherically-truncated,
-charge-neutralized, shifted, pairwise *1/r* summation. With a
-manipulation of adding and substracting a self term (for i = j) to the
-first and second term on the right-hand-side, respectively, and a
-small enough *alpha* damping parameter, the second term shrinks and
-the potential becomes a rapidly-converging real-space summation. With
-a long enough cutoff and small enough alpha parameter, the energy and
-forces calcluated by the Wolf summation method approach those of the
-Ewald sum. So it is a means of getting effective long-range
-interactions with a short-range potential.
-
-
-----------
-
-
-Style *coul/streitz* is the Coulomb pair interaction defined as part
-of the Streitz-Mintmire potential, as described in :ref:`this paper <Streitz>`, in which charge distribution about an atom is modeled
-as a Slater 1*s* orbital. More details can be found in the referenced
-paper. To fully reproduce the published Streitz-Mintmire potential,
-which is a variable charge potential, style *coul/streitz* must be
-used with :doc:`pair_style eam/alloy <pair_eam>` (or some other
-short-range potential that has been parameterized appropriately) via
-the :doc:`pair_style hybrid/overlay <pair_hybrid>` command. Likewise,
-charge equilibration must be performed via the :doc:`fix qeq/slater <fix_qeq>` command. For example:
-
-.. parsed-literal::
-
- pair_style hybrid/overlay coul/streitz 12.0 wolf 0.31 eam/alloy
- pair_coeff * * coul/streitz AlO.streitz Al O
- pair_coeff * * eam/alloy AlO.eam.alloy Al O
- fix 1 all qeq/slater 1 12.0 1.0e-6 100 coul/streitz
-
-The keyword *wolf* in the coul/streitz command denotes computing
-Coulombic interactions via Wolf summation. An additional damping
-parameter is required for the Wolf summation, as described for the
-coul/wolf potential above. Alternatively, Coulombic interactions can
-be computed via an Ewald summation. For example:
-
-.. parsed-literal::
-
- pair_style hybrid/overlay coul/streitz 12.0 ewald eam/alloy
- kspace_style ewald 1e-6
-
-Keyword *ewald* does not need a damping parameter, but a
-:doc:`kspace_style <kspace_style>` must be defined, which can be style
-*ewald* or *pppm*. The Ewald method was used in Streitz and
-Mintmire's original paper, but a Wolf summation offers a speed-up in
-some cases.
-
-For the fix qeq/slater command, the *qfile* can be a filename that
-contains QEq parameters as discussed on the :doc:`fix qeq <fix_qeq>`
-command doc page. Alternatively *qfile* can be replaced by
-"coul/streitz", in which case the fix will extract QEq parameters from
-the coul/streitz pair style itself.
-
-See the examples/strietz directory for an example input script that
-uses the Streitz-Mintmire potential. The potentials directory has the
-AlO.eam.alloy and AlO.streitz potential files used by the example.
-
-Note that the Streiz-Mintmire potential is generally used for oxides,
-but there is no conceptual problem with extending it to nitrides and
-carbides (such as SiC, TiN). Pair coul/strietz used by itself or with
-any other pair style such as EAM, MEAM, Tersoff, or LJ in
-hybrid/overlay mode. To do this, you would need to provide a
-Streitz-Mintmire parameterizaion for the material being modeled.
-
-
-----------
-
-
-Styles *coul/long* and *coul/msm* compute the same Coulombic
-interactions as style *coul/cut* except that an additional damping
-factor is applied so it can be used in conjunction with the
-:doc:`kspace_style <kspace_style>` command and its *ewald* or *pppm*
-option. The Coulombic cutoff specified for this style means that
-pairwise interactions within this distance are computed directly;
-interactions outside that distance are computed in reciprocal space.
-
-Style *coul/long/cs* is identical to *coul/long* except that a term is
-added for the :ref:`core/shell model <howto_25>` to allow
-charges on core and shell particles to be separated by r = 0.0.
-
-Styles *tip4p/cut* and *tip4p/long* implement the coulomb part of
-the TIP4P water model of :ref:`(Jorgensen) <Jorgensen>`, which introduces
-a massless site located a short distance away from the oxygen atom
-along the bisector of the HOH angle. The atomic types of the oxygen and
-hydrogen atoms, the bond and angle types for OH and HOH interactions,
-and the distance to the massless charge site are specified as
-pair_style arguments. Style *tip4p/cut* uses a global cutoff for
-Coulomb interactions; style *tip4p/long* is for use with a long-range
-Coulombic solver (Ewald or PPPM).
-
-.. note::
-
- For each TIP4P water molecule in your system, the atom IDs for
- the O and 2 H atoms must be consecutive, with the O atom first. This
- is to enable LAMMPS to "find" the 2 H atoms associated with each O
- atom. For example, if the atom ID of an O atom in a TIP4P water
- molecule is 500, then its 2 H atoms must have IDs 501 and 502.
-
-See the :ref:`howto section <howto_8>` for more
-information on how to use the TIP4P pair styles and lists of
-parameters to set. Note that the neighobr list cutoff for Coulomb
-interactions is effectively extended by a distance 2*qdist when using
-the TIP4P pair style, to account for the offset distance of the
-fictitious charges on O atoms in water molecules. Thus it is
-typically best in an efficiency sense to use a LJ cutoff >= Coulomb
-cutoff + 2*qdist, to shrink the size of the neighbor list. This leads
-to slightly larger cost for the long-range calculation, so you can
-test the trade-off for your model.
-
-
-----------
-
-
-Note that these potentials are designed to be combined with other pair
-potentials via the :doc:`pair_style hybrid/overlay <pair_hybrid>`
-command. This is because they have no repulsive core. Hence if they
-are used by themselves, there will be no repulsion to keep two
-oppositely charged particles from moving arbitrarily close to each
-other.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cutoff (distance units)
-
-For *coul/cut* and *coul/debye*, the cutoff coefficient is optional.
-If it is not used (as in some of the examples above), the default
-global value specified in the pair_style command is used.
-
-For *coul/long* and *coul/msm* no cutoff can be specified for an
-individual I,J type pair via the pair_coeff command. All type pairs
-use the same global Coulombic cutoff specified in the pair_style
-command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the cutoff distance for the
-*coul/cut* style can be mixed. The default mix value is *geometric*.
-See the "pair_modify" command for details.
-
-The :doc:`pair_modify <pair_modify>` shift option is not relevant
-for these pair styles.
-
-The *coul/long* style supports the :doc:`pair_modify <pair_modify>`
-table option for tabulation of the short-range portion of the
-long-range Coulombic interaction.
-
-These pair styles do not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-These pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *coul/long*, *coul/msm* and *tip4p/long* styles are part of the
-KSPACE package. The *coul/long/cs* style is part of the CORESHELL
-package. They are only enabled if LAMMPS was built with that package
-(which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style, hybrid/overlay <pair_hybrid>`, :doc:`kspace_style <kspace_style>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Wolf:
-
-
-
-**(Wolf)** D. Wolf, P. Keblinski, S. R. Phillpot, J. Eggebrecht, J Chem
-Phys, 110, 8254 (1999).
-
-.. _Fennell:
-
-
-
-**(Fennell)** C. J. Fennell, J. D. Gezelter, J Chem Phys, 124,
-234104 (2006).
-
-.. _Streitz:
-
-
-
-**(Streitz)** F. H. Streitz, J. W. Mintmire, Phys Rev B, 50, 11996-12003
-(1994).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_coul_diel.txt b/doc/_sources/pair_coul_diel.txt
deleted file mode 100644
index bb9ac5c54..000000000
--- a/doc/_sources/pair_coul_diel.txt
+++ /dev/null
@@ -1,136 +0,0 @@
-.. index:: pair_style coul/diel
-
-pair_style coul/diel command
-============================
-
-pair_style coul/diel/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style coul/diel cutoff
-
-cutoff = global cutoff (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style coul/diel 3.5
- pair_coeff 1 4 78. 1.375 0.112
-
-Description
-"""""""""""
-
-Style *coul/diel* computes a Coulomb correction for implict solvent
-ion interactions in which the dielectric perimittivity is distance dependent.
-The dielectric permittivity epsilon_D(r) connects to limiting regimes:
-One limit is defined by a small dielectric permittivity (close to vacuum)
-at or close to contact seperation between the ions. At larger separations
-the dielectric permittivity reaches a bulk value used in the regular Coulomb
-interaction coul/long or coul/cut.
-The transition is modeled by a hyperbolic function which is incorporated
-in the Coulomb correction term for small ion separations as follows
-
-.. image:: Eqs/pair_coul_diel.jpg
- :align: center
-
-where r_me is the inflection point of epsilon_D(r) and sigma_e is a slope
-defining length scale. C is the same Coulomb conversion factor as in the
-pair_styles coul/cut, coul/long, and coul/debye. In this way the Coulomb
-interaction between ions is corrected at small distances r. The lower
-limit of epsilon_D(r->0)=5.2 due to dielectric saturation :ref:`(Stiles) <Stiles>`
-while the Coulomb interaction reaches its bulk limit by setting
-epsilon_D(r->\infty)=epsilon, the bulk value of the solvent which is 78
-for water at 298K.
-
-Examples of the use of this type of Coulomb interaction include implicit
-solvent simulations of salt ions
-:ref:`(Lenart) <Lenart>` and of ionic surfactants :ref:`(Jusufi) <Jusufi>`.
-Note that this potential is only reasonable for implicit solvent simulations
-and in combiantion with coul/cut or coul/long. It is also usually combined
-with gauss/cut, see :ref:`(Lenart) <Lenart>` or :ref:`(Jusufi) <Jusufi>`.
-
-The following coefficients must be defined for each pair of atom
-types via the :doc:`pair_coeff <pair_coeff>` command as in the example
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* epsilon (no units)
-* r_me (distance units)
-* sigma_e (distance units)
-
-The global cutoff (r_c) specified in the pair_style command is used.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support parameter mixing. Coefficients must be given explicitly for each type of particle pairs.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the Gauss-potential portion of the pair
-interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This style is part of the "user-misc" package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <2_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-:doc:`pair_style gauss/cut <pair_gauss>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Stiles:
-
-
-
-**(Stiles)** Stiles , Hubbard, and Kayser, J Chem Phys, 77,
-6189 (1982).
-
-.. _Lenart:
-
-
-
-**(Lenart)** Lenart , Jusufi, and Panagiotopoulos, J Chem Phys, 126,
-044509 (2007).
-
-.. _Jusufi:
-
-
-
-**(Jusufi)** Jusufi, Hynninen, and Panagiotopoulos, J Phys Chem B, 112,
-13783 (2008).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_cs.txt b/doc/_sources/pair_cs.txt
deleted file mode 100644
index 39d6e2610..000000000
--- a/doc/_sources/pair_cs.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-.. index:: pair_style born/coul/long/cs
-
-pair_style born/coul/long/cs command
-====================================
-
-pair_style buck/coul/long/cs command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *born/coul/long/cs* or *buck/coul/long/cs*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *born/coul/long/cs* args = cutoff (cutoff2)
- cutoff = global cutoff for non-Coulombic (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *buck/coul/long/cs* args = cutoff (cutoff2)
- cutoff = global cutoff for Buckingham (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style born/coul/long/cs 10.0 8.0
- pair_coeff 1 1 6.08 0.317 2.340 24.18 11.51
-
-.. parsed-literal::
-
- pair_style buck/coul/long/cs 10.0
- pair_style buck/coul/long/cs 10.0 8.0
- pair_coeff * * 100.0 1.5 200.0
- pair_coeff 1 1 100.0 1.5 200.0 9.0
-
-Description
-"""""""""""
-
-These pair styles are designed to be used with the adiabatic
-core/shell model of :ref:`(Mitchell and Finchham) <MitchellFinchham>`. See
-:ref:`Section_howto 25 <howto_25>` of the manual for an
-overview of the model as implemented in LAMMPS.
-
-These pair styles are identical to the :doc:`pair_style born/coul/long <pair_born>` and :doc:`pair_style buck/coul/long <pair_buck>` styles, except they correctly treat the
-special case where the distance between two charged core and shell
-atoms in the same core/shell pair approach r = 0.0. This needs
-special treatment when a long-range solver for Coulombic interactions
-is also used, i.e. via the :doc:`kspace_style <kspace_style>` command.
-
-More specifically, the short-range Coulomb interaction between a core
-and its shell should be turned off using the
-:doc:`special_bonds <special_bonds>` command by setting the 1-2 weight
-to 0.0, which works because the core and shell atoms are bonded to
-each other. This induces a long-range correction approximation which
-fails at small distances (~< 10e-8). Therefore, the Coulomb term which
-is used to calculate the correction factor is extended by a minimal
-distance (r_min = 1.0-6) when the interaction between a core/shell
-pair is treated, as follows
-
-.. image:: Eqs/pair_cs.jpg
- :align: center
-
-where C is an energy-conversion constant, Qi and Qj are the charges on
-the core and shell, epsilon is the dielectric constant and r_min is the
-minimal distance.
-
-Restrictions
-""""""""""""
-
-
-These pair styles are part of the CORESHELL package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style born <pair_born>`,
-:doc:`pair_style buck <pair_buck>`
-
-**Default:** none
-
-
-----------
-
-
-.. _MitchellFinchham:
-
-
-
-**(Mitchell and Finchham)** Mitchell, Finchham, J Phys Condensed Matter,
-5, 1031-1038 (1993).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_dipole.txt b/doc/_sources/pair_dipole.txt
deleted file mode 100644
index 68ba29401..000000000
--- a/doc/_sources/pair_dipole.txt
+++ /dev/null
@@ -1,310 +0,0 @@
-.. index:: pair_style lj/cut/dipole/cut
-
-pair_style lj/cut/dipole/cut command
-====================================
-
-pair_style lj/cut/dipole/cut/gpu command
-========================================
-
-pair_style lj/cut/dipole/cut/omp command
-========================================
-
-pair_style lj/sf/dipole/sf command
-==================================
-
-pair_style lj/sf/dipole/sf/gpu command
-======================================
-
-pair_style lj/sf/dipole/sf/omp command
-======================================
-
-pair_style lj/cut/dipole/long command
-=====================================
-
-pair_style lj/long/dipole/long command
-======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lj/cut/dipole/cut cutoff (cutoff2)
- pair_style lj/sf/dipole/sf cutoff (cutoff2)
- pair_style lj/cut/dipole/long cutoff (cutoff2)
- pair_style lj/long/dipole/long flag_lj flag_coul cutoff (cutoff2)
-
-* cutoff = global cutoff LJ (and Coulombic if only 1 arg) (distance units)
-* cutoff2 = global cutoff for Coulombic and dipole (optional) (distance units)
-* flag_lj = *long* or *cut* or *off*
-.. parsed-literal::
-
- *long* = use long-range damping on dispersion 1/r^6 term
- *cut* = use a cutoff on dispersion 1/r^6 term
- *off* = omit disperion 1/r^6 term entirely
-
-* flag_coul = *long* or *off*
-.. parsed-literal::
-
- *long* = use long-range damping on Coulombic 1/r and point-dipole terms
- *off* = omit Coulombic and point-dipole terms entirely
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/cut/dipole/cut 10.0
- pair_coeff * * 1.0 1.0
- pair_coeff 2 3 1.0 1.0 2.5 4.0
-
-.. parsed-literal::
-
- pair_style lj/sf/dipole/sf 9.0
- pair_coeff * * 1.0 1.0
- pair_coeff 2 3 1.0 1.0 2.5 4.0
-
-.. parsed-literal::
-
- pair_style lj/cut/dipole/long 10.0
- pair_coeff * * 1.0 1.0
- pair_coeff 2 3 1.0 1.0 2.5 4.0
-
-.. parsed-literal::
-
- pair_style lj/long/dipole/long long long 3.5 10.0
- pair_coeff * * 1.0 1.0
- pair_coeff 2 3 1.0 1.0 2.5 4.0
-
-Description
-"""""""""""
-
-Style *lj/cut/dipole/cut* computes interactions between pairs of particles
-that each have a charge and/or a point dipole moment. In addition to
-the usual Lennard-Jones interaction between the particles (Elj) the
-charge-charge (Eqq), charge-dipole (Eqp), and dipole-dipole (Epp)
-interactions are computed by these formulas for the energy (E), force
-(F), and torque (T) between particles I and J.
-
-.. image:: Eqs/pair_dipole.jpg
- :align: center
-
-where qi and qj are the charges on the two particles, pi and pj are
-the dipole moment vectors of the two particles, r is their separation
-distance, and the vector r = Ri - Rj is the separation vector between
-the two particles. Note that Eqq and Fqq are simply Coulombic energy
-and force, Fij = -Fji as symmetric forces, and Tij != -Tji since the
-torques do not act symmetrically. These formulas are discussed in
-:ref:`(Allen) <Allen>` and in :ref:`(Toukmaji) <Toukmaji>`.
-
-Style *lj/sf/dipole/sf* computes "shifted-force" interactions between
-pairs of particles that each have a charge and/or a point dipole
-moment. In general, a shifted-force potential is a (sligthly) modified
-potential containing extra terms that make both the energy and its
-derivative go to zero at the cutoff distance; this removes
-(cutoff-related) problems in energy conservation and any numerical
-instability in the equations of motion :ref:`(Allen) <Allen>`. Shifted-force
-interactions for the Lennard-Jones (E_LJ), charge-charge (Eqq),
-charge-dipole (Eqp), dipole-charge (Epq) and dipole-dipole (Epp)
-potentials are computed by these formulas for the energy (E), force
-(F), and torque (T) between particles I and J:
-
-.. image:: Eqs/pair_dipole_sf.jpg
- :align: center
-
-.. image:: Eqs/pair_dipole_sf2.jpg
- :align: center
-
-where epsilon and sigma are the standard LJ parameters, r_c is the
-cutoff, qi and qj are the charges on the two particles, pi and pj are
-the dipole moment vectors of the two particles, r is their separation
-distance, and the vector r = Ri - Rj is the separation vector between
-the two particles. Note that Eqq and Fqq are simply Coulombic energy
-and force, Fij = -Fji as symmetric forces, and Tij != -Tji since the
-torques do not act symmetrically. The shifted-force formula for the
-Lennard-Jones potential is reported in :ref:`(Stoddard) <Stoddard>`. The
-original (unshifted) formulas for the electrostatic potentials, forces
-and torques can be found in :ref:`(Price) <Price>`. The shifted-force
-electrostatic potentials have been obtained by applying equation 5.13
-of :ref:`(Allen) <Allen>`. The formulas for the corresponding forces and
-torques have been obtained by applying the 'chain rule' as in appendix
-C.3 of :ref:`(Allen) <Allen>`.
-
-If one cutoff is specified in the pair_style command, it is used for
-both the LJ and Coulombic (q,p) terms. If two cutoffs are specified,
-they are used as cutoffs for the LJ and Coulombic (q,p) terms
-respectively.
-
-Style *lj/cut/dipole/long* computes long-range point-dipole
-interactions as discussed in :ref:`(Toukmaji) <Toukmaji>`. Dipole-dipole,
-dipole-charge, and charge-charge interactions are all supported, along
-with the standard 12/6 Lennard-Jones interactions, which are computed
-with a cutoff. A :doc:`kspace_style <kspace_style>` must be defined to
-use this pair style. Currently, only :doc:`kspace_style ewald/disp <kspace_style>` support long-range point-dipole
-interactions.
-
-Style *lj/long/dipole/long* also computes point-dipole interactions as
-discussed in :ref:`(Toukmaji) <Toukmaji>`. Long-range dipole-dipole,
-dipole-charge, and charge-charge interactions are all supported, along
-with the standard 12/6 Lennard-Jones interactions. LJ interactions
-can be cutoff or long-ranged.
-
-For style *lj/long/dipole/long*, if *flag_lj* is set to *long*, no
-cutoff is used on the LJ 1/r^6 dispersion term. The long-range
-portion is calculated by using the :doc:`kspace_style ewald_disp <kspace_style>` command. The specified LJ cutoff then
-determines which portion of the LJ interactions are computed directly
-by the pair potential versus which part is computed in reciprocal
-space via the Kspace style. If *flag_lj* is set to *cut*, the LJ
-interactions are simply cutoff, as with :doc:`pair_style lj/cut <pair_lj>`. If *flag_lj* is set to *off*, LJ interactions
-are not computed at all.
-
-If *flag_coul* is set to *long*, no cutoff is used on the Coulombic or
-dipole interactions. The long-range portion is calculated by using
-*ewald_disp* of the :doc:`kspace_style <kspace_style>` command. If
-*flag_coul* is set to *off*, Coulombic and dipole interactions are not
-computed at all.
-
-Atoms with dipole moments should be integrated using the :doc:`fix nve/sphere update dipole <fix_nve_sphere>` command to rotate the
-dipole moments. The *omega* option on the :doc:`fix langevin <fix_langevin>` command can be used to thermostat the
-rotational motion. The :doc:`compute temp/sphere <compute_temp_sphere>`
-command can be used to monitor the temperature, since it includes
-rotational degrees of freedom. The :doc:`atom_style dipole <atom_style>` command should be used since it defines the
-point dipoles and their rotational state. The magnitude of the dipole
-moment for each type of particle can be defined by the
-:doc:`dipole <dipole>` command or in the "Dipoles" section of the data
-file read in by the :doc:`read_data <read_data>` command. Their initial
-orientation can be defined by the :doc:`set dipole <set>` command or in
-the "Atoms" section of the data file.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff1 (distance units)
-* cutoff2 (distance units)
-
-The latter 2 coefficients are optional. If not specified, the global
-LJ and Coulombic cutoffs specified in the pair_style command are used.
-If only one cutoff is specified, it is used as the cutoff for both LJ
-and Coulombic interactions for this type pair. If both coefficients
-are specified, they are used as the LJ and Coulombic cutoffs for this
-type pair.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distances for this pair style can be mixed. The default
-mix value is *geometric*. See the "pair_modify" command for details.
-
-For atom type pairs I,J and I != J, the A, sigma, d1, and d2
-coefficients and cutoff distance for this pair style can be mixed. A
-is an energy value mixed like a LJ epsilon. D1 and d2 are distance
-values and are mixed like sigma. The default mix value is
-*geometric*. See the "pair_modify" command for details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the Lennard-Jones portion of the pair
-interaction; such energy goes to zero at the cutoff by construction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-The *lj/cut/dipole/cut*, *lj/cut/dipole/long*, and
-*lj/long/dipole/long* styles are part of the DIPOLE package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The *lj/sf/dipole/sf* style is part of the USER-MISC package. It is
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Using dipole pair styles with *electron* :doc:`units <units>` is not
-currently supported.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Allen:
-
-
-
-**(Allen)** Allen and Tildesley, Computer Simulation of Liquids,
-Clarendon Press, Oxford, 1987.
-
-.. _Toukmaji:
-
-
-
-**(Toukmaji)** Toukmaji, Sagui, Board, and Darden, J Chem Phys, 113,
-10913 (2000).
-
-.. _Stoddard:
-
-
-
-**(Stoddard)** Stoddard and Ford, Phys Rev A, 8, 1504 (1973).
-
-.. _Price:
-
-
-
-**(Price)** Price, Stone and Alderton, Mol Phys, 52, 987 (1984).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_dpd.txt b/doc/_sources/pair_dpd.txt
deleted file mode 100644
index 1015e66b5..000000000
--- a/doc/_sources/pair_dpd.txt
+++ /dev/null
@@ -1,246 +0,0 @@
-.. index:: pair_style dpd
-
-pair_style dpd command
-======================
-
-pair_style dpd/gpu command
-==========================
-
-pair_style dpd/omp command
-==========================
-
-pair_style dpd/tstat command
-============================
-
-pair_style dpd/tstat/gpu command
-================================
-
-pair_style dpd/tstat/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style dpd T cutoff seed
- pair_style dpd/tstat Tstart Tstop cutoff seed
-
-* T = temperature (temperature units)
-* Tstart,Tstop = desired temperature at start/end of run (temperature units)
-* cutoff = global cutoff for DPD interactions (distance units)
-* seed = random # seed (positive integer)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style dpd 1.0 2.5 34387
- pair_coeff * * 3.0 1.0
- pair_coeff 1 1 3.0 1.0 1.0
-
-.. parsed-literal::
-
- pair_style dpd/tstat 1.0 1.0 2.5 34387
- pair_coeff * * 1.0
- pair_coeff 1 1 1.0 1.0
-
-Description
-"""""""""""
-
-Style *dpd* computes a force field for dissipative particle dynamics
-(DPD) following the exposition in :ref:`(Groot) <Groot>`.
-
-Style *dpd/tstat* invokes a DPD thermostat on pairwise interactions,
-which is equivalent to the non-conservative portion of the DPD force
-field. This pair-wise thermostat can be used in conjunction with any
-:doc:`pair style <pair_style>`, and in leiu of per-particle thermostats
-like :doc:`fix langevin <fix_langevin>` or ensemble thermostats like
-Nose Hoover as implemented by :doc:`fix nvt <fix_nh>`. To use
-*dpd/tstat* as a thermostat for another pair style, use the :doc:`pair_style hybrid/overlay <pair_hybrid>` command to compute both the desired
-pair interaction and the thermostat for each pair of particles.
-
-For style *dpd*, the force on atom I due to atom J is given as a sum
-of 3 terms
-
-.. image:: Eqs/pair_dpd.jpg
- :align: center
-
-where Fc is a conservative force, Fd is a dissipative force, and Fr is
-a random force. Rij is a unit vector in the direction Ri - Rj, Vij is
-the vector difference in velocities of the two atoms = Vi - Vj, alpha
-is a Gaussian random number with zero mean and unit variance, dt is
-the timestep size, and w(r) is a weighting factor that varies between
-0 and 1. Rc is the cutoff. Sigma is set equal to sqrt(2 Kb T gamma),
-where Kb is the Boltzmann constant and T is the temperature parameter
-in the pair_style command.
-
-For style *dpd/tstat*, the force on atom I due to atom J is the same
-as the above equation, except that the conservative Fc term is
-dropped. Also, during the run, T is set each timestep to a ramped
-value from Tstart to Tstop.
-
-For style *dpd*, the pairwise energy associated with style *dpd* is
-only due to the conservative force term Fc, and is shifted to be zero
-at the cutoff distance Rc. The pairwise virial is calculated using
-all 3 terms. For style *dpd/tstat* there is no pairwise energy, but
-the last two terms of the formula make a contribution to the virial.
-
-For style *dpd*, the following coefficients must be defined for each
-pair of atoms types via the :doc:`pair_coeff <pair_coeff>` command as in
-the examples above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* A (force units)
-* gamma (force/velocity units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global DPD
-cutoff is used. Note that sigma is set equal to sqrt(2 T gamma),
-where T is the temperature set by the :doc:`pair_style <pair_style>`
-command so it does not need to be specified.
-
-For style *dpd/tstat*, the coefficiencts defined for each pair of
-atoms types via the :doc:`pair_coeff <pair_coeff>` command is the same,
-except that A is not included.
-
-The GPU-accelerated versions of these styles are implemented based on
-the work of :ref:`(Afshar) <Afshar>` and :ref:`(Phillips) <Phillips>`.
-
-.. note::
-
- If you are modeling DPD polymer chains, you may want to use the
- :doc:`pair_style srp <pair_srp>` command in conjuction with these pair
- styles. It is a soft segmental repulsive potential (SRP) that can
- prevent DPD polymer chains from crossing each other.
-
-.. note::
-
- The virial calculation for pressure when using this pair style
- includes all the components of force listed above, including the
- random force.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-These pair styles do not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction. Note that as
-discussed above, the energy due to the conservative Fc term is already
-shifted to be 0.0 at the cutoff distance Rc.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for these pair styles.
-
-These pair style do not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-These pair styles writes their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file. Note
-that the user-specified random number seed is stored in the restart
-file, so when a simulation is restarted, each processor will
-re-initialize its random number generator the same way it did
-initially. This means the random forces will be random, but will not
-be the same as they would have been if the original simulation had
-continued past the restart time.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-The *dpd/tstat* style can ramp its target temperature over multiple
-runs, using the *start* and *stop* keywords of the :doc:`run <run>`
-command. See the :doc:`run <run>` command for details of how to do
-this.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The default frequency for rebuilding neighbor lists is every 10 steps
-(see the :doc:`neigh_modify <neigh_modify>` command). This may be too
-infrequent for style *dpd* simulations since particles move rapidly
-and can overlap by large amounts. If this setting yields a non-zero
-number of "dangerous" reneighborings (printed at the end of a
-simulation), you should experiment with forcing reneighboring more
-often and see if system energies/trajectories change.
-
-These pair styles requires you to use the :doc:`comm_modify vel yes <comm_modify>` command so that velocites are stored by ghost
-atoms.
-
-These pair styles will not restart exactly when using the
-:doc:`read_restart <read_restart>` command, though they should provide
-statistically similar results. This is because the forces they
-compute depend on atom velocities. See the
-:doc:`read_restart <read_restart>` command for more details.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix nvt <fix_nh>`, :doc:`fix langevin <fix_langevin>`, :doc:`pair_style srp <pair_srp>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Groot:
-
-
-
-**(Groot)** Groot and Warren, J Chem Phys, 107, 4423-35 (1997).
-
-.. _Afshar:
-
-
-
-**(Afshar)** Afshar, F. Schmid, A. Pishevar, S. Worley, Comput Phys
-Comm, 184, 1119-1128 (2013).
-
-.. _Phillips:
-
-
-
-**(Phillips)** C. L. Phillips, J. A. Anderson, S. C. Glotzer, Comput
-Phys Comm, 230, 7191-7201 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_dpd_conservative.txt b/doc/_sources/pair_dpd_conservative.txt
deleted file mode 100644
index b542eb19b..000000000
--- a/doc/_sources/pair_dpd_conservative.txt
+++ /dev/null
@@ -1,86 +0,0 @@
-.. index:: pair_style dpd/conservative
-
-pair_style dpd/conservative command
-===================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style dpd/conservative cutoff
-
-* cutoff = global cutoff for DPD interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style dpd/conservative 2.5
- pair_coeff * * 3.0 2.5
- pair_coeff 1 1 3.0
-
-Description
-"""""""""""
-
-Style *dpd/conservative* computes the conservative force for
-dissipative particle dynamics (DPD). The conservative force on atom I
-due to atom J is given by
-
-.. image:: Eqs/pair_dpd_conservative.jpg
- :align: center
-
-where the weighting factor, omega_ij, varies between 0 and 1, and is
-chosen to have the following functional form:
-
-.. image:: Eqs/pair_dpd_omega.jpg
- :align: center
-
-where Rij is a unit vector in the direction Ri - Rj, and Rc is the
-cutoff. Note that alternative definitions of the weighting function
-exist, but would have to be implemented as a separate pair style
-command.
-
-Style *dpd/conservative* differs from the other dpd styles in that the
-dissipative and random forces are not computed within the pair style.
-
-For style *dpd/conservative*, the pairwise energy is due only to the
-conservative force term Fc, and is shifted to be zero at the cutoff
-distance Rc. The pairwise virial is calculated using only the
-conservative term.
-
-Style *dpd/conservative* requires the following coefficients to be
-defined for each pair of atoms types via the
-:doc:`pair_coeff <pair_coeff>` command as in the examples above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* A (force units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global DPD
-cutoff is used.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The pair style *dpd/conservative* is only available if LAMMPS is built
-with the USER-DPD package.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_dpd <pair_dpd>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_dpd_fdt.txt b/doc/_sources/pair_dpd_fdt.txt
deleted file mode 100644
index 941da3c4c..000000000
--- a/doc/_sources/pair_dpd_fdt.txt
+++ /dev/null
@@ -1,161 +0,0 @@
-.. index:: pair_style dpd/fdt
-
-pair_style dpd/fdt command
-==========================
-
-pair_style dpd/fdt/energy command
-=================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *dpd/fdt* or *dpd/fdt/energy*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *dpd/fdt* args = T cutoff seed
- T = temperature (temperature units)
- cutoff = global cutoff for DPD interactions (distance units)
- seed = random # seed (positive integer)
- *dpd/fdt/energy* args = cutoff seed
- cutoff = global cutoff for DPD interactions (distance units)
- seed = random # seed (positive integer)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style dpd/fdt 300.0 2.5 34387
- pair_coeff * * 3.0 1.0 2.5
-
-.. parsed-literal::
-
- pair_style dpd/fdt/energy 2.5 34387
- pair_coeff * * 3.0 1.0 0.1 2.5
-
-Description
-"""""""""""
-
-Styles *dpd/fdt* and *dpd/fdt/energy* set the fluctuation-dissipation
-theorem parameters and compute the conservative force for dissipative
-particle dynamics (DPD). The conservative force on atom I due to atom
-J is given by
-
-.. image:: Eqs/pair_dpd_conservative.jpg
- :align: center
-
-where the weighting factor, omega_ij, varies between 0 and 1, and is
-chosen to have the following functional form:
-
-.. image:: Eqs/pair_dpd_omega.jpg
- :align: center
-
-where Rij is a unit vector in the direction Ri - Rj, and Rc is the
-cutoff. Note that alternative definitions of the weighting function
-exist, but would have to be implemented as a separate pair style
-command.
-
-These pair style differ from the other dpd styles in that the
-dissipative and random forces are not computed within the pair style.
-This style can be combined with the :doc:`fix shardlow <fix_shardlow>`
-to perform the stochastic integration of the dissipative and random
-forces through the Shardlow splitting algorithm approach.
-
-The pairwise energy associated with styles *dpd/fdt* and
-*dpd/fdt/energy* is only due to the conservative force term Fc, and is
-shifted to be zero at the cutoff distance Rc. The pairwise virial is
-calculated using only the conservative term.
-
-For style *dpd/fdt*, the fluctuation-dissipation theorem defines gamma
-to be set equal to sigma*sigma/(2 T), where T is the set point
-temperature specified as a pair style parameter in the above examples.
-This style can be combined with :doc:`fix shardlow <fix_shardlow>` to
-perform DPD simulations under isothermal and isobaric conditions (see
-:ref:`(Lisal) <Lisal>`). The following coefficients must be defined for
-each pair of atoms types via the :doc:`pair_coeff <pair_coeff>` command
-as in the examples above, or in the data file or restart files read by
-the :doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* A (force units)
-* sigma (force*time^(1/2) units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global DPD
-cutoff is used.
-
-For style *dpd/fdt/energy*, the fluctuation-dissipation theorem
-defines gamma to be set equal to sigma*sigma/(2 dpdTheta), where
-dpdTheta is the average internal temperature for the pair.
-Furthermore, the fluctuation-dissipation defines alpha*alpha to be set
-equal to 2*kB*kappa, where kappa is the mesoparticle thermal
-conductivity parameter. This style can be combined with :doc:`fix shardlow <fix_shardlow>` to perform DPD simulations under
-isoenergetic and isoenthalpic conditions (see :ref:`(Lisal) <Lisal>`). The
-following coefficients must be defined for each pair of atoms types
-via the :doc:`pair_coeff <pair_coeff>` command as in the examples above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* A (force units)
-* sigma (force*time^(1/2) units)
-* kappa (1/time units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global DPD
-cutoff is used.
-
-For style *dpd/fdt/energy*, the particle internal temperature is
-related to the particle internal energy through a mesoparticle
-equation of state. Thus, an an additional :doc:`fix eos <fix>` must be
-specified.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Pair styles *dpd/fdt* and *dpd/fdt/energy* are only available if
-LAMMPS is built with the USER-DPD package.
-
-Pair styles *dpd/fdt* and *dpd/fdt/energy* require use of the
-:doc:`communicate vel yes <communicate>` option so that velocites are
-stored by ghost atoms.
-
-Pair style *dpd/fdt/energy* requires :doc:`atom_style dpd <atom_style>`
-to be used in order to properly account for the particle internal
-energies and temperatures.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix shardlow <fix_shardlow>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Lisal:
-
-
-
-**(Lisal)** M. Lisal, J.K. Brennan, J. Bonet Avalos, "Dissipative
-particle dynamics as isothermal, isobaric, isoenergetic, and
-isoenthalpic conditions using Shardlow-like splitting algorithms.",
-J. Chem. Phys., 135, 204105 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_dsmc.txt b/doc/_sources/pair_dsmc.txt
deleted file mode 100644
index 8c0e5d845..000000000
--- a/doc/_sources/pair_dsmc.txt
+++ /dev/null
@@ -1,173 +0,0 @@
-.. index:: pair_style dsmc
-
-pair_style dsmc command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style dsmc max_cell_size seed weighting Tref Nrecompute Nsample
-
-* max_cell_size = global maximum cell size for DSMC interactions (distance units)
-* seed = random # seed (positive integer)
-* weighting = macroparticle weighting
-* Tref = reference temperature (temperature units)
-* Nrecompute = recompute v*sigma_max every this many timesteps (timesteps)
-* Nsample = sample this many times in recomputing v*sigma_max
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style dsmc 2.5 34387 10 1.0 100 20
- pair_coeff * * 1.0
- pair_coeff 1 1 1.0
-
-Description
-"""""""""""
-
-Style *dsmc* computes collisions between pairs of particles for a
-direct simulation Monte Carlo (DSMC) model following the exposition in
-:ref:`(Bird) <Bird>`. Each collision resets the velocities of the two
-particles involved. The number of pairwise collisions for each pair
-or particle types and the length scale within which they occur are
-determined by the parameters of the pair_style and pair_coeff
-commands.
-
-Stochastic collisions are performed using the variable hard sphere
-(VHS) approach, with the user-defined *max_cell_size* value used as
-the maximum DSMC cell size, and reference cross-sections for
-collisions given using the pair_coeff command.
-
-There is no pairwise energy or virial contributions associated with
-this pair style.
-
-The following coefficient must be defined for each pair of atoms types
-via the :doc:`pair_coeff <pair_coeff>` command as in the examples above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* sigma (area units, i.e. distance-squared)
-
-The global DSMC *max_cell_size* determines the maximum cell length
-used in the DSMC calculation. A structured mesh is overlayed on the
-simulation box such that an integer number of cells are created in
-each direction for each processor's sub-domain. Cell lengths are
-adjusted up to the user-specified maximum cell size.
-
-
-----------
-
-
-To perform a DSMC simulation with LAMMPS, several additional options
-should be set in your input script, though LAMMPS does not check for
-these settings.
-
-Since this pair style does not compute particle forces, you should use
-the "fix nve/noforce" time integration fix for the DSMC particles,
-e.g.
-
-.. parsed-literal::
-
- fix 1 all nve/noforce
-
-This pair style assumes that all particles will communicated to
-neighboring processors every timestep as they move. This makes it
-possible to perform all collisions between pairs of particles that are
-on the same processor. To ensure this occurs, you should use
-these commands:
-
-.. parsed-literal::
-
- neighbor 0.0 bin
- neigh_modify every 1 delay 0 check no
- atom_modify sort 0 0.0
- communicate single cutoff 0.0
-
-These commands ensure that LAMMPS communicates particles to
-neighboring processors every timestep and that no ghost atoms are
-created. The output statistics for a simulation run should indicate
-there are no ghost particles or neighbors.
-
-In order to get correct DSMC collision statistics, users should
-specify a Gaussian velocity distribution when populating the
-simulation domain. Note that the default velocity distribution is
-uniform, which will not give good DSMC collision rates. Specify
-"dist gaussian" when using the :doc:`velocity <velocity>` command
-as in the following:
-
-.. parsed-literal::
-
- velocity all create 594.6 87287 loop geom dist gaussian
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file. Note
-that the user-specified random number seed is stored in the restart
-file, so when a simulation is restarted, each processor will
-re-initialize its random number generator the same way it did
-initially. This means the random forces will be random, but will not
-be the same as they would have been if the original simulation had
-continued past the restart time.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the MC package. It is only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix nve/noforce <fix_nve_noforce>`,
-:doc:`neigh_modify <neigh_modify>`, :doc:`neighbor <neighbor>`,
-:doc:`comm_modify <comm_modify>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Bird:
-
-
-
-**(Bird)** G. A. Bird, "Molecular Gas Dynamics and the Direct Simulation
-of Gas Flows" (1994).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_eam.txt b/doc/_sources/pair_eam.txt
deleted file mode 100644
index 4f0f92254..000000000
--- a/doc/_sources/pair_eam.txt
+++ /dev/null
@@ -1,548 +0,0 @@
-.. index:: pair_style eam
-
-pair_style eam command
-======================
-
-pair_style eam/cuda command
-===========================
-
-pair_style eam/gpu command
-==========================
-
-pair_style eam/kk command
-=========================
-
-pair_style eam/omp command
-==========================
-
-pair_style eam/opt command
-==========================
-
-pair_style eam/alloy command
-============================
-
-pair_style eam/alloy/cuda command
-=================================
-
-pair_style eam/alloy/gpu command
-================================
-
-pair_style eam/alloy/kk command
-===============================
-
-pair_style eam/alloy/omp command
-================================
-
-pair_style eam/alloy/opt command
-================================
-
-pair_style eam/cd command
-=========================
-
-pair_style eam/cd/omp command
-=============================
-
-pair_style eam/fs command
-=========================
-
-pair_style eam/fs/cuda command
-==============================
-
-pair_style eam/fs/gpu command
-=============================
-
-pair_style eam/fs/kk command
-============================
-
-pair_style eam/fs/omp command
-=============================
-
-pair_style eam/fs/opt command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style
-
-* style = *eam* or *eam/alloy* or *eam/cd* or *eam/fs*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style eam
- pair_coeff * * cuu3
- pair_coeff 1*3 1*3 niu3.eam
-
-.. parsed-literal::
-
- pair_style eam/alloy
- pair_coeff * * ../potentials/NiAlH_jea.eam.alloy Ni Al Ni Ni
-
-.. parsed-literal::
-
- pair_style eam/cd
- pair_coeff * * ../potentials/FeCr.cdeam Fe Cr
-
-.. parsed-literal::
-
- pair_style eam/fs
- pair_coeff * * NiAlH_jea.eam.fs Ni Al Ni Ni
-
-Description
-"""""""""""
-
-Style *eam* computes pairwise interactions for metals and metal alloys
-using embedded-atom method (EAM) potentials :ref:`(Daw) <Daw>`. The total
-energy Ei of an atom I is given by
-
-.. image:: Eqs/pair_eam.jpg
- :align: center
-
-where F is the embedding energy which is a function of the atomic
-electron density rho, phi is a pair potential interaction, and alpha
-and beta are the element types of atoms I and J. The multi-body
-nature of the EAM potential is a result of the embedding energy term.
-Both summations in the formula are over all neighbors J of atom I
-within the cutoff distance.
-
-The cutoff distance and the tabulated values of the functionals F,
-rho, and phi are listed in one or more files which are specified by
-the :doc:`pair_coeff <pair_coeff>` command. These are ASCII text files
-in a DYNAMO-style format which is described below. DYNAMO was the
-original serial EAM MD code, written by the EAM originators. Several
-DYNAMO potential files for different metals are included in the
-"potentials" directory of the LAMMPS distribution. All of these files
-are parameterized in terms of LAMMPS :doc:`metal units <units>`.
-
-.. note::
-
- The *eam* style reads single-element EAM potentials in the
- DYNAMO *funcfl* format. Either single element or alloy systems can be
- modeled using multiple *funcfl* files and style *eam*. For the alloy
- case LAMMPS mixes the single-element potentials to produce alloy
- potentials, the same way that DYNAMO does. Alternatively, a single
- DYNAMO *setfl* file or Finnis/Sinclair EAM file can be used by LAMMPS
- to model alloy systems by invoking the *eam/alloy* or *eam/cd* or
- *eam/fs* styles as described below. These files require no mixing
- since they specify alloy interactions explicitly.
-
-.. note::
-
- Note that unlike for other potentials, cutoffs for EAM
- potentials are not set in the pair_style or pair_coeff command; they
- are specified in the EAM potential files themselves. Likewise, the
- EAM potential files list atomic masses; thus you do not need to use
- the :doc:`mass <mass>` command to specify them.
-
-There are several WWW sites that distribute and document EAM
-potentials stored in DYNAMO or other formats:
-
-.. parsed-literal::
-
- http://www.ctcms.nist.gov/potentials
- http://cst-www.nrl.navy.mil/ccm6/ap
- http://enpub.fulton.asu.edu/cms/potentials/main/main.htm
-
-These potentials should be usable with LAMMPS, though the alternate
-formats would need to be converted to the DYNAMO format used by LAMMPS
-and described on this page. The NIST site is maintained by Chandler
-Becker (cbecker at nist.gov) who is good resource for info on
-interatomic potentials and file formats.
-
-
-----------
-
-
-For style *eam*, potential values are read from a file that is in the
-DYNAMO single-element *funcfl* format. If the DYNAMO file was created
-by a Fortran program, it cannot have "D" values in it for exponents.
-C only recognizes "e" or "E" for scientific notation.
-
-Note that unlike for other potentials, cutoffs for EAM potentials are
-not set in the pair_style or pair_coeff command; they are specified in
-the EAM potential files themselves.
-
-For style *eam* a potential file must be assigned to each I,I pair of
-atom types by using one or more pair_coeff commands, each with a
-single argument:
-
-* filename
-
-Thus the following command
-
-.. parsed-literal::
-
- pair_coeff *2 1*2 cuu3.eam
-
-will read the cuu3 potential file and use the tabulated Cu values for
-F, phi, rho that it contains for type pairs 1,1 and 2,2 (type pairs
-1,2 and 2,1 are ignored). See the :doc:`pair_coeff <pair_coeff>` doc
-page for alternate ways to specify the path for the potential file.
-In effect, this makes atom types 1 and 2 in LAMMPS be Cu atoms.
-Different single-element files can be assigned to different atom types
-to model an alloy system. The mixing to create alloy potentials for
-type pairs with I != J is done automatically the same way that the
-serial DYNAMO code originally did it; you do not need to specify
-coefficients for these type pairs.
-
-*Funcfl* files in the *potentials* directory of the LAMMPS
-distribution have an ".eam" suffix. A DYNAMO single-element *funcfl*
-file is formatted as follows:
-
-* line 1: comment (ignored)
-* line 2: atomic number, mass, lattice constant, lattice type (e.g. FCC)
-* line 3: Nrho, drho, Nr, dr, cutoff
-
-On line 2, all values but the mass are ignored by LAMMPS. The mass is
-in mass :doc:`units <units>`, e.g. mass number or grams/mole for metal
-units. The cubic lattice constant is in Angstroms. On line 3, Nrho
-and Nr are the number of tabulated values in the subsequent arrays,
-drho and dr are the spacing in density and distance space for the
-values in those arrays, and the specified cutoff becomes the pairwise
-cutoff used by LAMMPS for the potential. The units of dr are
-Angstroms; I'm not sure of the units for drho - some measure of
-electron density.
-
-Following the three header lines are three arrays of tabulated values:
-
-* embedding function F(rho) (Nrho values)
-* effective charge function Z(r) (Nr values)
-* density function rho(r) (Nr values)
-
-The values for each array can be listed as multiple values per line,
-so long as each array starts on a new line. For example, the
-individual Z(r) values are for r = 0,dr,2*dr, ... (Nr-1)*dr.
-
-The units for the embedding function F are eV. The units for the
-density function rho are the same as for drho (see above, electron
-density). The units for the effective charge Z are "atomic charge" or
-sqrt(Hartree * Bohr-radii). For two interacting atoms i,j this is used
-by LAMMPS to compute the pair potential term in the EAM energy
-expression as r*phi, in units of eV-Angstroms, via the formula
-
-.. parsed-literal::
-
- r*phi = 27.2 * 0.529 * Zi * Zj
-
-where 1 Hartree = 27.2 eV and 1 Bohr = 0.529 Angstroms.
-
-
-----------
-
-
-Style *eam/alloy* computes pairwise interactions using the same
-formula as style *eam*. However the associated
-:doc:`pair_coeff <pair_coeff>` command reads a DYNAMO *setfl* file
-instead of a *funcfl* file. *Setfl* files can be used to model a
-single-element or alloy system. In the alloy case, as explained
-above, *setfl* files contain explicit tabulated values for alloy
-interactions. Thus they allow more generality than *funcfl* files for
-modeling alloys.
-
-For style *eam/alloy*, potential values are read from a file that is
-in the DYNAMO multi-element *setfl* format, except that element names
-(Ni, Cu, etc) are added to one of the lines in the file. If the
-DYNAMO file was created by a Fortran program, it cannot have "D"
-values in it for exponents. C only recognizes "e" or "E" for
-scientific notation.
-
-Only a single pair_coeff command is used with the *eam/alloy* style
-which specifies a DYNAMO *setfl* file, which contains information for
-M elements. These are mapped to LAMMPS atom types by specifying N
-additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of *setfl* elements to atom types
-
-As an example, the potentials/NiAlH_jea.eam.alloy file is a *setfl*
-file which has tabulated EAM values for 3 elements and their alloy
-interactions: Ni, Al, and H. See the :doc:`pair_coeff <pair_coeff>` doc
-page for alternate ways to specify the path for the potential file.
-If your LAMMPS simulation has 4 atoms types and you want the 1st 3 to
-be Ni, and the 4th to be Al, you would use the following pair_coeff
-command:
-
-.. parsed-literal::
-
- pair_coeff * * NiAlH_jea.eam.alloy Ni Ni Ni Al
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Ni arguments map LAMMPS atom types 1,2,3 to the Ni
-element in the *setfl* file. The final Al argument maps LAMMPS atom
-type 4 to the Al element in the *setfl* file. Note that there is no
-requirement that your simulation use all the elements specified by the
-*setfl* file.
-
-If a mapping value is specified as NULL, the mapping is not performed.
-This can be used when an *eam/alloy* potential is used as part of the
-*hybrid* pair style. The NULL values are placeholders for atom types
-that will be used with other potentials.
-
-*Setfl* files in the *potentials* directory of the LAMMPS distribution
-have an ".eam.alloy" suffix. A DYNAMO multi-element *setfl* file is
-formatted as follows:
-
-* lines 1,2,3 = comments (ignored)
-* line 4: Nelements Element1 Element2 ... ElementN
-* line 5: Nrho, drho, Nr, dr, cutoff
-
-In a DYNAMO *setfl* file, line 4 only lists Nelements = the # of
-elements in the *setfl* file. For LAMMPS, the element name (Ni, Cu,
-etc) of each element must be added to the line, in the order the
-elements appear in the file.
-
-The meaning and units of the values in line 5 is the same as for the
-*funcfl* file described above. Note that the cutoff (in Angstroms) is
-a global value, valid for all pairwise interactions for all element
-pairings.
-
-Following the 5 header lines are Nelements sections, one for each
-element, each with the following format:
-
-* line 1 = atomic number, mass, lattice constant, lattice type (e.g. FCC)
-* embedding function F(rho) (Nrho values)
-* density function rho(r) (Nr values)
-
-As with the *funcfl* files, only the mass (in mass :doc:`units <units>`,
-e.g. mass number or grams/mole for metal units) is used by LAMMPS from
-the 1st line. The cubic lattice constant is in Angstroms. The F and
-rho arrays are unique to a single element and have the same format and
-units as in a *funcfl* file.
-
-Following the Nelements sections, Nr values for each pair potential
-phi(r) array are listed for all i,j element pairs in the same format
-as other arrays. Since these interactions are symmetric (i,j = j,i)
-only phi arrays with i >= j are listed, in the following order: i,j =
-(1,1), (2,1), (2,2), (3,1), (3,2), (3,3), (4,1), ..., (Nelements,
-Nelements). Unlike the effective charge array Z(r) in *funcfl* files,
-the tabulated values for each phi function are listed in *setfl* files
-directly as r*phi (in units of eV-Angstroms), since they are for atom
-pairs.
-
-
-----------
-
-
-Style *eam/cd* is similar to the *eam/alloy* style, except that it
-computes alloy pairwise interactions using the concentration-dependent
-embedded-atom method (CD-EAM). This model can reproduce the enthalpy
-of mixing of alloys over the full composition range, as described in
-:ref:`(Stukowski) <Stukowski>`.
-
-The pair_coeff command is specified the same as for the *eam/alloy*
-style. However the DYNAMO *setfl* file must has two
-lines added to it, at the end of the file:
-
-* line 1: Comment line (ignored)
-* line 2: N Coefficient0 Coefficient1 ... CoeffincientN
-
-The last line begins with the degree *N* of the polynomial function
-*h(x)* that modifies the cross interaction between A and B elements.
-Then *N+1* coefficients for the terms of the polynomial are then
-listed.
-
-Modified EAM *setfl* files used with the *eam/cd* style must contain
-exactly two elements, i.e. in the current implementation the *eam/cd*
-style only supports binary alloys. The first and second elements in
-the input EAM file are always taken as the *A* and *B* species.
-
-*CD-EAM* files in the *potentials* directory of the LAMMPS
-distribution have a ".cdeam" suffix.
-
-
-----------
-
-
-Style *eam/fs* computes pairwise interactions for metals and metal
-alloys using a generalized form of EAM potentials due to Finnis and
-Sinclair :ref:`(Finnis) <Finnis>`. The total energy Ei of an atom I is
-given by
-
-.. image:: Eqs/pair_eam_fs.jpg
- :align: center
-
-This has the same form as the EAM formula above, except that rho is
-now a functional specific to the atomic types of both atoms I and J,
-so that different elements can contribute differently to the total
-electron density at an atomic site depending on the identity of the
-element at that atomic site.
-
-The associated :doc:`pair_coeff <pair_coeff>` command for style *eam/fs*
-reads a DYNAMO *setfl* file that has been extended to include
-additional rho_alpha_beta arrays of tabulated values. A discussion of
-how FS EAM differs from conventional EAM alloy potentials is given in
-:ref:`(Ackland1) <Ackland1>`. An example of such a potential is the same
-author's Fe-P FS potential :ref:`(Ackland2) <Ackland2>`. Note that while FS
-potentials always specify the embedding energy with a square root
-dependence on the total density, the implementation in LAMMPS does not
-require that; the user can tabulate any functional form desired in the
-FS potential files.
-
-For style *eam/fs*, the form of the pair_coeff command is exactly the
-same as for style *eam/alloy*, e.g.
-
-.. parsed-literal::
-
- pair_coeff * * NiAlH_jea.eam.fs Ni Ni Ni Al
-
-where there are N additional arguments after the filename, where N is
-the number of LAMMPS atom types. See the :doc:`pair_coeff <pair_coeff>`
-doc page for alternate ways to specify the path for the potential
-file. The N values determine the mapping of LAMMPS atom types to EAM
-elements in the file, as described above for style *eam/alloy*. As
-with *eam/alloy*, if a mapping value is NULL, the mapping is not
-performed. This can be used when an *eam/fs* potential is used as
-part of the *hybrid* pair style. The NULL values are used as
-placeholders for atom types that will be used with other potentials.
-
-FS EAM files include more information than the DYNAMO *setfl* format
-files read by *eam/alloy*, in that i,j density functionals for all
-pairs of elements are included as needed by the Finnis/Sinclair
-formulation of the EAM.
-
-FS EAM files in the *potentials* directory of the LAMMPS distribution
-have an ".eam.fs" suffix. They are formatted as follows:
-
-* lines 1,2,3 = comments (ignored)
-* line 4: Nelements Element1 Element2 ... ElementN
-* line 5: Nrho, drho, Nr, dr, cutoff
-
-The 5-line header section is identical to an EAM *setfl* file.
-
-Following the header are Nelements sections, one for each element I,
-each with the following format:
-
-* line 1 = atomic number, mass, lattice constant, lattice type (e.g. FCC)
-* embedding function F(rho) (Nrho values)
-* density function rho(r) for element I at element 1 (Nr values)
-* density function rho(r) for element I at element 2
-* ...
-* density function rho(r) for element I at element Nelement
-
-The units of these quantities in line 1 are the same as for *setfl*
-files. Note that the rho(r) arrays in Finnis/Sinclair can be
-asymmetric (i,j != j,i) so there are Nelements^2 of them listed in the
-file.
-
-Following the Nelements sections, Nr values for each pair potential
-phi(r) array are listed in the same manner (r*phi, units of
-eV-Angstroms) as in EAM *setfl* files. Note that in Finnis/Sinclair,
-the phi(r) arrays are still symmetric, so only phi arrays for i >= j
-are listed.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accerlate <Section_accelerate>` of the manual for more
-instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS as
-described above with the individual styles. You never need to specify
-a pair_coeff command with I != J arguments for the eam styles.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-The eam pair styles do not write their information to :doc:`binary restart files <restart>`, since it is stored in tabulated potential files.
-Thus, you need to re-specify the pair_style and pair_coeff commands in
-an input script that reads a restart file.
-
-The eam pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-All of these styles except the *eam/cd* style are part of the MANYBODY
-package. They are only enabled if LAMMPS was built with that package
-(which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The *eam/cd* style is part of the USER-MISC package and also requires
-the MANYBODY package. It is only enabled if LAMMPS was built with
-those packages. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Ackland1:
-
-
-
-**(Ackland1)** Ackland, Condensed Matter (2005).
-
-.. _Ackland2:
-
-
-
-**(Ackland2)** Ackland, Mendelev, Srolovitz, Han and Barashev, Journal
-of Physics: Condensed Matter, 16, S2629 (2004).
-
-.. _Daw:
-
-
-
-**(Daw)** Daw, Baskes, Phys Rev Lett, 50, 1285 (1983).
-Daw, Baskes, Phys Rev B, 29, 6443 (1984).
-
-.. _Finnis:
-
-
-
-**(Finnis)** Finnis, Sinclair, Philosophical Magazine A, 50, 45 (1984).
-
-.. _Stukowski:
-
-
-
-**(Stukowski)** Stukowski, Sadigh, Erhart, Caro; Modeling Simulation
-Materials Science & Engineering, 7, 075005 (2009).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_edip.txt b/doc/_sources/pair_edip.txt
deleted file mode 100644
index 36b655f8c..000000000
--- a/doc/_sources/pair_edip.txt
+++ /dev/null
@@ -1,187 +0,0 @@
-.. index:: pair_style edip
-
-pair_style edip command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style edip
-
-.. parsed-literal::
-
- pair_style edip/omp
-
-Examples
-""""""""
-
-pair_style edip
-pair_coeff * * Si.edip Si
-
-Description
-"""""""""""
-
-The *edip* style computes a 3-body :ref:`EDIP <EDIP>` potential which is
-popular for modeling silicon materials where it can have advantages
-over other models such as the :doc:`Stillinger-Weber <pair_sw>` or
-:doc:`Tersoff <pair_tersoff>` potentials. In EDIP, the energy E of a
-system of atoms is
-
-.. image:: Eqs/pair_edip.jpg
- :align: center
-
-where phi2 is a two-body term and phi3 is a three-body term. The
-summations in the formula are over all neighbors J and K of atom I
-within a cutoff distance = a.
-Both terms depend on the local environment of atom I through its
-effective coordination number defined by Z, which is unity for a
-cutoff distance < c and gently goes to 0 at distance = a.
-
-Only a single pair_coeff command is used with the *edip* style which
-specifies a EDIP potential file with parameters for all
-needed elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of EDIP elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine a file Si.edip has EDIP values for Si.
-
-EDIP files in the *potentials* directory of the LAMMPS
-distribution have a ".edip" suffix. Lines that are not blank or
-comments (starting with #) define parameters for a triplet of
-elements. The parameters in a single entry correspond to the two-body
-and three-body coefficients in the formula above:
-
-* element 1 (the center atom in a 3-body interaction)
-* element 2
-* element 3
-* A (energy units)
-* B (distance units)
-* cutoffA (distance units)
-* cutoffC (distance units)
-* alpha
-* beta
-* eta
-* gamma (distance units)
-* lambda (energy units)
-* mu
-* tho
-* sigma (distance units)
-* Q0
-* u1
-* u2
-* u3
-* u4
-
-The A, B, beta, sigma parameters are used only for two-body interactions.
-The eta, gamma, lambda, mu, Q0 and all u1 to u4 parameters are used only
-for three-body interactions. The alpha and cutoffC parameters are used
-for the coordination environment function only.
-
-The EDIP potential file must contain entries for all the
-elements listed in the pair_coeff command. It can also contain
-entries for additional elements not being used in a particular
-simulation; LAMMPS ignores those entries.
-
-For a single-element simulation, only a single entry is required
-(e.g. SiSiSi). For a two-element simulation, the file must contain 8
-entries (for SiSiSi, SiSiC, SiCSi, SiCC, CSiSi, CSiC, CCSi, CCC), that
-specify EDIP parameters for all permutations of the two elements
-interacting in three-body configurations. Thus for 3 elements, 27
-entries would be required, etc.
-
-At the moment, only a single element parametrization is
-implemented. However, the author is not aware of other
-multi-element EDIP parametrizations. If you know any and
-you are interest in that, please contact the author of
-the EDIP package.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This angle style can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The EDIP potential files provided with LAMMPS (see the potentials directory)
-are parameterized for metal :doc:`units <units>`.
-You can use the SW potential with any LAMMPS units, but you would need
-to create your own EDIP potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _EDIP:
-
-
-
-**(EDIP)** J. F. Justo et al., Phys. Rev. B 58, 2539 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_eff.txt b/doc/_sources/pair_eff.txt
deleted file mode 100644
index 84cd19481..000000000
--- a/doc/_sources/pair_eff.txt
+++ /dev/null
@@ -1,355 +0,0 @@
-.. index:: pair_style eff/cut
-
-pair_style eff/cut command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style eff/cut cutoff keyword args ...
-
-* cutoff = global cutoff for Coulombic interactions
-* zero or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *limit/eradius* or *pressure/evirials* or *ecp*
- *limit/eradius* args = none
- *pressure/evirials* args = none
- *ecp* args = type element type element ...
- type = LAMMPS atom type (1 to Ntypes)
- element = element symbol (e.g. H, Si)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style eff/cut 39.7
- pair_style eff/cut 40.0 limit/eradius
- pair_style eff/cut 40.0 limit/eradius pressure/evirials
- pair_style eff/cut 40.0 ecp 1 Si 3 C
- pair_coeff * *
- pair_coeff 2 2 20.0
- pair_coeff 1 s 0.320852 2.283269 0.814857
- pair_coeff 3 p 22.721015 0.728733 1.103199 17.695345 6.693621
-
-Description
-"""""""""""
-
-This pair style contains a LAMMPS implementation of the electron Force
-Field (eFF) potential currently under development at Caltech, as
-described in :ref:`(Jaramillo-Botero) <Jaramillo-Botero>`. The eFF for Z<6
-was first introduced by :ref:`(Su) <Su>` in 2007. It has been extended to
-higher Zs by using effective core potentials (ECPs) that now cover up
-to 2nd and 3rd row p-block elements of the periodic table.
-
-eFF can be viewed as an approximation to QM wave packet dynamics and
-Fermionic molecular dynamics, combining the ability of electronic
-structure methods to describe atomic structure, bonding, and chemistry
-in materials, and of plasma methods to describe nonequilibrium
-dynamics of large systems with a large number of highly excited
-electrons. Yet, eFF relies on a simplification of the electronic
-wavefunction in which electrons are described as floating Gaussian
-wave packets whose position and size respond to the various dynamic
-forces between interacting classical nuclear particles and spherical
-Gaussian electron wavepackets. The wavefunction is taken to be a
-Hartree product of the wave packets. To compensate for the lack of
-explicit antisymmetry in the resulting wavefunction, a spin-dependent
-Pauli potential is included in the Hamiltonian. Substituting this
-wavefunction into the time-dependent Schrodinger equation produces
-equations of motion that correspond - to second order - to classical
-Hamiltonian relations between electron position and size, and their
-conjugate momenta. The N-electron wavefunction is described as a
-product of one-electron Gaussian functions, whose size is a dynamical
-variable and whose position is not constrained to a nuclear
-center. This form allows for straightforward propagation of the
-wavefunction, with time, using a simple formulation from which the
-equations of motion are then integrated with conventional MD
-algorithms. In addition to this spin-dependent Pauli repulsion
-potential term between Gaussians, eFF includes the electron kinetic
-energy from the Gaussians. These two terms are based on
-first-principles quantum mechanics. On the other hand, nuclei are
-described as point charges, which interact with other nuclei and
-electrons through standard electrostatic potential forms.
-
-The full Hamiltonian (shown below), contains then a standard
-description for electrostatic interactions between a set of
-delocalized point and Gaussian charges which include, nuclei-nuclei
-(NN), electron-electron (ee), and nuclei-electron (Ne). Thus, eFF is a
-mixed QM-classical mechanics method rather than a conventional force
-field method (in which electron motions are averaged out into ground
-state nuclear motions, i.e a single electronic state, and particle
-interactions are described via empirically parameterized interatomic
-potential functions). This makes eFF uniquely suited to simulate
-materials over a wide range of temperatures and pressures where
-electronically excited and ionized states of matter can occur and
-coexist. Furthermore, the interactions between particles -nuclei and
-electrons- reduce to the sum of a set of effective pairwise potentials
-in the eFF formulation. The *eff/cut* style computes the pairwise
-Coulomb interactions between nuclei and electrons (E_NN,E_Ne,E_ee),
-and the quantum-derived Pauli (E_PR) and Kinetic energy interactions
-potentials between electrons (E_KE) for a total energy expression
-given as,
-
-.. image:: Eqs/eff_energy_expression.jpg
- :align: center
-
-The individual terms are defined as follows:
-
-.. image:: Eqs/eff_KE.jpg
- :align: center
-
-.. image:: Eqs/eff_NN.jpg
- :align: center
-
-.. image:: Eqs/eff_Ne.jpg
- :align: center
-
-.. image:: Eqs/eff_ee.jpg
- :align: center
-
-.. image:: Eqs/eff_Pauli.jpg
- :align: center
-
-where, s_i correspond to the electron sizes, the sigmas i's to the
-fixed spins of the electrons, Z_i to the charges on the nuclei, R_ij
-to the distances between the nuclei or the nuclei and electrons, and
-r_ij to the distances between electrons. For additional details see
-:ref:`(Jaramillo-Botero) <Jaramillo-Botero>`.
-
-The overall electrostatics energy is given in Hartree units of energy
-by default and can be modified by an energy-conversion constant,
-according to the units chosen (see :doc:`electron_units <units>`). The
-cutoff Rc, given in Bohrs (by default), truncates the interaction
-distance. The recommended cutoff for this pair style should follow
-the minimum image criterion, i.e. half of the minimum unit cell
-length.
-
-Style *eff/long* (not yet available) computes the same interactions as
-style *eff/cut* except that an additional damping factor is applied so
-it can be used in conjunction with the
-:doc:`kspace_style <kspace_style>` command and its *ewald* or *pppm*
-option. The Coulombic cutoff specified for this style means that
-pairwise interactions within this distance are computed directly;
-interactions outside that distance are computed in reciprocal space.
-
-This potential is designed to be used with :doc:`atom_style electron <atom_style>` definitions, in order to handle the
-description of systems with interacting nuclei and explicit electrons.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cutoff (distance units)
-
-For *eff/cut*, the cutoff coefficient is optional. If it is not used
-(as in some of the examples above), the default global value specified
-in the pair_style command is used.
-
-For *eff/long* (not yet available) no cutoff will be specified for an
-individual I,J type pair via the :doc:`pair_coeff <pair_coeff>` command.
-All type pairs use the same global cutoff specified in the pair_style
-command.
-
-
-----------
-
-
-The *limit/eradius* and *pressure/evirials* keywrods are optional.
-Neither or both must be specified. If not specified they are unset.
-
-The *limit/eradius* keyword is used to restrain electron size from
-becoming excessively diffuse at very high temperatures were the
-Gaussian wave packet representation breaks down, and from expanding as
-free particles to infinite size. If unset, electron radius is free to
-increase without bounds. If set, a restraining harmonic potential of
-the form E = 1/2k_ss^2 for s > L_box/2, where k_s = 1 Hartrees/Bohr^2,
-is applied on the electron radius.
-
-The *pressure/evirials* keyword is used to control between two types
-of pressure computation: if unset, the computed pressure does not
-include the electronic radial virials contributions to the total
-pressure (scalar or tensor). If set, the computed pressure will
-include the electronic radial virial contributions to the total
-pressure (scalar and tensor).
-
-The *ecp* keyword is used to associate an ECP representation for a
-particular atom type. The ECP captures the orbital overlap between a
-core pseudo particle and valence electrons within the Pauli repulsion.
-A list of type:element-symbol pairs may be provided for all ECP
-representations, after the "ecp" keyword.
-
-.. note::
-
- Default ECP parameters are provided for C, N, O, Al, and Si.
- Users can modify these using the pair_coeff command as exemplified
- above. For this, the User must distinguish between two different
- functional forms supported, one that captures the orbital overlap
- assuming the s-type core interacts with an s-like valence electron
- (s-s) and another that assumes the interaction is s-p. For systems
- that exhibit significant p-character (e.g. C, N, O) the s-p form is
- recommended. The "s" ECP form requires 3 parameters and the "p" 5
- parameters.
-
-.. note::
-
- there are two different pressures that can be reported for eFF
- when defining this pair_style, one (default) that considers electrons
- do not contribute radial virial components (i.e. electrons treated as
- incompressible 'rigid' spheres) and one that does. The radial
- electronic contributions to the virials are only tallied if the
- flexible pressure option is set, and this will affect both global and
- per-atom quantities. In principle, the true pressure of a system is
- somewhere in between the rigid and the flexible eFF pressures, but,
- for most cases, the difference between these two pressures will not be
- significant over long-term averaged runs (i.e. even though the energy
- partitioning changes, the total energy remains similar).
-
-
-----------
-
-
-.. note::
-
- This implemention of eFF gives a reasonably accurate description
- for systems containing nuclei from Z = 1-6 in "all electron"
- representations. For systems with increasingly non-spherical
- electrons, Users should use the ECP representations. ECPs are now
- supported and validated for most of the 2nd and 3rd row elements of
- the p-block. Predefined parameters are provided for C, N, O, Al, and
- Si. The ECP captures the orbital overlap between the core and valence
- electrons (i.e. Pauli repulsion) with one of the functional forms:
-
-.. image:: Eqs/eff_ECP1.jpg
- :align: center
-
-.. image:: Eqs/eff_ECP2.jpg
- :align: center
-
-Where the 1st form correspond to core interactions with s-type valence
-electrons and the 2nd to core interactions with p-type valence
-electrons.
-
-The current version adds full support for models with fixed-core and
-ECP definitions. to enable larger timesteps (i.e. by avoiding the
-high frequency vibrational modes -translational and radial- of the 2 s
-electrons), and in the ECP case to reduce the increased orbital
-complexity in higher Z elements (up to Z<18). A fixed-core should be
-defined with a mass that includes the corresponding nuclear mass plus
-the 2 s electrons in atomic mass units (2x5.4857990943e-4), and a
-radius equivalent to that of minimized 1s electrons (see examples
-under /examples/USER/eff/fixed-core). An pseudo-core should be
-described with a mass that includes the corresponding nuclear mass,
-plus all the core electrons (i.e no outer shell electrons), and a
-radius equivalent to that of a corresponding minimized full-electron
-system. The charge for a pseudo-core atom should be given by the
-number of outer shell electrons.
-
-In general, eFF excels at computing the properties of materials in
-extreme conditions and tracing the system dynamics over multi-picosend
-timescales; this is particularly relevant where electron excitations
-can change significantly the nature of bonding in the system. It can
-capture with surprising accuracy the behavior of such systems because
-it describes consistently and in an unbiased manner many different
-kinds of bonds, including covalent, ionic, multicenter, ionic, and
-plasma, and how they interconvert and/or change when they become
-excited. eFF also excels in computing the relative thermochemistry of
-isodemic reactions and conformational changes, where the bonds of the
-reactants are of the same type as the bonds of the products. eFF
-assumes that kinetic energy differences dominate the overall exchange
-energy, which is true when the electrons present are nearly spherical
-and nodeless and valid for covalent compounds such as dense hydrogen,
-hydrocarbons, and diamond; alkali metals (e.g. lithium), alkali earth
-metals (e.g. beryllium) and semimetals such as boron; and various
-compounds containing ionic and/or multicenter bonds, such as boron
-dihydride.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the cutoff distance for the
-*eff/cut* style can be mixed. The default mix value is *geometric*.
-See the "pair_modify" command for details.
-
-The :doc:`pair_modify <pair_modify>` shift option is not relevant for
-these pair styles.
-
-The *eff/long* (not yet available) style supports the
-:doc:`pair_modify <pair_modify>` table option for tabulation of the
-short-range portion of the long-range Coulombic interaction.
-
-These pair styles do not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-These pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These pair styles will only be enabled if LAMMPS is built with the
-USER-EFF package. It will only be enabled if LAMMPS was built with
-that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-These pair styles require that particles store electron attributes
-such as radius, radial velocity, and radital force, as defined by the
-:doc:`atom_style <atom_style>`. The *electron* atom style does all of
-this.
-
-Thes pair styles require you to use the :doc:`comm_modify vel yes <comm_modify>` command so that velocites are stored by ghost
-atoms.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-Default
-"""""""
-
-If not specified, limit_eradius = 0 and pressure_with_evirials = 0.
-
-
-----------
-
-
-.. _Su:
-
-
-
-**(Su)** Su and Goddard, Excited Electron Dynamics Modeling of Warm
-Dense Matter, Phys Rev Lett, 99:185003 (2007).
-
-.. _Jaramillo-Botero:
-
-
-
-**(Jaramillo-Botero)** Jaramillo-Botero, Su, Qi, Goddard, Large-scale,
-Long-term Non-adiabatic Electron Molecular Dynamics for Describing
-Material Properties and Phenomena in Extreme Environments, J Comp
-Chem, 32, 497-512 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_eim.txt b/doc/_sources/pair_eim.txt
deleted file mode 100644
index 963cb0cac..000000000
--- a/doc/_sources/pair_eim.txt
+++ /dev/null
@@ -1,202 +0,0 @@
-.. index:: pair_style eim
-
-pair_style eim command
-======================
-
-pair_style eim/omp command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style
-
-* style = *eim*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style eim
- pair_coeff * * Na Cl ../potentials/ffield.eim Na Cl
- pair_coeff * * Na Cl ffield.eim Na Na Na Cl
- pair_coeff * * Na Cl ../potentials/ffield.eim Cl NULL Na
-
-Description
-"""""""""""
-
-Style *eim* computes pairwise interactions for ionic compounds
-using embedded-ion method (EIM) potentials :ref:`(Zhou) <Zhou>`. The
-energy of the system E is given by
-
-.. image:: Eqs/pair_eim1.jpg
- :align: center
-
-The first term is a double pairwise sum over the J neighbors of all I
-atoms, where phi_ij is a pair potential. The second term sums over
-the embedding energy E_i of atom I, which is a function of its charge
-q_i and the electrical potential sigma_i at its location. E_i, q_i,
-and sigma_i are calculated as
-
-.. image:: Eqs/pair_eim2.jpg
- :align: center
-
-where eta_ji is a pairwise function describing electron flow from atom
-I to atom J, and psi_ij is another pairwise function. The multi-body
-nature of the EIM potential is a result of the embedding energy term.
-A complete list of all the pair functions used in EIM is summarized
-below
-
-.. image:: Eqs/pair_eim3.jpg
- :align: center
-
-Here E_b, r_e, r_(c,phi), alpha, beta, A_(psi), zeta, r_(s,psi),
-r_(c,psi), A_(eta), r_(s,eta), r_(c,eta), chi, and pair function type
-p are parameters, with subscripts ij indicating the two species of
-atoms in the atomic pair.
-
-.. note::
-
- Even though the EIM potential is treating atoms as charged ions,
- you should not use a LAMMPS :doc:`atom_style <atom_style>` that stores a
- charge on each atom and thus requires you to assign a charge to each
- atom, e.g. the *charge* or *full* atom styles. This is because the
- EIM potential infers the charge on an atom from the equation above for
- q_i; you do not assign charges explicitly.
-
-
-----------
-
-
-All the EIM parameters are listed in a potential file which is
-specified by the :doc:`pair_coeff <pair_coeff>` command. This is an
-ASCII text file in a format described below. The "ffield.eim" file
-included in the "potentials" directory of the LAMMPS distribution
-currently includes nine elements Li, Na, K, Rb, Cs, F, Cl, Br, and I.
-A system with any combination of these elements can be modeled. This
-file is parameterized in terms of LAMMPS :doc:`metal units <units>`.
-
-Note that unlike other potentials, cutoffs for EIM potentials are not
-set in the pair_style or pair_coeff command; they are specified in the
-EIM potential file itself. Likewise, the EIM potential file lists
-atomic masses; thus you do not need to use the :doc:`mass <mass>`
-command to specify them.
-
-Only a single pair_coeff command is used with the *eim* style which
-specifies an EIM potential file and the element(s) to extract
-information for. The EIM elements are mapped to LAMMPS atom types by
-specifying N additional arguments after the filename in the pair_coeff
-command, where N is the number of LAMMPS atom types:
-
-* Elem1, Elem2, ...
-* EIM potential file
-* N element names = mapping of EIM elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example like one of those above, suppose you want to model a
-system with Na and Cl atoms. If your LAMMPS simulation has 4 atoms
-types and you want the 1st 3 to be Na, and the 4th to be Cl, you would
-use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * Na Cl ffield.eim Na Na Na Cl
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The filename is the EIM potential file. The Na and Cl arguments
-(before the file name) are the two elements for which info will be
-extracted from the potentail file. The first three trailing Na
-arguments map LAMMPS atom types 1,2,3 to the EIM Na element. The
-final Cl argument maps LAMMPS atom type 4 to the EIM Cl element.
-
-If a mapping value is specified as NULL, the mapping is not performed.
-This can be used when an *eim* potential is used as part of the
-*hybrid* pair style. The NULL values are placeholders for atom types
-that will be used with other potentials.
-
-The ffield.eim file in the *potentials* directory of the LAMMPS
-distribution is formated as follows:
-
-Lines starting with # are comments and are ignored by LAMMPS. Lines
-starting with "global:" include three global values. The first value
-divides the cations from anions, i.e., any elements with
-electronegativity above this value are viewed as anions, and any
-elements with electronegativity below this value are viewed as
-cations. The second and third values are related to the cutoff
-function - i.e. the 0.510204, 1.64498, and 0.010204 shown in the above
-equation can be derived from these values.
-
-Lines starting with "element:" are formatted as follows: name of
-element, atomic number, atomic mass, electronic negativity, atomic
-radius (LAMMPS ignores it), ionic radius (LAMMPS ignores it), cohesive
-energy (LAMMPS ignores it), and q0 (must be 0).
-
-Lines starting with "pair:" are entered as: element 1, element 2,
-r_(c,phi), r_(c,phi) (redundant for historical reasons), E_b, r_e,
-alpha, beta, r_(c,eta), A_(eta), r_(s,eta), r_(c,psi), A_(psi), zeta,
-r_(s,psi), and p.
-
-The lines in the file can be in any order; LAMMPS extracts the info it
-needs.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the MANYBODY package. It is only enabled if
-LAMMPS was built with that package (which it is by default).
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Zhou:
-
-
-
-**(Zhou)** Zhou, submitted for publication (2010). Please contact
-Xiaowang Zhou (Sandia) for details via email at xzhou at sandia.gov.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_gauss.txt b/doc/_sources/pair_gauss.txt
deleted file mode 100644
index eca13443b..000000000
--- a/doc/_sources/pair_gauss.txt
+++ /dev/null
@@ -1,193 +0,0 @@
-.. index:: pair_style gauss
-
-pair_style gauss command
-========================
-
-pair_style gauss/gpu command
-============================
-
-pair_style gauss/omp command
-============================
-
-pair_style gauss/cut command
-============================
-
-pair_style gauss/cut/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style gauss cutoff
- pair_style gauss/cut cutoff
-
-* cutoff = global cutoff for Gauss interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style gauss 12.0
- pair_coeff * * 1.0 0.9
- pair_coeff 1 4 1.0 0.9 10.0
-
-.. parsed-literal::
-
- pair_style gauss/cut 3.5
- pair_coeff 1 4 0.2805 1.45 0.112
-
-Description
-"""""""""""
-
-Style *gauss* computes a tethering potential of the form
-
-.. image:: Eqs/pair_gauss.jpg
- :align: center
-
-between an atom and its corresponding tether site which will typically
-be a frozen atom in the simulation. Rc is the cutoff.
-
-The following coefficients must be defined for each pair of atom types
-via the :doc:`pair_coeff <pair_coeff>` command as in the examples above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* A (energy units)
-* B (1/distance^2 units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global cutoff
-is used.
-
-Style *gauss/cut* computes a generalized Gaussian interaction potential
-between pairs of particles:
-
-.. image:: Eqs/pair_gauss_cut.jpg
- :align: center
-
-where H determines together with the standard deviation sigma_h the
-peak height of the Gaussian function, and r_mh the peak position.
-Examples of the use of the Gaussian potentials include implicit
-solvent simulations of salt ions :ref:`(Lenart) <Lenart>` and of surfactants
-:ref:`(Jusufi) <Jusufi>`. In these instances the Gaussian potential mimics
-the hydration barrier between a pair of particles. The hydration
-barrier is located at r_mh and has a width of sigma_h. The prefactor
-determines the hight of the potential barrier.
-
-The following coefficients must be defined for each pair of atom types
-via the :doc:`pair_coeff <pair_coeff>` command as in the example above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* H (energy * distance units)
-* r_mh (distance units)
-* sigma_h (distance units)
-
-The global cutoff (r_c) specified in the pair_style command is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the "-suffix command-line
-switch7_Section_start.html#start_6 when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-The *gauss* style does not support the :doc:`pair_modify <pair_modify>`
-shift option. There is no effect due to the Gaussian well beyond the
-cutoff; hence reasonable cutoffs need to be specified.
-
-The *gauss/cut* style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the Gauss-potential portion of the pair
-interaction.
-
-The :doc:`pair_modify <pair_modify>` table and tail options are not
-relevant for these pair styles.
-
-These pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-The *gauss* pair style tallies an "occupancy" count of how many Gaussian-well
-sites have an atom within the distance at which the force is a maximum
-= sqrt(0.5/b). This quantity can be accessed via the :doc:`compute pair <compute_pair>` command as a vector of values of length 1.
-
-To print this quantity to the log file (with a descriptive column
-heading) the following commands could be included in an input script:
-
-.. parsed-literal::
-
- compute gauss all pair gauss
- variable occ equal c_gauss[1]
- thermo_style custom step temp epair v_occ
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *gauss/cut* style is part of the "user-misc" package. It is only
-enabled if LAMMPS is build with that package. See the :ref:`Making of LAMMPS <3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`,
-:doc:`pair_style coul/diel <pair_coul_diel>`
-
-**Default:** none
-
-.. _Lenart:
-
-
-
-**(Lenart)** Lenart , Jusufi, and Panagiotopoulos, J Chem Phys, 126,
-044509 (2007).
-
-.. _Jusufi:
-
-
-
-**(Jusufi)** Jusufi, Hynninen, and Panagiotopoulos, J Phys Chem B, 112,
-13783 (2008).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_gayberne.txt b/doc/_sources/pair_gayberne.txt
deleted file mode 100644
index 314c61795..000000000
--- a/doc/_sources/pair_gayberne.txt
+++ /dev/null
@@ -1,263 +0,0 @@
-.. index:: pair_style gayberne
-
-pair_style gayberne command
-===========================
-
-pair_style gayberne/gpu command
-===============================
-
-pair_style gayberne/intel command
-=================================
-
-pair_style gayberne/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style gayberne gamma upsilon mu cutoff
-
-* gamma = shift for potential minimum (typically 1)
-* upsilon = exponent for eta orientation-dependent energy function
-* mu = exponent for chi orientation-dependent energy function
-* cutoff = global cutoff for interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style gayberne 1.0 1.0 1.0 10.0
- pair_coeff * * 1.0 1.7 1.7 3.4 3.4 1.0 1.0 1.0
-
-Description
-"""""""""""
-
-The *gayberne* styles compute a Gay-Berne anisotropic LJ interaction
-:ref:`(Berardi) <Berardi>` between pairs of ellipsoidal particles or an
-ellipsoidal and spherical particle via the formulas
-
-.. image:: Eqs/pair_gayberne.jpg
- :align: center
-
-where A1 and A2 are the transformation matrices from the simulation
-box frame to the body frame and r12 is the center to center vector
-between the particles. Ur controls the shifted distance dependent
-interaction based on the distance of closest approach of the two
-particles (h12) and the user-specified shift parameter gamma. When
-both particles are spherical, the formula reduces to the usual
-Lennard-Jones interaction (see details below for when Gay-Berne treats
-a particle as "spherical").
-
-For large uniform molecules it has been shown that the energy
-parameters are approximately representable in terms of local contact
-curvatures :ref:`(Everaers) <Everaers>`:
-
-.. image:: Eqs/pair_gayberne2.jpg
- :align: center
-
-The variable names utilized as potential parameters are for the most
-part taken from :ref:`(Everaers) <Everaers>` in order to be consistent with
-the :doc:`RE-squared pair potential <pair_resquared>`. Details on the
-upsilon and mu parameters are given
-`here <PDF/pair_resquared_extra.pdf>`_.
-
-More details of the Gay-Berne formulation are given in the references
-listed below and in `this supplementary document <PDF/pair_gayberne_extra.pdf>`_.
-
-Use of this pair style requires the NVE, NVT, or NPT fixes with the
-*asphere* extension (e.g. :doc:`fix nve/asphere <fix_nve_asphere>`) in
-order to integrate particle rotation. Additionally, :doc:`atom_style ellipsoid <atom_style>` should be used since it defines the
-rotational state and the size and shape of each ellipsoidal particle.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon = well depth (energy units)
-* sigma = minimum effective particle radii (distance units)
-* epsilon_i_a = relative well depth of type I for side-to-side interactions
-* epsilon_i_b = relative well depth of type I for face-to-face interactions
-* epsilon_i_c = relative well depth of type I for end-to-end interactions
-* epsilon_j_a = relative well depth of type J for side-to-side interactions
-* epsilon_j_b = relative well depth of type J for face-to-face interactions
-* epsilon_j_c = relative well depth of type J for end-to-end interactions
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global
-cutoff specified in the pair_style command is used.
-
-It is typical with the Gay-Berne potential to define *sigma* as the
-minimum of the 3 shape diameters of the particles involved in an I,I
-interaction, though this is not required. Note that this is a
-different meaning for *sigma* than the :doc:`pair_style resquared <pair_resquared>` potential uses.
-
-The epsilon_i and epsilon_j coefficients are actually defined for atom
-types, not for pairs of atom types. Thus, in a series of pair_coeff
-commands, they only need to be specified once for each atom type.
-
-Specifically, if any of epsilon_i_a, epsilon_i_b, epsilon_i_c are
-non-zero, the three values are assigned to atom type I. If all the
-epsilon_i values are zero, they are ignored. If any of epsilon_j_a,
-epsilon_j_b, epsilon_j_c are non-zero, the three values are assigned
-to atom type J. If all three epsilon_j values are zero, they are
-ignored. Thus the typical way to define the epsilon_i and epsilon_j
-coefficients is to list their values in "pair_coeff I J" commands when
-I = J, but set them to 0.0 when I != J. If you do list them when I !=
-J, you should insure they are consistent with their values in other
-pair_coeff commands, since only the last setting will be in effect.
-
-Note that if this potential is being used as a sub-style of
-:doc:`pair_style hybrid <pair_hybrid>`, and there is no "pair_coeff I I"
-setting made for Gay-Berne for a particular type I (because I-I
-interactions are computed by another hybrid pair potential), then you
-still need to insure the epsilon a,b,c coefficients are assigned to
-that type. e.g. in a "pair_coeff I J" command.
-
-.. note::
-
- If the epsilon a = b = c for an atom type, and if the shape of
- the particle itself is spherical, meaning its 3 shape parameters are
- all the same, then the particle is treated as an LJ sphere by the
- Gay-Berne potential. This is significant because if two LJ spheres
- interact, then the simple Lennard-Jones formula is used to compute
- their interaction energy/force using the specified epsilon and sigma
- as the standard LJ parameters. This is much cheaper to compute than
- the full Gay-Berne formula. To treat the particle as a LJ sphere with
- sigma = D, you should normally set epsilon a = b = c = 1.0, set the
- pair_coeff sigma = D, and also set the 3 shape parameters for the
- particle to D. The one exception is that if the 3 shape parameters
- are set to 0.0, which is a valid way in LAMMPS to specify a point
- particle, then the Gay-Berne potential will treat that as shape
- parameters of 1.0 (i.e. a LJ particle with sigma = 1), since it
- requires finite-size particles. In this case you should still set the
- pair_coeff sigma to 1.0 as well.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for this pair style can be mixed. The default mix
-value is *geometric*. See the "pair_modify" command for details.
-
-This pair styles supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the Lennard-Jones portion of the pair
-interaction, but only for sphere-sphere interactions. There is no
-shifting performed for ellipsoidal interactions due to the anisotropic
-dependence of the interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *gayberne* style is part of the ASPHERE package. It is only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-These pair style require that atoms store torque and a quaternion to
-represent their orientation, as defined by the
-:doc:`atom_style <atom_style>`. It also require they store a per-type
-:doc:`shape <shape>`. The particles cannot store a per-particle
-diameter.
-
-This pair style requires that atoms be ellipsoids as defined by the
-:doc:`atom_style ellipsoid <atom_style>` command.
-
-Particles acted on by the potential can be finite-size aspherical or
-spherical particles, or point particles. Spherical particles have all
-3 of their shape parameters equal to each other. Point particles have
-all 3 of their shape parameters equal to 0.0.
-
-The Gay-Berne potential does not become isotropic as r increases
-:ref:`(Everaers) <Everaers>`. The distance-of-closest-approach
-approximation used by LAMMPS becomes less accurate when high-aspect
-ratio ellipsoids are used.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix nve/asphere <fix_nve_asphere>`,
-:doc:`compute temp/asphere <compute_temp_asphere>`, :doc:`pair_style resquared <pair_resquared>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Everaers:
-
-
-
-**(Everaers)** Everaers and Ejtehadi, Phys Rev E, 67, 041710 (2003).
-
-.. _Berardi:
-
-
-
-**(Berardi)** Berardi, Fava, Zannoni, Chem Phys Lett, 297, 8-14 (1998).
-Berardi, Muccioli, Zannoni, J Chem Phys, 128, 024905 (2008).
-
-.. _Perram:
-
-
-
-**(Perram)** Perram and Rasmussen, Phys Rev E, 54, 6565-6572 (1996).
-
-.. _Allen:
-
-
-
-**(Allen)** Allen and Germano, Mol Phys 104, 3225-3235 (2006).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_gran.txt b/doc/_sources/pair_gran.txt
deleted file mode 100644
index 903e44b3c..000000000
--- a/doc/_sources/pair_gran.txt
+++ /dev/null
@@ -1,300 +0,0 @@
-.. index:: pair_style gran/hooke
-
-pair_style gran/hooke command
-=============================
-
-pair_style gran/cuda command
-============================
-
-pair_style gran/omp command
-===========================
-
-pair_style gran/hooke/history command
-=====================================
-
-pair_style gran/hooke/history/omp command
-=========================================
-
-pair_style gran/hertz/history command
-=====================================
-
-pair_style gran/hertz/history/omp command
-=========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style Kn Kt gamma_n gamma_t xmu dampflag
-
-* style = *gran/hooke* or *gran/hooke/history* or *gran/hertz/history*
-* Kn = elastic constant for normal particle repulsion (force/distance units or pressure units - see discussion below)
-* Kt = elastic constant for tangential contact (force/distance units or pressure units - see discussion below)
-* gamma_n = damping coefficient for collisions in normal direction (1/time units or 1/time-distance units - see discussion below)
-* gamma_t = damping coefficient for collisions in tangential direction (1/time units or 1/time-distance units - see discussion below)
-* xmu = static yield criterion (unitless value between 0.0 and 1.0e4)
-* dampflag = 0 or 1 if tangential damping force is excluded or included
-.. note::
-
- Versions of LAMMPS before 9Jan09 had different style names for
- granular force fields. This is to emphasize the fact that the
- Hertzian equation has changed to model polydispersity more accurately.
- A side effect of the change is that the Kn, Kt, gamma_n, and gamma_t
- coefficients in the pair_style command must be specified with
- different values in order to reproduce calculations made with earlier
- versions of LAMMPS, even for monodisperse systems. See the NOTE below
- for details.
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style gran/hooke/history 200000.0 NULL 50.0 NULL 0.5 1
- pair_style gran/hooke 200000.0 70000.0 50.0 30.0 0.5 0
-
-Description
-"""""""""""
-
-The *gran* styles use the following formulas for the frictional force
-between two granular particles, as described in
-:ref:`(Brilliantov) <Brilliantov>`, :ref:`(Silbert) <Silbert>`, and
-:ref:`(Zhang) <Zhang>`, when the distance r between two particles of radii
-Ri and Rj is less than their contact distance d = Ri + Rj. There is
-no force between the particles when r > d.
-
-The two Hookean styles use this formula:
-
-.. image:: Eqs/pair_gran_hooke.jpg
- :align: center
-
-The Hertzian style uses this formula:
-
-.. image:: Eqs/pair_gran_hertz.jpg
- :align: center
-
-In both equations the first parenthesized term is the normal force
-between the two particles and the second parenthesized term is the
-tangential force. The normal force has 2 terms, a contact force and a
-damping force. The tangential force also has 2 terms: a shear force
-and a damping force. The shear force is a "history" effect that
-accounts for the tangential displacement between the particles for the
-duration of the time they are in contact. This term is included in
-pair styles *hooke/history* and *hertz/history*, but is not included
-in pair style *hooke*. The tangential damping force term is included
-in all three pair styles if *dampflag* is set to 1; it is not included
-if *dampflag* is set to 0.
-
-The other quantities in the equations are as follows:
-
-* delta = d - r = overlap distance of 2 particles
-* Kn = elastic constant for normal contact
-* Kt = elastic constant for tangential contact
-* gamma_n = viscoelastic damping constant for normal contact
-* gamma_t = viscoelastic damping constant for tangential contact
-* m_eff = Mi Mj / (Mi + Mj) = effective mass of 2 particles of mass Mi and Mj
-* Delta St = tangential displacement vector between 2 spherical particles which is truncated to satisfy a frictional yield criterion
-* n_ij = unit vector along the line connecting the centers of the 2 particles
-* Vn = normal component of the relative velocity of the 2 particles
-* Vt = tangential component of the relative velocity of the 2 particles
-
-The Kn, Kt, gamma_n, and gamma_t coefficients are specified as
-parameters to the pair_style command. If a NULL is used for Kt, then
-a default value is used where Kt = 2/7 Kn. If a NULL is used for
-gamma_t, then a default value is used where gamma_t = 1/2 gamma_n.
-
-The interpretation and units for these 4 coefficients are different in
-the Hookean versus Hertzian equations.
-
-The Hookean model is one where the normal push-back force for two
-overlapping particles is a linear function of the overlap distance.
-Thus the specified Kn is in units of (force/distance). Note that this
-push-back force is independent of absolute particle size (in the
-monodisperse case) and of the relative sizes of the two particles (in
-the polydisperse case). This model also applies to the other terms in
-the force equation so that the specified gamma_n is in units of
-(1/time), Kt is in units of (force/distance), and gamma_t is in units
-of (1/time).
-
-The Hertzian model is one where the normal push-back force for two
-overlapping particles is proportional to the area of overlap of the
-two particles, and is thus a non-linear function of overlap distance.
-Thus Kn has units of force per area and is thus specified in units of
-(pressure). The effects of absolute particle size (monodispersity)
-and relative size (polydispersity) are captured in the radii-dependent
-pre-factors. When these pre-factors are carried through to the other
-terms in the force equation it means that the specified gamma_n is in
-units of (1/(time*distance)), Kt is in units of (pressure), and
-gamma_t is in units of (1/(time*distance)).
-
-Note that in the Hookean case, Kn can be thought of as a linear spring
-constant with units of force/distance. In the Hertzian case, Kn is
-like a non-linear spring constant with units of force/area or
-pressure, and as shown in the :ref:`(Zhang) <Zhang>` paper, Kn = 4G /
-(3(1-nu)) where nu = the Poisson ratio, G = shear modulus = E /
-(2(1+nu)), and E = Young's modulus. Similarly, Kt = 4G / (2-nu).
-(NOTE: in an earlier version of the manual, we incorrectly stated that
-Kt = 8G / (2-nu).)
-
-Thus in the Hertzian case Kn and Kt can be set to values that
-corresponds to properties of the material being modeled. This is also
-true in the Hookean case, except that a spring constant must be chosen
-that is appropriate for the absolute size of particles in the model.
-Since relative particle sizes are not accounted for, the Hookean
-styles may not be a suitable model for polydisperse systems.
-
-.. note::
-
- In versions of LAMMPS before 9Jan09, the equation for Hertzian
- interactions did not include the sqrt(RiRj/Ri+Rj) term and thus was
- not as accurate for polydisperse systems. For monodisperse systems,
- sqrt(RiRj/Ri+Rj) is a constant factor that effectively scales all 4
- coefficients: Kn, Kt, gamma_n, gamma_t. Thus you can set the values
- of these 4 coefficients appropriately in the current code to reproduce
- the results of a previous Hertzian monodisperse calculation. For
- example, for the common case of a monodisperse system with particles
- of diameter 1, all 4 of these coefficients should now be set 2x larger
- than they were previously.
-
-Xmu is also specified in the pair_style command and is the upper limit
-of the tangential force through the Coulomb criterion Ft = xmu*Fn,
-where Ft and Fn are the total tangential and normal force components
-in the formulas above. Thus in the Hookean case, the tangential force
-between 2 particles grows according to a tangential spring and
-dash-pot model until Ft/Fn = xmu and is then held at Ft = Fn*xmu until
-the particles lose contact. In the Hertzian case, a similar analogy
-holds, though the spring is no longer linear.
-
-.. note::
-
- Normally, xmu should be specified as a fractional value between
- 0.0 and 1.0, however LAMMPS allows large values (up to 1.0e4) to allow
- for modeling of systems which can sustain very large tangential
- forces.
-
-For granular styles there are no additional coefficients to set for
-each pair of atom types via the :doc:`pair_coeff <pair_coeff>` command.
-All settings are global and are made via the pair_style command.
-However you must still use the :doc:`pair_coeff <pair_coeff>` for all
-pairs of granular atom types. For example the command
-
-.. parsed-literal::
-
- pair_coeff * *
-
-should be used if all atoms in the simulation interact via a granular
-potential (i.e. one of the pair styles above is used). If a granular
-potential is used as a sub-style of :doc:`pair_style hybrid <pair_hybrid>`, then specific atom types can be used in the
-pair_coeff command to determine which atoms interact via a granular
-potential.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-The :doc:`pair_modify <pair_modify>` mix, shift, table, and tail options
-are not relevant for granular pair styles.
-
-These pair styles write their information to :doc:`binary restart files <restart>`, so a pair_style command does not need to be
-specified in an input script that reads a restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-The single() function of these pair styles returns 0.0 for the energy
-of a pairwise interaction, since energy is not conserved in these
-dissipative potentials. It also returns only the normal component of
-the pairwise interaction force. However, the single() function also
-calculates 4 extra pairwise quantities. The first 3 are the
-components of the tangential force between particles I and J, acting
-on particle I. *P4* is the magnitude of this tangential force. These
-extra quantites can be accessed by the :doc:`compute pair/local <compute_pair_local>` command, as *p1*, *p2*, *p3*,
-*p4*.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-All the granular pair styles are part of the GRANULAR package. It is
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-These pair styles require that atoms store torque and angular velocity
-(omega) as defined by the :doc:`atom_style <atom_style>`. They also
-require a per-particle radius is stored. The *sphere* atom style does
-all of this.
-
-This pair style requires you to use the :doc:`comm_modify vel yes <comm_modify>` command so that velocites are stored by ghost
-atoms.
-
-These pair styles will not restart exactly when using the
-:doc:`read_restart <read_restart>` command, though they should provide
-statistically similar results. This is because the forces they
-compute depend on atom velocities. See the
-:doc:`read_restart <read_restart>` command for more details.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Brilliantov:
-
-
-
-**(Brilliantov)** Brilliantov, Spahn, Hertzsch, Poschel, Phys Rev E, 53,
-p 5382-5392 (1996).
-
-.. _Silbert:
-
-
-
-**(Silbert)** Silbert, Ertas, Grest, Halsey, Levine, Plimpton, Phys Rev
-E, 64, p 051302 (2001).
-
-.. _Zhang:
-
-
-
-**(Zhang)** Zhang and Makse, Phys Rev E, 72, p 011301 (2005).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_gromacs.txt b/doc/_sources/pair_gromacs.txt
deleted file mode 100644
index 8551a67b2..000000000
--- a/doc/_sources/pair_gromacs.txt
+++ /dev/null
@@ -1,193 +0,0 @@
-.. index:: pair_style lj/gromacs
-
-pair_style lj/gromacs command
-=============================
-
-pair_style lj/gromacs/cuda command
-==================================
-
-pair_style lj/gromacs/gpu command
-=================================
-
-pair_style lj/gromacs/omp command
-=================================
-
-pair_style lj/gromacs/coul/gromacs command
-==========================================
-
-pair_style lj/gromacs/coul/gromacs/cuda command
-===============================================
-
-pair_style lj/gromacs/coul/gromacs/omp command
-==============================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/gromacs* or *lj/gromacs/coul/gromacs*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *lj/gromacs* args = inner outer
- inner, outer = global switching cutoffs for Lennard Jones
- *lj/gromacs/coul/gromacs* args = inner outer (inner2) (outer2)
- inner, outer = global switching cutoffs for Lennard Jones (and Coulombic if only 2 args)
- inner2, outer2 = global switching cutoffs for Coulombic (optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/gromacs 9.0 12.0
- pair_coeff * * 100.0 2.0
- pair_coeff 2 2 100.0 2.0 8.0 10.0
-
-.. parsed-literal::
-
- pair_style lj/gromacs/coul/gromacs 9.0 12.0
- pair_style lj/gromacs/coul/gromacs 8.0 10.0 7.0 9.0
- pair_coeff * * 100.0 2.0
-
-Description
-"""""""""""
-
-The *lj/gromacs* styles compute shifted LJ and Coulombic interactions
-with an additional switching function S(r) that ramps the energy and force
-smoothly to zero between an inner and outer cutoff. It is a commonly
-used potential in the `GROMACS <http://www.gromacs.org>`_ MD code and for
-the coarse-grained models of :ref:`(Marrink) <Marrink>`.
-
-.. image:: Eqs/pair_gromacs.jpg
- :align: center
-
-r1 is the inner cutoff; rc is the outer cutoff. The coefficients A, B,
-and C are computed by LAMMPS to perform the shifting and smoothing.
-The function
-S(r) is actually applied once to each term of the LJ formula and once
-to the Coulombic formula, so there are 2 or 3 sets of A,B,C coefficients
-depending on which pair_style is used. The boundary conditions
-applied to the smoothing function are as follows: S'(r1) = S''(r1) = 0,
-S(rc) = -E(rc), S'(rc) = -E'(rc), and S''(rc) = -E''(rc),
-where E(r) is the corresponding term
-in the LJ or Coulombic potential energy function.
-Single and double primes denote first and second
-derivatives with respect to r, respectively.
-
-The inner and outer cutoff for the LJ and Coulombic terms can be the
-same or different depending on whether 2 or 4 arguments are used in
-the pair_style command. The inner LJ cutoff must be > 0, but the
-inner Coulombic cutoff can be >= 0.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* inner (distance units)
-* outer (distance units)
-
-Note that sigma is defined in the LJ formula as the zero-crossing
-distance for the potential, not as the energy minimum at 2^(1/6)
-sigma.
-
-The last 2 coefficients are optional inner and outer cutoffs for style
-*lj/gromacs*. If not specified, the global *inner* and *outer* values
-are used.
-
-The last 2 coefficients cannot be used with style
-*lj/gromacs/coul/gromacs* because this force field does not allow
-varying cutoffs for individual atom pairs; all pairs use the global
-cutoff(s) specified in the pair_style command.
-
-
-----------
-
-
-Styles *intel*, *kk*, with a *cuda*, *gpu*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/cut pair styles can be mixed.
-The default mix value is *geometric*. See the "pair_modify" command
-for details.
-
-None of the GROMACS pair styles support the
-:doc:`pair_modify <pair_modify>` shift option, since the Lennard-Jones
-portion of the pair interaction is already smoothed to 0.0 at the
-cutoff.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-None of the GROMACS pair styles support the
-:doc:`pair_modify <pair_modify>` tail option for adding long-range tail
-corrections to energy and pressure, since there are no corrections for
-a potential that goes to 0.0 at the cutoff.
-
-All of the GROMACS pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do
-not need to be specified in an input script that reads a restart file.
-
-All of the GROMACS pair styles can only be used via the *pair*
-keyword of the :doc:`run_style respa <run_style>` command. They do not
-support the *inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Marrink:
-
-
-
-**(Marrink)** Marrink, de Vries, Mark, J Phys Chem B, 108, 750-760 (2004).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_hbond_dreiding.txt b/doc/_sources/pair_hbond_dreiding.txt
deleted file mode 100644
index 61bf99e19..000000000
--- a/doc/_sources/pair_hbond_dreiding.txt
+++ /dev/null
@@ -1,286 +0,0 @@
-.. index:: pair_style hbond/dreiding/lj
-
-pair_style hbond/dreiding/lj command
-====================================
-
-pair_style hbond/dreiding/lj/omp command
-========================================
-
-pair_style hbond/dreiding/morse command
-=======================================
-
-pair_style hbond/dreiding/morse/omp command
-===========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style N inner_distance_cutoff outer_distance_cutoff angle_cutof
-
-* style = *hbond/dreiding/lj* or *hbond/dreiding/morse*
-* n = cosine angle periodicity
-* inner_distance_cutoff = global inner 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)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style hybrid/overlay lj/cut 10.0 hbond/dreiding/lj 4 9.0 11.0 90
- pair_coeff 1 2 hbond/dreiding/lj 3 i 9.5 2.75 4 9.0 11.0 90.0
-
-.. parsed-literal::
-
- pair_style hybrid/overlay lj/cut 10.0 hbond/dreiding/morse 2 9.0 11.0 90
- pair_coeff 1 2 hbond/dreiding/morse 3 i 3.88 1.7241379 2.9 2 9 11 90
-
-Description
-"""""""""""
-
-The *hbond/dreiding* styles compute the Acceptor-Hydrogen-Donor (AHD)
-3-body hydrogen bond interaction for the
-:ref:`DREIDING <howto_4>` force field, given by:
-
-.. image:: Eqs/pair_hbond_dreiding.jpg
- :align: center
-
-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
-hydrogen (H) and the donor atoms:
-
-.. image:: Eqs/dreiding_hbond.jpg
- :align: center
-
-These 3-body interactions can be defined for pairs of acceptor and
-donor atoms, based on atom types. For each donor/acceptor atom pair,
-the 3rd atom in the interaction is a hydrogen permanently bonded to
-the donor atom, e.g. in a bond list read in from a data file via the
-:doc:`read_data <read_data>` command. The atom types of possible
-hydrogen atoms for each donor/acceptor type pair are specified by the
-:doc:`pair_coeff <pair_coeff>` command (see below).
-
-Style *hbond/dreiding/lj* is the original DREIDING potential of
-:ref:`(Mayo) <Mayo>`. It uses a LJ 12/10 functional for the Donor-Acceptor
-interactions. To match the results in the original paper, use n = 4.
-
-Style *hbond/dreiding/morse* is an improved version using a Morse
-potential for the Donor-Acceptor interactions. :ref:`(Liu) <Liu>` showed
-that the Morse form gives improved results for Dendrimer simulations,
-when n = 2.
-
-See this :ref:`howto section <howto_4>` of the manual for
-more information on the DREIDING forcefield.
-
-.. note::
-
- Because the Dreiding hydrogen bond potential is only one portion
- of an overall force field which typically includes other pairwise
- interactions, it is common to use it as a sub-style in a :doc:`pair_style hybrid/overlay <pair_hybrid>` command, where another pair style
- provides the repulsive core interaction between pairs of atoms, e.g. a
- 1/r^12 Lennard-Jones repulsion.
-
-.. note::
-
- When using the hbond/dreiding pair styles with :doc:`pair_style hybrid/overlay <pair_hybrid>`, you should explicitly define pair
- interactions between the donor atom and acceptor atoms, (as well as
- between these atoms and ALL other atoms in your system). Whenever
- :doc:`pair_style hybrid/overlay <pair_hybrid>` is used, ordinary mixing
- rules are not applied to atoms like the donor and acceptor atoms
- because they are typically referenced in multiple pair styles.
- Neglecting to do this can cause difficult-to-detect physics problems.
-
-.. note::
-
- In the original Dreiding force field paper 1-4 non-bonded
- interactions ARE allowed. If this is desired for your model, use the
- special_bonds command (e.g. "special_bonds lj 0.0 0.0 1.0") to turn
- these interactions on.
-
-
-----------
-
-
-The following coefficients must be defined for pairs of eligible
-donor/acceptor types via the :doc:`pair_coeff <pair_coeff>` command as
-in the examples above.
-
-.. note::
-
- Unlike other pair styles and their associated
- :doc:`pair_coeff <pair_coeff>` commands, you do not need to specify
- pair_coeff settings for all possible I,J type pairs. Only I,J type
- pairs for atoms which act as joint donors/acceptors need to be
- specified; all other type pairs are assumed to be inactive.
-
-.. note::
-
- A :doc:`pair_coeff <pair_coeff>` command can be speficied multiple
- times for the same donor/acceptor type pair. This enables multiple
- hydrogen types to be assigned to the same donor/acceptor type pair.
- For other pair_styles, if the pair_coeff command is re-used for the
- same I.J type pair, the settings for that type pair are overwritten.
- For the hydrogen bond potentials this is not the case; the settings
- are cummulative. This means the only way to turn off a previous
- setting, is to re-use the pair_style command and start over.
-
-For the *hbond/dreiding/lj* style the list of coefficients is as
-follows:
-
-* K = hydrogen atom type = 1 to Ntypes
-* donor flag = *i* or *j*
-* epsilon (energy units)
-* sigma (distance units)
-* n = exponent in formula above
-* distance cutoff Rin (distance units)
-* distance cutoff Rout (distance units)
-* angle cutoff (degrees)
-
-For the *hbond/dreiding/morse* style the list of coefficients is as
-follows:
-
-* K = hydrogen atom type = 1 to Ntypes
-* donor flag = *i* or *j*
-* D0 (energy units)
-* alpha (1/distance units)
-* r0 (distance units)
-* n = exponent in formula above
-* distance cutoff Rin (distance units)
-* distance cutoff Rout (distance units)
-* angle cutoff (degrees)
-
-A single hydrogen atom type K can be specified, or a wild-card
-asterisk can be used in place of or in conjunction with the K
-arguments to select multiple types as hydrogens. This takes the form
-"*" or "*n" or "n*" or "m*n". See the `pair_coeff <pair_coeff>`_ command
-doc page for details.
-
-If the donor flag is *i*, then the atom of type I in the pair_coeff
-command is treated as the donor, and J is the acceptor. If the donor
-flag is *j*, then the atom of type J in the pair_coeff command is
-treated as the donor and I is the donor. This option is required
-because the :doc:`pair_coeff <pair_coeff>` command requires that I <= J.
-
-Epsilon and sigma are settings for the hydrogen bond potential based
-on a Lennard-Jones functional form. Note that sigma is defined as the
-zero-crossing distance for the potential, not as the energy minimum at
-2^(1/6) sigma.
-
-D0 and alpha and r0 are settings for the hydrogen bond potential based
-on a Morse functional form.
-
-The last 3 coefficients for both styles are optional. If not
-specified, the global n, distance cutoff, and angle cutoff specified
-in the pair_style command are used. If you wish to only override the
-2nd or 3rd optional parameter, you must also specify the preceding
-optional parameters.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support mixing. You must explicitly identify
-each donor/acceptor type pair.
-
-These styles do not support the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the interactions.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant for
-these pair styles.
-
-These pair styles do not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-These pair styles do not write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands need to be
-re-specified in an input script that reads a restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-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 :doc:`compute pair <compute_pair>`
-command as a vector of values of length 2.
-
-To print these quantities to the log file (with a descriptive column
-heading) the following commands could be included in an input script:
-
-.. parsed-literal::
-
- compute hb all pair hbond/dreiding/lj
- 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
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mayo:
-
-
-
-**(Mayo)** Mayo, Olfason, Goddard III, J Phys Chem, 94, 8897-8909
-(1990).
-
-.. _Liu:
-
-
-
-**(Liu)** Liu, Bryantsev, Diallo, Goddard III, J. Am. Chem. Soc 131 (8)
-2798 (2009)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_hybrid.txt b/doc/_sources/pair_hybrid.txt
deleted file mode 100644
index e6b959710..000000000
--- a/doc/_sources/pair_hybrid.txt
+++ /dev/null
@@ -1,437 +0,0 @@
-.. index:: pair_style hybrid
-
-pair_style hybrid command
-=========================
-
-pair_style hybrid/omp command
-=============================
-
-pair_style hybrid/overlay command
-=================================
-
-pair_style hybrid/overlay/omp command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style hybrid style1 args style2 args ...
- pair_style hybrid/overlay style1 args style2 args ...
-
-* style1,style2 = list of one or more pair styles and their arguments
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style hybrid lj/cut/coul/cut 10.0 eam lj/cut 5.0
- pair_coeff 1*2 1*2 eam niu3
- pair_coeff 3 3 lj/cut/coul/cut 1.0 1.0
- pair_coeff 1*2 3 lj/cut 0.5 1.2
-
-.. parsed-literal::
-
- pair_style hybrid/overlay lj/cut 2.5 coul/long 2.0
- pair_coeff * * lj/cut 1.0 1.0
- pair_coeff * * coul/long
-
-Description
-"""""""""""
-
-The *hybrid* and *hybrid/overlay* styles enable the use of multiple
-pair styles in one simulation. With the *hybrid* style, exactly one
-pair style is assigned to each pair of atom types. With the
-*hybrid/overlay* style, one or more pair styles can be assigned to
-each pair of atom types. The assignment of pair styles to type pairs
-is made via the :doc:`pair_coeff <pair_coeff>` command.
-
-Here are two examples of hybrid simulations. The *hybrid* style could
-be used for a simulation of a metal droplet on a LJ surface. The
-metal atoms interact with each other via an *eam* potential, the
-surface atoms interact with each other via a *lj/cut* potential, and
-the metal/surface interaction is also computed via a *lj/cut*
-potential. The *hybrid/overlay* style could be used as in the 2nd
-example above, where multiple potentials are superposed in an additive
-fashion to compute the interaction between atoms. In this example,
-using *lj/cut* and *coul/long* together gives the same result as if
-the *lj/cut/coul/long* potential were used by itself. In this case,
-it would be more efficient to use the single combined potential, but
-in general any combination of pair potentials can be used together in
-to produce an interaction that is not encoded in any single pair_style
-file, e.g. adding Coulombic forces between granular particles.
-
-All pair styles that will be used are listed as "sub-styles" following
-the *hybrid* or *hybrid/overlay* keyword, in any order. Each
-sub-style's name is followed by its usual arguments, as illustrated in
-the example above. See the doc pages of individual pair styles for a
-listing and explanation of the appropriate arguments.
-
-Note that an individual pair style can be used multiple times as a
-sub-style. For efficiency this should only be done if your model
-requires it. E.g. if you have different regions of Si and C atoms and
-wish to use a Tersoff potential for pure Si for one set of atoms, and
-a Tersoff potetnial for pure C for the other set (presumably with some
-3rd potential for Si-C interactions), then the sub-style *tersoff*
-could be listed twice. But if you just want to use a Lennard-Jones or
-other pairwise potential for several different atom type pairs in your
-model, then you should just list the sub-style once and use the
-pair_coeff command to assign parameters for the different type pairs.
-
-.. note::
-
- There are two exceptions to this option to list an individual
- pair style multiple times. The first is for pair styles implemented
- as Fortran libraries: :doc:`pair_style meam <pair_meam>` and :doc:`pair_style reax <pair_reax>` (:doc:`pair_style reax/c <pair_reax_c>` is OK).
- This is because unlike a C++ class, they can not be instantiated
- multiple times, due to the manner in which they were coded in Fortran.
- The second is for GPU-enabled pair styles in the GPU package. This is
- b/c the GPU package also currently assumes that only one instance of a
- pair style is being used.
-
-In the pair_coeff commands, the name of a pair style must be added
-after the I,J type specification, with the remaining coefficients
-being those appropriate to that style. If the pair style is used
-multiple times in the pair_style command, then an additional numeric
-argument must also be specified which is a number from 1 to M where M
-is the number of times the sub-style was listed in the pair style
-command. The extra number indicates which instance of the sub-style
-these coefficients apply to.
-
-For example, consider a simulation with 3 atom types: types 1 and 2
-are Ni atoms, type 3 are LJ atoms with charges. The following
-commands would set up a hybrid simulation:
-
-.. parsed-literal::
-
- pair_style hybrid eam/alloy lj/cut/coul/cut 10.0 lj/cut 8.0
- pair_coeff * * eam/alloy nialhjea Ni Ni NULL
- pair_coeff 3 3 lj/cut/coul/cut 1.0 1.0
- pair_coeff 1*2 3 lj/cut 0.8 1.3
-
-As an example of using the same pair style multiple times, consider a
-simulation with 2 atom types. Type 1 is Si, type 2 is C. The
-following commands would model the Si atoms with Tersoff, the C atoms
-with Tersoff, and the cross-interactions with Lennard-Jones:
-
-.. parsed-literal::
-
- pair_style hybrid lj/cut 2.5 tersoff tersoff
- pair_coeff * * tersoff 1 Si.tersoff Si NULL
- pair_coeff * * tersoff 2 C.tersoff NULL C
- pair_coeff 1 2 lj/cut 1.0 1.5
-
-If pair coefficients are specified in the data file read via the
-:doc:`read_data <read_data>` command, then the same rule applies.
-E.g. "eam/alloy" or "lj/cut" must be added after the atom type, for
-each line in the "Pair Coeffs" section, e.g.
-
-.. parsed-literal::
-
- Pair Coeffs
-
-.. parsed-literal::
-
- 1 lj/cut/coul/cut 1.0 1.0
- ...
-
-Note that the pair_coeff command for some potentials such as
-:doc:`pair_style eam/alloy <pair_eam>` includes a mapping specification
-of elements to all atom types, which in the hybrid case, can include
-atom types not assigned to the *eam/alloy* potential. The NULL
-keyword is used by many such potentials (eam/alloy, Tersoff, AIREBO,
-etc), to denote an atom type that will be assigned to a different
-sub-style.
-
-For the *hybrid* style, each atom type pair I,J is assigned to exactly
-one sub-style. Just as with a simulation using a single pair style,
-if you specify the same atom type pair in a second pair_coeff command,
-the previous assignment will be overwritten.
-
-For the *hybrid/overlay* style, each atom type pair I,J can be
-assigned to one or more sub-styles. If you specify the same atom type
-pair in a second pair_coeff command with a new sub-style, then the
-second sub-style is added to the list of potentials that will be
-calculated for two interacting atoms of those types. If you specify
-the same atom type pair in a second pair_coeff command with a
-sub-style that has already been defined for that pair of atoms, then
-the new pair coefficients simply override the previous ones, as in the
-normal usage of the pair_coeff command. E.g. these two sets of
-commands are the same:
-
-.. parsed-literal::
-
- pair_style lj/cut 2.5
- pair_coeff * * 1.0 1.0
- pair_coeff 2 2 1.5 0.8
-
-.. parsed-literal::
-
- pair_style hybrid/overlay lj/cut 2.5
- pair_coeff * * lj/cut 1.0 1.0
- pair_coeff 2 2 lj/cut 1.5 0.8
-
-Coefficients must be defined for each pair of atoms types via the
-:doc:`pair_coeff <pair_coeff>` command as described above, or in the
-data file or restart files read by the :doc:`read_data <read_data>` or
-:doc:`read_restart <read_restart>` commands, or by mixing as described
-below.
-
-For both the *hybrid* and *hybrid/overlay* styles, every atom type
-pair I,J (where I <= J) must be assigned to at least one sub-style via
-the :doc:`pair_coeff <pair_coeff>` command as in the examples above, or
-in the data file read by the :doc:`read_data <read_data>`, or by mixing
-as described below.
-
-If you want there to be no interactions between a particular pair of
-atom types, you have 3 choices. You can assign the type pair to some
-sub-style and use the :doc:`neigh_modify exclude type <neigh_modify>`
-command. You can assign it to some sub-style and set the coefficients
-so that there is effectively no interaction (e.g. epsilon = 0.0 in a
-LJ potential). Or, for *hybrid* and *hybrid/overlay* simulations, you
-can use this form of the pair_coeff command in your input script:
-
-.. parsed-literal::
-
- pair_coeff 2 3 none
-
-or this form in the "Pair Coeffs" section of the data file:
-
-.. parsed-literal::
-
- 3 none
-
-If an assignment to *none* is made in a simulation with the
-*hybrid/overlay* pair style, it wipes out all previous assignments of
-that atom type pair to sub-styles.
-
-Note that you may need to use an :doc:`atom_style <atom_style>` hybrid
-command in your input script, if atoms in the simulation will need
-attributes from several atom styles, due to using multiple pair
-potentials.
-
-
-----------
-
-
-Different force fields (e.g. CHARMM vs AMBER) may have different rules
-for applying weightings that change the strength of pairwise
-interactions bewteen pairs of atoms that are also 1-2, 1-3, and 1-4
-neighbors in the molecular bond topology, as normally set by the
-:doc:`special_bonds <special_bonds>` command. Different weights can be
-assigned to different pair hybrid sub-styles via the :doc:`pair_modify special <pair_modify>` command. This allows multiple force fields
-to be used in a model of a hybrid system, however, there is no consistent
-approach to determine parameters automatically for the interactions
-between the two force fields, this is only recommended when particles
-described by the different force fields do not mix.
-
-Here is an example for mixing CHARMM and AMBER: The global *amber*
-setting sets the 1-4 interactions to non-zero scaling factors and
-then overrides them with 0.0 only for CHARMM:
-
-.. parsed-literal::
-
- special_bonds amber
- pair_hybrid lj/charmm/coul/long 8.0 10.0 lj/cut/coul/long 10.0
- pair_modify pair lj/charmm/coul/long special lj/coul 0.0 0.0 0.0
-
-The this input achieves the same effect:
-
-.. parsed-literal::
-
- special_bonds 0.0 0.0 0.1
- pair_hybrid lj/charmm/coul/long 8.0 10.0 lj/cut/coul/long 10.0
- pair_modify pair lj/cut/coul/long special lj 0.0 0.0 0.5
- pair_modify pair lj/cut/coul/long special coul 0.0 0.0 0.83333333
- pair_modify pair lj/charmm/coul/long special lj/coul 0.0 0.0 0.0
-
-Here is an example for mixing Tersoff with OPLS/AA based on
-a data file that defines bonds for all atoms where for the
-Tersoff part of the system the force constants for the bonded
-interactions have been set to 0. Note the global settings are
-effectively *lj/coul 0.0 0.0 0.5* as required for OPLS/AA:
-
-.. parsed-literal::
-
- special_bonds lj/coul 1e-20 1e-20 0.5
- pair_hybrid tersoff lj/cut/coul/long 12.0
- pair_modify pair tersoff special lj/coul 1.0 1.0 1.0
-
-See the :doc:`pair_modify <pair_modify>` doc page for details on
-the specific syntax, requirements and restrictions.
-
-
-----------
-
-
-The potential energy contribution to the overall system due to an
-individual sub-style can be accessed and output via the :doc:`compute pair <compute_pair>` command.
-
-
-----------
-
-
-.. note::
-
- Several of the potentials defined via the pair_style command in
- LAMMPS are really many-body potentials, such as Tersoff, AIREBO, MEAM,
- ReaxFF, etc. The way to think about using these potentials in a
- hybrid setting is as follows.
-
-A subset of atom types is assigned to the many-body potential with a
-single :doc:`pair_coeff <pair_coeff>` command, using "* *" to include
-all types and the NULL keywords described above to exclude specific
-types not assigned to that potential. If types 1,3,4 were assigned in
-that way (but not type 2), this means that all many-body interactions
-between all atoms of types 1,3,4 will be computed by that potential.
-Pair_style hybrid allows interactions between type pairs 2-2, 1-2,
-2-3, 2-4 to be specified for computation by other pair styles. You
-could even add a second interaction for 1-1 to be computed by another
-pair style, assuming pair_style hybrid/overlay is used.
-
-But you should not, as a general rule, attempt to exclude the
-many-body interactions for some subset of the type pairs within the
-set of 1,3,4 interactions, e.g. exclude 1-1 or 1-3 interactions. That
-is not conceptually well-defined for many-body interactions, since the
-potential will typically calculate energies and foces for small groups
-of atoms, e.g. 3 or 4 atoms, using the neighbor lists of the atoms to
-find the additional atoms in the group. It is typically non-physical
-to think of excluding an interaction between a particular pair of
-atoms when the potential computes 3-body or 4-body interactions.
-
-However, you can still use the pair_coeff none setting or the
-:doc:`neigh_modify exclude <neigh_modify>` command to exclude certain
-type pairs from the neighbor list that will be passed to a manybody
-sub-style. This will alter the calculations made by a many-body
-potential, since it builds its list of 3-body, 4-body, etc
-interactions from the pair list. You will need to think carefully as
-to whether it produces a physically meaningful result for your model.
-
-For example, imagine you have two atom types in your model, type 1 for
-atoms in one surface, and type 2 for atoms in the other, and you wish
-to use a Tersoff potential to compute interactions within each
-surface, but not between surfaces. Then either of these two command
-sequences would implement that model:
-
-.. parsed-literal::
-
- pair_style hybrid tersoff
- pair_coeff * * tersoff SiC.tersoff C C
- pair_coeff 1 2 none
-
-.. parsed-literal::
-
- pair_style tersoff
- pair_coeff * * SiC.tersoff C C
- neigh_modify exclude type 1 2
-
-Either way, only neighbor lists with 1-1 or 2-2 interactions would be
-passed to the Tersoff potential, which means it would compute no
-3-body interactions containing both type 1 and 2 atoms.
-
-Here is another example, using hybrid/overlay, to use 2 many-body
-potentials together, in an overlapping manner. Imagine you have CNT
-(C atoms) on a Si surface. You want to use Tersoff for Si/Si and Si/C
-interactions, and AIREBO for C/C interactions. Si atoms are type 1; C
-atoms are type 2. Something like this will work:
-
-.. parsed-literal::
-
- pair_style hybrid/overlay tersoff airebo 3.0
- pair_coeff * * tersoff SiC.tersoff.custom Si C
- pair_coeff * * airebo CH.airebo NULL C
-
-Note that to prevent the Tersoff potential from computing C/C
-interactions, you would need to modify the SiC.tersoff file to turn
-off C/C interaction, i.e. by setting the appropriate coefficients to
-0.0.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual.
-
-Since the *hybrid* and *hybrid/overlay* styles delegate computation
-to the individual sub-styles, the suffix versions of the *hybrid*
-and *hybrid/overlay* styles are used to propagate the corresponding
-suffix to all sub-styles, if those versions exist. Otherwise the
-non-accelerated version will be used.
-
-The individual accelerated sub-styles are part of the USER-CUDA, GPU,
-USER-OMP and OPT packages, respectively. They are only enabled if
-LAMMPS was built with those packages. See the
-:ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-Any pair potential settings made via the
-:doc:`pair_modify <pair_modify>` command are passed along to all
-sub-styles of the hybrid potential.
-
-For atom type pairs I,J and I != J, if the sub-style assigned to I,I
-and J,J is the same, and if the sub-style allows for mixing, then the
-coefficients for I,J can be mixed. This means you do not have to
-specify a pair_coeff command for I,J since the I,J type pair will be
-assigned automatically to the sub-style defined for both I,I and J,J
-and its coefficients generated by the mixing rule used by that
-sub-style. For the *hybrid/overlay* style, there is an additional
-requirement that both the I,I and J,J pairs are assigned to a single
-sub-style. See the "pair_modify" command for details of mixing rules.
-See the See the doc page for the sub-style to see if allows for
-mixing.
-
-The hybrid pair styles supports the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options for an I,J pair interaction, if the
-associated sub-style supports it.
-
-For the hybrid pair styles, the list of sub-styles and their
-respective settings are written to :doc:`binary restart files <restart>`, so a :doc:`pair_style <pair_style>` command does
-not need to specified in an input script that reads a restart file.
-However, the coefficient information is not stored in the restart
-file. Thus, pair_coeff commands need to be re-specified in the
-restart input script.
-
-These pair styles support the use of the *inner*, *middle*, and
-*outer* keywords of the :doc:`run_style respa <run_style>` command, if
-their sub-styles do.
-
-Restrictions
-""""""""""""
-
-
-When using a long-range Coulombic solver (via the
-:doc:`kspace_style <kspace_style>` command) with a hybrid pair_style,
-one or more sub-styles will be of the "long" variety,
-e.g. *lj/cut/coul/long* or *buck/coul/long*. You must insure that the
-short-range Coulombic cutoff used by each of these long pair styles is
-the same or else LAMMPS will generate an error.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_kim.txt b/doc/_sources/pair_kim.txt
deleted file mode 100644
index c674b0f48..000000000
--- a/doc/_sources/pair_kim.txt
+++ /dev/null
@@ -1,135 +0,0 @@
-.. index:: pair_style kim
-
-pair_style kim command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style kim virialmode model printflag
-
-* virialmode = KIMvirial or LAMMPSvirial
-* model = name of KIM model (potential)
-* printflag = 1/0 do or do not print KIM descriptor file, optional
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style kim KIMvirial model_Ar_P_Morse
- pair_coeff * * Ar Ar
-
-.. parsed-literal::
-
- pair_style kim KIMvirial model_Ar_P_Morse 1
- pair_coeff * * Ar Ar
-
-Description
-"""""""""""
-
-This pair style is a wrapper on the `Knowledge Base for Interatomic Models (KIM) <https://openkim.org>`_ repository of interatomic potentials,
-so that they can be used by LAMMPS scripts.
-
-In KIM lingo, a potential is a "model" and a model contains both the
-analytic formulas that define the potential as well as the parameters
-needed to run it for one or more materials, including coefficients and
-cutoffs.
-
-The argument *virialmode* determines how the global virial is
-calculated. If *KIMvirial* is specified, the KIM model performs the
-global virial calculation (if it knows how). If *LAMMPSvirial* is
-specified, LAMMPS computes the global virial using its fdotr mechanism.
-
-The argument *model* is the name of the KIM model for a specific
-potential as KIM defines it. In principle, LAMMPS can invoke any KIM
-model. You should get an error or warning message from either LAMMPS
-or KIM if there is an incompatibility.
-
-The argument *printflag* is optional. If it is set to a non-zero
-value then a KIM dsecriptor file is printed when KIM is invoked. This
-can be useful for debugging. The default is to not print this file.
-
-Only a single pair_coeff command is used with the *kim* style which
-specifies the mapping of LAMMPS atom types to KIM elements. This is
-done by specifying N additional arguments after the * * in the
-pair_coeff command, where N is the number of LAMMPS atom types:
-
-* N element names = mapping of KIM elements to atom types
-
-As an example, imagine the KIM model supports Si and C atoms. If your
-LAMMPS simulation has 4 atom types and you want the 1st 3 to be Si,
-and the 4th to be C, you would use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Si arguments map LAMMPS atom types 1,2,3 to Si as
-defined within KIM. The final C argument maps LAMMPS atom type 4 to C
-as defined within KIM. If a mapping value is specified as NULL, the
-mapping is not performed. This can only be used when a *kim*
-potential is used as part of the *hybrid* pair style. The NULL values
-are placeholders for atom types that will be used with other
-potentials.
-
-
-----------
-
-
-In addition to the usual LAMMPS error messages, the KIM library itself
-may generate errors, which should be printed to the screen. In this
-case it is also useful to check the kim.log file for additional error
-information. This file kim.log should be generated in the same
-directory where LAMMPS is running.
-
-To download, build, and install the KIM library on your system, see
-the lib/kim/README file. Once you have done this and built LAMMPS
-with the KIM package installed you can run the example input scripts
-in examples/kim.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since KIM stores the potential parameters.
-Thus, you need to re-specify the pair_style and pair_coeff commands in
-an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the KIM package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This current version of pair_style kim is compatible with the
-kim-api package version 1.6.0 and higher.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lcbop.txt b/doc/_sources/pair_lcbop.txt
deleted file mode 100644
index 2040e5528..000000000
--- a/doc/_sources/pair_lcbop.txt
+++ /dev/null
@@ -1,114 +0,0 @@
-.. index:: pair_style lcbop
-
-pair_style lcbop command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lcbop
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lcbop
- pair_coeff * * ../potentials/C.lcbop C
-
-Description
-"""""""""""
-
-The *lcbop* pair style computes the long-range bond-order potential
-for carbon (LCBOP) of :ref:`(Los and Fasolino) <Los>`. See section II in
-that paper for the analytic equations associated with the potential.
-
-Only a single pair_coeff command is used with the *lcbop* style which
-specifies an LCBOP potential file with parameters for specific
-elements. These are mapped to LAMMPS atom types by specifying N
-additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of LCBOP elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, if your LAMMPS simulation has 4 atom types and you want
-the 1st 3 to be C you would use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * C.lcbop C C C NULL
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first C argument maps LAMMPS atom type 1 to the C element in the
-LCBOP file. If a mapping value is specified as NULL, the mapping is
-not performed. This can be used when a *lcbop* potential is used as
-part of the *hybrid* pair style. The NULL values are placeholders for
-atom types that will be used with other potentials.
-
-The parameters/coefficients for the LCBOP potential as applied to C
-are listed in the C.lcbop file to agree with the original :ref:`(Los and Fasolino) <Los>` paper. Thus the parameters are specific to this
-potential and the way it was fit, so modifying the file should be done
-carefully.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair styles is part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default). See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair potential requires the :doc:`newton <newton>` setting to be
-"on" for pair interactions.
-
-The C.lcbop potential file provided with LAMMPS (see the potentials
-directory) is parameterized for metal :doc:`units <units>`. You can use
-the LCBOP potential with any LAMMPS units, but you would need to
-create your own LCBOP potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_airebo <pair_airebo>`, :doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Los:
-
-
-
-**(Los and Fasolino)** J. H. Los and A. Fasolino, Phys. Rev. B 68, 024107
-(2003).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_line_lj.txt b/doc/_sources/pair_line_lj.txt
deleted file mode 100644
index 559845f65..000000000
--- a/doc/_sources/pair_line_lj.txt
+++ /dev/null
@@ -1,157 +0,0 @@
-.. index:: pair_style line/lj
-
-pair_style line/lj command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style line/lj cutoff
-
-cutoff = global cutoff for interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style line/lj 3.0
- pair_coeff * * 1.0 1.0 1.0 0.8 1.12
- pair_coeff 1 2 1.0 2.0 1.0 1.5 1.12 5.0
- pair_coeff 1 2 1.0 0.0 1.0 1.0 2.5
-
-Description
-"""""""""""
-
-Style *line/lj* treats particles which are line segments as a set of
-small spherical particles that tile the line segment length as
-explained below. Interactions between two line segments, each with N1
-and N2 spherical particles, are calculated as the pairwise sum of
-N1*N2 Lennard-Jones interactions. Interactions between a line segment
-with N spherical particles and a point particle are treated as the
-pairwise sum of N Lennard-Jones interactions. See the :doc:`pair_style lj/cut <pair_lj>` doc page for the definition of Lennard-Jones
-interactions.
-
-The set of non-overlapping spherical sub-particles that represent a
-line segment are generated in the following manner. Their size is a
-function of the line segment length and the specified sub-particle
-size for that particle type. If a line segment has a length L and is
-of type I, then the number of spheres N that represent the segment is
-calculated as N = L/sizeI, rounded up to an integer value. Thus if L
-is not evenly divisibly by sizeI, N is incremented to include one
-extra sphere. The centers of the spheres are spaced equally along the
-line segment. Imagine N+1 equally-space points, which include the 2
-end points of the segment. The sphere centers are halfway between
-each pair of points.
-
-The LJ interaction between 2 spheres on different line segments (or a
-sphere on a line segment and a point particles) is computed with
-sub-particle epsilon, sigma, and cutoff values that are set by the
-pair_coeff command, as described below. If the distance bewteen the 2
-spheres is greater than the sub-particle cutoff, there is no
-interaction. This means that some pairs of sub-particles on 2 line
-segments may interact, but others may not.
-
-For purposes of creating the neighbor list for pairs of interacting
-line segments or lines/point particles, a regular particle-particle
-cutoff is used, as defined by the *cutoff* setting above in the
-pair_style command or overridden with an optional argument in the
-pair_coeff command for a type pair as discussed below. The distance
-between the centers of 2 line segments, or the center of a line
-segment and a point particle, must be less than this distance (plus
-the neighbor skin; see the `neighbor <neighbor>`_ command), for the pair
-of particles to be included in the neighbor list.
-
-.. note::
-
- This means that a too-short value for the *cutoff* setting can
- exclude a pair of particles from the neighbor list even if pairs of
- their sub-particle spheres would interact, based on the sub-particle
- cutoff specified in the pair_coeff command. E.g. sub-particles at the
- ends of the line segments that are close to each other. Which may not
- be what you want, since it means the ends of 2 line segments could
- pass through each other. It is up to you to specify a *cutoff*
- setting that is consistent with the length of the line segments you
- are using and the sub-particle cutoff settings.
-
-For style *line/lj*, the following coefficients must be defined for
-each pair of atom types via the :doc:`pair_coeff <pair_coeff>` command
-as in the examples above, or in the data file or restart files read by
-the :doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* sizeI (distance units)
-* sizeJ (distance units)
-* epsilon (energy units)
-* sigma (distance units)
-* subcutoff (distance units)
-* cutoff (distance units)
-
-The *sizeI* and *sizeJ* coefficients are the sub-particle sizes for
-line particles of type I and type J. They are used to define the N
-sub-particles per segment as described above. These coefficients are
-actually stored on a per-type basis. Thus if there are multiple
-pair_coeff commmands that involve type I, as either the first or
-second atom type, you should use consistent values for sizeI or sizeJ
-in all of them. If you do not do this, the last value specified for
-sizeI will apply to all segments of type I. If typeI or typeJ refers
-to point particles, the corresponding sizeI or sizeJ is ignored; it
-can be set to 0.0.
-
-The *epsilon*, *sigma*, and *subcutoff* coefficients are used to
-compute an LJ interactions between a pair of sub-particles on 2 line
-segments (of type I and J), or between a sub particle/point particle
-pair. As discussed above, the *subcutoff* and *cutoff* params are
-different. The latter is only used for building the neighbor list
-when the distance between centers of two line segments or one segment
-and a point particle is calculated.
-
-The *cutoff* coefficient is optional. If not specified, the global
-cutoff is used.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, coeffiecients must be specified.
-No default mixing rules are used.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the ASPHERE package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <2_3>` section for more info.
-
-Defining particles to be line segments so they participate in
-line/line or line/particle interactions requires the use the
-:doc:`atom_style line <atom_style>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style tri/lj <pair_tri_lj>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_list.txt b/doc/_sources/pair_list.txt
deleted file mode 100644
index 6676a300a..000000000
--- a/doc/_sources/pair_list.txt
+++ /dev/null
@@ -1,168 +0,0 @@
-.. index:: pair_style list
-
-pair_style list command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style list listfile cutoff keyword
-
-* listfile = name of file with list of pairwise interactions
-* cutoff = global cutoff (distance units)
-* keyword = optional flag *nocheck* or *check* (default is *check*)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style list restraints.txt 200.0
- pair_coeff * *
-
-.. parsed-literal::
-
- pair_style hybrid/overlay lj/cut 1.1225 list pair_list.txt 300.0
- pair_coeff * * lj/cut 1.0 1.0
- pair_coeff 3* 3* list
-
-Description
-"""""""""""
-
-Style *list* computes interactions between explicitly listed pairs of
-atoms with the option to select functional form and parameters for
-each individual pair. Because the parameters are set in the list
-file, the pair_coeff command has no parameters (but still needs to be
-provided). The *check* and *nocheck* keywords enable/disable a test
-that checks whether all listed bonds were present and computed.
-
-This pair style can be thought of as a hybrid between bonded,
-non-bonded, and restraint interactions. It will typically be used as
-an additional interaction within the *hybrid/overlay* pair style. It
-currently supports three interaction styles: a 12-6 Lennard-Jones, a
-Morse and a harmonic potential.
-
-The format of the list file is as follows:
-
-* one line per pair of atoms
-* empty lines will be ignored
-* comment text starts with a '#' character
-* line syntax: *ID1 ID2 style coeffs cutoff*
-.. parsed-literal::
-
- ID1 = atom ID of first atom
- ID2 = atom ID of second atom
- style = style of interaction
- coeffs = list of coeffs
- cutoff = cutoff for interaction (optional)
-
-
-
-The cutoff parameter is optional. If not specified, the global cutoff
-is used.
-
-Here is an example file:
-
-.. parsed-literal::
-
- # this is a comment
-
-.. parsed-literal::
-
- 15 259 lj126 1.0 1.0 50.0
- 15 603 morse 10.0 1.2 2.0 10.0 # and another comment
- 18 470 harmonic 50.0 1.2 5.0
-
-The style *lj126* computes pairwise interactions with the formula
-
-.. image:: Eqs/pair_lj.jpg
- :align: center
-
-and the coefficients:
-
-* epsilon (energy units)
-* sigma (distance units)
-
-The style *morse* computes pairwise interactions with the formula
-
-.. image:: Eqs/pair_morse.jpg
- :align: center
-
-and the coefficients:
-
-* D0 (energy units)
-* alpha (1/distance units)
-* r0 (distance units)
-
-The style *harmonic* computes pairwise interactions with the formula
-
-.. image:: Eqs/bond_harmonic.jpg
- :align: center
-
-and the coefficients:
-
-* K (energy units)
-* r0 (distance units)
-
-Note that the usual 1/2 factor is included in K.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support mixing since all parameters are
-explicit for each pair.
-
-The :doc:`pair_modify <pair_modify>` shift option is supported by this
-pair style.
-
-The :doc:`pair_modify <pair_modify>` table and tail options are not
-relevant for this pair style.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style does not use a neighbor list and instead identifies
-atoms by their IDs. This has two consequences: 1) The cutoff has to be
-chosen sufficiently large, so that the second atom of a pair has to be
-a ghost atom on the same node on which the first atom is local;
-otherwise the interaction will be skipped. You can use the *check*
-option to detect, if interactions are missing. 2) Unlike other pair
-styles in LAMMPS, an atom I will not interact with multiple images of
-atom J (assuming the images are within the cutoff distance), but only
-with the nearest image.
-
-This style is part of the USER-MISC package. It is only enabled if
-LAMMPS is build with that package. See the :ref:`Making of LAMMPS <3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`,
-:doc:`pair_style hybrid/overlay <pair_hybrid>`,
-:doc:`pair_style lj/cut <pair_lj>`,
-:doc:`pair_style morse <pair_morse>`,
-:doc:`bond_style harmonic <bond_harmonic>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj.txt b/doc/_sources/pair_lj.txt
deleted file mode 100644
index 5727e908b..000000000
--- a/doc/_sources/pair_lj.txt
+++ /dev/null
@@ -1,434 +0,0 @@
-.. index:: pair_style lj/cut
-
-pair_style lj/cut command
-=========================
-
-pair_style lj/cut/cuda command
-==============================
-
-pair_style lj/cut/gpu command
-=============================
-
-pair_style lj/cut/intel command
-===============================
-
-pair_style lj/cut/kk command
-============================
-
-pair_style lj/cut/opt command
-=============================
-
-pair_style lj/cut/omp command
-=============================
-
-pair_style lj/cut/coul/cut command
-==================================
-
-pair_style lj/cut/coul/cut/cuda command
-=======================================
-
-pair_style lj/cut/coul/cut/gpu command
-======================================
-
-pair_style lj/cut/coul/cut/omp command
-======================================
-
-pair_style lj/cut/coul/debye command
-====================================
-
-pair_style lj/cut/coul/debye/cuda command
-=========================================
-
-pair_style lj/cut/coul/debye/gpu command
-========================================
-
-pair_style lj/cut/coul/debye/kk command
-=======================================
-
-pair_style lj/cut/coul/debye/omp command
-========================================
-
-pair_style lj/cut/coul/dsf command
-==================================
-
-pair_style lj/cut/coul/dsf/gpu command
-======================================
-
-pair_style lj/cut/coul/dsf/kk command
-=====================================
-
-pair_style lj/cut/coul/dsf/omp command
-======================================
-
-pair_style lj/cut/coul/long command
-===================================
-
-pair_style lj/cut/coul/long/cs command
-======================================
-
-pair_style lj/cut/coul/long/cuda command
-========================================
-
-pair_style lj/cut/coul/long/gpu command
-=======================================
-
-pair_style lj/cut/coul/long/intel command
-=========================================
-
-pair_style lj/cut/coul/long/opt command
-=======================================
-
-pair_style lj/cut/coul/long/omp command
-=======================================
-
-pair_style lj/cut/coul/msm command
-==================================
-
-pair_style lj/cut/coul/msm/gpu command
-======================================
-
-pair_style lj/cut/coul/msm/omp command
-======================================
-
-pair_style lj/cut/tip4p/cut command
-===================================
-
-pair_style lj/cut/tip4p/cut/omp command
-=======================================
-
-pair_style lj/cut/tip4p/long command
-====================================
-
-pair_style lj/cut/tip4p/long/omp command
-========================================
-
-pair_style lj/cut/tip4p/long/opt command
-========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/cut* or *lj/cut/coul/cut* or *lj/cut/coul/debye* or *lj/cut/coul/dsf* or *lj/cut/coul/long* or *lj/cut/coul/long/cs* or *lj/cut/coul/msm* or *lj/cut/tip4p/long*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *lj/cut* args = cutoff
- cutoff = global cutoff for Lennard Jones interactions (distance units)
- *lj/cut/coul/cut* args = cutoff (cutoff2)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/cut/coul/debye* args = kappa cutoff (cutoff2)
- kappa = inverse of the Debye length (inverse distance units)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/cut/coul/dsf* args = alpha cutoff (cutoff2)
- alpha = damping parameter (inverse distance units)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (distance units)
- *lj/cut/coul/long* args = cutoff (cutoff2)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/cut/coul/msm* args = cutoff (cutoff2)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/cut/tip4p/cut* args = otype htype btype atype qdist cutoff (cutoff2)
- otype,htype = atom types for TIP4P O and H
- btype,atype = bond and angle types for TIP4P waters
- qdist = distance from O atom to massless charge (distance units)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/cut/tip4p/long* args = otype htype btype atype qdist cutoff (cutoff2)
- otype,htype = atom types for TIP4P O and H
- btype,atype = bond and angle types for TIP4P waters
- qdist = distance from O atom to massless charge (distance units)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/cut 2.5
- pair_coeff * * 1 1
- pair_coeff 1 1 1 1.1 2.8
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/cut 10.0
- pair_style lj/cut/coul/cut 10.0 8.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
- pair_coeff 1 1 100.0 3.5 9.0 9.0
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/debye 1.5 3.0
- pair_style lj/cut/coul/debye 1.5 2.5 5.0
- pair_coeff * * 1.0 1.0
- pair_coeff 1 1 1.0 1.5 2.5
- pair_coeff 1 1 1.0 1.5 2.5 5.0
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/dsf 0.05 2.5 10.0
- pair_coeff * * 1.0 1.0
- pair_coeff 1 1 1.0 1.0 2.5
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/long 10.0
- pair_style lj/cut/coul/long/cs 10.0
- pair_style lj/cut/coul/long 10.0 8.0
- pair_style lj/cut/coul/long/cs 10.0 8.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/msm 10.0
- pair_style lj/cut/coul/msm 10.0 8.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
-
-.. parsed-literal::
-
- pair_style lj/cut/tip4p/cut 1 2 7 8 0.15 12.0
- pair_style lj/cut/tip4p/cut 1 2 7 8 0.15 12.0 10.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
-
-.. parsed-literal::
-
- pair_style lj/cut/tip4p/long 1 2 7 8 0.15 12.0
- pair_style lj/cut/tip4p/long 1 2 7 8 0.15 12.0 10.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
-
-Description
-"""""""""""
-
-The *lj/cut* styles compute the standard 12/6 Lennard-Jones potential,
-given by
-
-.. image:: Eqs/pair_lj.jpg
- :align: center
-
-Rc is the cutoff.
-
-Style *lj/cut/coul/cut* adds a Coulombic pairwise interaction given by
-
-.. image:: Eqs/pair_coulomb.jpg
- :align: center
-
-where C is an energy-conversion constant, Qi and Qj are the charges on
-the 2 atoms, and epsilon is the dielectric constant which can be set
-by the :doc:`dielectric <dielectric>` command. If one cutoff is
-specified in the pair_style command, it is used for both the LJ and
-Coulombic terms. If two cutoffs are specified, they are used as
-cutoffs for the LJ and Coulombic terms respectively.
-
-Style *lj/cut/coul/debye* adds an additional exp() damping factor
-to the Coulombic term, given by
-
-.. image:: Eqs/pair_debye.jpg
- :align: center
-
-where kappa is the inverse of the Debye length. This potential is
-another way to mimic the screening effect of a polar solvent.
-
-Style *lj/cut/coul/dsf* computes the Coulombic term via the damped
-shifted force model described in :ref:`Fennell <Fennell>`, given by:
-
-.. image:: Eqs/pair_coul_dsf.jpg
- :align: center
-
-where *alpha* is the damping parameter and erfc() is the complementary
-error-function. This potential is essentially a short-range,
-spherically-truncated, charge-neutralized, shifted, pairwise *1/r*
-summation. The potential is based on Wolf summation, proposed as an
-alternative to Ewald summation for condensed phase systems where
-charge screening causes electrostatic interactions to become
-effectively short-ranged. In order for the electrostatic sum to be
-absolutely convergent, charge neutralization within the cutoff radius
-is enforced by shifting the potential through placement of image
-charges on the cutoff sphere. Convergence can often be improved by
-setting *alpha* to a small non-zero value.
-
-Styles *lj/cut/coul/long* and *lj/cut/coul/msm* compute the same
-Coulombic interactions as style *lj/cut/coul/cut* except that an
-additional damping factor is applied to the Coulombic term so it can
-be used in conjunction with the :doc:`kspace_style <kspace_style>`
-command and its *ewald* or *pppm* option. The Coulombic cutoff
-specified for this style means that pairwise interactions within this
-distance are computed directly; interactions outside that distance are
-computed in reciprocal space.
-
-Style *lj/cut/coul/long/cs* is identical to *lj/cut/coul/long* except
-that a term is added for the :ref:`core/shell model <howto_25>` to allow charges on core and shell
-particles to be separated by r = 0.0.
-
-Styles *lj/cut/tip4p/cut* and *lj/cut/tip4p/long* implement the TIP4P
-water model of :ref:`(Jorgensen) <Jorgensen>`, which introduces a massless
-site located a short distance away from the oxygen atom along the
-bisector of the HOH angle. The atomic types of the oxygen and
-hydrogen atoms, the bond and angle types for OH and HOH interactions,
-and the distance to the massless charge site are specified as
-pair_style arguments. Style *lj/cut/tip4p/cut* uses a cutoff for
-Coulomb interactions; style *lj/cut/tip4p/long* is for use with a
-long-range Coulombic solver (Ewald or PPPM).
-
-.. note::
-
- For each TIP4P water molecule in your system, the atom IDs for
- the O and 2 H atoms must be consecutive, with the O atom first. This
- is to enable LAMMPS to "find" the 2 H atoms associated with each O
- atom. For example, if the atom ID of an O atom in a TIP4P water
- molecule is 500, then its 2 H atoms must have IDs 501 and 502.
-
-See the :ref:`howto section <howto_8>` for more
-information on how to use the TIP4P pair styles and lists of
-parameters to set. Note that the neighobr list cutoff for Coulomb
-interactions is effectively extended by a distance 2*qdist when using
-the TIP4P pair style, to account for the offset distance of the
-fictitious charges on O atoms in water molecules. Thus it is
-typically best in an efficiency sense to use a LJ cutoff >= Coulomb
-cutoff + 2*qdist, to shrink the size of the neighbor list. This leads
-to slightly larger cost for the long-range calculation, so you can
-test the trade-off for your model.
-
-For all of the *lj/cut* pair styles, the following coefficients must
-be defined for each pair of atoms types via the
-:doc:`pair_coeff <pair_coeff>` command as in the examples above, or in
-the data file or restart files read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands, or by mixing as
-described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff1 (distance units)
-* cutoff2 (distance units)
-
-Note that sigma is defined in the LJ formula as the zero-crossing
-distance for the potential, not as the energy minimum at 2^(1/6)
-sigma.
-
-The latter 2 coefficients are optional. If not specified, the global
-LJ and Coulombic cutoffs specified in the pair_style command are used.
-If only one cutoff is specified, it is used as the cutoff for both LJ
-and Coulombic interactions for this type pair. If both coefficients
-are specified, they are used as the LJ and Coulombic cutoffs for this
-type pair. You cannot specify 2 cutoffs for style *lj/cut*, since it
-has no Coulombic terms.
-
-For *lj/cut/coul/long* and *lj/cut/coul/msm* and *lj/cut/tip4p/cut*
-and *lj/cut/tip4p/long* only the LJ cutoff can be specified since a
-Coulombic cutoff cannot be specified for an individual I,J type pair.
-All type pairs use the same global Coulombic cutoff specified in the
-pair_style command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/cut pair styles can be mixed.
-The default mix value is *geometric*. See the "pair_modify" command
-for details.
-
-All of the *lj/cut* pair styles support the
-:doc:`pair_modify <pair_modify>` shift option for the energy of the
-Lennard-Jones portion of the pair interaction.
-
-The *lj/cut/coul/long* and *lj/cut/tip4p/long* pair styles support the
-:doc:`pair_modify <pair_modify>` table option since they can tabulate
-the short-range portion of the long-range Coulombic interaction.
-
-All of the *lj/cut* pair styles support the
-:doc:`pair_modify <pair_modify>` tail option for adding a long-range
-tail correction to the energy and pressure for the Lennard-Jones
-portion of the pair interaction.
-
-All of the *lj/cut* pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do
-not need to be specified in an input script that reads a restart file.
-
-The *lj/cut* and *lj/cut/coul/long* pair styles support the use of the
-*inner*, *middle*, and *outer* keywords of the :doc:`run_style respa <run_style>` command, meaning the pairwise forces can be
-partitioned by distance at different levels of the rRESPA hierarchy.
-The other styles only support the *pair* keyword of run_style respa.
-See the :doc:`run_style <run_style>` command for details.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *lj/cut/coul/long* and *lj/cut/tip4p/long* styles are part of the
-KSPACE package. The *lj/cut/tip4p/cut* style is part of the MOLECULE
-package. These styles are only enabled if LAMMPS was built with those
-packages. See the :ref:`Making LAMMPS <start_3>` section
-for more info. Note that the KSPACE and MOLECULE packages are
-installed by default.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Jorgensen:
-
-
-
-**(Jorgensen)** Jorgensen, Chandrasekhar, Madura, Impey, Klein, J Chem
-Phys, 79, 926 (1983).
-
-.. _Fennell:
-
-
-
-**(Fennell)** C. J. Fennell, J. D. Gezelter, J Chem Phys, 124,
-234104 (2006).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj96.txt b/doc/_sources/pair_lj96.txt
deleted file mode 100644
index 69fd97d31..000000000
--- a/doc/_sources/pair_lj96.txt
+++ /dev/null
@@ -1,128 +0,0 @@
-.. index:: pair_style lj96/cut
-
-pair_style lj96/cut command
-===========================
-
-pair_style lj96/cut/cuda command
-================================
-
-pair_style lj96/cut/gpu command
-===============================
-
-pair_style lj96/cut/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lj96/cut cutoff
-
-* cutoff = global cutoff for lj96/cut interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj96/cut 2.5
- pair_coeff * * 1.0 1.0 4.0
- pair_coeff 1 1 1.0 1.0
-
-Description
-"""""""""""
-
-The *lj96/cut* style compute a 9/6 Lennard-Jones potential, instead
-of the standard 12/6 potential, given by
-
-.. image:: Eqs/pair_lj96.jpg
- :align: center
-
-Rc is the cutoff.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global LJ
-cutoff specified in the pair_style command is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/cut pair styles can be mixed.
-The default mix value is *geometric*. See the "pair_modify" command
-for details.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` tail
-option for adding a long-range tail correction to the energy and
-pressure of the pair interaction.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style supports the use of the *inner*, *middle*, and *outer*
-keywords of the :doc:`run_style respa <run_style>` command, meaning the
-pairwise forces can be partitioned by distance at different levels of
-the rRESPA hierarchy. See the :doc:`run_style <run_style>` command for
-details.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj_cubic.txt b/doc/_sources/pair_lj_cubic.txt
deleted file mode 100644
index ef0c1b0cc..000000000
--- a/doc/_sources/pair_lj_cubic.txt
+++ /dev/null
@@ -1,155 +0,0 @@
-.. index:: pair_style lj/cubic
-
-pair_style lj/cubic command
-===========================
-
-pair_style lj/cubic/gpu command
-===============================
-
-pair_style lj/cubic/omp command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lj/cubic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/cubic
- pair_coeff * * 1.0 0.8908987
-
-Description
-"""""""""""
-
-The *lj/cubic* style computes a truncated LJ interaction potential
-whose energy and force are continuous everywhere. Inside the
-inflection point the interaction is identical to the standard 12/6
-:doc:`Lennard-Jones <pair_lj>` potential. The LJ function outside the
-inflection point is replaced with a cubic function of distance. The
-energy, force, and second derivative are continuous at the inflection
-point. The cubic coefficient A3 is chosen so that both energy and
-force go to zero at the cutoff distance. Outside the cutoff distance
-the energy and force are zero.
-
-.. image:: Eqs/pair_lj_cubic.jpg
- :align: center
-
-The location of the inflection point rs is defined
-by the LJ diameter, rs/sigma = (26/7)^1/6. The cutoff distance
-is defined by rc/rs = 67/48 or rc/sigma = 1.737....
-The analytic expression for the
-the cubic coefficient
-A3*rmin^3/epsilon = 27.93... is given in the paper by
-Holian and Ravelo :ref:`(Holian) <Holian>`.
-
-This potential is commonly used to study the shock mechanics of FCC
-solids, as in Ravelo et al. :ref:`(Ravelo) <Ravelo>`.
-
-The following coefficients must be defined for each pair of atom types
-via the :doc:`pair_coeff <pair_coeff>` command as in the example above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-
-Note that sigma is defined in the LJ formula as the zero-crossing
-distance for the potential, not as the energy minimum, which is
-located at rmin = 2^(1/6)*sigma. In the above example, sigma =
-0.8908987, so rmin = 1.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/cut pair styles can be mixed.
-The default mix value is *geometric*. See the "pair_modify" command
-for details.
-
-The lj/cubic pair style does not support the
-:doc:`pair_modify <pair_modify>` shift option,
-since pair interaction is already smoothed to 0.0 at the
-cutoff.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-The lj/cubic pair style does not support the
-:doc:`pair_modify <pair_modify>` tail option for adding long-range tail
-corrections to energy and pressure, since there are no corrections for
-a potential that goes to 0.0 at the cutoff.
-
-The lj/cubic pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do
-not need to be specified in an input script that reads a restart file.
-
-The lj/cubic pair style can only be used via the *pair*
-keyword of the :doc:`run_style respa <run_style>` command. It does not
-support the *inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Holian:
-
-
-
-.. _Ravelo:
-
-**(Holian)** Holian and Ravelo, Phys Rev B, 51, 11275 (1995).
-
-
-**(Ravelo)** Ravelo, Holian, Germann and Lomdahl, Phys Rev B, 70, 014103 (2004).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj_expand.txt b/doc/_sources/pair_lj_expand.txt
deleted file mode 100644
index 50e8ce3d0..000000000
--- a/doc/_sources/pair_lj_expand.txt
+++ /dev/null
@@ -1,132 +0,0 @@
-.. index:: pair_style lj/expand
-
-pair_style lj/expand command
-============================
-
-pair_style lj/expand/cuda command
-=================================
-
-pair_style lj/expand/gpu command
-================================
-
-pair_style lj/expand/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lj/expand cutoff
-
-* cutoff = global cutoff for lj/expand interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/expand 2.5
- pair_coeff * * 1.0 1.0 0.5
- pair_coeff 1 1 1.0 1.0 -0.2 2.0
-
-Description
-"""""""""""
-
-Style *lj/expand* computes a LJ interaction with a distance shifted by
-delta which can be useful when particles are of different sizes, since
-it is different that using different sigma values in a standard LJ
-formula:
-
-.. image:: Eqs/pair_lj_expand.jpg
- :align: center
-
-Rc is the cutoff which does not include the delta distance. I.e. the
-actual force cutoff is the sum of cutoff + delta.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* delta (distance units)
-* cutoff (distance units)
-
-The delta values can be positive or negative. The last coefficient is
-optional. If not specified, the global LJ cutoff is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon, sigma, and shift
-coefficients and cutoff distance for this pair style can be mixed.
-Shift is always mixed via an *arithmetic* rule. The other
-coefficients are mixed according to the pair_modify mix value. The
-default mix value is *geometric*. See the "pair_modify" command for
-details.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` tail
-option for adding a long-range tail correction to the energy and
-pressure of the pair interaction.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj_long.txt b/doc/_sources/pair_lj_long.txt
deleted file mode 100644
index fe0875435..000000000
--- a/doc/_sources/pair_lj_long.txt
+++ /dev/null
@@ -1,257 +0,0 @@
-.. index:: pair_style lj/long/coul/long
-
-pair_style lj/long/coul/long command
-====================================
-
-pair_style lj/long/coul/long/omp command
-========================================
-
-pair_style lj/long/coul/long/opt command
-========================================
-
-pair_style lj/long/tip4p/long command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/long/coul/long* or *lj/long/tip4p/long*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *lj/long/coul/long* args = flag_lj flag_coul cutoff (cutoff2)
- flag_lj = *long* or *cut* or *off*
- *long* = use Kspace long-range summation for dispersion 1/r^6 term
- *cut* = use a cutoff on dispersion 1/r^6 term
- *off* = omit disperion 1/r^6 term entirely
- flag_coul = *long* or *off*
- *long* = use Kspace long-range summation for Coulombic 1/r term
- *off* = omit Coulombic term
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/long/tip4p/long* args = flag_lj flag_coul otype htype btype atype qdist cutoff (cutoff2)
- flag_lj = *long* or *cut*
- *long* = use Kspace long-range summation for dispersion 1/r^6 term
- *cut* = use a cutoff
- flag_coul = *long* or *off*
- *long* = use Kspace long-range summation for Coulombic 1/r term
- *off* = omit Coulombic term
- otype,htype = atom types for TIP4P O and H
- btype,atype = bond and angle types for TIP4P waters
- qdist = distance from O atom to massless charge (distance units)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/long/coul/long cut off 2.5
- pair_style lj/long/coul/long cut long 2.5 4.0
- pair_style lj/long/coul/long long long 2.5 4.0
- pair_coeff * * 1 1
- pair_coeff 1 1 1 3 4
-
-.. parsed-literal::
-
- pair_style lj/long/tip4p/long long long 1 2 7 8 0.15 12.0
- pair_style lj/long/tip4p/long long long 1 2 7 8 0.15 12.0 10.0
- pair_coeff * * 100.0 3.0
- pair_coeff 1 1 100.0 3.5 9.0
-
-Description
-"""""""""""
-
-Style *lj/long/coul/long* computes the standard 12/6 Lennard-Jones and
-Coulombic potentials, given by
-
-.. image:: Eqs/pair_lj.jpg
- :align: center
-
-.. image:: Eqs/pair_coulomb.jpg
- :align: center
-
-where C is an energy-conversion constant, Qi and Qj are the charges on
-the 2 atoms, epsilon is the dielectric constant which can be set by
-the :doc:`dielectric <dielectric>` command, and Rc is the cutoff. If
-one cutoff is specified in the pair_style command, it is used for both
-the LJ and Coulombic terms. If two cutoffs are specified, they are
-used as cutoffs for the LJ and Coulombic terms respectively.
-
-The purpose of this pair style is to capture long-range interactions
-resulting from both attractive 1/r^6 Lennard-Jones and Coulombic 1/r
-interactions. This is done by use of the *flag_lj* and *flag_coul*
-settings. The :ref:`In 't Veld <Veld>` paper has more details on when it is
-appropriate to include long-range 1/r^6 interactions, using this
-potential.
-
-Style *lj/long/tip4p/long* implements the TIP4P water model of
-:ref:`(Jorgensen) <Jorgensen>`, which introduces a massless site located a
-short distance away from the oxygen atom along the bisector of the HOH
-angle. The atomic types of the oxygen and hydrogen atoms, the bond
-and angle types for OH and HOH interactions, and the distance to the
-massless charge site are specified as pair_style arguments.
-
-.. note::
-
- For each TIP4P water molecule in your system, the atom IDs for
- the O and 2 H atoms must be consecutive, with the O atom first. This
- is to enable LAMMPS to "find" the 2 H atoms associated with each O
- atom. For example, if the atom ID of an O atom in a TIP4P water
- molecule is 500, then its 2 H atoms must have IDs 501 and 502.
-
-See the :ref:`howto section <howto_8>` for more
-information on how to use the TIP4P pair style. Note that the
-neighobr list cutoff for Coulomb interactions is effectively extended
-by a distance 2*qdist when using the TIP4P pair style, to account for
-the offset distance of the fictitious charges on O atoms in water
-molecules. Thus it is typically best in an efficiency sense to use a
-LJ cutoff >= Coulomb cutoff + 2*qdist, to shrink the size of the
-neighbor list. This leads to slightly larger cost for the long-range
-calculation, so you can test the trade-off for your model.
-
-If *flag_lj* is set to *long*, no cutoff is used on the LJ 1/r^6
-dispersion term. The long-range portion can be calculated by using
-the :doc:`kspace_style ewald/disp or pppm/disp <kspace_style>` commands.
-The specified LJ cutoff then determines which portion of the LJ
-interactions are computed directly by the pair potential versus which
-part is computed in reciprocal space via the Kspace style. If
-*flag_lj* is set to *cut*, the LJ interactions are simply cutoff, as
-with :doc:`pair_style lj/cut <pair_lj>`.
-
-If *flag_coul* is set to *long*, no cutoff is used on the Coulombic
-interactions. The long-range portion can calculated by using any of
-several :doc:`kspace_style <kspace_style>` command options such as
-*pppm* or *ewald*. Note that if *flag_lj* is also set to long, then
-the *ewald/disp* or *pppm/disp* Kspace style needs to be used to
-perform the long-range calculations for both the LJ and Coulombic
-interactions. If *flag_coul* is set to *off*, Coulombic interactions
-are not computed.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff1 (distance units)
-* cutoff2 (distance units)
-
-Note that sigma is defined in the LJ formula as the zero-crossing
-distance for the potential, not as the energy minimum at 2^(1/6)
-sigma.
-
-The latter 2 coefficients are optional. If not specified, the global
-LJ and Coulombic cutoffs specified in the pair_style command are used.
-If only one cutoff is specified, it is used as the cutoff for both LJ
-and Coulombic interactions for this type pair. If both coefficients
-are specified, they are used as the LJ and Coulombic cutoffs for this
-type pair.
-
-Note that if you are using *flag_lj* set to *long*, you
-cannot specify a LJ cutoff for an atom type pair, since only one
-global LJ cutoff is allowed. Similarly, if you are using *flag_coul*
-set to *long*, you cannot specify a Coulombic cutoff for an atom type
-pair, since only one global Coulombic cutoff is allowed.
-
-For *lj/long/tip4p/long* only the LJ cutoff can be specified
-since a Coulombic cutoff cannot be specified for an individual I,J
-type pair. All type pairs use the same global Coulombic cutoff
-specified in the pair_style command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/long pair styles can be mixed.
-The default mix value is *geometric*. See the "pair_modify" command
-for details.
-
-These pair styles support the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the Lennard-Jones portion of the pair
-interaction, assuming *flag_lj* is *cut*.
-
-These pair styles support the :doc:`pair_modify <pair_modify>` table and
-table/disp options since they can tabulate the short-range portion of
-the long-range Coulombic and dispersion interactions.
-
-Thes pair styles do not support the :doc:`pair_modify <pair_modify>`
-tail option for adding a long-range tail correction to the
-Lennard-Jones portion of the energy and pressure.
-
-These pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-The pair lj/long/coul/long styles support the use of the *inner*,
-*middle*, and *outer* keywords of the :doc:`run_style respa <run_style>`
-command, meaning the pairwise forces can be partitioned by distance at
-different levels of the rRESPA hierarchy. See the
-:doc:`run_style <run_style>` command for details.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These styles are part of the KSPACE package. They are only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info. Note that
-the KSPACE package is installed by default.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Veld:
-
-
-
-**(In 't Veld)** In 't Veld, Ismail, Grest, J Chem Phys (accepted) (2007).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj_sf.txt b/doc/_sources/pair_lj_sf.txt
deleted file mode 100644
index 19ac4fd6a..000000000
--- a/doc/_sources/pair_lj_sf.txt
+++ /dev/null
@@ -1,134 +0,0 @@
-.. index:: pair_style lj/sf
-
-pair_style lj/sf command
-========================
-
-pair_style lj/sf/omp command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lj/sf cutoff
-
-* cutoff = global cutoff for Lennard-Jones interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/sf 2.5
- pair_coeff * * 1.0 1.0
- pair_coeff 1 1 1.0 1.0 3.0
-
-Description
-"""""""""""
-
-Style *lj/sf* computes a truncated and force-shifted LJ interaction
-(Shifted Force Lennard-Jones), so that both the potential and the
-force go continuously to zero at the cutoff :ref:`(Toxvaerd) <Toxvaerd>`:
-
-.. image:: Eqs/pair_lj_sf.jpg
- :align: center
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global
-LJ cutoff specified in the pair_style command is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma
-coefficients and cutoff distance for this pair style can be mixed.
-Rin is a cutoff value and is mixed like the cutoff. The
-default mix value is *geometric*. See the "pair_modify" command for
-details.
-
-The :doc:`pair_modify <pair_modify>` shift option is not relevant for
-this pair style, since the pair interaction goes to 0.0 at the cutoff.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure, since the energy of the pair interaction is smoothed to 0.0
-at the cutoff.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-MISC package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Toxvaerd:
-
-
-
-**(Toxvaerd)** Toxvaerd, Dyre, J Chem Phys, 134, 081102 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj_smooth.txt b/doc/_sources/pair_lj_smooth.txt
deleted file mode 100644
index 6d73d2bb2..000000000
--- a/doc/_sources/pair_lj_smooth.txt
+++ /dev/null
@@ -1,142 +0,0 @@
-.. index:: pair_style lj/smooth
-
-pair_style lj/smooth command
-============================
-
-pair_style lj/smooth/cuda command
-=================================
-
-pair_style lj/smooth/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lj/smooth Rin Rc
-
-* Rin = inner cutoff beyond which force smoothing will be applied (distance units)
-* Rc = outer cutoff for lj/smooth interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/smooth 8.0 10.0
- pair_coeff * * 10.0 1.5
- pair_coeff 1 1 20.0 1.3 7.0 9.0
-
-Description
-"""""""""""
-
-Style *lj/smooth* computes a LJ interaction with a force smoothing
-applied between the inner and outer cutoff.
-
-.. image:: Eqs/pair_lj_smooth.jpg
- :align: center
-
-The polynomial coefficients C1, C2, C3, C4 are computed by LAMMPS to
-cause the force to vary smoothly from the inner cutoff Rin to the
-outer cutoff Rc.
-
-At the inner cutoff the force and its 1st derivative
-will match the unsmoothed LJ formula. At the outer cutoff the force
-and its 1st derivative will be 0.0. The inner cutoff cannot be 0.0.
-
-.. note::
-
- this force smoothing causes the energy to be discontinuous both
- in its values and 1st derivative. This can lead to poor energy
- conservation and may require the use of a thermostat. Plot the energy
- and force resulting from this formula via the
- :doc:`pair_write <pair_write>` command to see the effect.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* innner (distance units)
-* outer (distance units)
-
-The last 2 coefficients are optional inner and outer cutoffs. If not
-specified, the global values for Rin and Rc are used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon, sigma, Rin
-coefficients and the cutoff distance for this pair style can be mixed.
-Rin is a cutoff value and is mixed like the cutoff. The other
-coefficients are mixed according to the pair_modify mix option. The
-default mix value is *geometric*. See the "pair_modify" command for
-details.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure, since the energy of the pair interaction is smoothed to 0.0
-at the cutoff.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair lj/smooth/linear <pair_lj_smooth_linear>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj_smooth_linear.txt b/doc/_sources/pair_lj_smooth_linear.txt
deleted file mode 100644
index ba34eedad..000000000
--- a/doc/_sources/pair_lj_smooth_linear.txt
+++ /dev/null
@@ -1,121 +0,0 @@
-.. index:: pair_style lj/smooth/linear
-
-pair_style lj/smooth/linear command
-===================================
-
-pair_style lj/smooth/linear/omp command
-=======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style lj/smooth/linear Rc
-
-* Rc = cutoff for lj/smooth/linear interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/smooth/linear 5.456108274435118
- pair_coeff * * 0.7242785984051078 2.598146797350056
- pair_coeff 1 1 20.0 1.3 9.0
-
-Description
-"""""""""""
-
-Style *lj/smooth/linear* computes a LJ interaction that combines the
-standard 12/6 Lennard-Jones function and subtracts a linear term that
-includes the cutoff distance Rc, as in this formula:
-
-.. image:: Eqs/pair_lj_smooth_linear.jpg
- :align: center
-
-At the cutoff Rc, the energy and force (its 1st derivative) will be 0.0.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global value
-for Rc is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance can be mixed. The default mix value is geometric.
-See the "pair_modify" command for details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant for
-this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure, since the energy of the pair interaction is smoothed to 0.0
-at the cutoff.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair lj/smooth <pair_lj_smooth>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lj_soft.txt b/doc/_sources/pair_lj_soft.txt
deleted file mode 100644
index 348b67c10..000000000
--- a/doc/_sources/pair_lj_soft.txt
+++ /dev/null
@@ -1,345 +0,0 @@
-.. index:: pair_style lj/cut/soft
-
-pair_style lj/cut/soft command
-==============================
-
-pair_style lj/cut/soft/omp command
-==================================
-
-pair_style lj/cut/coul/cut/soft command
-=======================================
-
-pair_style lj/cut/coul/cut/soft/omp command
-===========================================
-
-pair_style lj/cut/coul/long/soft command
-========================================
-
-pair_style lj/cut/coul/long/soft/omp command
-============================================
-
-pair_style lj/cut/tip4p/long/soft command
-=========================================
-
-pair_style lj/cut/tip4p/long/soft/omp command
-=============================================
-
-pair_style lj/charmm/coul/long/soft command
-===========================================
-
-pair_style lj/charmm/coul/long/soft/omp command
-===============================================
-
-pair_style coul/cut/soft command
-================================
-
-pair_style coul/cut/soft/omp command
-====================================
-
-pair_style coul/long/soft command
-=================================
-
-pair_style coul/long/soft/omp command
-=====================================
-
-pair_style tip4p/long/soft command
-==================================
-
-pair_style tip4p/long/soft/omp command
-======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/cut/soft* or *lj/cut/coul/cut/soft* or *lj/cut/coul/long/soft* or *lj/cut/tip4p/long/soft* or *lj/charmm/coul/long/soft* or *coul/cut/soft* or *coul/long/soft* or *tip4p/long/soft*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *lj/cut/soft* args = n alpha_lj cutoff
- n, alpha_LJ = parameters of soft-core potential
- cutoff = global cutoff for Lennard-Jones interactions (distance units)
- *lj/cut/coul/cut/soft* args = n alpha_LJ alpha_C cutoff (cutoff2)
- n, alpha_LJ, alpha_C = parameters of soft-core potential
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/cut/coul/long/soft* args = n alpha_LJ alpha_C cutoff
- n, alpha_LJ, alpha_C = parameters of the soft-core potential
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/cut/tip4p/long/soft* args = otype htype btype atype qdist n alpha_LJ alpha_C cutoff (cutoff2)
- otype,htype = atom types for TIP4P O and H
- btype,atype = bond and angle types for TIP4P waters
- qdist = distance from O atom to massless charge (distance units)
- n, alpha_LJ, alpha_C = parameters of the soft-core potential
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *lj/charmm/coul/long/soft* args = n alpha_LJ alpha_C inner outer (cutoff)
- n, alpha_LJ, alpha_C = parameters of the soft-core potential
- inner, outer = global switching cutoffs for LJ (and Coulombic if only 5 args)
- cutoff = global cutoff for Coulombic (optional, outer is Coulombic cutoff if only 5 args)
- *coul/cut/soft* args = n alpha_C cutoff
- n, alpha_C = parameters of the soft-core potential
- cutoff = global cutoff for Coulomb interactions (distance units)
- *coul/long/soft* args = n alpha_C cutoff
- n, alpha_C = parameters of the soft-core potential
- cutoff = global cutoff for Coulomb interactions (distance units)
- *tip4p/long/soft* args = otype htype btype atype qdist n alpha_C cutoff
- otype,htype = atom types for TIP4P O and H
- btype,atype = bond and angle types for TIP4P waters
- qdist = distance from O atom to massless charge (distance units)
- n, alpha_C = parameters of the soft-core potential
- cutoff = global cutoff for Coulomb interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/cut/soft 2.0 0.5 9.5
- pair_coeff * * 0.28 3.1 1.0
- pair_coeff 1 1 0.28 3.1 1.0 9.5
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/cut/soft 2.0 0.5 10.0 9.5
- pair_style lj/cut/coul/cut/soft 2.0 0.5 10.0 9.5 9.5
- pair_coeff * * 0.28 3.1 1.0
- pair_coeff 1 1 0.28 3.1 0.5 10.0
- pair_coeff 1 1 0.28 3.1 0.5 10.0 9.5
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/long/soft 2.0 0.5 10.0 9.5
- pair_style lj/cut/coul/long/soft 2.0 0.5 10.0 9.5 9.5
- pair_coeff * * 0.28 3.1 1.0
- pair_coeff 1 1 0.28 3.1 0.0 10.0
- pair_coeff 1 1 0.28 3.1 0.0 10.0 9.5
-
-.. parsed-literal::
-
- pair_style lj/cut/tip4p/long/soft 1 2 7 8 0.15 2.0 0.5 10.0 9.8
- pair_style lj/cut/tip4p/long/soft 1 2 7 8 0.15 2.0 0.5 10.0 9.8 9.5
- pair_coeff * * 0.155 3.1536 1.0
- pair_coeff 1 1 0.155 3.1536 1.0 9.5
-
-.. parsed-literal::
-
- pair_style lj/charmm/coul/long 2.0 0.5 10.0 8.0 10.0
- pair_style lj/charmm/coul/long 2.0 0.5 10.0 8.0 10.0 9.0
- pair_coeff * * 0.28 3.1 1.0
- pair_coeff 1 1 0.28 3.1 1.0 0.14 3.1
-
-.. parsed-literal::
-
- pair_style coul/long/soft 1.0 10.0 9.5
- pair_coeff * * 1.0
- pair_coeff 1 1 1.0 9.5
-
-.. parsed-literal::
-
- pair_style tip4p/long/soft 1 2 7 8 0.15 2.0 0.5 10.0 9.8
- pair_coeff * * 1.0
- pair_coeff 1 1 1.0 9.5
-
-Description
-"""""""""""
-
-The *lj/cut/soft* style and substyles compute the 12/6 Lennard-Jones
-and Coulomb potential modified by a soft core, in order to avoid
-singularities during free energy calculations when sites are created
-or anihilated :ref:`(Beutler) <Beutler>`,
-
-.. image:: Eqs/pair_lj_soft.jpg
- :align: center
-
-Coulomb interactions are also damped with a soft core at short
-distance,
-
-.. image:: Eqs/pair_coul_soft.jpg
- :align: center
-
-In the Coulomb part C is an energy-conversion constant, q_i and q_j
-are the charges on the 2 atoms, and epsilon is the dielectric constant
-which can be set by the :doc:`dielectric <dielectric>` command.
-
-The coefficient lambda is an activation parameter. When lambda = 1 the
-pair potentiel is identical to a Lennard-Jones term or a Coulomb term
-or a combination of both. When lambda = 0 the interactions are
-deactivated. The transition between these two extrema is smoothed by a
-soft repulsive core in order to avoid singularities in potential
-energy and forces when sites are created or anihilated and can overlap
-:ref:`(Beutler) <Beutler>`.
-
-The paratemers n, alpha_LJ and alpha_C are set in the
-:doc:`pair_style <pair_style>` command, before the cutoffs. Usual
-choices for the exponent are n = 2 or n = 1. For the remaining
-coefficients alpha_LJ = 0.5 and alpha_C = 10 Angstrom^2 are
-appropriate choices. Plots of the LJ and Coulomb terms are shown
-below, for lambda ranging from 1 to 0 every 0.1.
-
-.. image:: JPG/lj_soft.jpg
- :align: center
-.. image:: JPG/coul_soft.jpg
- :align: center
-For the *lj/cut/coul/cut/soft* or *lj/cut/coul/long/soft* pair styles,
-the following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* lambda (activation parameter between 0 and 1)
-* cutoff1 (distance units)
-* cutoff2 (distance units)
-
-The latter two coefficients are optional. If not specified, the global
-LJ and Coulombic cutoffs specified in the pair_style command are used.
-If only one cutoff is specified, it is used as the cutoff for both LJ
-and Coulombic interactions for this type pair. If both coefficients
-are specified, they are used as the LJ and Coulombic cutoffs for this
-type pair. You cannot specify 2 cutoffs for style *lj/cut/soft*,
-since it has no Coulombic terms. For the *coul/cut/soft* and
-*coul/long/soft* only lambda and the optional cutoff2 are to be
-specified.
-
-Style *lj/cut/tip4p/long/soft* implements a soft-core version of the
-TIP4P water model. The usage of this pair style is documented in the
-:doc:`pair_lj <pair_lj>` styles. The soft-core version introduces the
-lambda parameter to the list of arguments, after epsilon and sigma in
-the :doc:`pair_coeff <pair_coeff>` command. The paratemers n, alpha_LJ
-and alpha_C are set in the :doc:`pair_style <pair_style>` command,
-before the cutoffs.
-
-Style *lj/charmm/coul/long/soft* implements a soft-core version of the
-CHARMM version of LJ interactions with an additional switching
-function S(r) that ramps the energy and force smoothly to zero between
-an inner and outer cutoff. The usage of this pair style is documented
-in the :doc:`pair_charmm <pair_charmm>` styles. The soft-core version
-introduces the lambda parameter to the list of arguments, after
-epsilon and sigma in the :doc:`pair_coeff <pair_coeff>` command (and
-before the optional eps14 and sigma14). The paratemers n,
-alpha_LJ and alpha_C are set in the :doc:`pair_style <pair_style>`
-command, before the cutoffs.
-
-The *coul/cut/soft*, *coul/long/soft* and *tip4p/long/soft* substyles
-are designed to be combined with other pair potentials via the
-:doc:`pair_style hybrid/overlay <pair_hybrid>` command. This is because
-they have no repulsive core. Hence, if used by themselves, there will
-be no repulsion to keep two oppositely charged particles from
-overlapping each other. In this case, if lambda = 1, a singularity may
-occur. These substyles are suitable to represent charges embedded in
-the Lennard-Jones radius of another site (for example hydrogen atoms
-in several water models).
-
-NOTES: When using the core-softed Coulomb potentials with long-range
-solvers (*coul/long/soft*, *lj/cut/coul/long/soft*, etc.) in a free
-energy calculation in which sites holding electrostatic charges are
-being created or anihilated (using :doc:`fix adapt/fep <fix_adapt_fep>`
-and :doc:`compute fep <compute_fep>`) it is important to adapt both the
-lambda activation parameter (from 0 to 1, or the reverse) and the
-value of the charge (from 0 to its final value, or the reverse). This
-ensures that long-range electrostatic terms (kspace) are correct. It
-is not necessary to use core-softed Coulomb potentials if the van der
-Waals site is present during the free-energy route, thus avoiding
-overlap of the charges. Examples are provided in the LAMMPS source
-directory tree, under examples/USER/fep.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, tail correction, restart info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for this pair style can be mixed.
-The default mix value is *geometric*. See the "pair_modify" command
-for details.
-
-These pair styles support the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the Lennard-Jones portion of the pair
-interaction.
-
-These pair styles support the :doc:`pair_modify <pair_modify>` tail
-option for adding a long-range tail correction to the energy and
-pressure for the Lennard-Jones portion of the pair interaction.
-
-These pair styles write information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To avoid division by zero do not set sigma = 0; use the lambda
-parameter instead to activate/deactivate interactions, or use
-epsilon = 0 and sigma = 1. Alternatively, when sites do not
-interact though the Lennard-Jones term the *coul/long/soft* or
-similar substyle can be used via the
-:doc:`pair_style hybrid/overlay <pair_hybrid>` command.
-
-
-----------
-
-
-All of the plain *soft* pair styles are part of the USER-FEP package.
-The *long* styles also requires the KSPACE package to be installed.
-They are only enabled if LAMMPS was built with those packages. See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix adapt <fix_adapt>`,
-:doc:`fix adapt/fep <fix_adapt_fep>`, :doc:`compute fep <compute_fep>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Beutler:
-
-
-
-**(Beutler)** Beutler, Mark, van Schaik, Gerber, van Gunsteren, Chem
-Phys Lett, 222, 529 (1994).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lubricate.txt b/doc/_sources/pair_lubricate.txt
deleted file mode 100644
index 4e8011645..000000000
--- a/doc/_sources/pair_lubricate.txt
+++ /dev/null
@@ -1,258 +0,0 @@
-.. index:: pair_style lubricate
-
-pair_style lubricate command
-============================
-
-pair_style lubricate/omp command
-================================
-
-pair_style lubricate/poly command
-=================================
-
-pair_style lubricate/poly/omp command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style mu flaglog flagfld cutinner cutoff flagHI flagVF
-
-* style = *lubricate* or *lubricate/poly*
-* mu = dynamic viscosity (dynamic viscosity units)
-* flaglog = 0/1 to exclude/include log terms in the lubrication approximation
-* flagfld = 0/1 to exclude/include Fast Lubrication Dynamics (FLD) effects
-* cutinner = inner cutoff distance (distance units)
-* cutoff = outer cutoff for interactions (distance units)
-* flagHI (optional) = 0/1 to exclude/include 1/r hydrodynamic interactions
-* flagVF (optional) = 0/1 to exclude/include volume fraction corrections in the long-range isotropic terms
-
-**Examples:** (all assume radius = 1)
-
-.. parsed-literal::
-
- pair_style lubricate 1.5 1 1 2.01 2.5
- pair_coeff 1 1 2.05 2.8
- pair_coeff * *
-
-.. parsed-literal::
-
- pair_style lubricate 1.5 1 1 2.01 2.5
- pair_coeff * *
- variable mu equal ramp(1,2)
- fix 1 all adapt 1 pair lubricate mu * * v_mu
-
-Description
-"""""""""""
-
-Styles *lubricate* and *lubricate/poly* compute hydrodynamic
-interactions between mono-disperse finite-size spherical particles in
-a pairwise fashion. The interactions have 2 components. The first is
-Ball-Melrose lubrication terms via the formulas in :ref:`(Ball and Melrose) <Ball>`
-
-.. image:: Eqs/pair_lubricate.jpg
- :align: center
-
-which represents the dissipation W between two nearby particles due to
-their relative velocities in the presence of a background solvent with
-viscosity *mu*. Note that this is dynamic viscosity which has units of
-mass/distance/time, not kinematic viscosity.
-
-The Asq (squeeze) term is the strongest and is included if *flagHI* is
-set to 1 (default). It scales as 1/gap where gap is the separation
-between the surfaces of the 2 particles. The Ash (shear) and Apu
-(pump) terms are only included if *flaglog* is set to 1. They are the
-next strongest interactions, and the only other singular interaction,
-and scale as log(gap). Note that *flaglog* = 1 and *flagHI* = 0 is
-invalid, and will result in a warning message, after which *flagHI* will
-be set to 1. The Atw (twist) term is currently not included. It is
-typically a very small contribution to the lubrication forces.
-
-The *flagHI* and *flagVF* settings are optional. Neither should be
-used, or both must be defined.
-
-*Cutinner* sets the minimum center-to-center separation that will be
-used in calculations irrespective of the actual separation. *Cutoff*
-is the maximum center-to-center separation at which an interaction is
-computed. Using a *cutoff* less than 3 radii is recommended if
-*flaglog* is set to 1.
-
-The other component is due to the Fast Lubrication Dynamics (FLD)
-approximation, described in :ref:`(Kumar) <Kumar>`, which can be
-represented by the following equation
-
-.. image:: Eqs/fld.jpg
- :align: center
-
-where U represents the velocities and angular velocities of the
-particles, U^*infty* represents the velocity and the angular velocity
-of the undisturbed fluid, and E^*infty* represents the rate of strain
-tensor of the undisturbed fluid with viscosity *mu*. Again, note that
-this is dynamic viscosity which has units of mass/distance/time, not
-kinematic viscosity. Volume fraction corrections to R_FU are included
-as long as *flagVF* is set to 1 (default).
-
-.. note::
-
- When using the FLD terms, these pair styles are designed to be
- used with explicit time integration and a correspondingly small
- timestep. Thus either :doc:`fix nve/sphere <fix_nve_sphere>` or :doc:`fix nve/asphere <fix_nve_asphere>` should be used for time integration.
- To perform implicit FLD, see the :doc:`pair_style lubricateU <pair_lubricateU>` command.
-
-Style *lubricate* requires monodisperse spherical particles; style
-*lubricate/poly* allows for polydisperse spherical particles.
-
-The viscosity *mu* can be varied in a time-dependent manner over the
-course of a simluation, in which case in which case the pair_style
-setting for *mu* will be overridden. See the :doc:`fix adapt <fix_adapt>`
-command for details.
-
-If the suspension is sheared via the :doc:`fix deform <fix_deform>`
-command then the pair style uses the shear rate to adjust the
-hydrodynamic interactions accordingly. Volume changes due to fix
-deform are accounted for when computing the volume fraction
-corrections to R_FU.
-
-When computing the volume fraction corrections to R_FU, the presence
-of walls (whether moving or stationary) will affect the volume
-fraction available to colloidal particles. This is currently accounted
-for with the following types of walls: :doc:`wall/lj93 <fix_wall>`,
-:doc:`wall/lj126 <fix_wall>`, :doc:`wall/colloid <fix_wall>`, and
-:doc:`wall/harmonic <fix_wall>`. For these wall styles, the correct
-volume fraction will be used when walls do not coincide with the box
-boundary, as well as when walls move and thereby cause a change in the
-volume fraction. Other wall styles will still work, but they will
-result in the volume fraction being computed based on the box
-boundaries.
-
-Since lubrication forces are dissipative, it is usually desirable to
-thermostat the system at a constant temperature. If Brownian motion
-(at a constant temperature) is desired, it can be set using the
-:doc:`pair_style brownian <pair_brownian>` command. These pair styles
-and the brownian style should use consistent parameters for *mu*,
-*flaglog*, *flagfld*, *cutinner*, *cutoff*, *flagHI* and *flagVF*.
-
-
-----------
-
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cutinner (distance units)
-* cutoff (distance units)
-
-The two coefficients are optional. If neither is specified, the two
-cutoffs specified in the pair_style command are used. Otherwise both
-must be specified.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`this section <Section_accelerate>` of
-the manual. The accelerated styles take the same arguments and should
-produce the same results, except for round-off and precision issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`this section <Section_accelerate>` of the manual for more
-instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the two cutoff distances for this
-pair style can be mixed. The default mix value is *geometric*. See
-the "pair_modify" command for details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These styles are part of the COLLOID package. They are only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <2_3>` section for more info.
-
-Only spherical monodisperse particles are allowed for pair_style
-lubricate.
-
-Only spherical particles are allowed for pair_style lubricate/poly.
-
-These pair styles will not restart exactly when using the
-:doc:`read_restart <read_restart>` command, though they should provide
-statistically similar results. This is because the forces they
-compute depend on atom velocities. See the
-:doc:`read_restart <read_restart>` command for more details.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style lubricateU <pair_lubricateU>`
-
-Default
-"""""""
-
-The default settings for the optional args are flagHI = 1 and flagVF =
-1.
-
-
-----------
-
-
-.. _Ball:
-
-
-
-**(Ball)** Ball and Melrose, Physica A, 247, 444-472 (1997).
-
-.. _Kumar:
-
-
-
-**(Kumar)** Kumar and Higdon, Phys Rev E, 82, 051401 (2010). See also
-his thesis for more details: A. Kumar, "Microscale Dynamics in
-Suspensions of Non-spherical Particles", Thesis, University of
-Illinois Urbana-Champaign,
-(2010). (`https://www.ideals.illinois.edu/handle/2142/16032 <https://www.ideals.illinois.edu/handle/2142/16032>`_)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_lubricateU.txt b/doc/_sources/pair_lubricateU.txt
deleted file mode 100644
index 95e99dd42..000000000
--- a/doc/_sources/pair_lubricateU.txt
+++ /dev/null
@@ -1,240 +0,0 @@
-.. index:: pair_style lubricateU
-
-pair_style lubricateU command
-=============================
-
-pair_style lubricateU/poly command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style mu flaglog cutinner cutoff gdot flagHI flagVF
-
-* style = *lubricateU* or *lubricateU/poly*
-* mu = dynamic viscosity (dynamic viscosity units)
-* flaglog = 0/1 to exclude/include log terms in the lubrication approximation
-* cutinner = inner cut off distance (distance units)
-* cutoff = outer cutoff for interactions (distance units)
-* gdot = shear rate (1/time units)
-* flagHI (optional) = 0/1 to exclude/include 1/r hydrodynamic interactions
-* flagVF (optional) = 0/1 to exclude/include volume fraction corrections in the long-range isotropic terms
-
-**Examples:** (all assume radius = 1)
-
-.. parsed-literal::
-
- pair_style lubricateU 1.5 1 2.01 2.5 0.01 1 1
- pair_coeff 1 1 2.05 2.8
- pair_coeff * *
-
-Description
-"""""""""""
-
-Styles *lubricateU* and *lubricateU/poly* compute velocities and
-angular velocities for finite-size spherical particles such that the
-hydrodynamic interaction balances the force and torque due to all
-other types of interactions.
-
-The interactions have 2 components. The first is
-Ball-Melrose lubrication terms via the formulas in :ref:`(Ball and Melrose) <Ball>`
-
-.. image:: Eqs/pair_lubricate.jpg
- :align: center
-
-which represents the dissipation W between two nearby particles due to
-their relative velocities in the presence of a background solvent with
-viscosity *mu*. Note that this is dynamic viscosity which has units of
-mass/distance/time, not kinematic viscosity.
-
-The Asq (squeeze) term is the strongest and is included as long as
-*flagHI* is set to 1 (default). It scales as 1/gap where gap is the
-separation between the surfaces of the 2 particles. The Ash (shear)
-and Apu (pump) terms are only included if *flaglog* is set to 1. They
-are the next strongest interactions, and the only other singular
-interaction, and scale as log(gap). Note that *flaglog* = 1 and
-*flagHI* = 0 is invalid, and will result in a warning message, after
-which *flagHI* will be set to 1. The Atw (twist) term is currently not
-included. It is typically a very small contribution to the lubrication
-forces.
-
-The *flagHI* and *flagVF* settings are optional. Neither should be
-used, or both must be defined.
-
-*Cutinner* sets the minimum center-to-center separation that will be
-used in calculations irrespective of the actual separation. *Cutoff*
-is the maximum center-to-center separation at which an interaction is
-computed. Using a *cutoff* less than 3 radii is recommended if
-*flaglog* is set to 1.
-
-The other component is due to the Fast Lubrication Dynamics (FLD)
-approximation, described in :ref:`(Kumar) <Kumar>`. The equation being
-solved to balance the forces and torques is
-
-.. image:: Eqs/fld2.jpg
- :align: center
-
-where U represents the velocities and angular velocities of the
-particles, U^*infty* represents the velocities and the angular
-velocities of the undisturbed fluid, and E^*infty* represents the rate
-of strain tensor of the undisturbed fluid flow with viscosity
-*mu*. Again, note that this is dynamic viscosity which has units of
-mass/distance/time, not kinematic viscosity. Volume fraction
-corrections to R_FU are included if *flagVF* is set to 1 (default).
-
-F*rest* represents the forces and torques due to all other types of
-interactions, e.g. Brownian, electrostatic etc. Note that this
-algorithm neglects the inertial terms, thereby removing the
-restriction of resolving the small interial time scale, which may not
-be of interest for colloidal particles. This pair style solves for
-the velocity such that the hydrodynamic force balances all other types
-of forces, thereby resulting in a net zero force (zero inertia limit).
-When defining this pair style, it must be defined last so that when
-this style is invoked all other types of forces have already been
-computed. For the same reason, it won't work if additional non-pair
-styles are defined (such as bond or Kspace forces) as they are
-calculated in LAMMPS after the pairwise interactions have been
-computed.
-
-.. note::
-
- When using these styles, the these pair styles are designed to
- be used with implicit time integration and a correspondingly larger
- timestep. Thus either :doc:`fix nve/noforce <fix_nve_noforce>` should
- be used for spherical particles defined via :doc:`atom_style sphere <atom_style>` or :doc:`fix nve/asphere/noforce <fix_nve_asphere_noforce>` should be used for
- spherical particles defined via :doc:`atom_style ellipsoid <atom_style>`. This is because the velocity and angular
- momentum of each particle is set by the pair style, and should not be
- reset by the time integration fix.
-
-Style *lubricateU* requires monodisperse spherical particles; style
-*lubricateU/poly* allows for polydisperse spherical particles.
-
-If the suspension is sheared via the :doc:`fix deform <fix_deform>`
-command then the pair style uses the shear rate to adjust the
-hydrodynamic interactions accordingly. Volume changes due to fix
-deform are accounted for when computing the volume fraction
-corrections to R_FU.
-
-When computing the volume fraction corrections to R_FU, the presence
-of walls (whether moving or stationary) will affect the volume
-fraction available to colloidal particles. This is currently accounted
-for with the following types of walls: :doc:`wall/lj93 <fix_wall>`,
-:doc:`wall/lj126 <fix_wall>`, :doc:`wall/colloid <fix_wall>`, and
-"wall/harmonic_fix_wall.html". For these wall styles, the correct
-volume fraction will be used when walls do not coincide with the box
-boundary, as well as when walls move and thereby cause a change in the
-volume fraction. To use these wall styles with pair_style *lubricateU*
-or *lubricateU/poly*, the *fld yes* option must be specified in the
-fix wall command.
-
-Since lubrication forces are dissipative, it is usually desirable to
-thermostat the system at a constant temperature. If Brownian motion
-(at a constant temperature) is desired, it can be set using the
-:doc:`pair_style brownian <pair_brownian>` command. These pair styles
-and the brownian style should use consistent parameters for *mu*,
-*flaglog*, *flagfld*, *cutinner*, *cutoff*, *flagHI* and *flagVF*.
-
-
-----------
-
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cutinner (distance units)
-* cutoff (distance units)
-
-The two coefficients are optional. If neither is specified, the two
-cutoffs specified in the pair_style command are used. Otherwise both
-must be specified.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the two cutoff distances for this
-pair style can be mixed. The default mix value is *geometric*. See
-the "pair_modify" command for details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These styles are part of the COLLOID package. They are only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <2_3>` section for more info.
-
-Currently, these pair styles assume that all other types of
-forces/torques on the particles have been already been computed when
-it is invoked. This requires this style to be defined as the last of
-the pair styles, and that no fixes apply additional constraint forces.
-One exception is the :doc:`fix wall/colloid <fix_wall>` commands, which
-has an "fld" option to apply their wall forces correctly.
-
-Only spherical monodisperse particles are allowed for pair_style
-lubricateU.
-
-Only spherical particles are allowed for pair_style lubricateU/poly.
-
-For sheared suspensions, it is assumed that the shearing is done in
-the xy plane, with x being the velocity direction and y being the
-velocity-gradient direction. In this case, one must use :doc:`fix deform <fix_deform>` with the same rate of shear (erate).
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style lubricate <pair_lubricate>`
-
-Default
-"""""""
-
-The default settings for the optional args are flagHI = 1 and flagVF =
-1.
-
-
-----------
-
-
-.. _Ball:
-
-
-
-**(Ball)** Ball and Melrose, Physica A, 247, 444-472 (1997).
-
-.. _Kumar:
-
-
-
-**(Kumar)** Kumar and Higdon, Phys Rev E, 82, 051401 (2010).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_mdf.txt b/doc/_sources/pair_mdf.txt
deleted file mode 100644
index bea38dc5e..000000000
--- a/doc/_sources/pair_mdf.txt
+++ /dev/null
@@ -1,203 +0,0 @@
-.. index:: pair_style lj/mdf
-
-pair_style lj/mdf command
-=========================
-
-pair_style buck/mdf command
-===========================
-
-pair_style lennard/mdf command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/mdf* or *buck/mdf* or *lennard/mdf*
-* args = list of arguments for a particular style
-.. parsed-literal::
-
- *lj/mdf* args = cutoff1 cutoff2
- cutoff1 = inner cutoff for the start of the tapering function
- cutoff1 = out cutoff for the end of the tapering function
- *buck/mdf* args = cutoff1 cutoff2
- cutoff1 = inner cutoff for the start of the tapering function
- cutoff1 = out cutoff for the end of the tapering function
- *lennard/mdf* args = cutoff1 cutoff2
- cutoff1 = inner cutoff for the start of the tapering function
- cutoff1 = out cutoff for the end of the tapering function
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/mdf 2.5 3.0
- pair_coeff * * 1 1
- pair_coeff 1 1 1 1.1 2.8 3.0 3.2
-
-.. parsed-literal::
-
- pair_style buck 2.5 3.0
- pair_coeff * * 100.0 1.5 200.0
- pair_coeff * * 100.0 1.5 200.0 3.0 3.5
-
-.. parsed-literal::
-
- pair_style lennard/mdf 2.5 3.0
- pair_coeff * * 1 1
- pair_coeff 1 1 1 1.1 2.8 3.0 3.2
-
-Description
-"""""""""""
-
-The *lj/mdf*, *buck/mdf* and *lennard/mdf* compute the standard 12-6
-Lennard-Jones and Buckingham potential with the addition of a taper
-function that ramps the energy and force smoothly to zero between an
-inner and outer cutoff.
-
-.. image:: Eqs/pair_mdf-1.jpg
- :align: center
-
-The tapering, *f(r)*, is done by using the Mei, Davenport, Fernando
-function :ref:`(Mei) <Mei>`.
-
-.. image:: Eqs/pair_mdf-2.jpg
- :align: center
-
-where
-
-.. image:: Eqs/pair_mdf-3.jpg
- :align: center
-
-Here *r_m* is the inner cutoff radius and *r_cut* is the outer cutoff
-radius.
-
-
-----------
-
-
-For the *lj/mdf* pair_style, the potential energy, *E(r)*, is the
-standard 12-6 Lennard-Jones written in the epsilon/sigma form:
-
-.. image:: Eqs/pair_mdf-4.jpg
- :align: center
-
-The following coefficients must be defined for each pair of atoms
-types via the pair_coeff command as in the examples above, or in the
-data file or restart files read by the :doc:`read_data <read_data>` or
-:doc:`read_restart commands <read_restart>`, or by mixing as described
-below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* r_m (distance units)
-* r_*cut* (distance units)
-
-
-----------
-
-
-For the *buck/mdf* pair_style, the potential energy, *E(r)*, is the
-standard Buckingham potential:
-
-.. image:: Eqs/pair_mdf-5.jpg
- :align: center
-
-* A (energy units)
-* \rho (distance units)
-* C (energy-distance^6 units)
-* r_m (distance units)
-* r_*cut*$ (distance units)
-
-
-----------
-
-
-For the *lennard/mdf* pair_style, the potential energy, *E(r)*, is the
-standard 12-6 Lennard-Jones written in the $A/B$ form:
-
-.. image:: Eqs/pair_mdf-6.jpg
- :align: center
-
-The following coefficients must be defined for each pair of atoms
-types via the pair_coeff command as in the examples above, or in the
-data file or restart files read by the read_data or read_restart
-commands, or by mixing as described below:
-
-* A (energy-distance^12 units)
-* B (energy-distance^6 units)
-* r_m (distance units)
-* r_*cut* (distance units)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/cut pair styles can be mixed.
-The default mix value is *geometric*. See the "pair_modify" command
-for details.
-
-All of the *lj/cut* pair styles support the
-:doc:`pair_modify <pair_modify>` shift option for the energy of the
-Lennard-Jones portion of the pair interaction.
-
-The *lj/cut/coul/long* and *lj/cut/tip4p/long* pair styles support the
-:doc:`pair_modify <pair_modify>` table option since they can tabulate
-the short-range portion of the long-range Coulombic interaction.
-
-All of the *lj/cut* pair styles support the
-:doc:`pair_modify <pair_modify>` tail option for adding a long-range
-tail correction to the energy and pressure for the Lennard-Jones
-portion of the pair interaction.
-
-All of the *lj/cut* pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do
-not need to be specified in an input script that reads a restart file.
-
-The *lj/cut* and *lj/cut/coul/long* pair styles support the use of the
-*inner*, *middle*, and *outer* keywords of the :doc:`run_style respa <run_style>` command, meaning the pairwise forces can be
-partitioned by distance at different levels of the rRESPA hierarchy.
-The other styles only support the *pair* keyword of run_style respa.
-See the :doc:`run_style <run_style>` command for details.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-These pair styles can only be used if LAMMPS was built with the
-USER-MISC package. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mei:
-
-
-
-**(Mei)** Mei, Davenport, Fernando, Phys Rev B, 43 4653 (1991)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_meam.txt b/doc/_sources/pair_meam.txt
deleted file mode 100644
index 2f742e67e..000000000
--- a/doc/_sources/pair_meam.txt
+++ /dev/null
@@ -1,427 +0,0 @@
-.. index:: pair_style meam
-
-pair_style meam command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style meam
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style meam
- pair_coeff * * ../potentials/library.meam Si ../potentials/si.meam Si
- pair_coeff * * ../potentials/library.meam Ni Al NULL Ni Al Ni Ni
-
-Description
-"""""""""""
-
-.. note::
-
- The behavior of the MEAM potential for alloy systems has changed
- as of November 2010; see description below of the mixture_ref_t
- parameter
-
-Style *meam* computes pairwise interactions for a variety of materials
-using modified embedded-atom method (MEAM) potentials
-:ref:`(Baskes) <Baskes>`. Conceptually, it is an extension to the original
-:doc:`EAM potentials <pair_eam>` which adds angular forces. It is
-thus suitable for modeling metals and alloys with fcc, bcc, hcp and
-diamond cubic structures, as well as covalently bonded materials like
-silicon and carbon.
-
-In the MEAM formulation, the total energy E of a system of atoms is
-given by:
-
-.. image:: Eqs/pair_meam.jpg
- :align: center
-
-where F is the embedding energy which is a function of the atomic
-electron density rho, and phi is a pair potential interaction. The
-pair interaction is summed over all neighbors J of atom I within the
-cutoff distance. As with EAM, the multi-body nature of the MEAM
-potential is a result of the embedding energy term. Details of the
-computation of the embedding and pair energies, as implemented in
-LAMMPS, are given in :ref:`(Gullet) <Gullet>` and references therein.
-
-The various parameters in the MEAM formulas are listed in two files
-which are specified by the :doc:`pair_coeff <pair_coeff>` command.
-These are ASCII text files in a format consistent with other MD codes
-that implement MEAM potentials, such as the serial DYNAMO code and
-Warp. Several MEAM potential files with parameters for different
-materials are included in the "potentials" directory of the LAMMPS
-distribution with a ".meam" suffix. All of these are parameterized in
-terms of LAMMPS :doc:`metal units <units>`.
-
-Note that unlike for other potentials, cutoffs for MEAM potentials are
-not set in the pair_style or pair_coeff command; they are specified in
-the MEAM potential files themselves.
-
-Only a single pair_coeff command is used with the *meam* style which
-specifies two MEAM files and the element(s) to extract information
-for. The MEAM elements are mapped to LAMMPS atom types by specifying
-N additional arguments after the 2nd filename in the pair_coeff
-command, where N is the number of LAMMPS atom types:
-
-* MEAM library file
-* Elem1, Elem2, ...
-* MEAM parameter file
-* N element names = mapping of MEAM elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential files.
-
-As an example, the potentials/library.meam file has generic MEAM
-settings for a variety of elements. The potentials/sic.meam file has
-specific parameter settings for a Si and C alloy system. If your
-LAMMPS simulation has 4 atoms types and you want the 1st 3 to be Si,
-and the 4th to be C, you would use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * library.meam Si C sic.meam Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The two filenames are for the library and parameter file respectively.
-The Si and C arguments (between the file names) are the two elements
-for which info will be extracted from the library file. The first
-three trailing Si arguments map LAMMPS atom types 1,2,3 to the MEAM Si
-element. The final C argument maps LAMMPS atom type 4 to the MEAM C
-element.
-
-If the 2nd filename is specified as NULL, no parameter file is read,
-which simply means the generic parameters in the library file are
-used. Use of the NULL specification for the parameter file is
-discouraged for systems with more than a single element type
-(e.g. alloys), since the parameter file is expected to set element
-interaction terms that are not captured by the information in the
-library file.
-
-If a mapping value is specified as NULL, the mapping is not performed.
-This can be used when a *meam* potential is used as part of the
-*hybrid* pair style. The NULL values are placeholders for atom types
-that will be used with other potentials.
-
-The MEAM library file provided with LAMMPS has the name
-potentials/library.meam. It is the "meamf" file used by other MD
-codes. Aside from blank and comment lines (start with #) which can
-appear anywhere, it is formatted as a series of entries, each of which
-has 19 parameters and can span multiple lines:
-
-elt, lat, z, ielement, atwt, alpha, b0, b1, b2, b3, alat, esub, asub,
-t0, t1, t2, t3, rozero, ibar
-
-The "elt" and "lat" parameters are text strings, such as elt = Si or
-Cu and lat = dia or fcc. Because the library file is used by Fortran
-MD codes, these strings may be enclosed in single quotes, but this is
-not required. The other numeric parameters match values in the
-formulas above. The value of the "elt" string is what is used in the
-pair_coeff command to identify which settings from the library file
-you wish to read in. There can be multiple entries in the library
-file with the same "elt" value; LAMMPS reads the 1st matching entry it
-finds and ignores the rest.
-
-Other parameters in the MEAM library file correspond to single-element
-potential parameters:
-
-.. parsed-literal::
-
- lat = lattice structure of reference configuration
- z = number of nearest neighbors in the reference structure
- ielement = atomic number
- atwt = atomic weight
- alat = lattice constant of reference structure
- esub = energy per atom (eV) in the reference structure at equilibrium
- asub = "A" parameter for MEAM (see e.g. :ref:`(Baskes) <Baskes>`)
-
-The alpha, b0, b1, b2, b3, t0, t1, t2, t3 parameters correspond to the
-standard MEAM parameters in the literature :ref:`(Baskes) <Baskes>` (the b
-parameters are the standard beta parameters). The rozero parameter is
-an element-dependent density scaling that weights the reference
-background density (see e.g. equation 4.5 in :ref:`(Gullet) <Gullet>`) and
-is typically 1.0 for single-element systems. The ibar parameter
-selects the form of the function G(Gamma) used to compute the electron
-density; options are
-
-.. parsed-literal::
-
- 0 => G = sqrt(1+Gamma)
- 1 => G = exp(Gamma/2)
- 2 => not implemented
- 3 => G = 2/(1+exp(-Gamma))
- 4 => G = sqrt(1+Gamma)
- -5 => G = +-sqrt(abs(1+Gamma))
-
-If used, the MEAM parameter file contains settings that override or
-complement the library file settings. Examples of such parameter
-files are in the potentials directory with a ".meam" suffix. Their
-format is the same as is read by other Fortran MD codes. Aside from
-blank and comment lines (start with #) which can appear anywhere, each
-line has one of the following forms. Each line can also have a
-trailing comment (starting with #) which is ignored.
-
-.. parsed-literal::
-
- keyword = value
- keyword(I) = value
- keyword(I,J) = value
- keyword(I,J,K) = value
-
-The recognized keywords are as follows:
-
-Ec, alpha, rho0, delta, lattce, attrac, repuls, nn2, Cmin, Cmax, rc, delr,
-augt1, gsmooth_factor, re
-
-where
-
-.. parsed-literal::
-
- rc = cutoff radius for cutoff function; default = 4.0
- delr = length of smoothing distance for cutoff function; default = 0.1
- rho0(I) = relative density for element I (overwrites value
- read from meamf file)
- Ec(I,J) = cohesive energy of reference structure for I-J mixture
- delta(I,J) = heat of formation for I-J alloy; if Ec_IJ is input as
- zero, then LAMMPS sets Ec_IJ = (Ec_II + Ec_JJ)/2 - delta_IJ
- alpha(I,J) = alpha parameter for pair potential between I and J (can
- be computed from bulk modulus of reference structure
- re(I,J) = equilibrium distance between I and J in the reference
- structure
- Cmax(I,J,K) = Cmax screening parameter when I-J pair is screened
- by K (I<=J); default = 2.8
- Cmin(I,J,K) = Cmin screening parameter when I-J pair is screened
- by K (I<=J); default = 2.0
- lattce(I,J) = lattice structure of I-J reference structure:
- dia = diamond (interlaced fcc for alloy)
- fcc = face centered cubic
- bcc = body centered cubic
- dim = dimer
- b1 = rock salt (NaCl structure)
- hcp = hexagonal close-packed
- c11 = MoSi2 structure
- l12 = Cu3Au structure (lower case L, followed by 12)
- b2 = CsCl structure (interpenetrating simple cubic)
- nn2(I,J) = turn on second-nearest neighbor MEAM formulation for
- I-J pair (see for example :ref:`(Lee) <Lee>`).
- 0 = second-nearest neighbor formulation off
- 1 = second-nearest neighbor formulation on
- default = 0
- attrac(I,J) = additional cubic attraction term in Rose energy I-J pair potential
- default = 0
- repuls(I,J) = additional cubic repulsive term in Rose energy I-J pair potential
- default = 0
- zbl(I,J) = blend the MEAM I-J pair potential with the ZBL potential for small
- atom separations :ref:`(ZBL) <ZBL>`
- default = 1
- gsmooth_factor = factor determining the length of the G-function smoothing
- region; only significant for ibar=0 or ibar=4.
- 99.0 = short smoothing region, sharp step
- 0.5 = long smoothing region, smooth step
- default = 99.0
- augt1 = integer flag for whether to augment t1 parameter by
- 3/5*t3 to account for old vs. new meam formulations;
- 0 = don't augment t1
- 1 = augment t1
- default = 1
- ialloy = integer flag to use alternative averaging rule for t parameters,
- for comparison with the DYNAMO MEAM code
- 0 = standard averaging (matches ialloy=0 in DYNAMO)
- 1 = alternative averaging (matches ialloy=1 in DYNAMO)
- 2 = no averaging of t (use single-element values)
- default = 0
- mixture_ref_t = integer flag to use mixture average of t to compute the background
- reference density for alloys, instead of the single-element values
- (see description and warning elsewhere in this doc page)
- 0 = do not use mixture averaging for t in the reference density
- 1 = use mixture averaging for t in the reference density
- default = 0
- erose_form = integer value to select the form of the Rose energy function
- (see description below).
- default = 0
- emb_lin_neg = integer value to select embedding function for negative densities
- 0 = F(rho)=0
- 1 = F(rho) = -asub*esub*rho (linear in rho, matches DYNAMO)
- default = 0
- bkgd_dyn = integer value to select background density formula
- 0 = rho_bkgd = rho_ref_meam(a) (as in the reference structure)
- 1 = rho_bkgd = rho0_meam(a)*Z_meam(a) (matches DYNAMO)
- default = 0
-
-Rc, delr, re are in distance units (Angstroms in the case of metal
-units). Ec and delta are in energy units (eV in the case of metal
-units).
-
-Each keyword represents a quantity which is either a scalar, vector,
-2d array, or 3d array and must be specified with the correct
-corresponding array syntax. The indices I,J,K each run from 1 to N
-where N is the number of MEAM elements being used.
-
-Thus these lines
-
-.. parsed-literal::
-
- rho0(2) = 2.25
- alpha(1,2) = 4.37
-
-set rho0 for the 2nd element to the value 2.25 and set alpha for the
-alloy interaction between elements 1 and 2 to 4.37.
-
-The augt1 parameter is related to modifications in the MEAM
-formulation of the partial electron density function. In recent
-literature, an extra term is included in the expression for the
-third-order density in order to make the densities orthogonal (see for
-example :ref:`(Wang) <Wang>`, equation 3d); this term is included in the
-MEAM implementation in lammps. However, in earlier published work
-this term was not included when deriving parameters, including most of
-those provided in the library.meam file included with lammps, and to
-account for this difference the parameter t1 must be augmented by
-3/5*t3. If augt1=1, the default, this augmentation is done
-automatically. When parameter values are fit using the modified
-density function, as in more recent literature, augt1 should be set to
-0.
-
-The mixture_ref_t parameter is available to match results with those
-of previous versions of lammps (before January 2011). Newer versions
-of lammps, by default, use the single-element values of the t
-parameters to compute the background reference density. This is the
-proper way to compute these parameters. Earlier versions of lammps
-used an alloy mixture averaged value of t to compute the background
-reference density. Setting mixture_ref_t=1 gives the old behavior.
-WARNING: using mixture_ref_t=1 will give results that are demonstrably
-incorrect for second-neighbor MEAM, and non-standard for
-first-neighbor MEAM; this option is included only for matching with
-previous versions of lammps and should be avoided if possible.
-
-The parameters attrac and repuls, along with the integer selection
-parameter erose_form, can be used to modify the Rose energy function
-used to compute the pair potential. This function gives the energy of
-the reference state as a function of interatomic spacing. The form of
-this function is:
-
-.. parsed-literal::
-
- astar = alpha * (r/re - 1.d0)
- if erose_form = 0: erose = -Ec*(1+astar+a3*(astar**3)/(r/re))*exp(-astar)
- if erose_form = 1: erose = -Ec*(1+astar+(-attrac+repuls/r)*(astar**3))*exp(-astar)
- if erose_form = 2: erose = -Ec*(1 +astar + a3*(astar**3))*exp(-astar)
- a3 = repuls, astar < 0
- a3 = attrac, astar >= 0
-
-Most published MEAM parameter sets use the default values attrac=repulse=0.
-Setting repuls=attrac=delta corresponds to the form used in several
-recent published MEAM parameter sets, such as :ref:`(Vallone) <Vallone>`
-
-.. note::
-
- The default form of the erose expression in LAMMPS was corrected
- in March 2009. The current version is correct, but may show different
- behavior compared with earlier versions of lammps with the attrac
- and/or repuls parameters are non-zero. To obtain the previous default
- form, use erose_form = 1 (this form does not seem to appear in the
- literature). An alternative form (see e.g. :ref:`(Lee2) <Lee2>`) is
- available using erose_form = 2.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS with
-user-specifiable parameters as described above. You never need to
-specify a pair_coeff command with I != J arguments for this style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the MEAM package. It is only enabled if LAMMPS
-was built with that package, which also requires the MEAM library be
-built and linked with LAMMPS. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style eam <pair_eam>`,
-:doc:`pair_style meam/spline <pair_meam_spline>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Baskes:
-
-
-
-**(Baskes)** Baskes, Phys Rev B, 46, 2727-2742 (1992).
-
-.. _Gullet:
-
-
-
-**(Gullet)** Gullet, Wagner, Slepoy, SANDIA Report 2003-8782 (2003).
-This report may be accessed on-line via `this link <sandreport_>`_.
-
-.. _sandreport: http://infoserve.sandia.gov/sand_doc/2003/038782.pdf
-
-
-
-.. _Lee:
-
-
-
-**(Lee)** Lee, Baskes, Phys. Rev. B, 62, 8564-8567 (2000).
-
-.. _Lee2:
-
-
-
-**(Lee2)** Lee, Baskes, Kim, Cho. Phys. Rev. B, 64, 184102 (2001).
-
-.. _Valone:
-
-
-
-**(Valone)** Valone, Baskes, Martin, Phys. Rev. B, 73, 214209 (2006).
-
-.. _Wang:
-
-
-
-**(Wang)** Wang, Van Hove, Ross, Baskes, J. Chem. Phys., 121, 5410 (2004).
-
-.. _ZBL:
-
-
-
-**(ZBL)** J.F. Ziegler, J.P. Biersack, U. Littmark, "Stopping and Ranges
-of Ions in Matter", Vol 1, 1985, Pergamon Press.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_meam_spline.txt b/doc/_sources/pair_meam_spline.txt
deleted file mode 100644
index 21a0a4daf..000000000
--- a/doc/_sources/pair_meam_spline.txt
+++ /dev/null
@@ -1,167 +0,0 @@
-pair_style meam/spline
-======================
-
-pair_style meam/spline/omp
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style meam/spline
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style meam/spline
- pair_coeff * * Ti.meam.spline Ti
- pair_coeff * * Ti.meam.spline Ti Ti Ti
-
-Description
-"""""""""""
-
-The *meam/spline* style computes pairwise interactions for metals
-using a variant of modified embedded-atom method (MEAM) potentials
-:ref:`(Lenosky) <Lenosky>`. The total energy E is given by
-
-.. image:: Eqs/pair_meam_spline.jpg
- :align: center
-
-where rho_i is the density at atom I, theta_jik is the angle between
-atoms J, I, and K centered on atom I. The five functions Phi, U, rho,
-f, and g are represented by cubic splines.
-
-The cutoffs and the coefficients for these spline functions are listed
-in a parameter file which is specified by the
-:doc:`pair_coeff <pair_coeff>` command. Parameter files for different
-elements are included in the "potentials" directory of the LAMMPS
-distribution and have a ".meam.spline" file suffix. All of these
-files are parameterized in terms of LAMMPS :doc:`metal units <units>`.
-
-Note that unlike for other potentials, cutoffs for spline-based MEAM
-potentials are not set in the pair_style or pair_coeff command; they
-are specified in the potential files themselves.
-
-Unlike the EAM pair style, which retrieves the atomic mass from the
-potential file, the spline-based MEAM potentials do not include mass
-information; thus you need to use the :doc:`mass <mass>` command to
-specify it.
-
-Only a single pair_coeff command is used with the *meam/spline* style
-which specifies a potential file with parameters for all needed
-elements. These are mapped to LAMMPS atom types by specifying N
-additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of spline-based MEAM elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine the Ti.meam.spline file has values for Ti. If
-your LAMMPS simulation has 3 atoms types and they are all to be
-treated with this potentials, you would use the following pair_coeff
-command:
-
-.. parsed-literal::
-
- pair_coeff * * Ti.meam.spline Ti Ti Ti
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The three Ti arguments map LAMMPS atom types 1,2,3 to the Ti element
-in the potential file. If a mapping value is specified as NULL, the
-mapping is not performed. This can be used when a *meam/spline*
-potential is used as part of the *hybrid* pair style. The NULL values
-are placeholders for atom types that will be used with other
-potentials.
-
-.. note::
-
- The *meam/spline* style currently supports only single-element
- MEAM potentials. It may be extended for alloy systems in the future.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-The current version of this pair style does not support multiple
-element types or mixing. It has been designed for pure elements only.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-The *meam/spline* pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in an external
-potential parameter file. Thus, you need to re-specify the pair_style
-and pair_coeff commands in an input script that reads a restart file.
-
-The *meam/spline* pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-This pair style is only enabled if LAMMPS was built with the USER-MISC
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style meam <pair_meam>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Lenosky:
-
-
-
-**(Lenosky)** Lenosky, Sadigh, Alonso, Bulatov, de la Rubia, Kim, Voter,
-Kress, Modelling Simulation Materials Science Enginerring, 8, 825
-(2000).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_meam_sw_spline.txt b/doc/_sources/pair_meam_sw_spline.txt
deleted file mode 100644
index 572b58e7c..000000000
--- a/doc/_sources/pair_meam_sw_spline.txt
+++ /dev/null
@@ -1,165 +0,0 @@
-pair_style meam/sw/spline
-=========================
-
-pair_style meam/sw/spline/omp
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style meam/sw/spline
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style meam/sw/spline
- pair_coeff * * Ti.meam.sw.spline Ti
- pair_coeff * * Ti.meam.sw.spline Ti Ti Ti
-
-Description
-"""""""""""
-
-The *meam/sw/spline* style computes pairwise interactions for metals
-using a variant of modified embedded-atom method (MEAM) potentials
-:ref:`(Lenosky) <Lenosky>` with an additional Stillinger-Weber (SW) term
-:ref:`(Stillinger) <Stillinger>` in the energy. This form of the potential
-was first proposed by Nicklas, Fellinger, and Park
-:ref:`(Nicklas) <Nicklas>`. We refer to it as MEAM+SW. The total energy E
-is given by
-
-.. image:: Eqs/pair_meam_sw_spline.jpg
- :align: center
-
-where rho_I is the density at atom I, theta_JIK is the angle between
-atoms J, I, and K centered on atom I. The seven functions
-Phi, F, G, U, rho, f, and g are represented by cubic splines.
-
-The cutoffs and the coefficients for these spline functions are listed
-in a parameter file which is specified by the
-:doc:`pair_coeff <pair_coeff>` command. Parameter files for different
-elements are included in the "potentials" directory of the LAMMPS
-distribution and have a ".meam.sw.spline" file suffix. All of these
-files are parameterized in terms of LAMMPS :doc:`metal units <units>`.
-
-Note that unlike for other potentials, cutoffs for spline-based
-MEAM+SW potentials are not set in the pair_style or pair_coeff
-command; they are specified in the potential files themselves.
-
-Unlike the EAM pair style, which retrieves the atomic mass from the
-potential file, the spline-based MEAM+SW potentials do not include
-mass information; thus you need to use the :doc:`mass <mass>` command to
-specify it.
-
-Only a single pair_coeff command is used with the meam/sw/spline style
-which specifies a potential file with parameters for all needed
-elements. These are mapped to LAMMPS atom types by specifying N
-additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of spline-based MEAM+SW elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine the Ti.meam.sw.spline file has values for Ti.
-If your LAMMPS simulation has 3 atoms types and they are all to be
-treated with this potential, you would use the following pair_coeff
-command:
-
-pair_coeff * * Ti.meam.sw.spline Ti Ti Ti
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The three Ti arguments map LAMMPS atom types 1,2,3 to the Ti element
-in the potential file. If a mapping value is specified as NULL, the
-mapping is not performed. This can be used when a *meam/sw/spline*
-potential is used as part of the hybrid pair style. The NULL values
-are placeholders for atom types that will be used with other
-potentials.
-
-.. note::
-
- The *meam/sw/spline* style currently supports only
- single-element MEAM+SW potentials. It may be extended for alloy
- systems in the future.
-
-Example input scripts that use this pair style are provided
-in the examples/USER/misc/meam_sw_spline directory.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-The pair style does not support multiple element types or mixing.
-It has been designed for pure elements only.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-The *meam/sw/spline* pair style does not write its information to
-:doc:`binary restart files <restart>`, since it is stored in an external
-potential parameter file. Thus, you need to re-specify the pair_style
-and pair_coeff commands in an input script that reads a restart file.
-
-The *meam/sw/spline* pair style can only be used via the *pair*
-keyword of the :doc:`run_style respa <run_style>` command. They do not
-support the *inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-This pair style is only enabled if LAMMPS was built with the USER-MISC package.
-See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style meam <pair_meam>`,
-:doc:`pair_style meam/spline <pair_meam_spline>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Lenosky:
-
-
-
-**(Lenosky)** Lenosky, Sadigh, Alonso, Bulatov, de la Rubia, Kim, Voter,
-Kress, Modell. Simul. Mater. Sci. Eng. 8, 825 (2000).
-
-.. _Stillinger:
-
-
-
-**(Stillinger)** Stillinger, Weber, Phys. Rev. B 31, 5262 (1985).
-
-.. _Nicklas:
-
-
-
-**(Nicklas)**
-The spline-based MEAM+SW format was first devised and used to develop
-potentials for bcc transition metals by Jeremy Nicklas, Michael Fellinger,
-and Hyoungki Park at The Ohio State University.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_mgpt.txt b/doc/_sources/pair_mgpt.txt
deleted file mode 100644
index 736d2153f..000000000
--- a/doc/_sources/pair_mgpt.txt
+++ /dev/null
@@ -1,252 +0,0 @@
-.. index:: pair_style mgpt
-
-pair_style mgpt command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style mgpt
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style mgpt
- pair_coeff * * Ta6.8x.mgpt.parmin Ta6.8x.mgpt.potin Omega
- cp ~/lammps/potentials/Ta6.8x.mgpt.parmin parmin
- cp ~/lammps/potentials/Ta6.8x.mgpt.potin potin
- pair_coeff * * parmin potin Omega volpress yes nbody 1234 precision double
- pair_coeff * * parmin potin Omega volpress yes nbody 12
-
-Description
-"""""""""""
-
-Within DFT quantum mechanics, generalized pseudopotential theory (GPT)
-(:ref:`Moriarty1 <Moriarty1>`) provides a first-principles approach to
-multi-ion interatomic potentials in d-band transition metals, with a
-volume-dependent, real-space total-energy functional for the N-ion
-elemental bulk material in the form
-
-.. image:: Eqs/pair_mgpt.jpg
- :align: center
-
-where the prime on each summation sign indicates the exclusion of all
-self-interaction terms from the summation. The leading volume term
-E_vol as well as the two-ion central-force pair potential v_2 and the
-three- and four-ion angular-force potentials, v_3 and v_4, depend
-explicitly on the atomic volume Omega, but are structure independent
-and transferable to all bulk ion configurations, either ordered or
-disordered, and with of without the presence of point and line
-defects. The simplified model GPT or MGPT (:ref:`Moriarty2 <Moriarty2>`,
-:ref:`Moriarty3 <Moriarty3>`), which retains the form of E_tot and permits
-more efficient large-scale atomistic simulations, derives from the GPT
-through a series of systematic approximations applied to E_vol and the
-potentials v_n that are valid for mid-period transition metals with
-nearly half-filled d bands.
-
-Both analytic (:ref:`Moriarty2 <Moriarty2>`) and matrix
-(:ref:`Moriarty3 <Moriarty3>`) representations of MGPT have been developed.
-In the more general matrix representation, which can also be applied
-to f-band actinide metals and permits both canonical and non-canonical
-d/f bands, the multi-ion potentials are evaluated on the fly during a
-simulation through d- or f-state matrix multiplication, and the forces
-that move the ions are determined analytically. Fast matrix-MGPT
-algorithms have been developed independently by Glosli
-(:ref:`Glosli <Glosli>`, :ref:`Moriarty3 <Moriarty3>`) and by Oppelstrup
-(:ref:`Oppelstrup <Oppelstrup>`)
-
-The *mgpt* pair style calculates forces, energies, and the total
-energy per atom, E_tot/N, using the Oppelstrup matrix-MGPT algorithm.
-Input potential and control data are entered through the
-:doc:`pair_coeff <pair_coeff>` command. Each material treated requires
-input parmin and potin potential files, as shown in the above
-examples, as well as specification by the user of the initial atomic
-volume Omega through pair_coeff. At the beginning of a time step in
-any simulation, the total volume of the simulation cell V should
-always be equal to Omega*N, where N is the number of metal ions
-present, taking into account the presence of any vacancies and/or
-interstitials in the case of a solid. In a constant-volume
-simulation, which is the normal mode of operation for the *mgpt* pair
-style, Omega, V and N all remain constant throughout the simulation
-and thus are equal to their initial values. In a constant-stress
-simulation, the cell volume V will change (slowly) as the simulation
-proceeds. After each time step, the atomic volume should be updated
-by the code as Omega = V/N. In addition, the volume term E_vol and
-the potentials v_2, v_3 and v_4 have to be removed at the end of the
-time step, and then respecified at the new value of Omega. In all
-smulations, Omega must remain within the defined volume range for
-E_vol and the potentials for the given material.
-
-The default option volpress yes in the :doc:`pair_coeff <pair_coeff>`
-command includes all volume derivatives of E_tot required to calculate
-the stress tensor and pressure correctly. The option volpress no
-disregards the pressure contribution resulting from the volume term
-E_vol, and can be used for testing and analysis purposes. The
-additional optional variable nbody controls the specific terms in
-E_tot that are calculated. The default option and the normal option
-for mid-period transition and actinide metals is nbody 1234 for which
-all four terms in E_tot are retained. The option nbody 12, for
-example, retains only the volume term and the two-ion pair potential
-term and can be used for GPT series-end transition metals that can be
-well described without v_3 and v_4. The nbody option can also be used
-to test or analyze the contribution of any of the four terms in E_tot
-to a given calculated property.
-
-The *mgpt* pair style makes extensive use of matrix algebra and
-includes optimized kernels for the BlueGene/Q architecture and the
-Intel/AMD (x86) architectures. When compiled with the appropriate
-compiler and compiler switches (-msse3 on x86, and using the IBM XL
-compiler on BG/Q), these optimized routines are used automatically.
-For BG/Q machines, building with the default Makefile for that
-architecture (e.g., "make bgq") should enable the optimized algebra
-routines. For x-86 machines, the here provided Makefile.mpi_fastmgpt
-(build with "make mpi_fastmgpt") enables the fast algebra routines.
-The user will be informed in the output files of the matrix kernels in
-use. To further improve speed, on x86 the option precision single can
-be added to the :doc:`pair_coeff <pair_coeff>` command line, which
-improves speed (up to a factor of two) at the cost of doing matrix
-calculations with 7 digit precision instead of the default 16. For
-consistency the default option can be specified explicitly by the
-option precision double.
-
-All remaining potential and control data are contained with the parmin
-and potin files, including cutoffs, atomic mass, and other basic MGPT
-variables. Specific MGPT potential data for the transition metals
-tantalum (Ta4 and Ta6.8x potentials), molybdenum (Mo5.2 potentials),
-and vanadium (V6.1 potentials) are contained in the LAMMPS potentials
-directory. The stored files are, respectively, Ta4.mgpt.parmin,
-Ta4.mgpt.potin, Ta6.8x.mgpt.parmin, Ta6.8x.mgpt.potin,
-Mo5.2.mgpt.parmin, Mo5.2.mgpt.potin, V6.1.mgpt.parmin, and
-V6.1.mgpt.potin . Useful corresponding informational "README" files
-on the Ta4, Ta6.8x, Mo5.2 and V6.1 potentials are also included in the
-potentials directory. These latter files indicate the volume mesh and
-range for each potential and give appropriate references for the
-potentials. It is expected that MGPT potentials for additional
-materials will be added over time.
-
-Useful example MGPT scripts are given in the examples/USER/mgpt
-directory. These scripts show the necessary steps to perform
-constant-volume calculations and simulations. It is strongly
-recommended that the user work through and understand these examples
-before proceeding to more complex simulations.
-
-.. note::
-
- For good performance, LAMMPS should be built with the compiler
- flags "-O3 -msse3 -funroll-loops" when including this pair style. The
- src/MAKE/OPTIONS/Makefile.mpi_fastmgpt is an example machine Makefile
- with these options included as part of a standard MPI build. Note
- that as-is it will build with whatever low-level compiler (g++, icc,
- etc) is the default for your MPI installation.
-
-
-----------
-
-
-**Mixing, shift, table tail correction, restart**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-needs to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-MGPT package and is only enabled
-if LAMMPS is built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The MGPT potentials require the :doc:`newtion <newton>` setting to be
-"on" for pair style interactions.
-
-The stored parmin and potin potential files provided with LAMMPS in
-the "potentials" directory are written in Rydberg atomic units, with
-energies in Rydbergs and distances in Bohr radii. The *mgpt* pair
-style converts Rydbergs to Hartrees to make the potential files
-compatible with LAMMPS electron :doc:`units <units>`.
-
-The form of E_tot used in the *mgpt* pair style is only appropriate
-for elemental bulk solids and liquids. This includes solids with
-point and extended defects such as vacancies, interstitials, grain
-boundaries and dislocations. Alloys and free surfaces, however,
-require significant modifications, which are not included in the
-*mgpt* pair style. Likewise, the *hybrid* pair style is not allowed,
-where MGPT would be used for some atoms but not for others.
-
-Electron-thermal effects are not included in the standard MGPT
-potentials provided in the "potentials" directory, where the
-potentials have been constructed at zero electron temperature.
-Physically, electron-thermal effects may be important in 3d (e.g., V)
-and 4d (e.g., Mo) transition metals at high temperatures near melt and
-above. It is expected that temperature-dependent MGPT potentials for
-such cases will be added over time.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-Default
-"""""""
-
-The options defaults for the :doc:`pair_coeff <pair_coeff>` command are
-volpress yes, nbody 1234, and precision double.
-
-
-----------
-
-
-.. _Moriarty1:
-
-
-
-**(Moriarty1)** Moriarty, Physical Review B, 38, 3199 (1988).
-
-.. _Moriarty2:
-
-
-
-**(Moriarty2)** Moriarty, Physical Review B, 42, 1609 (1990).
-Moriarty, Physical Review B 49, 12431 (1994).
-
-.. _Moriarty3:
-
-
-
-**(Moriarty3)** Moriarty, Benedict, Glosli, Hood, Orlikowski, Patel, Soderlind, Streitz, Tang, and Yang,
-Journal of Materials Research, 21, 563 (2006).
-
-.. _Glosli:
-
-
-
-**(Glosli)** Glosli, unpublished, 2005.
-Streitz, Glosli, Patel, Chan, Yates, de Supinski, Sexton and Gunnels, Journal of Physics: Conference
-Series, 46, 254 (2006).
-
-.. _Oppelstrup:
-
-
-
-**(Oppelstrup)** Oppelstrup, unpublished, 2015.
-Oppelstrup and Moriarty, to be published.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_mie.txt b/doc/_sources/pair_mie.txt
deleted file mode 100644
index a14653cad..000000000
--- a/doc/_sources/pair_mie.txt
+++ /dev/null
@@ -1,124 +0,0 @@
-.. index:: pair_style mie/cut
-
-pair_style mie/cut command
-==========================
-
-pair_style mie/cut/gpu command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style mie/cut cutoff
-
-* cutoff = global cutoff for mie/cut interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style mie/cut 10.0
- pair_coeff 1 1 0.72 3.40 23.00 6.66
- pair_coeff 2 2 0.30 3.55 12.65 6.00
- pair_coeff 1 2 0.46 3.32 16.90 6.31
-
-Description
-"""""""""""
-
-The *mie/cut* style computes the Mie potential, given by
-
-.. image:: Eqs/pair_mie.jpg
- :align: center
-
-Rc is the cutoff and C is a function that depends on the repulsive and
-attractive exponents, given by:
-
-.. image:: Eqs/pair_mie2.jpg
- :align: center
-
-Note that for 12/6 exponents, C is equal to 4 and the formula is the
-same as the standard Lennard-Jones potential.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* epsilon (energy units)
-* sigma (distance units)
-* gammaR
-* gammaA
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global
-cutoff specified in the pair_style command is used.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the mie/cut pair styles can be mixed.
-If not explicity defined, both the repulsive and attractive gamma
-exponents for different atoms will be calculated following the same
-mixing rule defined for distances. The default mix value is
-*geometric*. See the "pair_modify" command for details.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` tail
-option for adding a long-range tail correction to the energy and
-pressure of the pair interaction.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style supports the use of the *inner*, *middle*, and *outer*
-keywords of the :doc:`run_style respa <run_style>` command, meaning the
-pairwise forces can be partitioned by distance at different levels of
-the rRESPA hierarchy. See the :doc:`run_style <run_style>` command for
-details.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Mie:
-
-
-
-**(Mie)** G. Mie, Ann Phys, 316, 657 (1903).
-
-.. _Avendano:
-
-
-
-**(Avendano)** C. Avendano, T. Lafitte, A. Galindo, C. S. Adjiman,
-G. Jackson, E. Muller, J Phys Chem B, 115, 11154 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_modify.txt b/doc/_sources/pair_modify.txt
deleted file mode 100644
index 14de54005..000000000
--- a/doc/_sources/pair_modify.txt
+++ /dev/null
@@ -1,292 +0,0 @@
-.. index:: pair_modify
-
-pair_modify command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_modify keyword values ...
-
-* one or more keyword/value pairs may be listed
-* keyword = *pair* or *shift* or *mix* or *table* or *table/disp* or *tabinner* or *tabinner/disp* or *tail* or *compute*
-.. parsed-literal::
-
- *pair* values = sub-style N *special* which wt1 wt2 wt3
- sub-style = sub-style of :doc:`pair hybrid <pair_hybrid>`
- N = which instance of sub-style (only if sub-style is used multiple times)
- *special* which wt1 wt2 wt3 = override *special_bonds* settings (optional)
- which = *lj/coul* or *lj* or *coul*
- w1,w2,w3 = 1-2, 1-3, and 1-4 weights from 0.0 to 1.0 inclusive
- *mix* value = *geometric* or *arithmetic* or *sixthpower*
- *shift* value = *yes* or *no*
- *table* value = N
- 2^N = # of values in table
- *table/disp* value = N
- 2^N = # of values in table
- *tabinner* value = cutoff
- cutoff = inner cutoff at which to begin table (distance units)
- *tabinner/disp* value = cutoff
- cutoff = inner cutoff at which to begin table (distance units)
- *tail* value = *yes* or *no*
- *compute* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_modify shift yes mix geometric
- pair_modify tail yes
- pair_modify table 12
- pair_modify pair lj/cut compute no
- pair_modify pair lj/cut/coul/long 1 special lj/coul 0.0 0.0 0.0
-
-Description
-"""""""""""
-
-Modify the parameters of the currently defined pair style. Not all
-parameters are relevant to all pair styles.
-
-If used, the *pair* keyword must appear first in the list of keywords.
-It can only be used with the :doc:`hybrid and hybrid/overlay <pair_hybrid>` pair styles. It means that all the
-following parameters will only be modified for the specified
-sub-style. If the sub-style is defined multiple times, then an
-additional numeric argument *N* must also be specified, which is a
-number from 1 to M where M is the number of times the sub-style was
-listed in the :doc:`pair_style hybrid <pair_hybrid>` command. The extra
-number indicates which instance of the sub-style the remaining
-keywords will be applied to. Note that if the *pair* keyword is not
-used, and the pair style is *hybrid* or *hybrid/overlay*, then all the
-specified keywords will be applied to all sub-styles.
-
-The *special* keyword can only be used in conjunction with the *pair*
-keyword and must directly follow it. It allows to override the
-:doc:`special_bonds <special_bonds>` settings for the specified sub-style.
-More details are given below.
-
-The *mix* keyword affects pair coefficients for interactions between
-atoms of type I and J, when I != J and the coefficients are not
-explicitly set in the input script. Note that coefficients for I = J
-must be set explicitly, either in the input script via the
-"pair_coeff" command or in the "Pair Coeffs" section of the :doc:`data file <read_data>`. For some pair styles it is not necessary to
-specify coefficients when I != J, since a "mixing" rule will create
-them from the I,I and J,J settings. The pair_modify *mix* value
-determines what formulas are used to compute the mixed coefficients.
-In each case, the cutoff distance is mixed the same way as sigma.
-
-Note that not all pair styles support mixing. Also, some mix options
-are not available for certain pair styles. See the doc page for
-individual pair styles for those restrictions. Note also that the
-:doc:`pair_coeff <pair_coeff>` command also can be to directly set
-coefficients for a specific I != J pairing, in which case no mixing is
-performed.
-
-mix *geometric*
-
-.. parsed-literal::
-
- epsilon_ij = sqrt(epsilon_i * epsilon_j)
- sigma_ij = sqrt(sigma_i * sigma_j)
-
-mix *arithmetic*
-
-.. parsed-literal::
-
- epsilon_ij = sqrt(epsilon_i * epsilon_j)
- sigma_ij = (sigma_i + sigma_j) / 2
-
-mix *sixthpower*
-
-.. parsed-literal::
-
- epsilon_ij = (2 * sqrt(epsilon_i*epsilon_j) * sigma_i^3 * sigma_j^3) /
- (sigma_i^6 + sigma_j^6)
- sigma_ij = ((sigma_i**6 + sigma_j**6) / 2) ^ (1/6)
-
-The *shift* keyword determines whether a Lennard-Jones potential is
-shifted at its cutoff to 0.0. If so, this adds an energy term to each
-pairwise interaction which will be included in the thermodynamic
-output, but does not affect pair forces or atom trajectories. See the
-doc page for individual pair styles to see which ones support this
-option.
-
-The *table* and *table/disp* keywords apply to pair styles with a
-long-range Coulombic term or long-range dispersion term respectively;
-see the doc page for individual styles to see which potentials support
-these options. If N is non-zero, a table of length 2^N is
-pre-computed for forces and energies, which can shrink their
-computational cost by up to a factor of 2. The table is indexed via a
-bit-mapping technique :ref:`(Wolff) <Wolff>` and a linear interpolation is
-performed between adjacent table values. In our experiments with
-different table styles (lookup, linear, spline), this method typically
-gave the best performance in terms of speed and accuracy.
-
-The choice of table length is a tradeoff in accuracy versus speed. A
-larger N yields more accurate force computations, but requires more
-memory which can slow down the computation due to cache misses. A
-reasonable value of N is between 8 and 16. The default value of 12
-(table of length 4096) gives approximately the same accuracy as the
-no-table (N = 0) option. For N = 0, forces and energies are computed
-directly, using a polynomial fit for the needed erfc() function
-evaluation, which is what earlier versions of LAMMPS did. Values
-greater than 16 typically slow down the simulation and will not
-improve accuracy; values from 1 to 8 give unreliable results.
-
-The *tabinner* and *tabinner/disp* keywords set an inner cutoff above
-which the pairwise computation is done by table lookup (if tables are
-invoked), for the corresponding Coulombic and dispersion tables
-discussed with the *table* and *table/disp* keywords. The smaller the
-cutoff is set, the less accurate the table becomes (for a given number
-of table values), which can require use of larger tables. The default
-cutoff value is sqrt(2.0) distance units which means nearly all
-pairwise interactions are computed via table lookup for simulations
-with "real" units, but some close pairs may be computed directly
-(non-table) for simulations with "lj" units.
-
-When the *tail* keyword is set to *yes*, certain pair styles will add
-a long-range VanderWaals tail "correction" to the energy and pressure.
-These corrections are bookkeeping terms which do not affect dynamics,
-unless a constant-pressure simulation is being performed. See the doc
-page for individual styles to see which support this option. These
-corrections are included in the calculation and printing of
-thermodynamic quantities (see the :doc:`thermo_style <thermo_style>`
-command). Their effect will also be included in constant NPT or NPH
-simulations where the pressure influences the simulation box
-dimensions (e.g. the :doc:`fix npt <fix_nh>` and :doc:`fix nph <fix_nh>`
-commands). The formulas used for the long-range corrections come from
-equation 5 of :ref:`(Sun) <Sun>`.
-
-.. note::
-
- The tail correction terms are computed at the beginning of each
- run, using the current atom counts of each atom type. If atoms are
- deleted (or lost) or created during a simulation, e.g. via the :doc:`fix gcmc <fix_gcmc>` command, the correction factors are not
- re-computed. If you expect the counts to change dramatically, you can
- break a run into a series of shorter runs so that the correction
- factors are re-computed more frequently.
-
-Several additional assumptions are inherent in using tail corrections,
-including the following:
-
-* The simulated system is a 3d bulk homogeneous liquid. This option
- should not be used for systems that are non-liquid, 2d, have a slab
- geometry (only 2d periodic), or inhomogeneous.
-* G(r), the radial distribution function (rdf), is unity beyond the
- cutoff, so a fairly large cutoff should be used (i.e. 2.5 sigma for an
- LJ fluid), and it is probably a good idea to verify this assumption by
- checking the rdf. The rdf is not exactly unity beyond the cutoff for
- each pair of interaction types, so the tail correction is necessarily
- an approximation.
-The tail corrections are computed at the beginning of each simulation
-run. If the number of atoms changes during the run, e.g. due to atoms
-leaving the simulation domain, or use of the :doc:`fix gcmc <fix_gcmc>`
-command, then the corrections are not updates to relect the changed
-atom count. If this is a large effect in your simulation, you should
-break the long run into several short runs, so that the correction
-factors are re-computed multiple times.
-
-* Thermophysical properties obtained from calculations with this option
- enabled will not be thermodynamically consistent with the truncated
- force-field that was used. In other words, atoms do not feel any LJ
- pair interactions beyond the cutoff, but the energy and pressure
- reported by the simulation include an estimated contribution from
- those interactions.
-The *compute* keyword allows pairwise computations to be turned off,
-even though a :doc:`pair_style <pair_style>` is defined. This is not
-useful for running a real simulation, but can be useful for debugging
-purposes or for performing a :doc:`rerun <rerun>` simulation, when you
-only wish to compute partial forces that do not include the pairwise
-contribution.
-
-Two examples are as follows. First, this option allows you to perform
-a simulation with :doc:`pair_style hybrid <pair_hybrid>` with only a
-subset of the hybrid sub-styles enabled. Second, this option allows
-you to perform a simulation with only long-range interactions but no
-short-range pairwise interactions. Doing this by simply not defining
-a pair style will not work, because the
-:doc:`kspace_style <kspace_style>` command requires a Kspace-compatible
-pair style be defined.
-
-
-----------
-
-
-Use of *special* keyword
-^^^^^^^^^^^^^^^^^^^^^^^^
-
-The *special* keyword allows to override the 1-2, 1-3, and 1-4
-exclusion settings for individual sub-styles of a
-:doc:`hybrid pair style <pair_hybrid>`. It requires 4 arguments similar
-to the :doc:`special_bonds <special_bonds>` command, *which* and
-wt1,wt2,wt3. The *which* argument can be *lj* to change the
-Lennard-Jones settings, *coul* to change the Coulombic settings,
-or *lj/coul* to change both to the same set of 3 values. The wt1,wt2,wt3
-values are numeric weights from 0.0 to 1.0 inclusive, for the 1-2,
-1-3, and 1-4 bond topology neighbors, respectively. The *special*
-keyword can only be used in conjunction with the *pair* keyword
-and has to directly follow it.
-
-.. note::
-
- The global settings specified by the
- :doc:`special_bonds <special_bonds>` command affect the construction of
- neighbor lists. Weights of 0.0 (for 1-2, 1-3, or 1-4 neighbors)
- exclude those pairs from the neighbor list entirely. Weights of 1.0
- store the neighbor with no weighting applied. Thus only global values
- different from exactly 0.0 or 1.0 can be overridden and an error is
- generated if the requested setting is not compatible with the global
- setting. Substituting 1.0e-10 for 0.0 and 0.9999999999 for 1.0 is
- usually a sufficient workaround in this case without causing a
- significant error.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-You cannot use *shift* yes with *tail* yes, since those are
-conflicting options. You cannot use *tail* yes with 2d simulations.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style <pair_style>`, :doc:`pair_coeff <pair_coeff>`,
-:doc:`thermo_style <thermo_style>`
-
-Default
-"""""""
-
-The option defaults are mix = geometric, shift = no, table = 12,
-tabinner = sqrt(2.0), tail = no, and compute = yes.
-
-Note that some pair styles perform mixing, but only a certain style of
-mixing. See the doc pages for individual pair styles for details.
-
-
-----------
-
-
-.. _Wolff:
-
-
-
-**(Wolff)** Wolff and Rudd, Comp Phys Comm, 120, 200-32 (1999).
-
-.. _Sun:
-
-
-
-**(Sun)** Sun, J Phys Chem B, 102, 7338-7364 (1998).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_morse.txt b/doc/_sources/pair_morse.txt
deleted file mode 100644
index 09e9ccd2a..000000000
--- a/doc/_sources/pair_morse.txt
+++ /dev/null
@@ -1,151 +0,0 @@
-.. index:: pair_style morse
-
-pair_style morse command
-========================
-
-pair_style morse/cuda command
-=============================
-
-pair_style morse/gpu command
-============================
-
-pair_style morse/omp command
-============================
-
-pair_style morse/opt command
-============================
-
-pair_style morse/smooth/linear command
-======================================
-
-pair_style morse/smooth/linear/omp command
-==========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style morse cutoff
-
-* cutoff = global cutoff for Morse interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style morse 2.5
- pair_style morse/smooth/linear 2.5
- pair_coeff * * 100.0 2.0 1.5
- pair_coeff 1 1 100.0 2.0 1.5 3.0
-
-Description
-"""""""""""
-
-Style *morse* computes pairwise interactions with the formula
-
-.. image:: Eqs/pair_morse.jpg
- :align: center
-
-Rc is the cutoff.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* D0 (energy units)
-* alpha (1/distance units)
-* r0 (distance units)
-* cutoff (distance units)
-
-* The last coefficient is optional. If not specified, the global morse
-* cutoff is used.
-
-
-----------
-
-
-The *smooth/linear* variant is similar to the lj/smooth/linear variant
-in that it adds to the potential a shift and a linear term to make both
-the potential energy and force go to zero at the cut-off:
-
-.. image:: Eqs/pair_morse_smooth_linear.jpg
- :align: center
-
-The syntax of the pair_style and pair_coeff commands are the same for
-the *morse* and *morse/smooth/linear* styles.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-None of these pair styles support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-All of these pair styles support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table options is not relevant for
-the Morse pair styles.
-
-None of these pair styles support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-All of these pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *morse/smooth/linear* pair style is only enabled if LAMMPS was
-built with the USER-MISC package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_nb3b_harmonic.txt b/doc/_sources/pair_nb3b_harmonic.txt
deleted file mode 100644
index 7d51601c4..000000000
--- a/doc/_sources/pair_nb3b_harmonic.txt
+++ /dev/null
@@ -1,139 +0,0 @@
-.. index:: pair_style nb3b/harmonic
-
-pair_style nb3b/harmonic command
-================================
-
-pair_style nb3b/harmonic/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style nb3b/harmonic
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style nb3b/harmonic
- pair_coeff * * MgOH.nb3bharmonic Mg O H
-
-Description
-"""""""""""
-
-This pair style computes a nonbonded 3-body harmonic potential for the
-energy E of a system of atoms as
-
-.. image:: Eqs/pair_nb3b_harmonic.jpg
- :align: center
-
-where *theta_0* is the equilibrium value of the angle and *K* is a
-prefactor. Note that the usual 1/2 factor is included in *K*. The form
-of the potential is identical to that used in angle_style *harmonic*,
-but in this case, the atoms do not need to be explicitly bonded.
-
-Only a single pair_coeff command is used with this style which
-specifies a potential file with parameters for specified elements.
-These are mapped to LAMMPS atom types by specifying N additional
-arguments after the filename in the pair_coeff command, where N is the
-number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine a file SiC.nb3b.harmonic has potential values
-for Si and C. If your LAMMPS simulation has 4 atoms types and you
-want the 1st 3 to be Si, and the 4th to be C, you would use the
-following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * SiC.nb3b.harmonic Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Si arguments map LAMMPS atom types 1,2,3 to the Si
-element in the potential file. The final C argument maps LAMMPS atom
-type 4 to the C element in the potential file. If a mapping value is
-specified as NULL, the mapping is not performed. This can be used
-when the potential is used as part of the *hybrid* pair style. The
-NULL values are placeholders for atom types that will be used with
-other potentials. An example of a pair_coeff command for use with the
-*hybrid* pair style is:
-
-pair_coeff * * nb3b/harmonic MgOH.nb3b.harmonic Mg O H
-
-Three-body nonbonded harmonic files in the *potentials* directory of
-the LAMMPS distribution have a ".nb3b.harmonic" suffix. Lines that
-are not blank or comments (starting with #) define parameters for a
-triplet of elements.
-
-Each entry has six arguments. The first three are atom types as
-referenced in the LAMMPS input file. The first argument specifies the
-central atom. The fourth argument indicates the *K* parameter. The
-fifth argument indicates *theta_0*. The sixth argument indicates a
-separation cutoff in Angstroms.
-
-For a given entry, if the second and third arguments are identical,
-then the entry is for a cutoff for the distance between types 1 and 2
-(values for *K* and *theta_0* are irrelevant in this case).
-
-For a given entry, if the first three arguments are all different,
-then the entry is for the *K* and *theta_0* parameters (the cutoff in
-this case is irrelevant).
-
-It is *not* required that the potential file contain entries for all
-of the elements listed in the pair_coeff command. It can also contain
-entries for additional elements not being used in a particular
-simulation; LAMMPS ignores those entries.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style can only be used if LAMMPS was built with the MANYBODY
-package (which it is by default). See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_nm.txt b/doc/_sources/pair_nm.txt
deleted file mode 100644
index c0ddffcc8..000000000
--- a/doc/_sources/pair_nm.txt
+++ /dev/null
@@ -1,203 +0,0 @@
-.. index:: pair_style nm/cut
-
-pair_style nm/cut command
-=========================
-
-pair_style nm/cut/coul/cut command
-==================================
-
-pair_style nm/cut/coul/long command
-===================================
-
-pair_style nm/cut/omp command
-=============================
-
-pair_style nm/cut/coul/cut/omp command
-======================================
-
-pair_style nm/cut/coul/long/omp command
-=======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *nm/cut* or *nm/cut/coul/cut* or *nm/cut/coul/long*
-* args = list of arguments for a particular style
-.. parsed-literal::
-
- *nm/cut* args = cutoff
- cutoff = global cutoff for Pair interactions (distance units)
- *nm/cut/coul/cut* args = cutoff (cutoff2)
- cutoff = global cutoff for Pair (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
- *nm/cut/coul/long* args = cutoff (cutoff2)
- cutoff = global cutoff for Pair (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style nm/cut 12.0
- pair_coeff * * 0.01 5.4 8.0 7.0
- pair_coeff 1 1 0.01 4.4 7.0 6.0
-
-.. parsed-literal::
-
- pair_style nm/cut/coul/cut 12.0 15.0
- pair_coeff * * 0.01 5.4 8.0 7.0
- pair_coeff 1 1 0.01 4.4 7.0 6.0
-
-.. parsed-literal::
-
- pair_style nm/cut/coul/long 12.0 15.0
- pair_coeff * * 0.01 5.4 8.0 7.0
- pair_coeff 1 1 0.01 4.4 7.0 6.0
-
-Description
-"""""""""""
-
-Style *nm* computes site-site interactions based on the N-M potential
-by :ref:`Clarke <Clarke>`, mainly used for ionic liquids. A site can
-represent a single atom or a united-atom site. The energy of an
-interaction has the following form:
-
-.. image:: Eqs/pair_nm.jpg
- :align: center
-
-Rc is the cutoff.
-
-Style *nm/cut/coul/cut* adds a Coulombic pairwise interaction given by
-
-.. image:: Eqs/pair_coulomb.jpg
- :align: center
-
-where C is an energy-conversion constant, Qi and Qj are the charges on
-the 2 atoms, and epsilon is the dielectric constant which can be set
-by the :doc:`dielectric <dielectric>` command. If one cutoff is
-specified in the pair_style command, it is used for both the NM and
-Coulombic terms. If two cutoffs are specified, they are used as
-cutoffs for the NM and Coulombic terms respectively.
-
-Styles *nm/cut/coul/long* compute the same
-Coulombic interactions as style *nm/cut/coul/cut* except that an
-additional damping factor is applied to the Coulombic term so it can
-be used in conjunction with the :doc:`kspace_style <kspace_style>`
-command and its *ewald* or *pppm* option. The Coulombic cutoff
-specified for this style means that pairwise interactions within this
-distance are computed directly; interactions outside that distance are
-computed in reciprocal space.
-
-For all of the *nm* pair styles, the following coefficients must
-be defined for each pair of atoms types
-via the :doc:`pair_coeff <pair_coeff>` command as in the
-examples above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands.
-
-* E0 (energy units)
-* r0 (distance units)
-* n (unitless)
-* m (unitless)
-* cutoff1 (distance units)
-* cutoff2 (distance units)
-
-The latter 2 coefficients are optional. If not specified, the global
-NM and Coulombic cutoffs specified in the pair_style command are used.
-If only one cutoff is specified, it is used as the cutoff for both NM
-and Coulombic interactions for this type pair. If both coefficients
-are specified, they are used as the NM and Coulombic cutoffs for this
-type pair. You cannot specify 2 cutoffs for style *nm*, since it
-has no Coulombic terms.
-
-For *nm/cut/coul/long* only the NM cutoff can be specified since a
-Coulombic cutoff cannot be specified for an individual I,J type pair.
-All type pairs use the same global Coulombic cutoff specified in the
-pair_style command.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-All of the *nm* pair styles supports the
-:doc:`pair_modify <pair_modify>` shift option for the energy of the pair
-interaction.
-
-The *nm/cut/coul/long* pair styles support the
-:doc:`pair_modify <pair_modify>` table option since they can tabulate
-the short-range portion of the long-range Coulombic interaction.
-
-All of the *nm* pair styles support the :doc:`pair_modify <pair_modify>`
-tail option for adding a long-range tail correction to the energy and
-pressure for the NM portion of the pair interaction.
-
-All of the *nm* pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-All of the *nm* pair styles can only be used via the *pair* keyword of
-the :doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-Restrictions
-""""""""""""
-
-
-These pair styles are part of the MISC package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Clarke:
-
-
-
-**(Clarke)** Clarke and Smith, J Chem Phys, 84, 2290 (1986).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_none.txt b/doc/_sources/pair_none.txt
deleted file mode 100644
index 5f784a7fe..000000000
--- a/doc/_sources/pair_none.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-.. index:: pair_style none
-
-pair_style none command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style none
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style none
-
-Description
-"""""""""""
-
-Using a pair style of none means pair forces and energies are not
-computed.
-
-With this choice, the force cutoff is 0.0, which means that only atoms
-within the neighbor skin distance (see the :doc:`neighbor <neighbor>`
-command) are communicated between processors. You must insure the
-skin distance is large enough to acquire atoms needed for computing
-bonds, angles, etc.
-
-A pair style of *none* will also prevent pairwise neighbor lists from
-being built. However if the :doc:`neighbor <neighbor>` style is *bin*,
-data structures for binning are still allocated. If the neighbor skin
-distance is small, then these data structures can consume a large
-amount of memory. So you should either set the neighbor style to
-*nsq* or set the skin distance to a larger value.
-
-See the :doc:`pair_style zero <pair_zero>` for a way to trigger the
-building of a neighbor lists, but compute no pairwise interactions.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style zero <pair_zero>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_peri.txt b/doc/_sources/pair_peri.txt
deleted file mode 100644
index ab46a4445..000000000
--- a/doc/_sources/pair_peri.txt
+++ /dev/null
@@ -1,259 +0,0 @@
-.. index:: pair_style peri/pmb
-
-pair_style peri/pmb command
-===========================
-
-pair_style peri/pmb/omp command
-===============================
-
-pair_style peri/lps command
-===========================
-
-pair_style peri/lps/omp command
-===============================
-
-pair_style peri/ves command
-===========================
-
-pair_style peri/eps command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style
-
-* style = *peri/pmb* or *peri/lps* or *peri/ves* or *peri/eps*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style peri/pmb
- pair_coeff * * 1.6863e22 0.0015001 0.0005 0.25
-
-.. parsed-literal::
-
- pair_style peri/lps
- pair_coeff * * 14.9e9 14.9e9 0.0015001 0.0005 0.25
-
-.. parsed-literal::
-
- pair_style peri/ves
- pair_coeff * * 14.9e9 14.9e9 0.0015001 0.0005 0.25 0.5 0.001
-
-.. parsed-literal::
-
- pair_style peri/eps
- pair_coeff * * 14.9e9 14.9e9 0.0015001 0.0005 0.25 118.43
-
-Description
-"""""""""""
-
-The peridynamic pair styles implement material models that can be used
-at the mescscopic and macroscopic scales. See `this document <PDF/PDLammps_overview.pdf>`_ for an overview of LAMMPS commands
-for Peridynamics modeling.
-
-Style *peri/pmb* implements the Peridynamic bond-based prototype
-microelastic brittle (PMB) model.
-
-Style *peri/lps* implements the Peridynamic state-based linear
-peridynamic solid (LPS) model.
-
-Style *peri/ves* implements the Peridynamic state-based linear
-peridynamic viscoelastic solid (VES) model.
-
-Style *peri/eps* implements the Peridynamic state-based elastic-plastic
-solid (EPS) model.
-
-The canonical papers on Peridynamics are :ref:`(Silling 2000) <Silling2000>`
-and :ref:`(Silling 2007) <Silling2007>`. The implementation of Peridynamics
-in LAMMPS is described in :ref:`(Parks) <Parks>`. Also see the `PDLAMMPS user guide <http://www.sandia.gov/~mlparks/papers/PDLAMMPS.pdf>`_ for
-more details about its implementation.
-
-The peridynamic VES and EPS models in PDLAMMPS were implemented by
-R. Rahman and J. T. Foster at University of Texas at San Antonio. The
-original VES formulation is described in "(Mitchell2011)" and the
-original EPS formulation is in "(Mitchell2011a)". Additional PDF docs
-that describe the VES and EPS implementations are include in the
-LAMMPS distro in `doc/PDF/PDLammps_VES.pdf <PDF/PDLammps_VES.pdf>`_ and
-`doc/PDF/PDLammps_EPS.pdf <PDF/PDLammps_EPS.pdf>`_. For questions
-regarding the VES and EPS models in LAMMPS you can contact R. Rahman
-(rezwanur.rahman at utsa.edu).
-
-The following coefficients must be defined for each pair of atom types
-via the :doc:`pair_coeff <pair_coeff>` command as in the examples above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below.
-
-For the *peri/pmb* style:
-
-* c (energy/distance/volume^2 units)
-* horizon (distance units)
-* s00 (unitless)
-* alpha (unitless)
-
-C is the effectively a spring constant for Peridynamic bonds, the
-horizon is a cutoff distance for truncating interactions, and s00 and
-alpha are used as a bond breaking criteria. The units of c are such
-that c/distance = stiffness/volume^2, where stiffness is
-energy/distance^2 and volume is distance^3. See the users guide for
-more details.
-
-For the *peri/lps* style:
-
-* K (force/area units)
-* G (force/area units)
-* horizon (distance units)
-* s00 (unitless)
-* alpha (unitless)
-
-K is the bulk modulus and G is the shear modulus. The horizon is a
-cutoff distance for truncating interactions, and s00 and alpha are
-used as a bond breaking criteria. See the users guide for more
-details.
-
-For the *peri/ves* style:
-
-* K (force/area units)
-* G (force/area units)
-* horizon (distance units)
-* s00 (unitless)
-* alpha (unitless)
-* m_lambdai (unitless)
-* m_taubi (unitless)
-
-K is the bulk modulus and G is the shear modulus. The horizon is a
-cutoff distance for truncating interactions, and s00 and alpha are
-used as a bond breaking criteria. m_lambdai and m_taubi are the
-viscoelastic relaxation parameter and time constant,
-respectively. m_lambdai varies within zero to one. For very small
-values of m_lambdai the viscoelsatic model responds very similar to a
-linear elastic model. For details please see the description in
-"(Mtchell2011)".
-
-For the *peri/eps* style:
-
-K (force/area units)
-G (force/area units)
-horizon (distance units)
-s00 (unitless)
-alpha (unitless)
-m_yield_stress (force/area units)
-
-K is the bulk modulus and G is the shear modulus. The horizon is a
-cutoff distance and s00 and alpha are used as a bond breaking
-criteria. m_yield_stress is the yield stress of the material. For
-details please see the description in "(Mtchell2011a)".
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-These pair styles do not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-These pair styles do not support the :doc:`pair_modify <pair_modify>`
-shift option.
-
-The :doc:`pair_modify <pair_modify>` table and tail options are not
-relevant for these pair styles.
-
-These pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-These pair styles can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. They do not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-All of these styles are part of the PERI package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Parks:
-
-
-
-**(Parks)** Parks, Lehoucq, Plimpton, Silling, Comp Phys Comm, 179(11),
-777-783 (2008).
-
-.. _Silling2000:
-
-
-
-**(Silling 2000)** Silling, J Mech Phys Solids, 48, 175-209 (2000).
-
-.. _Silling2007:
-
-
-
-**(Silling 2007)** Silling, Epton, Weckner, Xu, Askari, J Elasticity,
-88, 151-184 (2007).
-
-.. _Mitchell2011:
-
-
-
-**(Mitchell2011)** Mitchell. A non-local, ordinary-state-based
-viscoelasticity model for peridynamics. Sandia National Lab Report,
-8064:1-28 (2011).
-
-.. _Mitchell2011a:
-
-
-
-**(Mitchell2011a)** Mitchell. A Nonlocal, Ordinary, State-Based
-Plasticity Model for Peridynamics. Sandia National Lab Report,
-3166:1-34 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_polymorphic.txt b/doc/_sources/pair_polymorphic.txt
deleted file mode 100644
index 1e163292a..000000000
--- a/doc/_sources/pair_polymorphic.txt
+++ /dev/null
@@ -1,283 +0,0 @@
-.. index:: pair_style polymorphic
-
-pair_style polymorphic command
-==============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style polymorphic
-
-style = *polymorphic*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style polymorphic
- pair_coeff * * TlBr_msw.polymorphic Tl Br
- pair_coeff * * AlCu_eam.polymorphic Al Cu
- pair_coeff * * GaN_tersoff.polymorphic Ga N
- pair_coeff * * GaN_sw.polymorphic GaN
-
-Description
-"""""""""""
-
-The *polymorphic* pair style computes a 3-body free-form potential
-(:ref:`Zhou <Zhou>`) for the energy E of a system of atoms as
-
-.. image:: Eqs/polymorphic1.jpg
- :align: center
-
-.. image:: Eqs/polymorphic2.jpg
- :align: center
-
-.. image:: Eqs/polymorphic3.jpg
- :align: center
-
-where I, J, K represent species of atoms i, j, and k, i_1, ..., i_N
-represents a list of i's neighbors, delta_ij is a Direc constant
-(i.e., delta_ij = 1 when i = j, and delta_ij = 0 otherwise), eta_ij is
-similar constant that can be set either to eta_ij = delta_ij or eta_ij
-= 1 - delta_ij depending on the potential type, U_IJ(r_ij),
-V_IJ(r_ij), W_IK(r_ik) are pair functions, G_JIK(cos(theta)) is an
-angular function, P_IK(delta r_jik) is a function of atomic spacing
-differential delta r_jik = r_ij - xi_IJ*r_ik with xi_IJ being a
-pair-dependent parameter, and F_IJ(X_ij) is a function of the local
-environment variable X_ij. This generic potential is fully defined
-once the constants eta_ij and xi_IJ, and the six functions U_IJ(r_ij),
-V_IJ(r_ij), W_IK(r_ik), G_JIK(cos(theta)), P_IK(delta r_jik), and
-F_IJ(X_ij) are given. Note that these six functions are all one
-dimensional, and hence can be provided in an analytic or tabular
-form. This allows users to design different potentials solely based on
-a manipulation of these functions. For instance, the potential reduces
-to Stillinger-Weber potential (:ref:`SW <SW>`) if we set
-
-.. image:: Eqs/polymorphic4.jpg
- :align: center
-
-The potential reduces to Tersoff types of potential
-(:ref:`Tersoff <Tersoff>` or :ref:`Albe <Albe>`) if we set
-
-.. image:: Eqs/polymorphic5.jpg
- :align: center
-
-.. image:: Eqs/polymorphic6.jpg
- :align: center
-
-The potential reduces to Rockett-Tersoff (:ref:`Wang <Wang>`) type if we set
-
-.. image:: Eqs/polymorphic7.jpg
- :align: center
-
-.. image:: Eqs/polymorphic6.jpg
- :align: center
-
-.. image:: Eqs/polymorphic8.jpg
- :align: center
-
-The potential becomes embedded atom method (:ref:`Daw <Daw>`) if we set
-
-.. image:: Eqs/polymorphic9.jpg
- :align: center
-
-In the embedded atom method case, phi_IJ(r_ij) is the pair energy,
-F_I(X) is the embedding energy, X is the local electron density, and
-f_K(r) is the atomic electron density function.
-
-If the tabulated functions are created using the parameters of sw,
-tersoff, and eam potentials, the polymorphic pair style will produce
-the same global properties (energies and stresses) and the same forces
-as the sw, tersoff, and eam pair styles. The polymorphic pair style
-also produces the same atom properties (energies and stresses) as the
-corresponding tersoff and eam pair styles. However, due to a different
-partition of global properties to atom properties, the polymorphic
-pair style will produce different atom properties (energies and
-stresses) as the sw pair style. This does not mean that polymorphic
-pair style is different from the sw pair style in this case. It just
-means that the definitions of the atom energies and atom stresses are
-different.
-
-Only a single pair_coeff command is used with the polymorphic style
-which specifies an potential file for all needed elements. These are
-mapped to LAMMPS atom types by specifying N additional arguments after
-the filename in the pair_coeff command, where N is the number of
-LAMMPS atom types:
-
-* filename
-* N element names = mapping of Tersoff elements to atom types
-
-See the pair_coeff doc page for alternate ways to specify the path for
-the potential file. Several files for polymorphic potentials are
-included in the potentials dir of the LAMMPS distro. They have a
-"poly" suffix.
-
-As an example, imagine the SiC_tersoff.polymorphic file has tabulated
-functions for Si-C tersoff potential. If your LAMMPS simulation has 4
-atoms types and you want the 1st 3 to be Si, and the 4th to be C, you
-would use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * SiC_tersoff.polymorphic Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom
-types. The first three Si arguments map LAMMPS atom types 1,2,3 to the
-Si element in the polymorphic file. The final C argument maps LAMMPS
-atom type 4 to the C element in the polymorphic file. If a mapping
-value is specified as NULL, the mapping is not performed. This can be
-used when an polymorphic potential is used as part of the hybrid pair
-style. The NULL values are placeholders for atom types that will be
-used with other potentials.
-
-Potential files in the potentials directory of the LAMMPS distribution
-have a ".poly" suffix. At the beginning of the files, an unlimited
-number of lines starting with '#' are used to describe the potential
-and are ignored by LAMMPS. The next line lists two numbers:
-
-.. parsed-literal::
-
- ntypes eta
-
-Here ntypes represent total number of species defined in the potential
-file, and eta = 0 or 1. The number ntypes must equal the total number
-of different species defined in the pair_coeff command. When eta = 1,
-eta_ij defined in the potential functions above is set to 1 -
-delta_ij, otherwise eta_ij is set to delta_ij. The next ntypes lines
-each lists two numbers and a character string representing atomic
-number, atomic mass, and name of the species of the ntypes elements:
-
-.. parsed-literal::
-
- atomic_number atomic-mass element (1)
- atomic_number atomic-mass element (2)
- ...
- atomic_number atomic-mass element (ntypes)
-
-The next ntypes*(ntypes+1)/2 lines contain two numbers:
-
-.. parsed-literal::
-
- cut xi (1)
- cut xi (2)
- ...
- cut xi (ntypes*(ntypes+1)/2)
-
-Here cut means the cutoff distance of the pair functions, xi is the
-same as defined in the potential functions above. The
-ntypes*(ntypes+1)/2 lines are related to the pairs according to the
-sequence of first ii (self) pairs, i = 1, 2, ..., ntypes, and then
-then ij (cross) pairs, i = 1, 2, ..., ntypes-1, and j = i+1, i+2, ...,
-ntypes (i.e., the sequence of the ij pairs follows 11, 22, ..., 12,
-13, 14, ..., 23, 24, ...).
-
-The final blocks of the potential file are the U, V, W, P, G, and F
-functions are listed sequentially. First, U functions are given for
-each of the ntypes*(ntypes+1)/2 pairs according to the sequence
-described above. For each of the pairs, nr values are listed. Next,
-similar arrays are given for V, W, and P functions. Then G functions
-are given for all the ntypes*ntypes*ntypes ijk triplets in a natural
-sequence i from 1 to ntypes, j from 1 to ntypes, and k from 1 to
-ntypes (i.e., ijk = 111, 112, 113, ..., 121, 122, 123 ..., 211, 212,
-...). Each of the ijk functions contains ng values. Finally, the F
-functions are listed for all ntypes*(ntypes+1)/2 pairs, each
-containing nx values. Either analytic or tabulated functions can be
-specified. Currently, constant, exponential, sine and cosine analytic
-functions are available which are specified with: constant c1 , where
-f(x) = c1 exponential c1 c2 , where f(x) = c1 exp(c2*x) sine c1 c2 ,
-where f(x) = c1 sin(c2*x) cos c1 c2 , where f(x) = c1 cos(c2*x)
-Tabulated functions are specified by spline n x1 x2, where n=number of
-point, (x1,x2)=range and then followed by n values evaluated uniformly
-over these argument ranges. The valid argument ranges of the
-functions are between 0 <= r <= cut for the U(r), V(r), W(r)
-functions, -cutmax <= delta_r <= cutmax for the P(delta_r) functions,
--1 <= costheta <= 1 for the G(costheta) functions, and 0 <= X <= maxX
-for the F(X) functions.
-
-**Mixing, shift, table tail correction, restart**:
-
-This pair styles does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write their information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-If using create_atoms command, atomic masses must be defined in the
-input script. If using read_data, atomic masses must be defined in the
-atomic structure data file.
-
-This pair style is part of the MANYBODY package. It is only enabled if
-LAMMPS was built with that package (which it is by default). See the
-:ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair potential requires the :doc:`newtion <newton>` setting to be
-"on" for pair interactions.
-
-The potential files provided with LAMMPS (see the potentials
-directory) are parameterized for metal :doc:`units <units>`. You can use
-any LAMMPS units, but you would need to create your own potential
-files.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-
-----------
-
-
-.. _Zhou:
-
-
-
-**(Zhou)** X. W. Zhou, M. E. Foster, R. E. Jones, P. Yang, H. Fan, and
-F. P. Doty, J. Mater. Sci. Res., 4, 15 (2015).
-
-.. _SW:
-
-
-
-**(SW)** F. H. Stillinger-Weber, and T. A. Weber, Phys. Rev. B, 31, 5262 (1985).
-
-.. _Tersoff:
-
-
-
-**(Tersoff)** J. Tersoff, Phys. Rev. B, 39, 5566 (1989).
-
-.. _Albe:
-
-
-
-**(Albe)** K. Albe, K. Nordlund, J. Nord, and A. Kuronen, Phys. Rev. B,
-66, 035205 (2002).
-
-.. _Wang:
-
-
-
-**(Wang)** J. Wang, and A. Rockett, Phys. Rev. B, 43, 12571 (1991).
-
-.. _Daw:
-
-
-
-**(Daw)** M. S. Daw, and M. I. Baskes, Phys. Rev. B, 29, 6443 (1984).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_quip.txt b/doc/_sources/pair_quip.txt
deleted file mode 100644
index 85211d4bc..000000000
--- a/doc/_sources/pair_quip.txt
+++ /dev/null
@@ -1,110 +0,0 @@
-.. index:: pair_style quip
-
-pair_style quip command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style quip
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style quip
- pair_coeff * * gap_example.xml "Potential xml_label=GAP_2014_5_8_60_17_10_38_466" 14
- pair_coeff * * sw_example.xml "IP SW" 14
-
-Description
-"""""""""""
-
-Style *quip* provides an interface for calling potential routines from
-the QUIP package. QUIP is built separately, and then linked to
-LAMMPS. The most recent version of the QUIP package can be downloaded
-from GitHub:
-`https://github.com/libAtoms/QUIP <https://github.com/libAtoms/QUIP>`_. The
-interface is chiefly intended to be used to run Gaussian Approximation
-Potentials (GAP), which are described in the following publications:
-:ref:`(Bartok et al) <Bartok_2010>` and :ref:`(PhD thesis of Bartok) <Bartok_PhD>`.
-
-Only a single pair_coeff command is used with the *quip* style that
-specifies a QUIP potential file containing the parameters of the
-potential for all needed elements in XML format. This is followed by a
-QUIP initialization string. Finally, the QUIP elements are mapped to
-LAMMPS atom types by specifying N atomic numbers, where N is the
-number of LAMMPS atom types:
-
-* QUIP filename
-* QUIP initialization string
-* N atomic numbers = mapping of QUIP elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-A QUIP potential is fully specified by the filename which contains the
-parameters of the potential in XML format, the initialisation string,
-and the map of atomic numbers.
-
-GAP potentials can be obtained from the Data repository section of
-`http://www.libatoms.org <http://www.libatoms.org>`_, where the
-appropriate initialisation strings are also advised. The list of
-atomic numbers must be matched to the LAMMPS atom types specified in
-the LAMMPS data file or elsewhere.
-
-Two examples input scripts are provided in the examples/USER/quip
-directory.
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-QUIP package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-QUIP potentials are parametrized in electron-volts and Angstroms and
-therefore should be used with LAMMPS metal :doc:`units <units>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-
-----------
-
-
-.. _Bartok_2010:
-
-
-
-**(Bartok_2010)** AP Bartok, MC Payne, R Kondor, and G Csanyi, Physical
-Review Letters 104, 136403 (2010).
-
-.. _Bartok_PhD:
-
-
-
-**(Bartok_PhD)** A Bartok-Partay, PhD Thesis, University of Cambridge,
-(2010).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_reax.txt b/doc/_sources/pair_reax.txt
deleted file mode 100644
index 4ab6c3ad9..000000000
--- a/doc/_sources/pair_reax.txt
+++ /dev/null
@@ -1,240 +0,0 @@
-.. index:: pair_style reax
-
-pair_style reax command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style reax hbcut hbnewflag tripflag precision
-
-* hbcut = hydrogen-bond cutoff (optional) (distance units)
-* hbnewflag = use old or new hbond function style (0 or 1) (optional)
-* tripflag = apply stabilization to all triple bonds (0 or 1) (optional)
-* precision = precision for charge equilibration (optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style reax
- pair_style reax 10.0 0 1 1.0e-5
- pair_coeff * * ffield.reax 3 1 2 2
- pair_coeff * * ffield.reax 3 NULL NULL 3
-
-Description
-"""""""""""
-
-Style *reax* computes the ReaxFF potential of van Duin, Goddard and
-co-workers. ReaxFF uses distance-dependent bond-order functions to
-represent the contributions of chemical bonding to the potential
-energy. There is more than one version of ReaxFF. The version
-implemented in LAMMPS uses the functional forms documented in the
-supplemental information of the following paper:
-:ref:`(Chenoweth) <Chenoweth_2008>`. The version integrated into LAMMPS matches
-the most up-to-date version of ReaxFF as of summer 2010.
-
-WARNING: pair style reax is now deprecated and will soon be retired. Users
-should switch to :doc:`pair_style reax/c <pair_reax_c>`. The *reax* style
-differs from the *reax/c* style in the lo-level implementation details.
-The *reax* style is a
-Fortran library, linked to LAMMPS. The *reax/c* style was initially
-implemented as stand-alone C code and is now integrated into LAMMPS as
-a package.
-
-LAMMPS requires that a file called ffield.reax be provided, containing
-the ReaxFF parameters for each atom type, bond type, etc. The format
-is identical to the ffield file used by van Duin and co-workers. The
-filename is required as an argument in the pair_coeff command. Any
-value other than "ffield.reax" will be rejected (see below).
-
-LAMMPS provides several different versions of ffield.reax in its
-potentials dir, each called potentials/ffield.reax.label. These are
-documented in potentials/README.reax. The default ffield.reax
-contains parameterizations for the following elements: C, H, O, N.
-
-.. note::
-
- We do not distribute a wide variety of ReaxFF force field files
- with LAMMPS. Adri van Duin's group at PSU is the central repository
- for this kind of data as they are continuously deriving and updating
- parameterizations for different classes of materials. You can submit
- a contact request at the Materials Computation Center (MCC) website
- `https://www.mri.psu.edu/materials-computation-center/connect-mcc <https://www.mri.psu.edu/materials-computation-center/connect-mcc>`_,
- describing the material(s) you are interested in modeling with ReaxFF.
- They can tell
- you what is currently available or what it would take to create a
- suitable ReaxFF parameterization.
-
-The format of these files is identical to that used originally by van
-Duin. We have tested the accuracy of *pair_style reax* potential
-against the original ReaxFF code for the systems mentioned above. You
-can use other ffield files for specific chemical systems that may be
-available elsewhere (but note that their accuracy may not have been
-tested).
-
-The *hbcut*, *hbnewflag*, *tripflag*, and *precision* settings are
-optional arguments. If none are provided, default settings are used:
-*hbcut* = 6 (which is Angstroms in real units), *hbnewflag* = 1 (use
-new hbond function style), *tripflag* = 1 (apply stabilization to all
-triple bonds), and *precision* = 1.0e-6 (one part in 10^6). If you
-wish to override any of these defaults, then all of the settings must
-be specified.
-
-Two examples using *pair_style reax* are provided in the examples/reax
-sub-directory, along with corresponding examples for
-:doc:`pair_style reax/c <pair_reax_c>`. Note that while the energy and force
-calculated by both of these pair styles match very closely, the
-contributions due to the valence angles differ slightly due to
-the fact that with *pair_style reax/c* the default value of *thb_cutoff_sq*
-is 0.00001, while for *pair_style reax* it is hard-coded to be 0.001.
-
-Use of this pair style requires that a charge be defined for every
-atom since the *reax* pair style performs a charge equilibration (QEq)
-calculation. See the :doc:`atom_style <atom_style>` and
-:doc:`read_data <read_data>` commands for details on how to specify
-charges.
-
-The thermo variable *evdwl* stores the sum of all the ReaxFF potential
-energy contributions, with the exception of the Coulombic and charge
-equilibration contributions which are stored in the thermo variable
-*ecoul*. The output of these quantities is controlled by the
-:doc:`thermo <thermo>` command.
-
-This pair style tallies a breakdown of the total ReaxFF potential
-energy into sub-categories, which can be accessed via the :doc:`compute pair <compute_pair>` command as a vector of values of length 14.
-The 14 values correspond to the following sub-categories (the variable
-names in italics match those used in the ReaxFF FORTRAN library):
-
-1. *eb* = bond energy
-2. *ea* = atom energy
-3. *elp* = lone-pair energy
-4. *emol* = molecule energy (always 0.0)
-5. *ev* = valence angle energy
-6. *epen* = double-bond valence angle penalty
-7. *ecoa* = valence angle conjugation energy
-8. *ehb* = hydrogen bond energy
-9. *et* = torsion energy
-10. *eco* = conjugation energy
-11. *ew* = van der Waals energy
-12. *ep* = Coulomb energy
-13. *efi* = electric field energy (always 0.0)
-14. *eqeq* = charge equilibration energy
-
-To print these quantities to the log file (with descriptive column
-headings) the following commands could be included in an input script:
-
-.. parsed-literal::
-
- compute reax all pair reax
- variable eb equal c_reax[1]
- variable ea equal c_reax[2]
- ...
- variable eqeq equal c_reax[14]
- thermo_style custom step temp epair v_eb v_ea ... v_eqeq
-
-Only a single pair_coeff command is used with the *reax* style which
-specifies a ReaxFF potential file with parameters for all needed
-elements. These are mapped to LAMMPS atom types by specifying N
-additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N indices = mapping of ReaxFF elements to atom types
-
-The specification of the filename and the mapping of LAMMPS atom types
-recognized by the ReaxFF is done differently than for other LAMMPS
-potentials, due to the non-portable difficulty of passing character
-strings (e.g. filename, element names) between C++ and Fortran.
-
-The filename has to be "ffield.reax" and it has to exist in the
-directory you are running LAMMPS in. This means you cannot prepend a
-path to the file in the potentials dir. Rather, you should copy that
-file into the directory you are running from. If you wish to use
-another ReaxFF potential file, then name it "ffield.reax" and put it
-in the directory you run from.
-
-In the ReaxFF potential file, near the top, after the general
-parameters, is the atomic parameters section that contains element
-names, each with a couple dozen numeric parameters. If there are M
-elements specified in the *ffield* file, think of these as numbered 1
-to M. Each of the N indices you specify for the N atom types of LAMMPS
-atoms must be an integer from 1 to M. Atoms with LAMMPS type 1 will
-be mapped to whatever element you specify as the first index value,
-etc. If a mapping value is specified as NULL, the mapping is not
-performed. This can be used when a ReaxFF potential is used as part
-of the *hybrid* pair style. The NULL values are placeholders for atom
-types that will be used with other potentials.
-
-.. note::
-
- Currently the reax pair style cannot be used as part of the
- *hybrid* pair style. Some additional changes still need to be made to
- enable this.
-
-As an example, say your LAMMPS simulation has 4 atom types and the
-elements are ordered as C, H, O, N in the *ffield* file. If you want
-the LAMMPS atom type 1 and 2 to be C, type 3 to be N, and type 4 to be
-H, you would use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * ffield.reax 1 1 4 2
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-The ReaxFF potential files provided with LAMMPS in the potentials
-directory are parameterized for real :doc:`units <units>`. You can use
-the ReaxFF potential with any LAMMPS units, but you would need to
-create your own potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "real" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style reax/c <pair_reax_c>`,
-:doc:`fix_reax_bonds <fix_reax_bonds>`
-
-Default
-"""""""
-
-The keyword defaults are *hbcut* = 6, *hbnewflag* = 1, *tripflag* = 1,
-*precision* = 1.0e-6.
-
-
-----------
-
-
-.. _Chenoweth_2008:
-
-
-
-**(Chenoweth_2008)** Chenoweth, van Duin and Goddard,
-Journal of Physical Chemistry A, 112, 1040-1053 (2008).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_reax_c.txt b/doc/_sources/pair_reax_c.txt
deleted file mode 100644
index 4040f6728..000000000
--- a/doc/_sources/pair_reax_c.txt
+++ /dev/null
@@ -1,342 +0,0 @@
-.. index:: pair_style reax/c
-
-pair_style reax/c command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style reax/c cfile keyword value
-
-* cfile = NULL or name of a control file
-* zero or more keyword/value pairs may be appended
-.. parsed-literal::
-
- keyword = *checkqeq* or *lgvdw* or *safezone* or *mincap*
- *checkqeq* value = *yes* or *no* = whether or not to require qeq/reax fix
- *lgvdw* value = *yes* or *no* = whether or not to use a low gradient vdW correction
- *safezone* = factor used for array allocation
- *mincap* = minimum size for array allocation
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style reax/c NULL
- pair_style reax/c controlfile checkqeq no
- pair_style reax/c NULL lgvdw yes
- pair_style reax/c NULL safezone 1.6 mincap 100
- pair_coeff * * ffield.reax C H O N
-
-Description
-"""""""""""
-
-Style *reax/c* computes the ReaxFF potential of van Duin, Goddard and
-co-workers. ReaxFF uses distance-dependent bond-order functions to
-represent the contributions of chemical bonding to the potential
-energy. There is more than one version of ReaxFF. The version
-implemented in LAMMPS uses the functional forms documented in the
-supplemental information of the following paper: :ref:`(Chenoweth et al., 2008) <Chenoweth_2008>`. The version integrated into LAMMPS matches
-the most up-to-date version of ReaxFF as of summer 2010. For more
-technical details about the pair reax/c implementation of ReaxFF, see
-the :ref:`(Aktulga) <Aktulga>` paper.
-
-The *reax/c* style differs from the :doc:`pair_style reax <pair_reax>`
-command in the lo-level implementation details. The *reax* style is a
-Fortran library, linked to LAMMPS. The *reax/c* style was initially
-implemented as stand-alone C code and is now integrated into LAMMPS as
-a package.
-
-LAMMPS provides several different versions of ffield.reax in its
-potentials dir, each called potentials/ffield.reax.label. These are
-documented in potentials/README.reax. The default ffield.reax
-contains parameterizations for the following elements: C, H, O, N.
-
-The format of these files is identical to that used originally by van
-Duin. We have tested the accuracy of *pair_style reax/c* potential
-against the original ReaxFF code for the systems mentioned above. You
-can use other ffield files for specific chemical systems that may be
-available elsewhere (but note that their accuracy may not have been
-tested).
-
-.. note::
-
- We do not distribute a wide variety of ReaxFF force field files
- with LAMMPS. Adri van Duin's group at PSU is the central repository
- for this kind of data as they are continuously deriving and updating
- parameterizations for different classes of materials. You can submit
- a contact request at the Materials Computation Center (MCC) website
- `https://www.mri.psu.edu/materials-computation-center/connect-mcc <https://www.mri.psu.edu/materials-computation-center/connect-mcc>`_,
- describing the material(s) you are interested in modeling with ReaxFF.
- They can tell
- you what is currently available or what it would take to create a
- suitable ReaxFF parameterization.
-
-The *cfile* setting can be specified as NULL, in which case default
-settings are used. A control file can be specified which defines
-values of control variables. Some control variables are
-global parameters for the ReaxFF potential. Others define certain
-performance and output settings.
-Each line in the control file specifies the value for
-a control variable. The format of the control file is described
-below.
-
-.. note::
-
- The LAMMPS default values for the ReaxFF global parameters
- correspond to those used by Adri van Duin's stand-alone serial
- code. If these are changed by setting control variables in the control
- file, the results from LAMMPS and the serial code will not agree.
-
-Two examples using *pair_style reax/c* are provided in the examples/reax
-sub-directory, along with corresponding examples for
-:doc:`pair_style reax <pair_reax>`.
-
-Use of this pair style requires that a charge be defined for every
-atom. See the :doc:`atom_style <atom_style>` and
-:doc:`read_data <read_data>` commands for details on how to specify
-charges.
-
-The ReaxFF parameter files provided were created using a charge
-equilibration (QEq) model for handling the electrostatic interactions.
-Therefore, by default, LAMMPS requires that the :doc:`fix qeq/reax <fix_qeq_reax>` command be used with *pair_style reax/c*
-when simulating a ReaxFF model, to equilibrate charge each timestep.
-Using the keyword *checkqeq* with the value *no*
-turns off the check for *fix qeq/reax*,
-allowing a simulation to be run without charge equilibration.
-In this case, the static charges you
-assign to each atom will be used for computing the electrostatic
-interactions in the system.
-See the :doc:`fix qeq/reax <fix_qeq_reax>` command for details.
-
-Using the optional keyword *lgvdw* with the value *yes* turns on
-the low-gradient correction of the ReaxFF/C for long-range
-London Dispersion, as described in the :ref:`(Liu) <Liu_2011>` paper. Force field
-file *ffield.reax.lg* is designed for this correction, and is trained
-for several energetic materials (see "Liu"). When using lg-correction,
-recommended value for parameter *thb* is 0.01, which can be set in the
-control file. Note: Force field files are different for the original
-or lg corrected pair styles, using wrong ffield file generates an error message.
-
-Optional keywords *safezone* and *mincap* are used for allocating
-reax/c arrays. Increase these values can avoid memory problems, such
-as segmentation faults and bondchk failed errors, that could occur under
-certain conditions.
-
-The thermo variable *evdwl* stores the sum of all the ReaxFF potential
-energy contributions, with the exception of the Coulombic and charge
-equilibration contributions which are stored in the thermo variable
-*ecoul*. The output of these quantities is controlled by the
-:doc:`thermo <thermo>` command.
-
-This pair style tallies a breakdown of the total ReaxFF potential
-energy into sub-categories, which can be accessed via the :doc:`compute pair <compute_pair>` command as a vector of values of length 14.
-The 14 values correspond to the following sub-categories (the variable
-names in italics match those used in the original FORTRAN ReaxFF code):
-
-1. *eb* = bond energy
-2. *ea* = atom energy
-3. *elp* = lone-pair energy
-4. *emol* = molecule energy (always 0.0)
-5. *ev* = valence angle energy
-6. *epen* = double-bond valence angle penalty
-7. *ecoa* = valence angle conjugation energy
-8. *ehb* = hydrogen bond energy
-9. *et* = torsion energy
-10. *eco* = conjugation energy
-11. *ew* = van der Waals energy
-12. *ep* = Coulomb energy
-13. *efi* = electric field energy (always 0.0)
-14. *eqeq* = charge equilibration energy
-
-To print these quantities to the log file (with descriptive column
-headings) the following commands could be included in an input script:
-
-.. parsed-literal::
-
- compute reax all pair reax/c
- variable eb equal c_reax[1]
- variable ea equal c_reax[2]
- ...
- variable eqeq equal c_reax[14]
- thermo_style custom step temp epair v_eb v_ea ... v_eqeq
-
-Only a single pair_coeff command is used with the *reax/c* style which
-specifies a ReaxFF potential file with parameters for all needed
-elements. These are mapped to LAMMPS atom types by specifying N
-additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N indices = ReaxFF elements
-
-The filename is the ReaxFF potential file. Unlike for the *reax*
-pair style, any filename can be used.
-
-In the ReaxFF potential file, near the top, after the general
-parameters, is the atomic parameters section that contains element
-names, each with a couple dozen numeric parameters. If there are M
-elements specified in the *ffield* file, think of these as numbered 1
-to M. Each of the N indices you specify for the N atom types of LAMMPS
-atoms must be an integer from 1 to M. Atoms with LAMMPS type 1 will
-be mapped to whatever element you specify as the first index value,
-etc. If a mapping value is specified as NULL, the mapping is not
-performed. This can be used when the *reax/c* style is used as part
-of the *hybrid* pair style. The NULL values are placeholders for atom
-types that will be used with other potentials.
-
-As an example, say your LAMMPS simulation has 4 atom types and the
-elements are ordered as C, H, O, N in the *ffield* file. If you want
-the LAMMPS atom type 1 and 2 to be C, type 3 to be N, and type 4 to be
-H, you would use the following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * ffield.reax C C N H
-
-
-----------
-
-
-The format of a line in the control file is as follows:
-
-.. parsed-literal::
-
- variable_name value
-
-and it may be followed by an "!" character and a trailing comment.
-
-If the value of a control variable is not specified, then default
-values are used. What follows is the list of variables along with a
-brief description of their use and default values.
-
-simulation_name: Output files produced by *pair_style reax/c* carry
-this name + extensions specific to their contents. Partial energies
-are reported with a ".pot" extension, while the trajectory file has
-".trj" extension.
-
-tabulate_long_range: To improve performance, long range interactions
-can optionally be tabulated (0 means no tabulation). Value of this
-variable denotes the size of the long range interaction table. The
-range from 0 to long range cutoff (defined in the *ffield* file) is
-divided into *tabulate_long_range* points. Then at the start of
-simulation, we fill in the entries of the long range interaction table
-by computing the energies and forces resulting from van der Waals and
-Coulomb interactions between every possible atom type pairs present in
-the input system. During the simulation we consult to the long range
-interaction table to estimate the energy and forces between a pair of
-atoms. Linear interpolation is used for estimation. (default value =
-0)
-
-energy_update_freq: Denotes the frequency (in number of steps) of
-writes into the partial energies file. (default value = 0)
-
-nbrhood_cutoff: Denotes the near neighbors cutoff (in Angstroms)
-regarding the bonded interactions. (default value = 5.0)
-
-hbond_cutoff: Denotes the cutoff distance (in Angstroms) for hydrogen
-bond interactions.(default value = 7.5. Value of 0.0 turns off hydrogen
- bonds)
-
-bond_graph_cutoff: is the threshold used in determining what is a
-physical bond, what is not. Bonds and angles reported in the
-trajectory file rely on this cutoff. (default value = 0.3)
-
-thb_cutoff: cutoff value for the strength of bonds to be considered in
-three body interactions. (default value = 0.001)
-
-thb_cutoff_sq: cutoff value for the strength of bond order products
-to be considered in three body interactions. (default value = 0.00001)
-
-write_freq: Frequency of writes into the trajectory file. (default
-value = 0)
-
-traj_title: Title of the trajectory - not the name of the trajectory
-file.
-
-atom_info: 1 means print only atomic positions + charge (default = 0)
-
-atom_forces: 1 adds net forces to atom lines in the trajectory file
-(default = 0)
-
-atom_velocities: 1 adds atomic velocities to atoms line (default = 0)
-
-bond_info: 1 prints bonds in the trajectory file (default = 0)
-
-angle_info: 1 prints angles in the trajectory file (default = 0)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-REAXC package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-The ReaxFF potential files provided with LAMMPS in the potentials
-directory are parameterized for real :doc:`units <units>`. You can use
-the ReaxFF potential with any LAMMPS units, but you would need to
-create your own potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "real" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix qeq/reax <fix_qeq_reax>`, :doc:`fix reax/c/bonds <fix_reax_bonds>`, :doc:`fix reax/c/species <fix_reaxc_species>`, :doc:`pair_style reax <pair_reax>`
-
-Default
-"""""""
-
-The keyword defaults are checkqeq = yes, lgvdw = no, safezone = 1.2,
-mincap = 50.
-
-
-----------
-
-
-.. _Chenoweth_2008:
-
-
-
-**(Chenoweth_2008)** Chenoweth, van Duin and Goddard,
-Journal of Physical Chemistry A, 112, 1040-1053 (2008).
-
-.. _Aktulga:
-
-
-
-(Aktulga) Aktulga, Fogarty, Pandit, Grama, Parallel Computing, 38,
-245-259 (2012).
-
-.. _Liu_2011:
-
-
-
-**(Liu)** L. Liu, Y. Liu, S. V. Zybin, H. Sun and W. A. Goddard, Journal
-of Physical Chemistry A, 115, 11016-11022 (2011).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_resquared.txt b/doc/_sources/pair_resquared.txt
deleted file mode 100644
index 66f446624..000000000
--- a/doc/_sources/pair_resquared.txt
+++ /dev/null
@@ -1,259 +0,0 @@
-.. index:: pair_style resquared
-
-pair_style resquared command
-============================
-
-pair_style resquared/gpu command
-================================
-
-pair_style resquared/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style resquared cutoff
-
-* cutoff = global cutoff for interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style resquared 10.0
- pair_coeff * * 1.0 1.0 1.7 3.4 3.4 1.0 1.0 1.0
-
-Description
-"""""""""""
-
-Style *resquared* computes the RE-squared anisotropic interaction
-:ref:`(Everaers) <Everaers>`, :ref:`(Babadi) <Babadi>` between pairs of
-ellipsoidal and/or spherical Lennard-Jones particles. For ellipsoidal
-interactions, the potential considers the ellipsoid as being comprised
-of small spheres of size sigma. LJ particles are a single sphere of
-size sigma. The distinction is made to allow the pair style to make
-efficient calculations of ellipsoid/solvent interactions.
-
-Details for the equations used are given in the references below and
-in `this supplementary document <PDF/pair_resquared_extra.pdf>`_.
-
-Use of this pair style requires the NVE, NVT, or NPT fixes with the
-*asphere* extension (e.g. :doc:`fix nve/asphere <fix_nve_asphere>`) in
-order to integrate particle rotation. Additionally, :doc:`atom_style ellipsoid <atom_style>` should be used since it defines the
-rotational state and the size and shape of each ellipsoidal particle.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* A12 = Energy Prefactor/Hamaker constant (energy units)
-* sigma = atomic interaction diameter (distance units)
-* epsilon_i_a = relative well depth of type I for side-to-side interactions
-* epsilon_i_b = relative well depth of type I for face-to-face interactions
-* epsilon_i_c = relative well depth of type I for end-to-end interactions
-* epsilon_j_a = relative well depth of type J for side-to-side interactions
-* epsilon_j_b = relative well depth of type J for face-to-face interactions
-* epsilon_j_c = relative well depth of type J for end-to-end interactions
-* cutoff (distance units)
-
-The parameters used depend on the type of the interacting particles,
-i.e. ellipsoids or LJ spheres. The type of a particle is determined
-by the diameters specified for its 3 shape paramters. If all 3 shape
-parameters = 0.0, then the particle is treated as an LJ sphere. The
-epsilon_i_* or epsilon_j_* parameters are ignored for LJ spheres. If
-the 3 shape paraemters are > 0.0, then the particle is treated as an
-ellipsoid (even if the 3 parameters are equal to each other).
-
-A12 specifies the energy prefactor which depends on the types of the
-two interacting particles.
-
-For ellipsoid/ellipsoid interactions, the interaction is computed by
-the formulas in the supplementary docuement referenced above. A12 is
-the Hamaker constant as described in :ref:`(Everaers) <Everaers>`. In LJ
-units:
-
-.. image:: Eqs/pair_resquared.jpg
- :align: center
-
-where rho gives the number density of the spherical particles
-composing the ellipsoids and epsilon_LJ determines the interaction
-strength of the spherical particles.
-
-For ellipsoid/LJ sphere interactions, the interaction is also computed
-by the formulas in the supplementary docuement referenced above. A12
-has a modifed form (see `here <PDF/pair_resquared_extra.pdf>`_ for
-details):
-
-.. image:: Eqs/pair_resquared2.jpg
- :align: center
-
-For ellipsoid/LJ sphere interactions, a correction to the distance-
-of-closest approach equation has been implemented to reduce the error
-from two particles of disparate sizes; see `this supplementary document <PDF/pair_resquared_extra.pdf>`_.
-
-For LJ sphere/LJ sphere interactions, the interaction is computed
-using the standard Lennard-Jones formula, which is much cheaper to
-compute than the ellipsoidal formulas. A12 is used as epsilon in the
-standard LJ formula:
-
-.. image:: Eqs/pair_resquared3.jpg
- :align: center
-
-and the specified *sigma* is used as the sigma in the standard LJ
-formula.
-
-When one of both of the interacting particles are ellipsoids, then
-*sigma* specifies the diameter of the continuous distribution of
-constituent particles within each ellipsoid used to model the
-RE-squared potential. Note that this is a different meaning for
-*sigma* than the :doc:`pair_style gayberne <pair_gayberne>` potential
-uses.
-
-The epsilon_i and epsilon_j coefficients are defined for atom types,
-not for pairs of atom types. Thus, in a series of pair_coeff
-commands, they only need to be specified once for each atom type.
-
-Specifically, if any of epsilon_i_a, epsilon_i_b, epsilon_i_c are
-non-zero, the three values are assigned to atom type I. If all the
-epsilon_i values are zero, they are ignored. If any of epsilon_j_a,
-epsilon_j_b, epsilon_j_c are non-zero, the three values are assigned
-to atom type J. If all three epsilon_i values are zero, they are
-ignored. Thus the typical way to define the epsilon_i and epsilon_j
-coefficients is to list their values in "pair_coeff I J" commands when
-I = J, but set them to 0.0 when I != J. If you do list them when I !=
-J, you should insure they are consistent with their values in other
-pair_coeff commands.
-
-Note that if this potential is being used as a sub-style of
-:doc:`pair_style hybrid <pair_hybrid>`, and there is no "pair_coeff I I"
-setting made for RE-squared for a particular type I (because I-I
-interactions are computed by another hybrid pair potential), then you
-still need to insure the epsilon a,b,c coefficients are assigned to
-that type in a "pair_coeff I J" command.
-
-For large uniform molecules it has been shown that the epsilon_*_*
-energy parameters are approximately representable in terms of local
-contact curvatures :ref:`(Everaers) <Everaers>`:
-
-.. image:: Eqs/pair_resquared4.jpg
- :align: center
-
-where a, b, and c give the particle diameters.
-
-The last coefficient is optional. If not specified, the global cutoff
-specified in the pair_style command is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance can be mixed, but only for sphere pairs. The
-default mix value is *geometric*. See the "pair_modify" command for
-details. Other type pairs cannot be mixed, due to the different
-meanings of the energy prefactors used to calculate the interactions
-and the implicit dependence of the ellipsoid-sphere interaction on the
-equation for the Hamaker constant presented here. Mixing of sigma and
-epsilon followed by calculation of the energy prefactors using the
-equations above is recommended.
-
-This pair styles supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the Lennard-Jones portion of the pair
-interaction, but only for sphere-sphere interactions. There is no
-shifting performed for ellipsoidal interactions due to the anisotropic
-dependence of the interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords of the :doc:`run_style command <run_style>`.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the ASPHERE package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair style requires that atoms be ellipsoids as defined by the
-:doc:`atom_style ellipsoid <atom_style>` command.
-
-Particles acted on by the potential can be finite-size aspherical or
-spherical particles, or point particles. Spherical particles have all
-3 of their shape parameters equal to each other. Point particles have
-all 3 of their shape parameters equal to 0.0.
-
-The distance-of-closest-approach approximation used by LAMMPS becomes
-less accurate when high-aspect ratio ellipsoids are used.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix nve/asphere <fix_nve_asphere>`,
-:doc:`compute temp/asphere <compute_temp_asphere>`, :doc:`pair_style gayberne <pair_gayberne>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Everaers:
-
-
-
-**(Everaers)** Everaers and Ejtehadi, Phys Rev E, 67, 041710 (2003).
-
-.. _Babadi:
-
-
-
-**(Berardi)** Babadi, Ejtehadi, Everaers, J Comp Phys, 219, 770-779 (2006).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sdk.txt b/doc/_sources/pair_sdk.txt
deleted file mode 100644
index a792df200..000000000
--- a/doc/_sources/pair_sdk.txt
+++ /dev/null
@@ -1,192 +0,0 @@
-.. index:: pair_style lj/sdk
-
-pair_style lj/sdk command
-=========================
-
-pair_style lj/sdk/gpu command
-=============================
-
-pair_style lj/sdk/kk command
-============================
-
-pair_style lj/sdk/omp command
-=============================
-
-pair_style lj/sdk/coul/long command
-===================================
-
-pair_style lj/sdk/coul/long/gpu command
-=======================================
-
-pair_style lj/sdk/coul/long/omp command
-=======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *lj/sdk* or *lj/sdk/coul/long*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *lj/sdk* args = cutoff
- cutoff = global cutoff for Lennard Jones interactions (distance units)
- *lj/sdk/coul/long* args = cutoff (cutoff2)
- cutoff = global cutoff for LJ (and Coulombic if only 1 arg) (distance units)
- cutoff2 = global cutoff for Coulombic (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/sdk 2.5
- pair_coeff 1 1 lj12_6 1 1.1 2.8
-
-.. parsed-literal::
-
- pair_style lj/sdk/coul/long 10.0
- pair_style lj/sdk/coul/long 10.0 12.0
- pair_coeff 1 1 lj9_6 100.0 3.5 12.0
-
-Description
-"""""""""""
-
-The *lj/sdk* styles compute a 9/6, 12/4, or 12/6 Lennard-Jones potential,
-given by
-
-.. image:: Eqs/pair_cmm.jpg
- :align: center
-
-as required for the SDK Coarse-grained MD parametrization discussed in
-:ref:`(Shinoda) <Shinoda>` and :ref:`(DeVane) <DeVane>`. Rc is the cutoff.
-
-Style *lj/sdk/coul/long* computes the adds Coulombic interactions
-with an additional damping factor applied so it can be used in
-conjunction with the :doc:`kspace_style <kspace_style>` command and
-its *ewald* or *pppm* or *pppm/cg* option. The Coulombic cutoff
-specified for this style means that pairwise interactions within
-this distance are computed directly; interactions outside that
-distance are computed in reciprocal space.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cg_type (lj9_6, lj12_4, or lj12_6)
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff1 (distance units)
-
-Note that sigma is defined in the LJ formula as the zero-crossing
-distance for the potential, not as the energy minimum. The prefactors
-are chosen so that the potential minimum is at -epsilon.
-
-The latter 2 coefficients are optional. If not specified, the global
-LJ and Coulombic cutoffs specified in the pair_style command are used.
-If only one cutoff is specified, it is used as the cutoff for both LJ
-and Coulombic interactions for this type pair. If both coefficients
-are specified, they are used as the LJ and Coulombic cutoffs for this
-type pair.
-
-For *lj/sdk/coul/long* only the LJ cutoff can be specified since a
-Coulombic cutoff cannot be specified for an individual I,J type pair.
-All type pairs use the same global Coulombic cutoff specified in the
-pair_style command.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp* or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP, and OPT packages respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, and rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of the lj/sdk pair styles *cannot* be mixed,
-since different pairs may have different exponents. So all parameters
-for all pairs have to be specified explicitly through the "pair_coeff"
-command. Defining then in a data file is also not supported, due to
-limitations of that file format.
-
-All of the lj/sdk pair styles support the
-:doc:`pair_modify <pair_modify>` shift option for the energy of the
-Lennard-Jones portion of the pair interaction.
-
-The *lj/sdk/coul/long* pair styles support the
-:doc:`pair_modify <pair_modify>` table option since they can tabulate
-the short-range portion of the long-range Coulombic interaction.
-
-All of the lj/sdk pair styles write their information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do
-not need to be specified in an input script that reads a restart file.
-
-The lj/sdk and lj/cut/coul/long pair styles do not support
-the use of the *inner*, *middle*, and *outer* keywords of the :doc:`run_style respa <run_style>` command.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-All of the lj/sdk pair styles are part of the USER-CG-CMM package.
-The *lj/sdk/coul/long* style also requires the KSPACE package to be
-built (which is enabled by default). They are only enabled if LAMMPS
-was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`angle_style sdk <angle_sdk>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Shinoda:
-
-
-
-**(Shinoda)** Shinoda, DeVane, Klein, Mol Sim, 33, 27 (2007).
-
-.. _DeVane:
-
-
-
-**(DeVane)** Shinoda, DeVane, Klein, Soft Matter, 4, 2453-2462 (2008).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_smd_hertz.txt b/doc/_sources/pair_smd_hertz.txt
deleted file mode 100644
index 0c47a773c..000000000
--- a/doc/_sources/pair_smd_hertz.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-.. index:: pair_style smd/hertz
-
-pair_style smd/hertz command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style smd/hertz scale_factor
-
-Examples
-""""""""
-
-pair_style smd/hertz 1.0
-pair_coeff 1 1 <contact_stiffness>
-
-Description
-"""""""""""
-
-The *smd/hertz* style calculates contact forces between SPH particles belonging to different physical bodies.
-
-The contact forces are calculated using a Hertz potential, which evaluates the overlap between two particles
-(whose spatial extents are defined via its contact radius).
-The effect is that a particles cannot penetrate into each other.
-The parameter <contact_stiffness> has units of pressure and should equal roughly one half
-of the Young's modulus (or bulk modulus in the case of fluids) of the material model associated with the SPH particles.
-
-The parameter *scale_factor* can be used to scale the particles' contact radii. This can be useful to control how close
-particles can approach each other. Usually, *scale_factor*=1.0.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-No mixing is performed automatically.
-Currently, no part of USER-SMD supports restarting nor minimization.
-rRESPA does not apply to this pair style.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_smd_tlsph.txt b/doc/_sources/pair_smd_tlsph.txt
deleted file mode 100644
index 78dff7750..000000000
--- a/doc/_sources/pair_smd_tlsph.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-.. index:: pair_style smd/tlsph
-
-pair_style smd/tlsph command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style smd/tlsph args
-
-Examples
-""""""""
-
-pair_style smd/tlsph
-
-Description
-"""""""""""
-
-The *smd/tlsph* style computes particle interactions according to continuum mechanics constitutive laws and a Total-Lagrangian Smooth-Particle Hydrodynamics algorithm.
-
-This pair style is invoked with the following command:
-
-.. parsed-literal::
-
- pair_style smd/tlsph
- pair_coeff i j *COMMON rho0 E nu Q1 Q2 hg Cp &
- *END
-
-Here, *i* and *j* denote the *LAMMPS* particle types for which this pair style is
-defined. Note that *i* and *j* must be equal, i.e., no *tlsph* cross interactions
-between different particle types are allowed.
-In contrast to the usual *LAMMPS* *pair coeff* definitions, which are given solely a
-number of floats and integers, the *tlsph* *pair coeff* definition is organised using
-keywords. These keywords mark the beginning of different sets of parameters for particle properties,
-material constitutive models, and damage models. The *pair coeff* line must be terminated with
-the **END* keyword. The use the line continuation operator *&* is recommended. A typical
-invocation of the *tlsph* for a solid body would consist of an equation of state for computing
-the pressure (the diagonal components of the stress tensor), and a material model to compute shear
-stresses (the off-diagonal components of the stress tensor). Damage and failure models can also be added.
-
-Please see the `SMD user guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ for a complete listing of the possible keywords and material models.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-No mixing is performed automatically.
-Currently, no part of USER-SMD supports restarting nor minimization.
-rRESPA does not apply to this pair style.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_smd_triangulated_surface.txt b/doc/_sources/pair_smd_triangulated_surface.txt
deleted file mode 100644
index 63abe2ed4..000000000
--- a/doc/_sources/pair_smd_triangulated_surface.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-.. index:: pair_style smd/tri_surface
-
-pair_style smd/tri_surface command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style smd/tri_surface scale_factor
-
-Examples
-""""""""
-
-pair_style smd/tri_surface 1.0
-pair_coeff 1 1 <contact_stiffness>
-
-Description
-"""""""""""
-
-The *smd/tri_surface* style calculates contact forces between SPH particles and a rigid wall boundary defined via the
-:doc:`smd/wall_surface <fix_smd_wall_surface>` fix.
-
-The contact forces are calculated using a Hertz potential, which evaluates the overlap between a particle
-(whose spatial extents are defined via its contact radius) and the triangle.
-The effect is that a particle cannot penetrate into the triangular surface.
-The parameter <contact_stiffness> has units of pressure and should equal roughly one half
-of the Young's modulus (or bulk modulus in the case of fluids) of the material model associated with the SPH particle
-
-The parameter *scale_factor* can be used to scale the particles' contact radii. This can be useful to control how close
-particles can approach the triangulated surface. Usually, *scale_factor*=1.0.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-No mixing is performed automatically.
-Currently, no part of USER-SMD supports restarting nor minimization.
-rRESPA does not apply to this pair style.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_smd_ulsph.txt b/doc/_sources/pair_smd_ulsph.txt
deleted file mode 100644
index 26c3cca45..000000000
--- a/doc/_sources/pair_smd_ulsph.txt
+++ /dev/null
@@ -1,86 +0,0 @@
-.. index:: pair_style smd/ulsph
-
-pair_style smd/ulsph command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style smd/ulsph args
-
-* these keywords must be given
-keyword = **DENSITY_SUMMATION* or **DENSITY_CONTINUITY* and **VELOCITY_GRADIENT* or **NO_VELOCITY_GRADIENT* and **GRADIENT_CORRECTION* or **NO_GRADIENT_CORRECTION*
-
-Examples
-""""""""
-
-pair_style smd/ulsph *DENSITY_CONTINUITY *VELOCITY_GRADIENT *NO_GRADIENT_CORRECTION
-
-Description
-"""""""""""
-
-The *smd/ulsph* style computes particle interactions according to continuum mechanics constitutive laws and an updated Lagrangian Smooth-Particle Hydrodynamics algorithm.
-
-This pair style is invoked similar to the following command:
-
-.. parsed-literal::
-
- pair_style smd/ulsph *DENSITY_CONTINUITY *VELOCITY_GRADIENT *NO_GRADIENT_CORRECTION
- pair_coeff i j *COMMON rho0 c0 Q1 Cp hg &
- *END
-
-Here, *i* and *j* denote the *LAMMPS* particle types for which this pair style is
-defined. Note that *i* and *j* can be different, i.e., *ulsph* cross interactions
-between different particle types are allowed. However, *i*--*i* respectively *j*--*j* pair_coeff lines have to preceed a cross interaction.
-In contrast to the usual *LAMMPS* *pair coeff* definitions, which are given solely a
-number of floats and integers, the *ulsph* *pair coeff* definition is organised using
-keywords. These keywords mark the beginning of different sets of parameters for particle properties,
-material constitutive models, and damage models. The *pair coeff* line must be terminated with
-the **END* keyword. The use the line continuation operator *&* is recommended. A typical
-invocation of the *ulsph* for a solid body would consist of an equation of state for computing
-the pressure (the diagonal components of the stress tensor), and a material model to compute shear
-stresses (the off-diagonal components of the stress tensor).
-
-Note that the use of *GRADIENT_CORRECTION can lead to severe numerical instabilities. For a general fluid simulation, *NO_GRADIENT_CORRECTION is recommended.
-
-Please see the `SMD user guide <USER/smd/SMD_LAMMPS_userguide.pdf>`_ for a complete listing of the possible keywords and material models.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-No mixing is performed automatically.
-Currently, no part of USER-SMD supports restarting nor minimization.
-rRESPA does not apply to this pair style.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This fix is part of the USER-SMD package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>`
-section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_smtbq.txt b/doc/_sources/pair_smtbq.txt
deleted file mode 100644
index b75414138..000000000
--- a/doc/_sources/pair_smtbq.txt
+++ /dev/null
@@ -1,297 +0,0 @@
-.. index:: pair_style smtbq
-
-pair_style smtbq command
-========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style smtbq
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style smtbq
- pair_coeff * * ffield.smtbq.Al2O3 O Al
-
-Description
-"""""""""""
-
-This pair stylecomputes a variable charge SMTB-Q (Second-Moment
-tight-Binding QEq) potential as described in :ref:`SMTB-Q_1 <SMTB-Q_1>` and
-:ref:`SMTB-Q_2 <SMTB-Q_2>`. Briefly, the energy of metallic-oxygen systems
-is given by three contributions:
-
-.. image:: Eqs/pair_smtbq1.jpg
- :align: center
-
-where *E<sub>tot</sub>* is the total potential energy of the system,
-*E<sub>ES</sub>* is the electrostatic part of the total energy,
-*E<sub>OO</sub>* is the interaction between oxygens and
-*E<sub>MO</sub>* is a short-range interaction between metal and oxygen
-atoms. This interactions depend on interatomic distance
-*r<sub>ij</sub>* and/or the charge *Q<sub>i</sub>* of atoms
-*i*. Cut-off function enables smooth convergence to zero interaction.
-
-The parameters appearing in the upper expressions are set in the
-ffield.SMTBQ.Syst file where Syst corresponds to the selected system
-(e.g. field.SMTBQ.Al2O3). Exemples for TiO<sub>2</sub>,
-Al<sub>2</sub>O<sub>3</sub> are provided. A single pair_coeff command
-is used with the SMTBQ styles which provides the path to the potential
-file with parameters for needed elements. These are mapped to LAMMPS
-atom types by specifying additional arguments after the potential
-filename in the pair_coeff command. Note that atom type 1 must always
-correspond to oxygen atoms. As an example, to simulate a TiO2 system,
-atom type 1 has to be oxygen and atom type 2 Ti. The following
-pair_coeff command should then be used:
-
-.. parsed-literal::
-
- pair_coeff * * PathToLammps/potentials/ffield.smtbq.TiO2 O Ti
-
-The electrostatic part of the energy consists of two components
-
-self-energy of atom *i* in the form of a second order charge dependent
-polynomial and a long-range Coulombic electrostatic interaction. The
-latter uses the wolf summation method described in :ref:`Wolf <Wolf>`,
-spherically truncated at a longer cutoff, *R<sub>coul</sub>*. The
-charge of each ion is modeled by an orbital Slater which depends on
-the principal quantum number (*n*) of the outer orbital shared by the
-ion.
-
-Interaction between oxygen, *E<sub>OO</sub>*, consists of two parts,
-an attractive and a repulsive part. The attractive part is effective
-only at short range (< r<sub>2</sub><sup>OO</sup>). The attractive
-contribution was optimized to study surfaces reconstruction
-(e.g. :ref:`SMTB-Q_2 <SMTB-Q_2>` in TiO<sub>2</sub>) and is not necessary
-for oxide bulk modeling. The repulsive part is the Pauli interaction
-between the electron clouds of oxygen. The Pauli repulsion and the
-coulombic electrostatic interaction have same cut off value. In the
-ffield.SMTBQ.Syst, the keyword *'buck'* allows to consider only the
-repulsive O-O interactions. The keyword *'buckPlusAttr'* allows to
-consider the repulsive and the attractive O-O interactions.
-
-The short-range interaction between metal-oxygen, *E<sub>MO</sub>* is
-based on the second moment approximation of the density of states with
-a N-body potential for the band energy term,
-*E<sup>i</sup><sub>cov</sub>*, and a Born-Mayer type repulsive terms
-as indicated by the keyword *'second_moment'* in the
-ffield.SMTBQ.Syst. The energy band term is given by:
-
-.. image:: Eqs/pair_smtbq2.jpg
- :align: center
-
-where *&#951<sub>i</sub>* is the stoichiometry of atom *i*,
-*&#948Q<sub>i</sub>* is the charge delocalization of atom *i*,
-compared to its formal charge
-*Q<sup>F</sup><sub>i</sub>*. n<sub>0</sub>, the number of hybridized
-orbitals, is calculated with to the atomic orbitals shared
-*d<sub>i</sub>* and the stoichiometry
-*&#951<sub>i</sub>*. *r<sub>c1</sub>* and *r<sub>c2</sub>* are the two
-cutoff radius around the fourth neighbors in the cutoff function.
-
-In the formalism used here, *&#958<sup>0</sup>* is the energy
-parameter. *&#958<sup>0</sup>* is in tight-binding approximation the
-hopping integral between the hybridized orbitals of the cation and the
-anion. In the literature we find many ways to write the hopping
-integral depending on whether one takes the point of view of the anion
-or cation. These are equivalent vision. The correspondence between the
-two visions is explained in appendix A of the article in the
-SrTiO<sub>3</sub> :ref:`SMTB-Q_3 <SMTB-Q_3>` (parameter *&#946* shown in
-this article is in fact the *&#946<sub>O</sub>*). To summarize the
-relationship between the hopping integral *&#958<sup>0</sup>* and the
-others, we have in an oxide C<sub>n</sub>O<sub>m</sub> the following
-relationship:
-
-.. image:: Eqs/pair_smtbq3.jpg
- :align: center
-
-Thus parameter &#956, indicated above, is given by : &#956 = (&#8730n
-+ &#8730m) &#8260 2
-
-The potential offers the possibility to consider the polarizability of
-the electron clouds of oxygen by changing the slater radius of the
-charge density around the oxygens through the parameters *rBB, rB and
-rS* in the ffield.SMTBQ.Syst. This change in radius is performed
-according to the method developed by E. Maras
-:ref:`SMTB-Q_2 <SMTB-Q_2>`. This method needs to determine the number of
-nearest neighbors around the oxygen. This calculation is based on
-first (*r<sub>1n</sub>*) and second (*r<sub>2n</sub>*) distances
-neighbors.
-
-The SMTB-Q potential is a variable charge potential. The equilibrium
-charge on each atom is calculated by the electronegativity
-equalization (QEq) method. See :ref:`Rick <Rick>` for further detail. One
-can adjust the frequency, the maximum number of iterative loop and the
-convergence of the equilibrium charge calculation. To obtain the
-energy conservation in NVE thermodynamic ensemble, we recommend to use
-a convergence parameter in the interval 10<sup>-5</sup> -
-10<sup>-6</sup> eV.
-
-The ffield.SMTBQ.Syst files are provided for few systems. They consist
-of nine parts and the lines beginning with '#' are comments (note that
-the number of comment lines matter). The first sections are on the
-potential parameters and others are on the simulation options and
-might be modified. Keywords are character type and must be enclosed in
-quotation marks ('').
-
-1) Number of different element in the oxide:
-
-* N<sub>elem</sub>= 2 or 3
-* Divided line
-
-2) Atomic parameters
-
-For the anion (oxygen)
-
-* Name of element (char) and stoichiometry in oxide
-* Formal charge and mass of element
-* Principal quantic number of outer orbital (*n*), electronegativity (*&#967<sup>0</sup><sub>i</simulationub>*) and hardness (*J<sup>0</sup><sub>i</sub>*)
-* Ionic radius parameters : max coordination number (*coordBB* = 6 by default), bulk coordination number *(coordB)*, surface coordination number *(coordS)* and *rBB, rB and rS* the slater radius for each coordination number. (<b>note : If you don't want to change the slater radius, use three identical radius values</b>)
-* Number of orbital shared by the element in the oxide (*d<sub>i</sub>*)
-* Divided line
-
-For each cations (metal):
-
-* Name of element (char) and stoichiometry in oxide
-* Formal charge and mass of element
-* Number of electron in outer orbital *(ne)*, electronegativity (*&#967<sup>0</sup><sub>i</simulationub>*), hardness (*J<sup>0</sup><sub>i</sub>*) and *r<sub>Salter</sub>* the slater radius for the cation.
-* Number of orbitals shared by the elements in the oxide (*d<sub>i</sub>*)
-* Divided line
-
-3) Potential parameters:
-
-* Keyword for element1, element2 and interaction potential ('second_moment' or 'buck' or 'buckPlusAttr') between element 1 and 2. If the potential is 'second_moment', specify 'oxide' or 'metal' for metal-oxygen or metal-metal interactions respectively.
-* Potential parameter: <pre><br/> If type of potential is 'second_moment' : *A (eV)*, *p*, *&#958<sup>0</sup>* (eV) and *q* <br/> *r<sub>c1</sub>* (&#197), *r<sub>c2</sub>* (&#197) and *r<sub>0</sub>* (&#197) <br/> If type of potential is 'buck' : *C* (eV) and *&#961* (&#197) <br/> If type of potential is 'buckPlusAttr' : *C* (eV) and *&#961* (&#197) <br/> *D* (eV), *B* (&#197<sup>-1</sup>), *r<sub>1</sub><sup>OO</sup>* (&#197) and *r<sub>2</sub><sup>OO</sup>* (&#197) </pre>
-* Divided line
-
-4) Tables parameters:
-
-* Cutoff radius for the Coulomb interaction (*R<sub>coul</sub>*)
-* Starting radius (*r<sub>min</sub>* = 1,18845 &#197) and increments (*dr* = 0,001 &#197) for creating the potential table.
-* Divided line
-
-5) Rick model parameter:
-
-* *Nevery* : parameter to set the frequency (*1/Nevery*) of the charge resolution. The charges are evaluated each *Nevery* time steps.
-* Max number of iterative loop (*loopmax*) and precision criterion (*prec*) in eV of the charge resolution
-* Divided line
-
-6) Coordination parameter:
-
-* First (*r<sub>1n</sub>*) and second (*r<sub>2n</sub>*) neighbor distances in &#197
-* Divided line
-
-7) Charge initialization mode:
-
-* Keyword (*QInitMode*) and initial oxygen charge (*Q<sub>init</sub>*). If keyword = 'true', all oxygen charges are initially set equal to *Q<sub>init</sub>*. The charges on the cations are initially set in order to respect the neutrality of the box. If keyword = 'false', all atom charges are initially set equal to 0 if you use "create_atom"#create_atom command or the charge specified in the file structure using :ref:`read_data <read_data.html>` command.
-* Divided line
-
-8) Mode for the electronegativity equalization (Qeq)
-
-* Keyword mode: <pre> <br/> QEqAll (one QEq group) | no parameters <br/> QEqAllParallel (several QEq groups) | no parameters <br/> Surface | zlim (QEq only for z>zlim) </pre>
-* Parameter if necessary
-* Divided line
-
-9) Verbose
-
-* If you want the code to work in verbose mode or not : 'true' or 'false'
-* If you want to print or not in file 'Energy_component.txt' the three main contributions to the energy of the system according to the description presented above : 'true' or 'false' and *N<sub>Energy</sub>*. This option writes in file every *N<sub>Energy</sub>* time step. If the value is 'false' then *N<sub>Energy</sub>* = 0. The file take into account the possibility to have several QEq group *g* then it writes: time step, number of atoms in group *g*, electrostatic part of energy, *E<sub>ES</sub>*, the interaction between oxygen, *E<sub>OO</sub>*, and short range metal-oxygen interaction, *E<sub>MO</sub>*.
-* If you want to print in file 'Electroneg_component.txt' the electronegativity component (*&#8706E<sub>tot</sub> &#8260&#8706Q<sub>i</sub>*) or not: 'true' or 'false' and *N<sub>Electroneg</sub>*.This option writes in file every *N<sub>Electroneg</sub>* time step. If the value is 'false' then *N<sub>Electroneg</sub>* = 0. The file consist in atom number *i*, atom type (1 for oxygen and # higher than 1 for metal), atom position: *x*, *y* and *z*, atomic charge of atom *i*, electrostatic part of atom *i* electronegativity, covalent part of atom *i* electronegativity, the hopping integral of atom *i* *(Z&#946<sup>2</sup>)<sub>i<sub>* and box electronegativity.
-
-.. note::
-
- This last option slows down the calculation dramatically. Use
- only with a single processor simulation.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info:**
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-mix, shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-needs to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-**Restriction:**
-
-This pair style is part of the USER-SMTBQ package and is only enabled
-if LAMMPS is built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This potential requires using atom type 1 for oxygen and atom type
-higher than 1 for metal atoms.
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The SMTB-Q potential files provided with LAMMPS (see the potentials
-directory) are parameterized for metal :doc:`units <unit>`.
-
-
-----------
-
-
-**Citing this work:**
-
-Please cite related publication: N. Salles, O. Politano, E. Amzallag
-and R. Tetot, Comput. Mater. Sci. 111 (2016) 181-189
-
-
-----------
-
-
-.. _SMTB-Q_1:
-
-
-
-**(SMTB-Q_1)** N. Salles, O. Politano, E. Amzallag, R. Tetot,
-Comput. Mater. Sci. 111 (2016) 181-189
-
-.. _SMTB-Q_2:
-
-
-
-**(SMTB-Q_2)** E. Maras, N. Salles, R. Tetot, T. Ala-Nissila,
-H. Jonsson, J. Phys. Chem. C 2015, 119, 10391-10399
-
-.. _SMTB-Q_3:
-
-
-
-**(SMTB-Q_3)** R. Tetot, N. Salles, S. Landron, E. Amzallag, Surface
-Science 616, 19-8722 28 (2013)
-
-.. _Wolf:
-
-
-
-**(Wolf)** D. Wolf, P. Keblinski, S. R. Phillpot, J. Eggebrecht, J Chem
-Phys, 110, 8254 (1999).
-
-.. _Rick:
-
-
-
-**(Rick)** S. W. Rick, S. J. Stuart, B. J. Berne, J Chem Phys 101, 6141
-(1994).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_snap.txt b/doc/_sources/pair_snap.txt
deleted file mode 100644
index 969464944..000000000
--- a/doc/_sources/pair_snap.txt
+++ /dev/null
@@ -1,220 +0,0 @@
-.. index:: pair_style snap
-
-pair_style snap command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style snap
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style snap
- pair_coeff * * snap InP.snapcoeff In P InP.snapparam In In P P
-
-Description
-"""""""""""
-
-Style *snap* computes interactions
-using the spectral neighbor analysis potential (SNAP)
-:ref:`(Thompson) <Thompson2014>`. Like the GAP framework of Bartok et al.
-:ref:`(Bartok2010) <Bartok2010>`, :ref:`(Bartok2013) <Bartok2013>`
-it uses bispectrum components
-to characterize the local neighborhood of each atom
-in a very general way. The mathematical definition of the
-bispectrum calculation used by SNAP is identical
-to that used of :doc:`compute sna/atom <compute_sna_atom>`.
-In SNAP, the total energy is decomposed into a sum over
-atom energies. The energy of atom *i* is
-expressed as a weighted sum over bispectrum components.
-
-.. image:: Eqs/pair_snap.jpg
- :align: center
-
-where *B_k^i* is the *k*-th bispectrum component of atom *i*,
-and *beta_k^alpha_i* is the corresponding linear coefficient
-that depends on *alpha_i*, the SNAP element of atom *i*. The
-number of bispectrum components used and their definitions
-depend on the values of *twojmax* and *diagonalstyle*
-defined in the SNAP parameter file described below.
-The bispectrum calculation is described in more detail
-in :doc:`compute sna/atom <compute_sna_atom>`.
-
-Note that unlike for other potentials, cutoffs for SNAP potentials are
-not set in the pair_style or pair_coeff command; they are specified in
-the SNAP potential files themselves.
-
-Only a single pair_coeff command is used with the *snap* style which
-specifies two SNAP files and the list SNAP element(s) to be
-extracted.
-The SNAP elements are mapped to LAMMPS atom types by specifying
-N additional arguments after the 2nd filename in the pair_coeff
-command, where N is the number of LAMMPS atom types:
-
-* SNAP element file
-* Elem1, Elem2, ...
-* SNAP parameter file
-* N element names = mapping of SNAP elements to atom types
-
-As an example, if a LAMMPS indium phosphide simulation has 4 atoms
-types, with the first two being indium and the 3rd and 4th being
-phophorous, the pair_coeff command would look like this:
-
-.. parsed-literal::
-
- pair_coeff * * snap InP.snapcoeff In P InP.snapparam In In P P
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The two filenames are for the element and parameter files, respectively.
-The 'In' and 'P' arguments (between the file names) are the two elements
-which will be extracted from the element file. The
-two trailing 'In' arguments map LAMMPS atom types 1 and 2 to the
-SNAP 'In' element. The two trailing 'P' arguments map LAMMPS atom types
-3 and 4 to the SNAP 'P' element.
-
-If a SNAP mapping value is
-specified as NULL, the mapping is not performed.
-This can be used when a *snap* potential is used as part of the
-*hybrid* pair style. The NULL values are placeholders for atom types
-that will be used with other potentials.
-
-The name of the SNAP element file usually ends in the
-".snapcoeff" extension. It may contain coefficients
-for many SNAP elements.
-Only those elements listed in the pair_coeff command are extracted.
-The name of the SNAP parameter file usually ends in the ".snapparam"
-extension. It contains a small number
-of parameters that define the overall form of the SNAP potential.
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for these files.
-
-Quite commonly,
-SNAP potentials are combined with one or more other LAMMPS pair styles
-using the *hybrid/overlay* pair style. As an example, the SNAP
-tantalum potential provided in the LAMMPS potentials directory
-combines the *snap* and *zbl* pair styles. It is invoked
-by the following commands:
-
-.. parsed-literal::
-
- variable zblcutinner equal 4
- variable zblcutouter equal 4.8
- variable zblz equal 73
- pair_style hybrid/overlay &
- zbl ${zblcutinner} ${zblcutouter} snap
- pair_coeff * * zbl 0.0
- pair_coeff 1 1 zbl ${zblz}
- pair_coeff * * snap ../potentials/Ta06A.snapcoeff Ta &
- ../potentials/Ta06A.snapparam Ta
-
-It is convenient to keep these commands in a separate file that can
-be inserted in any LAMMPS input script using the :doc:`include <include>`
-command.
-
-The top of the SNAP element file can contain any number of blank and comment
-lines (start with #), but follows a strict
-format after that. The first non-blank non-comment
-line must contain two integers:
-
-* nelem = Number of elements
-* ncoeff = Number of coefficients
-
-This is followed by one block for each of the *nelem* elements.
-The first line of each block contains three entries:
-
-* Element symbol (text string)
-* R = Element radius (distance units)
-* w = Element weight (dimensionless)
-
-This line is followed by *ncoeff* coefficients, one per line.
-
-The SNAP parameter file can contain blank and comment lines (start
-with #) anywhere. Each non-blank non-comment line must contain one
-keyword/value pair. The required keywords are *rcutfac* and
-*twojmax*. Optional keywords are *rfac0*, *rmin0*, *diagonalstyle*,
-and *switchflag*.
-
-The default values for these keywords are
-
-* *rfac0* = 0.99363
-* *rmin0* = 0.0
-* *diagonalstyle* = 3
-* *switchflag* = 0
-
-Detailed definitions of these keywords are given on the :doc:`compute sna/atom <compute_sna_atom>` doc page.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS with
-user-specifiable parameters as described above. You never need to
-specify a pair_coeff command with I != J arguments for this style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the SNAP package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute sna/atom <compute_sna_atom>`,
-:doc:`compute snad/atom <compute_sna_atom>`,
-:doc:`compute snav/atom <compute_sna_atom>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Thompson2014:
-
-
-
-**(Thompson)** Thompson, Swiler, Trott, Foiles, Tucker, under review, preprint
-available at `arXiv:1409.3880 <http://arxiv.org/abs/1409.3880>`_
-
-.. _Bartok2010:
-
-
-
-**(Bartok2010)** Bartok, Payne, Risi, Csanyi, Phys Rev Lett, 104, 136403 (2010).
-
-.. _Bartok2013:
-
-
-
-**(Bartok2013)** Bartok, Gillan, Manby, Csanyi, Phys Rev B 87, 184115 (2013).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_soft.txt b/doc/_sources/pair_soft.txt
deleted file mode 100644
index b9a08cdf7..000000000
--- a/doc/_sources/pair_soft.txt
+++ /dev/null
@@ -1,158 +0,0 @@
-.. index:: pair_style soft
-
-pair_style soft command
-=======================
-
-pair_style soft/gpu command
-===========================
-
-pair_style soft/omp command
-===========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style soft cutoff
-
-* cutoff = global cutoff for soft interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style soft 1.0
- pair_coeff * * 10.0
- pair_coeff 1 1 10.0 3.0
-
-.. parsed-literal::
-
- pair_style soft 1.0
- pair_coeff * * 0.0
- variable prefactor equal ramp(0,30)
- fix 1 all adapt 1 pair soft a * * v_prefactor
-
-Description
-"""""""""""
-
-Style *soft* computes pairwise interactions with the formula
-
-.. image:: Eqs/pair_soft.jpg
- :align: center
-
-It is useful for pushing apart overlapping atoms, since it does not
-blow up as r goes to 0. A is a pre-factor that can be made to vary in
-time from the start to the end of the run (see discussion below),
-e.g. to start with a very soft potential and slowly harden the
-interactions over time. Rc is the cutoff. See the :doc:`fix nve/limit <fix_nve_limit>` command for another way to push apart
-overlapping atoms.
-
-The following coefficients must be defined for each pair of atom types
-via the :doc:`pair_coeff <pair_coeff>` command as in the examples above,
-or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* A (energy units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global soft
-cutoff is used.
-
-.. note::
-
- The syntax for :doc:`pair_coeff <pair_coeff>` with a single A
- coeff is different in the current version of LAMMPS than in older
- versions which took two values, Astart and Astop, to ramp between
- them. This functionality is now available in a more general form
- through the :doc:`fix adapt <fix_adapt>` command, as explained below.
- Note that if you use an old input script and specify Astart and Astop
- without a cutoff, then LAMMPS will interpret that as A and a cutoff,
- which is probabably not what you want.
-
-The :doc:`fix adapt <fix_adapt>` command can be used to vary A for one
-or more pair types over the course of a simulation, in which case
-pair_coeff settings for A must still be specified, but will be
-overridden. For example these commands will vary the prefactor A for
-all pairwise interactions from 0.0 at the beginning to 30.0 at the end
-of a run:
-
-.. parsed-literal::
-
- variable prefactor equal ramp(0,30)
- fix 1 all adapt 1 pair soft a * * v_prefactor
-
-Note that a formula defined by an :doc:`equal-style variable <variable>`
-can use the current timestep, elapsed time in the current run, elapsed
-time since the beginning of a series of runs, as well as access other
-variables.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the A coefficient and cutoff
-distance for this pair style can be mixed. A is always mixed via a
-*geometric* rule. The cutoff is mixed according to the pair_modify
-mix value. The default mix value is *geometric*. See the
-"pair_modify" command for details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option, since the pair interaction goes to 0.0 at the cutoff.
-
-The :doc:`pair_modify <pair_modify>` table and tail options are not
-relevant for this pair style.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`fix nve/limit <fix_nve_limit>`, :doc:`fix adapt <fix_adapt>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sph_heatconduction.txt b/doc/_sources/pair_sph_heatconduction.txt
deleted file mode 100644
index c4e5a9824..000000000
--- a/doc/_sources/pair_sph_heatconduction.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-.. index:: pair_style sph/heatconduction
-
-pair_style sph/heatconduction command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style sph/heatconduction
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style sph/heatconduction
- pair_coeff * * 1.0 2.4
-
-Description
-"""""""""""
-
-The sph/heatconduction style computes heat transport between SPH particles.
-The transport model is the diffusion euqation for the internal energy.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above.
-
-* D diffusion coefficient (length^2/time units)
-* h kernel function cutoff (distance units)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This style does not write information to :doc:`binary restart files <restart>`. Thus, you need to re-specify the pair_style and
-pair_coeff commands in an input script that reads a restart file.
-
-This style can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. It does not support the *inner*,
-*middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-SPH package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, pair_sph/rhosum
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sph_idealgas.txt b/doc/_sources/pair_sph_idealgas.txt
deleted file mode 100644
index bb786205f..000000000
--- a/doc/_sources/pair_sph_idealgas.txt
+++ /dev/null
@@ -1,91 +0,0 @@
-.. index:: pair_style sph/idealgas
-
-pair_style sph/idealgas command
-===============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style sph/idealgas
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style sph/idealgas
- pair_coeff * * 1.0 2.4
-
-Description
-"""""""""""
-
-The sph/idealgas style computes pressure forces between particles
-according to the ideal gas equation of state:
-
-.. image:: Eqs/pair_sph_ideal.jpg
- :align: center
-
-where gamma = 1.4 is the heat capacity ratio, rho is the local
-density, and e is the internal energy per unit mass. This pair style
-also computes Monaghan's artificial viscosity to prevent particles
-from interpentrating :ref:`(Monaghan) <Monoghan>`.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above.
-
-* nu artificial viscosity (no units)
-* h kernel function cutoff (distance units)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This style does not write information to :doc:`binary restart files <restart>`. Thus, you need to re-specify the pair_style and
-pair_coeff commands in an input script that reads a restart file.
-
-This style can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. It does not support the *inner*,
-*middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-SPH package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, pair_sph/rhosum
-
-**Default:** none
-
-
-----------
-
-
-.. _Monoghan:
-
-
-
-**(Monaghan)** Monaghan and Gingold, Journal of Computational Physics,
-52, 374-389 (1983).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sph_lj.txt b/doc/_sources/pair_sph_lj.txt
deleted file mode 100644
index 5a3db87d4..000000000
--- a/doc/_sources/pair_sph_lj.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-.. index:: pair_style sph/lj
-
-pair_style sph/lj command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style sph/lj
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style sph/lj
- pair_coeff * * 1.0 2.4
-
-Description
-"""""""""""
-
-The sph/lj style computes pressure forces between particles according
-to the Lennard-Jones equation of state, which is computed according to
-Ree's 1980 polynomial fit :ref:`(Ree) <Ree>`. The Lennard-Jones parameters
-epsilon and sigma are set to unity. This pair style also computes
-Monaghan's artificial viscosity to prevent particles from
-interpentrating :ref:`(Monaghan) <Monoghan>`.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above.
-
-* nu artificial viscosity (no units)
-* h kernel function cutoff (distance units)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This style does not write information to :doc:`binary restart files <restart>`. Thus, you need to re-specify the pair_style and
-pair_coeff commands in an input script that reads a restart file.
-
-This style can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. It does not support the *inner*,
-*middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-As noted above, the Lennard-Jones parameters epsilon and sigma are set
-to unity.
-
-This pair style is part of the USER-SPH package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, pair_sph/rhosum
-
-**Default:** none
-
-
-----------
-
-
-.. _Ree:
-
-
-
-**(Ree)** Ree, Journal of Chemical Physics, 73, 5401 (1980).
-
-.. _Monoghan:
-
-
-
-**(Monaghan)** Monaghan and Gingold, Journal of Computational Physics,
-52, 374-389 (1983).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sph_rhosum.txt b/doc/_sources/pair_sph_rhosum.txt
deleted file mode 100644
index e8a11d77d..000000000
--- a/doc/_sources/pair_sph_rhosum.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-.. index:: pair_style sph/rhosum
-
-pair_style sph/rhosum command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style sph/rhosum Nstep
-
-* Nstep = timestep interval
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style sph/rhosum 10
- pair_coeff * * 2.4
-
-Description
-"""""""""""
-
-The sph/rhosum style computes the local particle mass density rho for
-SPH particles by kernel function interpolation, every Nstep timesteps.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above.
-
-* h (distance units)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This style does not write information to :doc:`binary restart files <restart>`. Thus, you need to re-specify the pair_style and
-pair_coeff commands in an input script that reads a restart file.
-
-This style can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. It does not support the *inner*,
-*middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-SPH package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, pair_sph/taitwater
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sph_taitwater.txt b/doc/_sources/pair_sph_taitwater.txt
deleted file mode 100644
index b6d12811d..000000000
--- a/doc/_sources/pair_sph_taitwater.txt
+++ /dev/null
@@ -1,94 +0,0 @@
-.. index:: pair_style sph/taitwater
-
-pair_style sph/taitwater command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style sph/taitwater
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style sph/taitwater
- pair_coeff * * 1000.0 1430.0 1.0 2.4
-
-Description
-"""""""""""
-
-The sph/taitwater style computes pressure forces between SPH particles
-according to Tait's equation of state:
-
-.. image:: Eqs/pair_sph_tait.jpg
- :align: center
-
-where gamma = 7 and B = c_0^2 rho_0 / gamma, with rho_0 being the
-reference density and c_0 the reference speed of sound.
-
-This pair style also computes Monaghan's artificial viscosity to
-prevent particles from interpentrating :ref:`(Monaghan) <Monaghan>`.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above.
-
-* rho0 reference density (mass/volume units)
-* c0 reference soundspeed (distance/time units)
-* nu artificial viscosity (no units)
-* h kernel function cutoff (distance units)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This style does not write information to :doc:`binary restart files <restart>`. Thus, you need to re-specify the pair_style and
-pair_coeff commands in an input script that reads a restart file.
-
-This style can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. It does not support the *inner*,
-*middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-SPH package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, pair_sph/rhosum
-
-**Default:** none
-
-
-----------
-
-
-.. _Monoghan:
-
-
-
-**(Monaghan)** Monaghan and Gingold, Journal of Computational Physics,
-52, 374-389 (1983).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sph_taitwater_morris.txt b/doc/_sources/pair_sph_taitwater_morris.txt
deleted file mode 100644
index feda918fd..000000000
--- a/doc/_sources/pair_sph_taitwater_morris.txt
+++ /dev/null
@@ -1,92 +0,0 @@
-.. index:: pair_style sph/taitwater/morris
-
-pair_style sph/taitwater/morris command
-=======================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style sph/taitwater/morris
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style sph/taitwater/morris
- pair_coeff * * 1000.0 1430.0 1.0 2.4
-
-Description
-"""""""""""
-
-The sph/taitwater/morris style computes pressure forces between SPH
-particles according to Tait's equation of state:
-
-.. image:: Eqs/pair_sph_tait.jpg
- :align: center
-
-where gamma = 7 and B = c_0^2 rho_0 / gamma, with rho_0 being the
-reference density and c_0 the reference speed of sound.
-
-This pair style also computes laminar viscosity :ref:`(Morris) <Morris>`.
-
-See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to using SPH in
-LAMMPS.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above.
-
-* rho0 reference density (mass/volume units)
-* c0 reference soundspeed (distance/time units)
-* nu dynamic viscosity (mass*distance/time units)
-* h kernel function cutoff (distance units)
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-This style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This style does not write information to :doc:`binary restart files <restart>`. Thus, you need to re-specify the pair_style and
-pair_coeff commands in an input script that reads a restart file.
-
-This style can only be used via the *pair* keyword of the :doc:`run_style respa <run_style>` command. It does not support the *inner*,
-*middle*, *outer* keywords.
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-SPH package. It is only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, pair_sph/rhosum
-
-**Default:** none
-
-
-----------
-
-
-.. _Morris:
-
-
-
-**(Morris)** Morris, Fox, Zhu, J Comp Physics, 136, 214-226 (1997).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_srp.txt b/doc/_sources/pair_srp.txt
deleted file mode 100644
index 975bf0a0d..000000000
--- a/doc/_sources/pair_srp.txt
+++ /dev/null
@@ -1,190 +0,0 @@
-.. index:: pair_style srp
-
-pair_style srp command
-======================
-
-Syntax
-""""""
-
-pair_style srp cutoff btype dist keyword value ...
-
-* cutoff = global cutoff for SRP interactions (distance units)
-* btype = bond type to apply SRP interactions to (can be wildcard, see below)
-* distance = *min* or *mid*
-* zero or more keyword/value pairs may be appended
-* keyword = *exclude*
-.. parsed-literal::
-
- *bptype* value = atom type for bond particles
- *exclude* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style hybrid dpd 1.0 1.0 12345 srp 0.8 1 mid exclude yes
- pair_coeff 1 1 dpd 60.0 4.5 1.0
- pair_coeff 1 2 none
- pair_coeff 2 2 srp 100.0 0.8
-
-.. parsed-literal::
-
- pair_style hybrid dpd 1.0 1.0 12345 srp 0.8 * min exclude yes
- pair_coeff 1 1 dpd 60.0 50 1.0
- pair_coeff 1 2 none
- pair_coeff 2 2 srp 40.0
-
-.. parsed-literal::
-
- pair_style hybrid srp 0.8 2 mid
- pair_coeff 1 1 none
- pair_coeff 1 2 none
- pair_coeff 2 2 srp 100.0 0.8
-
-Description
-"""""""""""
-
-Style *srp* computes a soft segmental repulsive potential (SRP) that
-acts between pairs of bonds. This potential is useful for preventing
-bonds from passing through one another when a soft non-bonded
-potential acts between beads in, for example, DPD polymer chains. An
-example input script that uses this command is provided in
-examples/USER/srp.
-
-Bonds of specified type *btype* interact with one another through a
-bond-pairwise potential, such that the force on bond *i* due to bond
-*j* is as follows
-
-.. image:: Eqs/pair_srp1.jpg
- :align: center
-
-where *r* and *rij* are the distance and unit vector between the two
-bonds. Note that *btype* can be specified as an asterisk "*", which
-case the interaction is applied to all bond types. The *mid* option
-computes *r* and *rij* from the midpoint distance between bonds. The
-*min* option computes *r* and *rij* from the minimum distance between
-bonds. The force acting on a bond is mapped onto the two bond atoms
-according to the lever rule,
-
-.. image:: Eqs/pair_srp2.jpg
- :align: center
-
-where *L* is the normalized distance from the atom to the point of
-closest approach of bond *i* and *j*. The *mid* option takes *L* as
-0.5 for each interaction as described in :ref:`(Sirk) <Sirk>`.
-
-The following coefficients must be defined via the
-:doc:`pair_coeff <pair_coeff>` command as in the examples above, or in
-the data file or restart file read by the :doc:`read_data <read_data>`
-or :doc:`read_restart <read_restart>` commands:
-
-* *C* (force units)
-* *rc* (distance units)
-
-The last coefficient is optional. If not specified, the global cutoff
-is used.
-
-.. note::
-
- Pair style srp considers each bond of type *btype* to be a
- fictitious "particle" of type *bptype*, where *bptype* is either the
- largest atom type in the system, or the type set by the *bptype* flag.
- Any actual existing particles with this atom type will be deleted at
- the beginning of a run. This means you must specify the number of
- types in your system accordingly; usually to be one larger than what
- would normally be the case, e.g. via the :doc:`create_box <create_box>`
- or by changing the header in your :doc:`data file <read_data>`. The
- ficitious "bond particles" are inserted at the beginning of the run,
- and serve as placeholders that define the position of the bonds. This
- allows neighbor lists to be constructed and pairwise interactions to
- be computed in almost the same way as is done for actual particles.
- Because bonds interact only with other bonds, :doc:`pair_style hybrid <pair_hybrid>` should be used to turn off interactions
- between atom type *bptype* and all other types of atoms. An error
- will be flagged if :doc:`pair_style hybrid <pair_hybrid>` is not used.
-
-The optional *exclude* keyword determines if forces are computed
-between first neighbor (directly connected) bonds. For a setting of
-*no*, first neighbor forces are computed; for *yes* they are not
-computed. A setting of *no* cannot be used with the *min* option for
-distance calculation because the the minimum distance between directly
-connected bonds is zero.
-
-Pair style *srp* turns off normalization of thermodynamic properties
-by particle number, as if the command :doc:`thermo_modify norm no <thermo_modify>` had been issued.
-
-The pairwise energy associated with style *srp* is shifted to be zero
-at the cutoff distance *rc*.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair styles does not support mixing.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option for the energy of the pair interaction. Note that as
-discussed above, the energy term is already shifted to be 0.0 at the
-cutoff distance *rc*.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant for
-this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes global and per-atom information to :doc:`binary restart files <restart>`. Pair srp should be used with :doc:`pair_style hybrid <pair_hybrid>`, thus the pair_coeff commands need to be
-specified in the input script when reading a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the USER-MISC package. It is only enabled
-if LAMMPS was built with that package. See the Making LAMMPS section
-for more info.
-
-This pair style must be used with :doc:`pair_style hybrid <pair_hybrid>`.
-
-This pair style requires the :doc:`newton <newton>` command to be *on*
-for non-bonded interactions.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style hybrid <pair_hybrid>`, :doc:`pair_coeff <pair_coeff>`,
-:doc:`pair dpd <pair_dpd>`
-
-Default
-"""""""
-
-The default keyword value is exclude = yes.
-
-
-----------
-
-
-.. _Sirk:
-
-
-
-**(Sirk)** Sirk TW, Sliozberg YR, Brennan JK, Lisal M, Andzelm JW, J
-Chem Phys, 136 (13) 134903, 2012.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_style.txt b/doc/_sources/pair_style.txt
deleted file mode 100644
index 8675d5baa..000000000
--- a/doc/_sources/pair_style.txt
+++ /dev/null
@@ -1,249 +0,0 @@
-.. index:: pair_style
-
-pair_style command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = one of the styles from the list below
-* args = arguments used by a particular style
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style lj/cut 2.5
- pair_style eam/alloy
- pair_style hybrid lj/charmm/coul/long 10.0 eam
- pair_style table linear 1000
- pair_style none
-
-Description
-"""""""""""
-
-Set the formula(s) LAMMPS uses to compute pairwise interactions. In
-LAMMPS, pair potentials are defined between pairs of atoms that are
-within a cutoff distance and the set of active interactions typically
-changes over time. See the :doc:`bond_style <bond_style>` command to
-define potentials between pairs of bonded atoms, which typically
-remain in place for the duration of a simulation.
-
-In LAMMPS, pairwise force fields encompass a variety of interactions,
-some of which include many-body effects, e.g. EAM, Stillinger-Weber,
-Tersoff, REBO potentials. They are still classified as "pairwise"
-potentials because the set of interacting atoms changes with time
-(unlike molecular bonds) and thus a neighbor list is used to find
-nearby interacting atoms.
-
-Hybrid models where specified pairs of atom types interact via
-different pair potentials can be setup using the *hybrid* pair style.
-
-The coefficients associated with a pair style are typically set for
-each pair of atom types, and are specified by the
-:doc:`pair_coeff <pair_coeff>` command or read from a file by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands.
-
-The :doc:`pair_modify <pair_modify>` command sets options for mixing of
-type I-J interaction coefficients and adding energy offsets or tail
-corrections to Lennard-Jones potentials. Details on these options as
-they pertain to individual potentials are described on the doc page
-for the potential. Likewise, info on whether the potential
-information is stored in a :doc:`restart file <write_restart>` is listed
-on the potential doc page.
-
-In the formulas listed for each pair style, *E* is the energy of a
-pairwise interaction between two atoms separated by a distance *r*.
-The force between the atoms is the negative derivative of this
-expression.
-
-If the pair_style command has a cutoff argument, it sets global
-cutoffs for all pairs of atom types. The distance(s) can be smaller
-or larger than the dimensions of the simulation box.
-
-Typically, the global cutoff value can be overridden for a specific
-pair of atom types by the :doc:`pair_coeff <pair_coeff>` command. The
-pair style settings (including global cutoffs) can be changed by a
-subsequent pair_style command using the same style. This will reset
-the cutoffs for all atom type pairs, including those previously set
-explicitly by a :doc:`pair_coeff <pair_coeff>` command. The exceptions
-to this are that pair_style *table* and *hybrid* settings cannot be
-reset. A new pair_style command for these styles will wipe out all
-previously specified pair_coeff values.
-
-
-----------
-
-
-Here is an alphabetic list of pair styles defined in LAMMPS. They are
-also given in more compact form in the pair section of :ref:`this page <cmd_5>`.
-
-Click on the style to display the formula it computes, arguments
-specified in the pair_style command, and coefficients specified by the
-associated :doc:`pair_coeff <pair_coeff>` command.
-
-There are also additional pair styles (not listed here) submitted by
-users which are included in the LAMMPS distribution. The list of
-these with links to the individual styles are given in the pair
-section of :ref:`this page <cmd_5>`.
-
-There are also additional accelerated pair styles (not listed here)
-included in the LAMMPS distribution for faster performance on CPUs and
-GPUs. The list of these with links to the individual styles are given
-in the pair section of :ref:`this page <cmd_5>`.
-
-* :doc:`pair_style none <pair_none>` - turn off pairwise interactions
-* :doc:`pair_style hybrid <pair_hybrid>` - multiple styles of pairwise interactions
-* :doc:`pair_style hybrid/overlay <pair_hybrid>` - multiple styles of superposed pairwise interactions
-* :doc:`pair_style zero <pair_zero>` - neighbor list but no interactions
-
-* :doc:`pair_style adp <pair_adp>` - angular dependent potential (ADP) of Mishin
-* :doc:`pair_style airebo <pair_airebo>` - AIREBO potential of Stuart
-* :doc:`pair_style airebo/morse <pair_airebo>` - AIREBO with Morse instead of LJ
-* :doc:`pair_style beck <pair_beck>` - Beck potential
-* :doc:`pair_style body <pair_body>` - interactions between body particles
-* :doc:`pair_style bop <pair_bop>` - BOP potential of Pettifor
-* :doc:`pair_style born <pair_born>` - Born-Mayer-Huggins potential
-* :doc:`pair_style born/coul/long <pair_born>` - Born-Mayer-Huggins with long-range Coulombics
-* :doc:`pair_style born/coul/long/cs <pair_born>` - Born-Mayer-Huggins with long-range Coulombics and core/shell
-* :doc:`pair_style born/coul/msm <pair_born>` - Born-Mayer-Huggins with long-range MSM Coulombics
-* :doc:`pair_style born/coul/wolf <pair_born>` - Born-Mayer-Huggins with Coulombics via Wolf potential
-* :doc:`pair_style brownian <pair_brownian>` - Brownian potential for Fast Lubrication Dynamics
-* :doc:`pair_style brownian/poly <pair_brownian>` - Brownian potential for Fast Lubrication Dynamics with polydispersity
-* :doc:`pair_style buck <pair_buck>` - Buckingham potential
-* :doc:`pair_style buck/coul/cut <pair_buck>` - Buckingham with cutoff Coulomb
-* :doc:`pair_style buck/coul/long <pair_buck>` - Buckingham with long-range Coulombics
-* :doc:`pair_style buck/coul/long/cs <pair_buck>` - Buckingham with long-range Coulombics and core/shell
-* :doc:`pair_style buck/coul/msm <pair_buck>` - Buckingham long-range MSM Coulombics
-* :doc:`pair_style buck/long/coul/long <pair_buck_long>` - long-range Buckingham with long-range Coulombics
-* :doc:`pair_style colloid <pair_colloid>` - integrated colloidal potential
-* :doc:`pair_style comb <pair_comb>` - charge-optimized many-body (COMB) potential
-* :doc:`pair_style comb3 <pair_comb>` - charge-optimized many-body (COMB3) potential
-* :doc:`pair_style coul/cut <pair_coul>` - cutoff Coulombic potential
-* :doc:`pair_style coul/debye <pair_coul>` - cutoff Coulombic potential with Debye screening
-* :doc:`pair_style coul/dsf <pair_coul>` - Coulombics via damped shifted forces
-* :doc:`pair_style coul/long <pair_coul>` - long-range Coulombic potential
-* :doc:`pair_style coul/long/cs <pair_coul>` - long-range Coulombic potential and core/shell
-* :doc:`pair_style coul/msm <pair_coul>` - long-range MSM Coulombics
-* :doc:`pair_style coul/streitz <pair_coul>` - Coulombics via Streitz/Mintmire Slater orbitals
-* :doc:`pair_style coul/wolf <pair_coul>` - Coulombics via Wolf potential
-* :doc:`pair_style dpd <pair_dpd>` - dissipative particle dynamics (DPD)
-* :doc:`pair_style dpd/tstat <pair_dpd>` - DPD thermostatting
-* :doc:`pair_style dsmc <pair_dsmc>` - Direct Simulation Monte Carlo (DSMC)
-* :doc:`pair_style eam <pair_eam>` - embedded atom method (EAM)
-* :doc:`pair_style eam/alloy <pair_eam>` - alloy EAM
-* :doc:`pair_style eam/fs <pair_eam>` - Finnis-Sinclair EAM
-* :doc:`pair_style eim <pair_eim>` - embedded ion method (EIM)
-* :doc:`pair_style gauss <pair_gauss>` - Gaussian potential
-* :doc:`pair_style gayberne <pair_gayberne>` - Gay-Berne ellipsoidal potential
-* :doc:`pair_style gran/hertz/history <pair_gran>` - granular potential with Hertzian interactions
-* :doc:`pair_style gran/hooke <pair_gran>` - granular potential with history effects
-* :doc:`pair_style gran/hooke/history <pair_gran>` - granular potential without history effects
-* :doc:`pair_style hbond/dreiding/lj <pair_hbond_dreiding>` - DREIDING hydrogen bonding LJ potential
-* :doc:`pair_style hbond/dreiding/morse <pair_hbond_dreiding>` - DREIDING hydrogen bonding Morse potential
-* :doc:`pair_style kim <pair_kim>` - interface to potentials provided by KIM project
-* :doc:`pair_style lcbop <pair_lcbop>` - long-range bond-order potential (LCBOP)
-* :doc:`pair_style line/lj <pair_line_lj>` - LJ potential between line segments
-* :doc:`pair_style lj/charmm/coul/charmm <pair_charmm>` - CHARMM potential with cutoff Coulomb
-* :doc:`pair_style lj/charmm/coul/charmm/implicit <pair_charmm>` - CHARMM for implicit solvent
-* :doc:`pair_style lj/charmm/coul/long <pair_charmm>` - CHARMM with long-range Coulomb
-* :doc:`pair_style lj/charmm/coul/msm <pair_charmm>` - CHARMM with long-range MSM Coulombics
-* :doc:`pair_style lj/class2 <pair_class2>` - COMPASS (class 2) force field with no Coulomb
-* :doc:`pair_style lj/class2/coul/cut <pair_class2>` - COMPASS with cutoff Coulomb
-* :doc:`pair_style lj/class2/coul/long <pair_class2>` - COMPASS with long-range Coulomb
-* :doc:`pair_style lj/cubic <pair_lj_cubic>` - LJ with cubic after inflection point
-* :doc:`pair_style lj/cut <pair_lj>` - cutoff Lennard-Jones potential with no Coulomb
-* :doc:`pair_style lj/cut/coul/cut <pair_lj>` - LJ with cutoff Coulomb
-* :doc:`pair_style lj/cut/coul/debye <pair_lj>` - LJ with Debye screening added to Coulomb
-* :doc:`pair_style lj/cut/coul/dsf <pair_lj>` - LJ with Coulombics via damped shifted forces
-* :doc:`pair_style lj/cut/coul/long <pair_lj>` - LJ with long-range Coulombics
-* :doc:`pair_style lj/cut/coul/long/cs <pair_lj>` - LJ with long-range Coulombics and core/shell
-* :doc:`pair_style lj/cut/coul/msm <pair_lj>` - LJ with long-range MSM Coulombics
-* :doc:`pair_style lj/cut/dipole/cut <pair_dipole>` - point dipoles with cutoff
-* :doc:`pair_style lj/cut/dipole/long <pair_dipole>` - point dipoles with long-range Ewald
-* :doc:`pair_style lj/cut/tip4p/cut <pair_lj>` - LJ with cutoff Coulomb for TIP4P water
-* :doc:`pair_style lj/cut/tip4p/long <pair_lj>` - LJ with long-range Coulomb for TIP4P water
-* :doc:`pair_style lj/expand <pair_lj_expand>` - Lennard-Jones for variable size particles
-* :doc:`pair_style lj/gromacs <pair_gromacs>` - GROMACS-style Lennard-Jones potential
-* :doc:`pair_style lj/gromacs/coul/gromacs <pair_gromacs>` - GROMACS-style LJ and Coulombic potential
-* :doc:`pair_style lj/long/coul/long <pair_lj_long>` - long-range LJ and long-range Coulombics
-* :doc:`pair_style lj/long/dipole/long <pair_dipole>` - long-range LJ and long-range point dipoles
-* :doc:`pair_style lj/long/tip4p/long <pair_lj_long>` - long-range LJ and long-range Coulomb for TIP4P water
-* :doc:`pair_style lj/smooth <pair_lj_smooth>` - smoothed Lennard-Jones potential
-* :doc:`pair_style lj/smooth/linear <pair_lj_smooth_linear>` - linear smoothed Lennard-Jones potential
-* :doc:`pair_style lj96/cut <pair_lj96>` - Lennard-Jones 9/6 potential
-* :doc:`pair_style lubricate <pair_lubricate>` - hydrodynamic lubrication forces
-* :doc:`pair_style lubricate/poly <pair_lubricate>` - hydrodynamic lubrication forces with polydispersity
-* :doc:`pair_style lubricateU <pair_lubricateU>` - hydrodynamic lubrication forces for Fast Lubrication Dynamics
-* :doc:`pair_style lubricateU/poly <pair_lubricateU>` - hydrodynamic lubrication forces for Fast Lubrication with polydispersity
-* :doc:`pair_style meam <pair_meam>` - modified embedded atom method (MEAM)
-* :doc:`pair_style mie/cut <pair_mie>` - Mie potential
-* :doc:`pair_style morse <pair_morse>` - Morse potential
-* :doc:`pair_style nb3b/harmonic <pair_nb3b_harmonic>` - nonbonded 3-body harmonic potential
-* :doc:`pair_style nm/cut <pair_nm>` - N-M potential
-* :doc:`pair_style nm/cut/coul/cut <pair_nm>` - N-M potential with cutoff Coulomb
-* :doc:`pair_style nm/cut/coul/long <pair_nm>` - N-M potential with long-range Coulombics
-* :doc:`pair_style peri/eps <pair_peri>` - peridynamic EPS potential
-* :doc:`pair_style peri/lps <pair_peri>` - peridynamic LPS potential
-* :doc:`pair_style peri/pmb <pair_peri>` - peridynamic PMB potential
-* :doc:`pair_style peri/ves <pair_peri>` - peridynamic VES potential
-* :doc:`pair_style polymorphic <pair_polymorphic>` - polymorphic 3-body potential
-* :doc:`pair_style reax <pair_reax>` - ReaxFF potential
-* :doc:`pair_style rebo <pair_airebo>` - 2nd generation REBO potential of Brenner
-* :doc:`pair_style resquared <pair_resquared>` - Everaers RE-Squared ellipsoidal potential
-* :doc:`pair_style snap <pair_snap>` - SNAP quantum-accurate potential
-* :doc:`pair_style soft <pair_soft>` - Soft (cosine) potential
-* :doc:`pair_style sw <pair_sw>` - Stillinger-Weber 3-body potential
-* :doc:`pair_style table <pair_table>` - tabulated pair potential
-* :doc:`pair_style tersoff <pair_tersoff>` - Tersoff 3-body potential
-* :doc:`pair_style tersoff/mod <pair_tersoff_mod>` - modified Tersoff 3-body potential
-* :doc:`pair_style tersoff/zbl <pair_tersoff_zbl>` - Tersoff/ZBL 3-body potential
-* :doc:`pair_style tip4p/cut <pair_coul>` - Coulomb for TIP4P water w/out LJ
-* :doc:`pair_style tip4p/long <pair_coul>` - long-range Coulombics for TIP4P water w/out LJ
-* :doc:`pair_style tri/lj <pair_tri_lj>` - LJ potential between triangles
-* :doc:`pair_style vashishta <pair_vashishta>` - Vashishta 2-body and 3-body potential
-* :doc:`pair_style yukawa <pair_yukawa>` - Yukawa potential
-* :doc:`pair_style yukawa/colloid <pair_yukawa_colloid>` - screened Yukawa potential for finite-size particles
-* :doc:`pair_style zbl <pair_zbl>` - Ziegler-Biersack-Littmark potential
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command must be used before any coefficients are set by the
-:doc:`pair_coeff <pair_coeff>`, :doc:`read_data <read_data>`, or
-:doc:`read_restart <read_restart>` commands.
-
-Some pair styles are part of specific packages. They are only enabled
-if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info on packages.
-The doc pages for individual pair potentials tell if it is part of a
-package.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`read_data <read_data>`,
-:doc:`pair_modify <pair_modify>`, :doc:`kspace_style <kspace_style>`,
-:doc:`dielectric <dielectric>`, :doc:`pair_write <pair_write>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- pair_style none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_sw.txt b/doc/_sources/pair_sw.txt
deleted file mode 100644
index 97dbc27ac..000000000
--- a/doc/_sources/pair_sw.txt
+++ /dev/null
@@ -1,248 +0,0 @@
-.. index:: pair_style sw
-
-pair_style sw command
-=====================
-
-pair_style sw/cuda command
-==========================
-
-pair_style sw/gpu command
-=========================
-
-pair_style sw/intel command
-===========================
-
-pair_style sw/kk command
-========================
-
-pair_style sw/omp command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style sw
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style sw
- pair_coeff * * si.sw Si
- pair_coeff * * GaN.sw Ga N Ga
-
-Description
-"""""""""""
-
-The *sw* style computes a 3-body :ref:`Stillinger-Weber <Stillinger>`
-potential for the energy E of a system of atoms as
-
-.. image:: Eqs/pair_sw.jpg
- :align: center
-
-where phi2 is a two-body term and phi3 is a three-body term. The
-summations in the formula are over all neighbors J and K of atom I
-within a cutoff distance = a*sigma.
-
-Only a single pair_coeff command is used with the *sw* style which
-specifies a Stillinger-Weber potential file with parameters for all
-needed elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of SW elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine a file SiC.sw has Stillinger-Weber values for
-Si and C. If your LAMMPS simulation has 4 atoms types and you want
-the 1st 3 to be Si, and the 4th to be C, you would use the following
-pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * SiC.sw Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Si arguments map LAMMPS atom types 1,2,3 to the Si
-element in the SW file. The final C argument maps LAMMPS atom type 4
-to the C element in the SW file. If a mapping value is specified as
-NULL, the mapping is not performed. This can be used when a *sw*
-potential is used as part of the *hybrid* pair style. The NULL values
-are placeholders for atom types that will be used with other
-potentials.
-
-Stillinger-Weber files in the *potentials* directory of the LAMMPS
-distribution have a ".sw" suffix. Lines that are not blank or
-comments (starting with #) define parameters for a triplet of
-elements. The parameters in a single entry correspond to the two-body
-and three-body coefficients in the formula above:
-
-* element 1 (the center atom in a 3-body interaction)
-* element 2
-* element 3
-* epsilon (energy units)
-* sigma (distance units)
-* a
-* lambda
-* gamma
-* costheta0
-* A
-* B
-* p
-* q
-* tol
-
-The A, B, p, and q parameters are used only for two-body
-interactions. The lambda and costheta0 parameters are used only for
-three-body interactions. The epsilon, sigma and a parameters are used
-for both two-body and three-body interactions. gamma is used only in the
-three-body interactions, but is defined for pairs of atoms.
-The non-annotated parameters are unitless.
-
-LAMMPS introduces an additional performance-optimization parameter tol
-that is used for both two-body and three-body interactions. In the
-Stillinger-Weber potential, the interaction energies become negligibly
-small at atomic separations substantially less than the theoretical
-cutoff distances. LAMMPS therefore defines a virtual cutoff distance
-based on a user defined tolerance tol. The use of the virtual cutoff
-distance in constructing atom neighbor lists can significantly reduce
-the neighbor list sizes and therefore the computational cost. LAMMPS
-provides a *tol* value for each of the three-body entries so that they
-can be separately controlled. If tol = 0.0, then the standard
-Stillinger-Weber cutoff is used.
-
-The Stillinger-Weber potential file must contain entries for all the
-elements listed in the pair_coeff command. It can also contain
-entries for additional elements not being used in a particular
-simulation; LAMMPS ignores those entries.
-
-For a single-element simulation, only a single entry is required
-(e.g. SiSiSi). For a two-element simulation, the file must contain 8
-entries (for SiSiSi, SiSiC, SiCSi, SiCC, CSiSi, CSiC, CCSi, CCC), that
-specify SW parameters for all permutations of the two elements
-interacting in three-body configurations. Thus for 3 elements, 27
-entries would be required, etc.
-
-As annotated above, the first element in the entry is the center atom
-in a three-body interaction. Thus an entry for SiCC means a Si atom
-with 2 C atoms as neighbors. The parameter values used for the
-two-body interaction come from the entry where the 2nd and 3rd
-elements are the same. Thus the two-body parameters for Si
-interacting with C, comes from the SiCC entry. The three-body
-parameters can in principle be specific to the three elements of the
-configuration. In the literature, however, the three-body parameters
-are usually defined by simple formulas involving two sets of pair-wise
-parameters, corresponding to the ij and ik pairs, where i is the
-center atom. The user must ensure that the correct combining rule is
-used to calculate the values of the threebody parameters for
-alloys. Note also that the function phi3 contains two exponential
-screening factors with parameter values from the ij pair and ik
-pairs. So phi3 for a C atom bonded to a Si atom and a second C atom
-will depend on the three-body parameters for the CSiC entry, and also
-on the two-body parameters for the CCC and CSiSi entries. Since the
-order of the two neighbors is arbitrary, the threebody parameters for
-entries CSiC and CCSi should be the same. Similarly, the two-body
-parameters for entries SiCC and CSiSi should also be the same. The
-parameters used only for two-body interactions (A, B, p, and q) in
-entries whose 2nd and 3rd element are different (e.g. SiCSi) are not
-used for anything and can be set to 0.0 if desired.
-This is also true for the parameters in phi3 that are
-taken from the ij and ik pairs (sigma, a, gamma)
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-When using the USER-INTEL package with this style, there is an
-additional 5 to 10 percent performance improvement when the
-Stillinger-Weber parameters p and q are set to 4 and 0 respectively.
-These parameters are common for modeling silicon and water.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS as
-described above from values in the potential file.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default). See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The Stillinger-Weber potential files provided with LAMMPS (see the
-potentials directory) are parameterized for metal :doc:`units <units>`.
-You can use the SW potential with any LAMMPS units, but you would need
-to create your own SW potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Stillinger:
-
-
-
-**(Stillinger)** Stillinger and Weber, Phys Rev B, 31, 5262 (1985).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_table.txt b/doc/_sources/pair_table.txt
deleted file mode 100644
index 53fe626ae..000000000
--- a/doc/_sources/pair_table.txt
+++ /dev/null
@@ -1,299 +0,0 @@
-.. index:: pair_style table
-
-pair_style table command
-========================
-
-pair_style table/gpu command
-============================
-
-pair_style table/kk command
-===========================
-
-pair_style table/omp command
-============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style table style N keyword ...
-
-* style = *lookup* or *linear* or *spline* or *bitmap* = method of interpolation
-* N = use N values in *lookup*, *linear*, *spline* tables
-* N = use 2^N values in *bitmap* tables
-* zero or more keywords may be appended
-* keyword = *ewald* or *pppm* or *msm* or *dispersion* or *tip4p*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style table linear 1000
- pair_style table linear 1000 pppm
- pair_style table bitmap 12
- pair_coeff * 3 morse.table ENTRY1
- pair_coeff * 3 morse.table ENTRY1 7.0
-
-Description
-"""""""""""
-
-Style *table* creates interpolation tables from potential energy and
-force values listed in a file(s) as a function of distance. When
-performing dynamics or minimation, the interpolation tables are used
-to evaluate energy and forces for pairwise interactions between
-particles, similar to how analytic formulas are used for other pair
-styles.
-
-The interpolation tables are created as a pre-computation by fitting
-cubic splines to the file values and interpolating energy and force
-values at each of *N* distances. During a simulation, the tables are
-used to interpolate energy and force values as needed for each pair of
-particles separated by a distance *R*. The interpolation is done in
-one of 4 styles: *lookup*, *linear*, *spline*, or *bitmap*.
-
-For the *lookup* style, the distance *R* is used to find the nearest
-table entry, which is the energy or force.
-
-For the *linear* style, the distance *R* is used to find the 2
-surrounding table values from which an energy or force is computed by
-linear interpolation.
-
-For the *spline* style, a cubic spline coefficients are computed and
-stored for each of the *N* values in the table, one set of splines for
-energy, another for force. Note that these splines are different than
-the ones used to pre-compute the *N* values. Those splines were fit
-to the *Nfile* values in the tabulated file, where often *Nfile* <
-*N*. The distance *R* is used to find the appropriate set of spline
-coefficients which are used to evaluate a cubic polynomial which
-computes the energy or force.
-
-For the *bitmap* style, the specified *N* is used to create
-interpolation tables that are 2^N in length. The distance *R* is used
-to index into the table via a fast bit-mapping technique due to
-:ref:`(Wolff) <Wolff>`, and a linear interpolation is performed between
-adjacent table values.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above.
-
-* filename
-* keyword
-* cutoff (distance units)
-
-The filename specifies a file containing tabulated energy and force
-values. The keyword specifies a section of the file. The cutoff is
-an optional coefficient. If not specified, the outer cutoff in the
-table itself (see below) will be used to build an interpolation table
-that extend to the largest tabulated distance. If specified, only
-file values up to the cutoff are used to create the interpolation
-table. The format of this file is described below.
-
-If your tabulated potential(s) are designed to be used as the
-short-range part of one of the long-range solvers specified by the
-:doc:`kspace_style <kspace_style>` command, then you must use one or
-more of the optional keywords listed above for the pair_style command.
-These are *ewald* or *pppm* or *msm* or *dispersion* or *tip4p*. This
-is so LAMMPS can insure the short-range potential and long-range
-solver are compatible with each other, as it does for other
-short-range pair styles, such as :doc:`pair_style lj/cut/coul/long <pair_lj>`. Note that it is up to you to insure
-the tabulated values for each pair of atom types has the correct
-functional form to be compatible with the matching long-range solver.
-
-
-----------
-
-
-Here are some guidelines for using the pair_style table command to
-best effect:
-
-* Vary the number of table points; you may need to use more than you think
- to get good resolution.
-* Always use the :doc:`pair_write <pair_write>` command to produce a plot
- of what the final interpolated potential looks like. This can show up
- interpolation "features" you may not like.
-* Start with the linear style; it's the style least likely to have problems.
-* Use *N* in the pair_style command equal to the "N" in the tabulation
- file, and use the "RSQ" or "BITMAP" parameter, so additional interpolation
- is not needed. See discussion below.
-* Make sure that your tabulated forces and tabulated energies are
- consistent (dE/dr = -F) over the entire range of r values. LAMMPS
- will warn if this is not the case.
-* Use as large an inner cutoff as possible. This avoids fitting splines
- to very steep parts of the potential.
-
-----------
-
-
-The format of a tabulated file is a series of one or more sections,
-defined as follows (without the parenthesized comments):
-
-.. parsed-literal::
-
- # Morse potential for Fe (one or more comment or blank lines)
-
-.. parsed-literal::
-
- MORSE_FE (keyword is first text on line)
- N 500 R 1.0 10.0 (N, R, RSQ, BITMAP, FPRIME parameters)
- (blank)
- 1 1.0 25.5 102.34 (index, r, energy, force)
- 2 1.02 23.4 98.5
- ...
- 500 10.0 0.001 0.003
-
-A section begins with a non-blank line whose 1st character is not a
-"#"; blank lines or lines starting with "#" can be used as comments
-between sections. The first line begins with a keyword which
-identifies the section. The line can contain additional text, but the
-initial text must match the argument specified in the pair_coeff
-command. The next line lists (in any order) one or more parameters
-for the table. Each parameter is a keyword followed by one or more
-numeric values.
-
-The parameter "N" is required and its value is the number of table
-entries that follow. Note that this may be different than the *N*
-specified in the :doc:`pair_style table <pair_style>` command. Let
-Ntable = *N* in the pair_style command, and Nfile = "N" in the
-tabulated file. What LAMMPS does is a preliminary interpolation by
-creating splines using the Nfile tabulated values as nodal points. It
-uses these to interpolate energy and force values at Ntable different
-points. The resulting tables of length Ntable are then used as
-described above, when computing energy and force for individual pair
-distances. This means that if you want the interpolation tables of
-length Ntable to match exactly what is in the tabulated file (with
-effectively no preliminary interpolation), you should set Ntable =
-Nfile, and use the "RSQ" or "BITMAP" parameter. This is because the
-internal table abscissa is always RSQ (separation distance squared),
-for efficient lookup.
-
-All other parameters are optional. If "R" or "RSQ" or "BITMAP" does
-not appear, then the distances in each line of the table are used
-as-is to perform spline interpolation. In this case, the table values
-can be spaced in *r* uniformly or however you wish to position table
-values in regions of large gradients.
-
-If used, the parameters "R" or "RSQ" are followed by 2 values *rlo*
-and *rhi*. If specified, the distance associated with each energy and
-force value is computed from these 2 values (at high accuracy), rather
-than using the (low-accuracy) value listed in each line of the table.
-The distance values in the table file are ignored in this case.
-For "R", distances uniformly spaced between *rlo* and *rhi* are
-computed; for "RSQ", squared distances uniformly spaced between
-*rlo*rlo* and *rhi*rhi* are computed.
-
-.. note::
-
- If you use "R" or "RSQ", the tabulated distance values in the
- file are effectively ignored, and replaced by new values as described
- in the previous paragraph. If the distance value in the table is not
- very close to the new value (i.e. round-off difference), then you will
- be assingning energy/force values to a different distance, which is
- probably not what you want. LAMMPS will warn if this is occurring.
-
-If used, the parameter "BITMAP" is also followed by 2 values *rlo* and
-*rhi*. These values, along with the "N" value determine the ordering
-of the N lines that follow and what distance is associated with each.
-This ordering is complex, so it is not documented here, since this
-file is typically produced by the :doc:`pair_write <pair_write>` command
-with its *bitmap* option. When the table is in BITMAP format, the "N"
-parameter in the file must be equal to 2^M where M is the value
-specified in the pair_style command. Also, a cutoff parameter cannot
-be used as an optional 3rd argument in the pair_coeff command; the
-entire table extent as specified in the file must be used.
-
-If used, the parameter "FPRIME" is followed by 2 values *fplo* and
-*fphi* which are the derivative of the force at the innermost and
-outermost distances listed in the table. These values are needed by
-the spline construction routines. If not specified by the "FPRIME"
-parameter, they are estimated (less accurately) by the first 2 and
-last 2 force values in the table. This parameter is not used by
-BITMAP tables.
-
-Following a blank line, the next N lines list the tabulated values.
-On each line, the 1st value is the index from 1 to N, the 2nd value is
-r (in distance units), the 3rd value is the energy (in energy units),
-and the 4th is the force (in force units). The r values must increase
-from one line to the next (unless the BITMAP parameter is specified).
-
-Note that one file can contain many sections, each with a tabulated
-potential. LAMMPS reads the file section by section until it finds
-one that matches the specified keyword.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support mixing. Thus, coefficients for all
-I,J pairs must be specified explicitly.
-
-The :doc:`pair_modify <pair_modify>` shift, table, and tail options are
-not relevant for this pair style.
-
-This pair style writes the settings for the "pair_style table" command
-to :doc:`binary restart files <restart>`, so a pair_style command does
-not need to specified in an input script that reads a restart file.
-However, the coefficient information is not stored in the restart
-file, since it is tabulated in the potential files. Thus, pair_coeff
-commands do need to be specified in the restart input script.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_write <pair_write>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Wolff:
-
-
-
-**(Wolff)** Wolff and Rudd, Comp Phys Comm, 120, 200-32 (1999).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_tersoff.txt b/doc/_sources/pair_tersoff.txt
deleted file mode 100644
index 503bc8529..000000000
--- a/doc/_sources/pair_tersoff.txt
+++ /dev/null
@@ -1,298 +0,0 @@
-.. index:: pair_style tersoff
-
-pair_style tersoff command
-==========================
-
-pair_style tersoff/table command
-================================
-
-pair_style tersoff/cuda
-=======================
-
-pair_style tersoff/gpu
-======================
-
-pair_style tersoff/intel
-========================
-
-pair_style tersoff/kk
-=====================
-
-pair_style tersoff/omp
-======================
-
-pair_style tersoff/table/omp command
-====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style
-
-style = *tersoff* or *tersoff/table* or *tersoff/cuda* or *tersoff/gpu* or *tersoff/omp* or *tersoff/table/omp*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style tersoff
- pair_coeff * * Si.tersoff Si
- pair_coeff * * SiC.tersoff Si C Si
-
-.. parsed-literal::
-
- pair_style tersoff/table
- pair_coeff * * SiCGe.tersoff Si(D)
-
-Description
-"""""""""""
-
-The *tersoff* style computes a 3-body Tersoff potential
-:ref:`(Tersoff_1) <Tersoff_1>` for the energy E of a system of atoms as
-
-.. image:: Eqs/pair_tersoff_1.jpg
- :align: center
-
-where f_R is a two-body term and f_A includes three-body interactions.
-The summations in the formula are over all neighbors J and K of atom I
-within a cutoff distance = R + D.
-
-The *tersoff/table* style uses tabulated forms for the two-body,
-environment and angular functions. Linear interpolation is performed
-between adjacent table entries. The table length is chosen to be
-accurate within 10^-6 with respect to the *tersoff* style energy.
-The *tersoff/table* should give better performance in terms of speed.
-
-Only a single pair_coeff command is used with the *tersoff* style
-which specifies a Tersoff potential file with parameters for all
-needed elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of Tersoff elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine the SiC.tersoff file has Tersoff values for Si
-and C. If your LAMMPS simulation has 4 atoms types and you want the
-1st 3 to be Si, and the 4th to be C, you would use the following
-pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * SiC.tersoff Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Si arguments map LAMMPS atom types 1,2,3 to the Si
-element in the Tersoff file. The final C argument maps LAMMPS atom
-type 4 to the C element in the Tersoff file. If a mapping value is
-specified as NULL, the mapping is not performed. This can be used
-when a *tersoff* potential is used as part of the *hybrid* pair style.
-The NULL values are placeholders for atom types that will be used with
-other potentials.
-
-Tersoff files in the *potentials* directory of the LAMMPS distribution
-have a ".tersoff" suffix. Lines that are not blank or comments
-(starting with #) define parameters for a triplet of elements. The
-parameters in a single entry correspond to coefficients in the formula
-above:
-
-* element 1 (the center atom in a 3-body interaction)
-* element 2 (the atom bonded to the center atom)
-* element 3 (the atom influencing the 1-2 bond in a bond-order sense)
-* m
-* gamma
-* lambda3 (1/distance units)
-* c
-* d
-* costheta0 (can be a value < -1 or > 1)
-* n
-* beta
-* lambda2 (1/distance units)
-* B (energy units)
-* R (distance units)
-* D (distance units)
-* lambda1 (1/distance units)
-* A (energy units)
-
-The n, beta, lambda2, B, lambda1, and A parameters are only used for
-two-body interactions. The m, gamma, lambda3, c, d, and costheta0
-parameters are only used for three-body interactions. The R and D
-parameters are used for both two-body and three-body interactions. The
-non-annotated parameters are unitless. The value of m must be 3 or 1.
-
-The Tersoff potential file must contain entries for all the elements
-listed in the pair_coeff command. It can also contain entries for
-additional elements not being used in a particular simulation; LAMMPS
-ignores those entries.
-
-For a single-element simulation, only a single entry is required
-(e.g. SiSiSi). For a two-element simulation, the file must contain 8
-entries (for SiSiSi, SiSiC, SiCSi, SiCC, CSiSi, CSiC, CCSi, CCC), that
-specify Tersoff parameters for all permutations of the two elements
-interacting in three-body configurations. Thus for 3 elements, 27
-entries would be required, etc.
-
-As annotated above, the first element in the entry is the center atom
-in a three-body interaction and it is bonded to the 2nd atom and the
-bond is influenced by the 3rd atom. Thus an entry for SiCC means Si
-bonded to a C with another C atom influencing the bond. Thus
-three-body parameters for SiCSi and SiSiC entries will not, in
-general, be the same. The parameters used for the two-body
-interaction come from the entry where the 2nd element is repeated.
-Thus the two-body parameters for Si interacting with C, comes from the
-SiCC entry.
-
-The parameters used for a particular
-three-body interaction come from the entry with the corresponding
-three elements. The parameters used only for two-body interactions
-(n, beta, lambda2, B, lambda1, and A) in entries whose 2nd and 3rd
-element are different (e.g. SiCSi) are not used for anything and can
-be set to 0.0 if desired.
-
-Note that the twobody parameters in entries such as SiCC and CSiSi
-are often the same, due to the common use of symmetric mixing rules,
-but this is not always the case. For example, the beta and n parameters in
-Tersoff_2 :ref:`(Tersoff_2) <Tersoff_2>` are not symmetric.
-
-We chose the above form so as to enable users to define all commonly
-used variants of the Tersoff potential. In particular, our form
-reduces to the original Tersoff form when m = 3 and gamma = 1, while
-it reduces to the form of :ref:`Albe et al. <Albe>` when beta = 1 and m = 1.
-Note that in the current Tersoff implementation in LAMMPS, m must be
-specified as either 3 or 1. Tersoff used a slightly different but
-equivalent form for alloys, which we will refer to as Tersoff_2
-potential :ref:`(Tersoff_2) <Tersoff_2>`. The *tersoff/table* style implements
-Tersoff_2 parameterization only.
-
-LAMMPS parameter values for Tersoff_2 can be obtained as follows:
-gamma_ijk = omega_ik, lambda3 = 0 and the value of
-m has no effect. The parameters for species i and j can be calculated
-using the Tersoff_2 mixing rules:
-
-.. image:: Eqs/pair_tersoff_2.jpg
- :align: center
-
-Tersoff_2 parameters R and S must be converted to the LAMMPS
-parameters R and D (R is different in both forms), using the following
-relations: R=(R'+S')/2 and D=(S'-R')/2, where the primes indicate the
-Tersoff_2 parameters.
-
-In the potentials directory, the file SiCGe.tersoff provides the
-LAMMPS parameters for Tersoff's various versions of Si, as well as his
-alloy parameters for Si, C, and Ge. This file can be used for pure Si,
-(three different versions), pure C, pure Ge, binary SiC, and binary
-SiGe. LAMMPS will generate an error if this file is used with any
-combination involving C and Ge, since there are no entries for the GeC
-interactions (Tersoff did not publish parameters for this
-cross-interaction.) Tersoff files are also provided for the SiC alloy
-(SiC.tersoff) and the GaN (GaN.tersoff) alloys.
-
-Many thanks to Rutuparna Narulkar, David Farrell, and Xiaowang Zhou
-for helping clarify how Tersoff parameters for alloys have been
-defined in various papers.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS as
-described above from values in the potential file.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default). See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The Tersoff potential files provided with LAMMPS (see the potentials
-directory) are parameterized for metal :doc:`units <units>`. You can
-use the Tersoff potential with any LAMMPS units, but you would need to
-create your own Tersoff potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Tersoff_1:
-
-
-
-**(Tersoff_1)** J. Tersoff, Phys Rev B, 37, 6991 (1988).
-
-.. _Albe:
-
-
-
-**(Albe)** J. Nord, K. Albe, P. Erhart, and K. Nordlund, J. Phys.:
-Condens. Matter, 15, 5649(2003).
-
-.. _Tersoff_2:
-
-
-
-**(Tersoff_2)** J. Tersoff, Phys Rev B, 39, 5566 (1989); errata (PRB 41, 3248)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_tersoff_mod.txt b/doc/_sources/pair_tersoff_mod.txt
deleted file mode 100644
index 8f38096fa..000000000
--- a/doc/_sources/pair_tersoff_mod.txt
+++ /dev/null
@@ -1,232 +0,0 @@
-.. index:: pair_style tersoff/mod
-
-pair_style tersoff/mod command
-==============================
-
-pair_style tersoff/mod/gpu command
-==================================
-
-pair_style tersoff/mod/kk command
-=================================
-
-pair_style tersoff/mod/omp command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style tersoff/mod
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style tersoff/mod
- pair_coeff * * Si.tersoff.mod Si Si
-
-Description
-"""""""""""
-
-The *tersoff/mod* style computes a bond-order type interatomic
-potential :ref:`(Kumagai) <Kumagai>` based on a 3-body Tersoff potential
-:ref:`(Tersoff_1) <Tersoff_1>`, :ref:`(Tersoff_2) <Tersoff_2>` with modified
-cutoff function and angular-dependent term, giving the energy E of a
-system of atoms as
-
-.. image:: Eqs/pair_tersoff_mod.jpg
- :align: center
-
-where f_R is a two-body term and f_A includes three-body interactions.
-The summations in the formula are over all neighbors J and K of atom I
-within a cutoff distance = R + D.
-
-The modified cutoff function f_C proposed by :ref:`(Murty) <Murty>` and
-having a continuous second-order differential is employed. The
-angular-dependent term g(theta) was modified to increase the
-flexibility of the potential.
-
-The *tersoff/mod* potential is fitted to both the elastic constants
-and melting point by employing the modified Tersoff potential function
-form in which the angular-dependent term is improved. The model
-performs extremely well in describing the crystalline, liquid, and
-amorphous phases :ref:`(Schelling) <Schelling>`.
-
-Only a single pair_coeff command is used with the *tersoff/mod* style
-which specifies a Tersoff/MOD potential file with parameters for all
-needed elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of Tersoff/MOD elements to atom types
-
-As an example, imagine the Si.tersoff_mod file has Tersoff values for Si.
-If your LAMMPS simulation has 3 Si atoms types, you would use the following
-pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * Si.tersoff_mod Si Si Si
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The three Si arguments map LAMMPS atom types 1,2,3 to the Si element
-in the Tersoff/MOD file. If a mapping value is specified as NULL, the
-mapping is not performed. This can be used when a *tersoff/mod*
-potential is used as part of the *hybrid* pair style. The NULL values
-are placeholders for atom types that will be used with other
-potentials.
-
-Tersoff/MOD file in the *potentials* directory of the LAMMPS
-distribution have a ".tersoff.mod" suffix. Lines that are not blank
-or comments (starting with #) define parameters for a triplet of
-elements. The parameters in a single entry correspond to coefficients
-in the formula above:
-
-* element 1 (the center atom in a 3-body interaction)
-* element 2 (the atom bonded to the center atom)
-* element 3 (the atom influencing the 1-2 bond in a bond-order sense)
-* beta
-* alpha
-* h
-* eta
-* beta_ters = 1 (dummy parameter)
-* lambda2 (1/distance units)
-* B (energy units)
-* R (distance units)
-* D (distance units)
-* lambda1 (1/distance units)
-* A (energy units)
-* n
-* c1
-* c2
-* c3
-* c4
-* c5
-
-The n, eta, lambda2, B, lambda1, and A parameters are only used for
-two-body interactions. The beta, alpha, c1, c2, c3, c4, c5, h
-parameters are only used for three-body interactions. The R and D
-parameters are used for both two-body and three-body interactions. The
-non-annotated parameters are unitless.
-
-The Tersoff/MOD potential file must contain entries for all the elements
-listed in the pair_coeff command. It can also contain entries for
-additional elements not being used in a particular simulation; LAMMPS
-ignores those entries.
-
-For a single-element simulation, only a single entry is required
-(e.g. SiSiSi). As annotated above, the first element in the entry is
-the center atom in a three-body interaction and it is bonded to the
-2nd atom and the bond is influenced by the 3rd atom. Thus an entry
-for SiSiSi means Si bonded to a Si with another Si atom influencing the bond.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default). See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The Tersoff/MOD potential files provided with LAMMPS (see the potentials
-directory) are parameterized for metal :doc:`units <units>`. You can
-use the Tersoff/MOD potential with any LAMMPS units, but you would need to
-create your own Tersoff/MOD potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Kumagai:
-
-
-
-**(Kumagai)** T. Kumagai, S. Izumi, S. Hara, S. Sakai,
-Comp. Mat. Science, 39, 457 (2007).
-
-.. _Tersoff_1:
-
-
-
-**(Tersoff_1)** J. Tersoff, Phys Rev B, 37, 6991 (1988).
-
-.. _Tersoff_2:
-
-
-
-**(Tersoff_2)** J. Tersoff, Phys Rev B, 38, 9902 (1988).
-
-.. _Murty:
-
-
-
-**(Murty)** M.V.R. Murty, H.A. Atwater, Phys Rev B, 51, 4889 (1995).
-
-.. _Schelling:
-
-
-
-**(Schelling)** Patrick K. Schelling, Comp. Mat. Science, 44, 274 (2008).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_tersoff_zbl.txt b/doc/_sources/pair_tersoff_zbl.txt
deleted file mode 100644
index f1f5c3c5a..000000000
--- a/doc/_sources/pair_tersoff_zbl.txt
+++ /dev/null
@@ -1,305 +0,0 @@
-.. index:: pair_style tersoff/zbl
-
-pair_style tersoff/zbl command
-==============================
-
-pair_style tersoff/zbl/gpu command
-==================================
-
-pair_style tersoff/zbl/kk command
-=================================
-
-pair_style tersoff/zbl/omp command
-==================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style tersoff/zbl
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style tersoff/zbl
- pair_coeff * * SiC.tersoff.zbl Si C Si
-
-Description
-"""""""""""
-
-The *tersoff/zbl* style computes a 3-body Tersoff potential
-:ref:`(Tersoff_1) <Tersoff_1>` with a close-separation pairwise modification
-based on a Coulomb potential and the Ziegler-Biersack-Littmark
-universal screening function :ref:`(ZBL) <ZBL>`, giving the energy E of a
-system of atoms as
-
-.. image:: Eqs/pair_tersoff_zbl.jpg
- :align: center
-
-The f_F term is a fermi-like function used to smoothly connect the ZBL
-repulsive potential with the Tersoff potential. There are 2
-parameters used to adjust it: A_F and r_C. A_F controls how "sharp"
-the transition is between the two, and r_C is essentially the cutoff
-for the ZBL potential.
-
-For the ZBL portion, there are two terms. The first is the Coulomb
-repulsive term, with Z1, Z2 as the number of protons in each nucleus,
-e as the electron charge (1 for metal and real units) and epsilon0 as
-the permittivity of vacuum. The second part is the ZBL universal
-screening function, with a0 being the Bohr radius (typically 0.529
-Angstroms), and the remainder of the coefficients provided by the
-original paper. This screening function should be applicable to most
-systems. However, it is only accurate for small separations
-(i.e. less than 1 Angstrom).
-
-For the Tersoff portion, f_R is a two-body term and f_A includes
-three-body interactions. The summations in the formula are over all
-neighbors J and K of atom I within a cutoff distance = R + D.
-
-Only a single pair_coeff command is used with the *tersoff/zbl* style
-which specifies a Tersoff/ZBL potential file with parameters for all
-needed elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of Tersoff/ZBL elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine the SiC.tersoff.zbl file has Tersoff/ZBL values
-for Si and C. If your LAMMPS simulation has 4 atoms types and you
-want the 1st 3 to be Si, and the 4th to be C, you would use the
-following pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * SiC.tersoff Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Si arguments map LAMMPS atom types 1,2,3 to the Si
-element in the Tersoff/ZBL file. The final C argument maps LAMMPS
-atom type 4 to the C element in the Tersoff/ZBL file. If a mapping
-value is specified as NULL, the mapping is not performed. This can be
-used when a *tersoff/zbl* potential is used as part of the *hybrid*
-pair style. The NULL values are placeholders for atom types that will
-be used with other potentials.
-
-Tersoff/ZBL files in the *potentials* directory of the LAMMPS
-distribution have a ".tersoff.zbl" suffix. Lines that are not blank
-or comments (starting with #) define parameters for a triplet of
-elements. The parameters in a single entry correspond to coefficients
-in the formula above:
-
-* element 1 (the center atom in a 3-body interaction)
-* element 2 (the atom bonded to the center atom)
-* element 3 (the atom influencing the 1-2 bond in a bond-order sense)
-* m
-* gamma
-* lambda3 (1/distance units)
-* c
-* d
-* costheta0 (can be a value < -1 or > 1)
-* n
-* beta
-* lambda2 (1/distance units)
-* B (energy units)
-* R (distance units)
-* D (distance units)
-* lambda1 (1/distance units)
-* A (energy units)
-* Z_i
-* Z_j
-* ZBLcut (distance units)
-* ZBLexpscale (1/distance units)
-
-The n, beta, lambda2, B, lambda1, and A parameters are only used for
-two-body interactions. The m, gamma, lambda3, c, d, and costheta0
-parameters are only used for three-body interactions. The R and D
-parameters are used for both two-body and three-body interactions. The
-Z_i,Z_j, ZBLcut, ZBLexpscale parameters are used in the ZBL repulsive
-portion of the potential and in the Fermi-like function. The
-non-annotated parameters are unitless. The value of m must be 3 or 1.
-
-The Tersoff/ZBL potential file must contain entries for all the
-elements listed in the pair_coeff command. It can also contain
-entries for additional elements not being used in a particular
-simulation; LAMMPS ignores those entries.
-
-For a single-element simulation, only a single entry is required
-(e.g. SiSiSi). For a two-element simulation, the file must contain 8
-entries (for SiSiSi, SiSiC, SiCSi, SiCC, CSiSi, CSiC, CCSi, CCC), that
-specify Tersoff parameters for all permutations of the two elements
-interacting in three-body configurations. Thus for 3 elements, 27
-entries would be required, etc.
-
-As annotated above, the first element in the entry is the center atom
-in a three-body interaction and it is bonded to the 2nd atom and the
-bond is influenced by the 3rd atom. Thus an entry for SiCC means Si
-bonded to a C with another C atom influencing the bond. Thus
-three-body parameters for SiCSi and SiSiC entries will not, in
-general, be the same. The parameters used for the two-body
-interaction come from the entry where the 2nd element is repeated.
-Thus the two-body parameters for Si interacting with C, comes from the
-SiCC entry.
-
-The parameters used for a particular
-three-body interaction come from the entry with the corresponding
-three elements. The parameters used only for two-body interactions
-(n, beta, lambda2, B, lambda1, and A) in entries whose 2nd and 3rd
-element are different (e.g. SiCSi) are not used for anything and can
-be set to 0.0 if desired.
-
-Note that the twobody parameters in entries such as SiCC and CSiSi
-are often the same, due to the common use of symmetric mixing rules,
-but this is not always the case. For example, the beta and n parameters in
-Tersoff_2 :ref:`(Tersoff_2) <Tersoff_2>` are not symmetric.
-
-We chose the above form so as to enable users to define all commonly
-used variants of the Tersoff portion of the potential. In particular,
-our form reduces to the original Tersoff form when m = 3 and gamma =
-1, while it reduces to the form of :ref:`Albe et al. <Albe>` when beta = 1
-and m = 1. Note that in the current Tersoff implementation in LAMMPS,
-m must be specified as either 3 or 1. Tersoff used a slightly
-different but equivalent form for alloys, which we will refer to as
-Tersoff_2 potential :ref:`(Tersoff_2) <Tersoff_2>`.
-
-LAMMPS parameter values for Tersoff_2 can be obtained as follows:
-gamma = omega_ijk, lambda3 = 0 and the value of
-m has no effect. The parameters for species i and j can be calculated
-using the Tersoff_2 mixing rules:
-
-.. image:: Eqs/pair_tersoff_2.jpg
- :align: center
-
-Tersoff_2 parameters R and S must be converted to the LAMMPS
-parameters R and D (R is different in both forms), using the following
-relations: R=(R'+S')/2 and D=(S'-R')/2, where the primes indicate the
-Tersoff_2 parameters.
-
-In the potentials directory, the file SiCGe.tersoff provides the
-LAMMPS parameters for Tersoff's various versions of Si, as well as his
-alloy parameters for Si, C, and Ge. This file can be used for pure Si,
-(three different versions), pure C, pure Ge, binary SiC, and binary
-SiGe. LAMMPS will generate an error if this file is used with any
-combination involving C and Ge, since there are no entries for the GeC
-interactions (Tersoff did not publish parameters for this
-cross-interaction.) Tersoff files are also provided for the SiC alloy
-(SiC.tersoff) and the GaN (GaN.tersoff) alloys.
-
-Many thanks to Rutuparna Narulkar, David Farrell, and Xiaowang Zhou
-for helping clarify how Tersoff parameters for alloys have been
-defined in various papers. Also thanks to Ram Devanathan for
-providing the base ZBL implementation.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS as
-described above from values in the potential file.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default). See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The Tersoff/ZBL potential files provided with LAMMPS (see the
-potentials directory) are parameterized for metal :doc:`units <units>`.
-You can use the Tersoff potential with any LAMMPS units, but you would
-need to create your own Tersoff potential file with coefficients
-listed in the appropriate units if your simulation doesn't use "metal"
-units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Tersoff_1:
-
-
-
-**(Tersoff_1)** J. Tersoff, Phys Rev B, 37, 6991 (1988).
-
-.. _ZBL:
-
-
-
-**(ZBL)** J.F. Ziegler, J.P. Biersack, U. Littmark, 'Stopping and Ranges
-of Ions in Matter' Vol 1, 1985, Pergamon Press.
-
-.. _Albe:
-
-
-
-**(Albe)** J. Nord, K. Albe, P. Erhart and K. Nordlund, J. Phys.:
-Condens. Matter, 15, 5649(2003).
-
-.. _Tersoff_2:
-
-
-
-**(Tersoff_2)** J. Tersoff, Phys Rev B, 39, 5566 (1989); errata (PRB 41, 3248)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_thole.txt b/doc/_sources/pair_thole.txt
deleted file mode 100644
index 6cf4f1bb5..000000000
--- a/doc/_sources/pair_thole.txt
+++ /dev/null
@@ -1,220 +0,0 @@
-.. index:: pair_style thole
-
-pair_style thole command
-========================
-
-pair_style lj/cut/thole/long command
-====================================
-
-pair_style lj/cut/thole/long/omp command
-========================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style style args
-
-* style = *thole* or *lj/cut/thole/long* or *lj/cut/thole/long/omp*
-* args = list of arguments for a particular style
-
-.. parsed-literal::
-
- *thole* args = damp cutoff
- damp = global damping parameter
- cutoff = global cutoff (distance units)
- *lj/cut/thole/long* or *lj/cut/thole/long/omp* args = damp cutoff (cutoff2)
- damp = global damping parameter
- cutoff = global cutoff for LJ (and Thole if only 1 arg) (distance units)
- cutoff2 = global cutoff for Thole (optional) (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style hybrid/overlay ... thole 2.6 12.0
- pair_coeff 1 1 thole 1.0
- pair_coeff 1 2 thole 1.0 2.6 10.0
- pair_coeff * 2 thole 1.0 2.6
-
-.. parsed-literal::
-
- pair_style lj/cut/thole/long 2.6 12.0
-
-Description
-"""""""""""
-
-The *thole* pair styles are meant to be used with force fields that
-include explicit polarization through Drude dipoles. This link
-describes how to use the :doc:`thermalized Drude oscillator model <tutorial_drude>` in LAMMPS and polarizable models in LAMMPS
-are discussed in :ref:`this Section <howto_25>`.
-
-The *thole* pair style should be used as a sub-style within in the
-:doc:`pair_hybrid/overlay <pair_hybrid>` command, in conjunction with a
-main pair style including Coulomb interactions, i.e. any pair style
-containing *coul/cut* or *coul/long* in its style name.
-
-The *lj/cut/thole/long* pair style is equivalent to, but more convenient that
-the frequent combination *hybrid/overlay lj/cut/coul/long cutoff thole damp
-cutoff2*. It is not only a shorthand for this pair_style combination, but
-it also allows for mixing pair coefficients instead of listing them all.
-The *lj/cut/thole/long* pair style is also a bit faster because it avoids an
-overlay and can benefit from OMP acceleration. Moreover, it uses a more
-precise approximation of the direct Coulomb interaction at short range similar
-to :doc:`coul/long/cs <pair_coul_long_cs>`, which stabilizes the temperature of
-Drude particles.
-
-The *thole* pair styles compute the Coulomb interaction damped at
-short distances by a function
-
-
-.. math::
-
- \begin{equation} T_{ij}(r_{ij}) = 1 - \left( 1 +
- \frac{s_{ij} r_{ij} }{2} \right)
- \exp \left( - s_{ij} r_{ij} \right) \end{equation}
-
-This function results from an adaptation to point charges
-:ref:`(Noskov) <Noskov>` of the dipole screening scheme originally proposed
-by :ref:`Thole <Thole>`. The scaling coefficient :math:`s_{ij}` is determined
-by the polarizability of the atoms, :math:`\alpha_i`, and by a Thole
-damping parameter :math:`a`. This Thole damping parameter usually takes
-a value of 2.6, but in certain force fields the value can depend upon
-the atom types. The mixing rule for Thole damping parameters is the
-arithmetic average, and for polarizabilities the geometric average
-between the atom-specific values.
-
-
-.. math::
-
- \begin{equation} s_{ij} = \frac{ a_{ij} }{
- (\alpha_{ij})^{1/3} } = \frac{ (a_i + a_j)/2 }{
- [(\alpha_i\alpha_j)^{1/2}]^{1/3} } \end{equation}
-
-The damping function is only applied to the interactions between the
-point charges representing the induced dipoles on polarizable sites,
-that is, charges on Drude particles, :math:`q_{D,i}`, and opposite
-charges, :math:`-q_{D,i}`, located on the respective core particles
-(to which each Drude particle is bonded). Therefore, Thole screening
-is not applied to the full charge of the core particle :math:`q_i`, but
-only to the :math:`-q_{D,i}` part of it.
-
-The interactions between core charges are subject to the weighting
-factors set by the :doc:`special_bonds <special_bonds>` command. The
-interactions between Drude particles and core charges or
-non-polarizable atoms are also subject to these weighting factors. The
-Drude particles inherit the 1-2, 1-3 and 1-4 neighbor relations from
-their respective cores.
-
-For pair_style *thole*, the following coefficients must be defined for
-each pair of atoms types via the :doc:`pair_coeff <pair_coeff>` command
-as in the example above.
-
-* alpha (distance units^3)
-* damp
-* cutoff (distance units)
-
-The last two coefficients are optional. If not specified the global
-Thole damping parameter or global cutoff specified in the pair_style
-command are used. In order to specify a cutoff (third argument) a damp
-parameter (second argument) must also be specified.
-
-For pair style *lj/cut/thole/long*, the following coefficients must be
-defined for each pair of atoms types via the :doc:`pair_coeff <pair_coeff>`
-command.
-
-* epsilon (energy units)
-* sigma (length units)
-* alpha (distance units^3)
-* damps
-* LJ cutoff (distance units)
-
-The last two coefficients are optional and default to the global values from
-the *pair_style* command line.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-**Mixing**:
-
-The *thole* pair style does not support mixing. Thus, coefficients
-for all I,J pairs must be specified explicitly.
-
-The *lj/cut/thole/long* pair style does support mixing. Mixed coefficients
-are defined using
-
-
-.. math::
-
- \begin{equation} \alpha_{ij} = \sqrt{\alpha_i\alpha_j}\end{equation}
-
-
-.. math::
-
- \begin{equation} a_{ij} = \frac 1 2 (a_i + a_j)\end{equation}
-
-Restrictions
-""""""""""""
-
-
-These pair styles are part of the USER-DRUDE package. They are only
-enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair_style should currently not be used with the :doc:`charmm dihedral style <dihedral_charmm>` if the latter has non-zero 1-4 weighting
-factors. This is because the *thole* pair style does not know which
-pairs are 1-4 partners of which dihedrals.
-
-The *lj/cut/thole/long* pair style should be used with a :doc:`Kspace solver <kspace_style>`
-like PPPM or Ewald, which is only enabled if LAMMPS was built with the kspace
-package.
-
-Related commands
-""""""""""""""""
-
-:doc:`fix drude <fix_drude>`, :doc:`fix langevin/drude <fix_langevin_drude>`, :doc:`fix drude/transform <fix_drude_transform>`, :doc:`compute temp/drude <compute_temp_drude>`
-`pair_style lj/cut/coul/long <pair_lj_cut_coul_long>`_
-
-**Default:** none
-
-
-----------
-
-
-.. _Noskov:
-
-
-
-**(Noskov)** Noskov, Lamoureux and Roux, J Phys Chem B, 109, 6705 (2005).
-
-.. _Thole:
-
-
-
-**(Thole)** Chem Phys, 59, 341 (1981).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_tri_lj.txt b/doc/_sources/pair_tri_lj.txt
deleted file mode 100644
index 3c4e5c117..000000000
--- a/doc/_sources/pair_tri_lj.txt
+++ /dev/null
@@ -1,126 +0,0 @@
-.. index:: pair_style tri/lj
-
-pair_style tri/lj command
-=========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style tri/lj cutoff
-
-cutoff = global cutoff for interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style tri/lj 3.0
- pair_coeff * * 1.0 1.0
- pair_coeff 1 1 1.0 1.5 2.5
-
-Description
-"""""""""""
-
-Style *tri/lj* treats particles which are triangles as a set of small
-spherical particles that tile the triangle surface as explained below.
-Interactions between two triangles, each with N1 and N2 spherical
-particles, are calculated as the pairwise sum of N1*N2 Lennard-Jones
-interactions. Interactions between a triangle with N spherical
-particles and a point particle are treated as the pairwise sum of N
-Lennard-Jones interactions. See the :doc:`pair_style lj/cut <pair_lj>`
-doc page for the definition of Lennard-Jones interactions.
-
-The cutoff distance for an interaction between 2 triangles, or between
-a triangle and a point particle, is calculated from the position of
-the triangle (its centroid), not between pairs of individual spheres
-comprising the triangle. Thus an interaction is either calculated in
-its entirety or not at all.
-
-The set of non-overlapping spherical particles that represent a
-triangle, for purposes of this pair style, are generated in the
-following manner. Assume the triangle is of type I, and sigma_II has
-been specified. We want a set of spheres with centers in the plane of
-the triangle, none of them larger in diameter than sigma_II, which
-completely cover the triangle's area, but with minimial overlap and a
-minimal total number of spheres. This is done in a recursive manner.
-Place a sphere at the centroid of the original triangle. Calculate
-what diameter it must have to just cover all 3 corner points of the
-triangle. If that diameter is equal to or smaller than sigma_II, then
-include a sphere of the calculated diameter in the set of covering
-spheres. It the diameter is larger than sigma_II, then split the
-triangle into 2 triangles by bisecting its longest side. Repeat the
-process on each sub-triangle, recursing as far as needed to generate a
-set of covering spheres. When finished, the original criteria are
-met, and the set of covering spheres shoule be near minimal in number
-and overlap, at least for input triangles with a reasonable
-aspect-ratio.
-
-The LJ interaction between 2 spheres on different triangles of types
-I,J is computed with an arithmetic mixing of the sigma values of the 2
-spheres and using the specified epsilon value for I,J atom types.
-Note that because the sigma values for triangles spheres is computed
-using only sigma_II values, specific to the triangles's type, this
-means that any specified sigma_IJ values (for I != J) are effectively
-ignored.
-
-For style *tri/lj*, the following coefficients must be defined for
-each pair of atoms types via the :doc:`pair_coeff <pair_coeff>` command
-as in the examples above, or in the data file or restart files read by
-the :doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands:
-
-* epsilon (energy units)
-* sigma (distance units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global cutoff
-is used.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the epsilon and sigma coefficients
-and cutoff distance for all of this pair style can be mixed. The
-default mix value is *geometric*. See the "pair_modify" command for
-details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the ASPHERE package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <2_3>` section for more info.
-
-Defining particles to be triangles so they participate in tri/tri or
-tri/particle interactions requires the use the :doc:`atom_style tri <atom_style>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`, :doc:`pair_style line/lj <pair_line_lj>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_vashishta.txt b/doc/_sources/pair_vashishta.txt
deleted file mode 100644
index 0b8d2bc05..000000000
--- a/doc/_sources/pair_vashishta.txt
+++ /dev/null
@@ -1,256 +0,0 @@
-.. index:: pair_style vashishta
-
-pair_style vashishta command
-============================
-
-pair_style vashishta/omp command
-================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style vashishta
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style vashishta
- pair_coeff * * SiC.vashishta Si C
-
-Description
-"""""""""""
-
-The *vashishta* style computes the combined 2-body and 3-body
-family of potentials developed in the group of Vashishta and
-co-workers. By combining repulsive, screened Coulombic,
-screened charge-dipole, and dispersion interactions with a
-bond-angle energy based on the Stillinger-Weber potential,
-this potential has been used to describe a variety of inorganic
-compounds, including SiO2 :ref:`Vashishta1990 <Vashishta1990>`,
-SiC :ref:`Vashishta2007 <Vashishta2007>`,
-and InP :ref:`Branicio2009 <Branicio2009>`.
-
-The potential for the energy U of a system of atoms is
-
-.. image:: Eqs/pair_vashishta.jpg
- :align: center
-
-where we follow the notation used in :ref:`Branicio2009 <Branicio2009>`.
-U2 is a two-body term and U3 is a three-body term. The
-summation over two-body terms is over all neighbors J within
-a cutoff distance = *rc*. The twobody terms are shifted and
-tilted by a linear function so that the energy and force are
-both zero at *rc*. The summation over three-body terms
-is over all neighbors J and K within a cut-off distance = *r0*,
-where the exponential screening function becomes zero.
-
-Only a single pair_coeff command is used with the *vashishta* style which
-specifies a Vashishta potential file with parameters for all
-needed elements. These are mapped to LAMMPS atom types by specifying
-N additional arguments after the filename in the pair_coeff command,
-where N is the number of LAMMPS atom types:
-
-* filename
-* N element names = mapping of Vashishta elements to atom types
-
-See the :doc:`pair_coeff <pair_coeff>` doc page for alternate ways
-to specify the path for the potential file.
-
-As an example, imagine a file SiC.vashishta has parameters for
-Si and C. If your LAMMPS simulation has 4 atoms types and you want
-the 1st 3 to be Si, and the 4th to be C, you would use the following
-pair_coeff command:
-
-.. parsed-literal::
-
- pair_coeff * * SiC.vashishta Si Si Si C
-
-The 1st 2 arguments must be * * so as to span all LAMMPS atom types.
-The first three Si arguments map LAMMPS atom types 1,2,3 to the Si
-element in the file. The final C argument maps LAMMPS atom type 4
-to the C element in the file. If a mapping value is specified as
-NULL, the mapping is not performed. This can be used when a *vashishta*
-potential is used as part of the *hybrid* pair style. The NULL values
-are placeholders for atom types that will be used with other
-potentials.
-
-Vashishta files in the *potentials* directory of the LAMMPS
-distribution have a ".vashishta" suffix. Lines that are not blank or
-comments (starting with #) define parameters for a triplet of
-elements. The parameters in a single entry correspond to the two-body
-and three-body coefficients in the formulae above:
-
-* element 1 (the center atom in a 3-body interaction)
-* element 2
-* element 3
-* H (energy units)
-* eta
-* Zi (electron charge units)
-* Zj (electron charge units)
-* lambda1 (distance units)
-* D (energy units)
-* lambda4 (distance units)
-* W (energy units)
-* rc (distance units)
-* B (energy units)
-* gamma
-* r0 (distance units)
-* C
-* costheta0
-
-The non-annotated parameters are unitless.
-The Vashishta potential file must contain entries for all the
-elements listed in the pair_coeff command. It can also contain
-entries for additional elements not being used in a particular
-simulation; LAMMPS ignores those entries.
-For a single-element simulation, only a single entry is required
-(e.g. SiSiSi). For a two-element simulation, the file must contain 8
-entries (for SiSiSi, SiSiC, SiCSi, SiCC, CSiSi, CSiC, CCSi, CCC), that
-specify parameters for all permutations of the two elements
-interacting in three-body configurations. Thus for 3 elements, 27
-entries would be required, etc.
-
-Depending on the particular version of the Vashishta potential,
-the values of these parameters may be keyed to the identities of
-zero, one, two, or three elements.
-In order to make the input file format unambiguous, general,
-and simple to code,
-LAMMPS uses a slightly confusing method for specifying parameters.
-All parameters are divided into two classes: two-body and three-body.
-Two-body and three-body parameters are handled differently,
-as described below.
-The two-body parameters are H, eta, lambda1, D, lambda4, W, rc, gamma, and r0.
-They appear in the above formulae with two subscripts.
-The parameters Zi and Zj are also classified as two-body parameters,
-even though they only have 1 subscript.
-The three-body parameters are B, C, costheta0.
-They appear in the above formulae with three subscripts.
-Two-body and three-body parameters are handled differently,
-as described below.
-
-The first element in each entry is the center atom
-in a three-body interaction, while the second and third elements
-are two neighbor atoms. Three-body parameters for a central atom I
-and two neighbors J and K are taken from the IJK entry.
-Note that even though three-body parameters do not depend on the order of
-J and K, LAMMPS stores three-body parameters for both IJK and IKJ.
-The user must ensure that these values are equal.
-Two-body parameters for an atom I interacting with atom J are taken from
-the IJJ entry, where the 2nd and 3rd
-elements are the same. Thus the two-body parameters
-for Si interacting with C come from the SiCC entry. Note that even
-though two-body parameters (except possibly gamma and r0 in U3)
-do not depend on the order of the two elements,
-LAMMPS will get the Si-C value from the SiCC entry
-and the C-Si value from the CSiSi entry. The user must ensure
-that these values are equal. Two-body parameters appearing
-in entries where the 2nd and 3rd elements are different are
-stored but never used. It is good practice to enter zero for
-these values. Note that the three-body function U3 above
-contains the two-body parameters gamma and r0. So U3 for a
-central C atom bonded to an Si atom and a second C atom
-will take three-body parameters from the CSiC entry, but
-two-body parameters from the CCC and CSiSi entries.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, where types I and J correspond to
-two different element types, mixing is performed by LAMMPS as
-described above from values in the potential file.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style does not write its information to :doc:`binary restart files <restart>`, since it is stored in potential files. Thus, you
-need to re-specify the pair_style and pair_coeff commands in an input
-script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This pair style is part of the MANYBODY package. It is only enabled
-if LAMMPS was built with that package (which it is by default). See
-the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair style requires the :doc:`newton <newton>` setting to be "on"
-for pair interactions.
-
-The Vashishta potential files provided with LAMMPS (see the
-potentials directory) are parameterized for metal :doc:`units <units>`.
-You can use the Vashishta potential with any LAMMPS units, but you would need
-to create your own Vashishta potential file with coefficients listed in the
-appropriate units if your simulation doesn't use "metal" units.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Vashishta1990:
-
-
-
-**(Vashishta1990)** P. Vashishta, R. K. Kalia, J. P. Rino, Phys. Rev. B 41, 12197 (1990).
-
-.. _Vashishta2007:
-
-
-
-**(Vashishta2007)** P. Vashishta, R. K. Kalia, A. Nakano, J. P. Rino. J. Appl. Phys. 101, 103515 (2007).
-
-.. _Branicio2009:
-
-
-
-**(Branicio2009)** Branicio, Rino, Gan and Tsuzuki, J. Phys Condensed Matter 21 (2009) 095002
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_write.txt b/doc/_sources/pair_write.txt
deleted file mode 100644
index 94bf06230..000000000
--- a/doc/_sources/pair_write.txt
+++ /dev/null
@@ -1,89 +0,0 @@
-.. index:: pair_write
-
-pair_write command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_write itype jtype N style inner outer file keyword Qi Qj
-
-* itype,jtype = 2 atom types
-* N = # of values
-* style = *r* or *rsq* or *bitmap*
-* inner,outer = inner and outer cutoff (distance units)
-* file = name of file to write values to
-* keyword = section name in file for this set of tabulated values
-* Qi,Qj = 2 atom charges (charge units) (optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_write 1 3 500 r 1.0 10.0 table.txt LJ
- pair_write 1 1 1000 rsq 2.0 8.0 table.txt Yukawa_1_1 -0.5 0.5
-
-Description
-"""""""""""
-
-Write energy and force values to a file as a function of distance for
-the currently defined pair potential. This is useful for plotting the
-potential function or otherwise debugging its values. If the file
-already exists, the table of values is appended to the end of the file
-to allow multiple tables of energy and force to be included in one
-file.
-
-The energy and force values are computed at distances from inner to
-outer for 2 interacting atoms of type itype and jtype, using the
-appropriate :doc:`pair_coeff <pair_coeff>` coefficients. If the style
-is *r*, then N distances are used, evenly spaced in r; if the style is
-*rsq*, N distances are used, evenly spaced in r^2.
-
-For example, for N = 7, style = *r*, inner = 1.0, and outer = 4.0,
-values are computed at r = 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0.
-
-If the style is *bitmap*, then 2^N values are written to the file in a
-format and order consistent with how they are read in by the
-:doc:`pair_coeff <pair_coeff>` command for pair style *table*. For
-reasonable accuracy in a bitmapped table, choose N >= 12, an *inner*
-value that is smaller than the distance of closest approach of 2
-atoms, and an *outer* value <= cutoff of the potential.
-
-If the pair potential is computed between charged atoms, the charges
-of the pair of interacting atoms can optionally be specified. If not
-specified, values of Qi = Qj = 1.0 are used.
-
-The file is written in the format used as input for the
-:doc:`pair_style <pair_style>` *table* option with *keyword* as the
-section name. Each line written to the file lists an index number
-(1-N), a distance (in distance units), an energy (in energy units),
-and a force (in force units).
-
-Restrictions
-""""""""""""
-
-
-All force field coefficients for pair and other kinds of interactions
-must be set before this command can be invoked.
-
-Due to how the pairwise force is computed, an inner value > 0.0 must
-be specified even if the potential has a finite value at r = 0.0.
-
-For EAM potentials, the pair_write command only tabulates the
-pairwise portion of the potential, not the embedding portion.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style table <pair_table>`,
-:doc:`pair_style <pair_style>`, :doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_yukawa.txt b/doc/_sources/pair_yukawa.txt
deleted file mode 100644
index ff63010b8..000000000
--- a/doc/_sources/pair_yukawa.txt
+++ /dev/null
@@ -1,122 +0,0 @@
-.. index:: pair_style yukawa
-
-pair_style yukawa command
-=========================
-
-pair_style yukawa/gpu command
-=============================
-
-pair_style yukawa/omp command
-=============================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style yukawa kappa cutoff
-
-* kappa = screening length (inverse distance units)
-* cutoff = global cutoff for Yukawa interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style yukawa 2.0 2.5
- pair_coeff 1 1 100.0 2.3
- pair_coeff * * 100.0
-
-Description
-"""""""""""
-
-Style *yukawa* computes pairwise interactions with the formula
-
-.. image:: Eqs/pair_yukawa.jpg
- :align: center
-
-Rc is the cutoff.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* A (energy*distance units)
-* cutoff (distance units)
-
-The last coefficient is optional. If not specified, the global yukawa
-cutoff is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the A coefficient and cutoff
-distance for this pair style can be mixed. A is an energy value mixed
-like a LJ epsilon. The default mix value is *geometric*. See the
-"pair_modify" command for details.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_yukawa_colloid.txt b/doc/_sources/pair_yukawa_colloid.txt
deleted file mode 100644
index db1fd6d7e..000000000
--- a/doc/_sources/pair_yukawa_colloid.txt
+++ /dev/null
@@ -1,179 +0,0 @@
-.. index:: pair_style yukawa/colloid
-
-pair_style yukawa/colloid command
-=================================
-
-pair_style yukawa/colloid/gpu command
-=====================================
-
-pair_style yukawa/colloid/omp command
-=====================================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style yukawa/colloid kappa cutoff
-
-* kappa = screening length (inverse distance units)
-* cutoff = global cutoff for colloidal Yukawa interactions (distance units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style yukawa/colloid 2.0 2.5
- pair_coeff 1 1 100.0 2.3
- pair_coeff * * 100.0
-
-Description
-"""""""""""
-
-Style *yukawa/colloid* computes pairwise interactions with the formula
-
-.. image:: Eqs/pair_yukawa_colloid.jpg
- :align: center
-
-where Ri and Rj are the radii of the two particles and Rc is the
-cutoff.
-
-In contrast to :doc:`pair_style yukawa <pair_yukawa>`, this functional
-form arises from the Coulombic interaction between two colloid
-particles, screened due to the presence of an electrolyte, see the
-book by :ref:`Safran <Safran>` for a derivation in the context of DVLO
-theory. :doc:`Pair_style yukawa <pair_yukawa>` is a screened Coulombic
-potential between two point-charges and uses no such approximation.
-
-This potential applies to nearby particle pairs for which the Derjagin
-approximation holds, meaning h << Ri + Rj, where h is the
-surface-to-surface separation of the two particles.
-
-When used in combination with :doc:`pair_style colloid <pair_colloid>`,
-the two terms become the so-called DLVO potential, which combines
-electrostatic repulsion and van der Waals attraction.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* A (energy/distance units)
-* cutoff (distance units)
-
-The prefactor A is determined from the relationship between surface
-charge and surface potential due to the presence of electrolyte. Note
-that the A for this potential style has different units than the A
-used in :doc:`pair_style yukawa <pair_yukawa>`. For low surface
-potentials, i.e. less than about 25 mV, A can be written as:
-
-.. parsed-literal::
-
- A = 2 * PI * R*eps*eps0 * kappa * psi^2
-
-where
-
-* R = colloid radius (distance units)
-* eps0 = permittivity of free space (charge^2/energy/distance units)
-* eps = relative permittivity of fluid medium (dimensionless)
-* kappa = inverse screening length (1/distance units)
-* psi = surface potential (energy/charge units)
-
-The last coefficient is optional. If not specified, the global
-yukawa/colloid cutoff is used.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the A coefficient and cutoff
-distance for this pair style can be mixed. A is an energy value mixed
-like a LJ epsilon. The default mix value is *geometric*. See the
-"pair_modify" command for details.
-
-This pair style supports the :doc:`pair_modify <pair_modify>` shift
-option for the energy of the pair interaction.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant
-for this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This style is part of the COLLOID package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-This pair style requires that atoms be finite-size spheres with a
-diameter, as defined by the :doc:`atom_style sphere <atom_style>`
-command.
-
-Per-particle polydispersity is not yet supported by this pair style;
-per-type polydispersity is allowed. This means all particles of the
-same type must have the same diameter. Each type can have a different
-diameter.
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Safran:
-
-
-
-**(Safran)** Safran, Statistical Thermodynamics of Surfaces, Interfaces,
-And Membranes, Westview Press, ISBN: 978-0813340791 (2003).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_zbl.txt b/doc/_sources/pair_zbl.txt
deleted file mode 100644
index af6235fa9..000000000
--- a/doc/_sources/pair_zbl.txt
+++ /dev/null
@@ -1,165 +0,0 @@
-.. index:: pair_style zbl
-
-pair_style zbl command
-======================
-
-pair_style zbl/gpu command
-==========================
-
-pair_style zbl/omp command
-==========================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style zbl inner outer
-
-* inner = distance where switching function begins
-* outer = global cutoff for ZBL interaction
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style zbl 3.0 4.0
- pair_coeff * * 73.0 73.0
- pair_coeff 1 1 14.0 14.0
-
-Description
-"""""""""""
-
-Style *zbl* computes the Ziegler-Biersack-Littmark (ZBL) screened nuclear
-repulsion for describing high-energy collisions between atoms.
-:ref:`(Ziegler) <Ziegler>`. It includes an additional switching function
-that ramps the energy, force, and curvature smoothly to zero
-between an inner and outer cutoff. The potential
-energy due to a pair of atoms at a distance r_ij is given by:
-
-.. image:: Eqs/pair_zbl.jpg
- :align: center
-
-where e is the electron charge, epsilon_0 is the electrical
-permittivity of vacuum, and Z_i and Z_j are the nuclear charges of the
-two atoms. The switching function S(r) is identical to that used by
-:doc:`pair_style lj/gromacs <pair_gromacs>`. Here, the inner and outer
-cutoff are the same for all pairs of atom types.
-
-The following coefficients must be defined for each pair of atom types
-via the :doc:`pair_coeff <pair_coeff>` command as in the examples above,
-or in the LAMMPS data file.
-
-* Z_i (atomic number for first atom type, e.g. 13.0 for aluminum)
-
-* Z_j (ditto for second atom type)
-
-The values of Z_i and Z_j are normally equal to the atomic
-numbers of the two atom types. Thus, the user may optionally
-specify only the coefficients for each I==I pair, and rely
-on the obvious mixing rule for cross interactions (see below).
-Note that when I==I it is required that Z_i == Z_j. When used
-with :doc:`hybrid/overlay <pair_hybrid>` and pairs are assigned
-to more than one sub-style, the mixing rule is not used and
-each pair of types interacting with the ZBL sub-style must
-be included in a pair_coeff command.
-
-.. note::
-
- The numerical values of the exponential decay constants in the
- screening function depend on the unit of distance. In the above
- equation they are given for units of angstroms. LAMMPS will
- automatically convert these values to the distance unit of the
- specified LAMMPS :doc:`units <units>` setting. The values of Z should
- always be given as multiples of a proton's charge, e.g. 29.0 for
- copper.
-
-
-----------
-
-
-Styles with a *cuda*, *gpu*, *intel*, *kk*, *omp*, or *opt* suffix are
-functionally the same as the corresponding style without the suffix.
-They have been optimized to run faster, depending on your available
-hardware, as discussed in :doc:`Section_accelerate <Section_accelerate>`
-of the manual. The accelerated styles take the same arguments and
-should produce the same results, except for round-off and precision
-issues.
-
-These accelerated styles are part of the USER-CUDA, GPU, USER-INTEL,
-KOKKOS, USER-OMP and OPT packages, respectively. They are only
-enabled if LAMMPS was built with those packages. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-For atom type pairs I,J and I != J, the Z_i and Z_j coefficients
-can be mixed by taking Z_i and Z_j from the values specified for
-I == I and J == J cases. When used
-with :doc:`hybrid/overlay <pair_hybrid>` and pairs are assigned
-to more than one sub-style, the mixing rule is not used and
-each pair of types interacting with the ZBL sub-style
-must be included in a pair_coeff command.
-The :doc:`pair_modify <pair_modify>` mix option has no effect on
-the mixing behavior
-
-The ZBL pair style does not support the :doc:`pair_modify <pair_modify>`
-shift option, since the ZBL interaction is already smoothed to 0.0 at
-the cutoff.
-
-The :doc:`pair_modify <pair_modify>` table option is not relevant for
-this pair style.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-tail option for adding long-range tail corrections to energy and
-pressure, since there are no corrections for a potential that goes to
-0.0 at the cutoff.
-
-This pair style does not write information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands must be
-specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_coeff <pair_coeff>`
-
-**Default:** none
-
-
-----------
-
-
-.. _Ziegler:
-
-
-
-**(Ziegler)** J.F. Ziegler, J. P. Biersack and U. Littmark, "The
-Stopping and Range of Ions in Matter," Volume 1, Pergamon, 1985.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/pair_zero.txt b/doc/_sources/pair_zero.txt
deleted file mode 100644
index c29d9a0d3..000000000
--- a/doc/_sources/pair_zero.txt
+++ /dev/null
@@ -1,97 +0,0 @@
-.. index:: pair_style zero
-
-pair_style zero command
-=======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- pair_style zero cutoff *nocoeff*
-
-* zero = style name of this pair style
- cutoff = global cutoff (distance units)
- nocoeff = ignore all pair_coeff parameters (optional)
-Examples
-""""""""
-
-.. parsed-literal::
-
- pair_style zero 10.0
- pair_style zero 5.0 nocoeff
- pair_coeff * *
- pair_coeff 1 2*4 3.0
-
-Description
-"""""""""""
-
-Define a global or per-type cutoff length for the purpose of
-building a neighbor list and acquiring ghost atoms, but do
-not compute any pairwise forces or energies.
-
-This can be useful for fixes or computes which require a neighbor list
-to enumerate pairs of atoms within some cutoff distance, but when
-pairwise forces are not otherwise needed. Examples are the :doc:`fix bond/create <fix_bond_create>`, :doc:`compute rdf <compute_rdf>`,
-:doc:`compute voronoi/atom <compute_voronoi_atom>` commands.
-
-Note that the :doc:`comm_modify cutoff <comm_modify>` command can be
-used to insure communication of ghost atoms even when a pair style is
-not defined, but it will not trigger neighbor list generation.
-
-The optional *nocoeff* flag allows to read data files with a PairCoeff
-section for any pair style. Similarly, any pair_coeff commands
-will only be checked for the atom type numbers and the rest ignored.
-In this case, only the global cutoff will be used.
-
-The following coefficients must be defined for each pair of atoms
-types via the :doc:`pair_coeff <pair_coeff>` command as in the examples
-above, or in the data file or restart files read by the
-:doc:`read_data <read_data>` or :doc:`read_restart <read_restart>`
-commands, or by mixing as described below:
-
-* cutoff (distance units)
-
-This coefficient is optional. If not specified, the global cutoff
-specified in the pair_style command is used. If the pair_style has
-been specified with the optional *nocoeff* flag, then a cutoff
-pair coefficient is ignored.
-
-
-----------
-
-
-**Mixing, shift, table, tail correction, restart, rRESPA info**:
-
-The cutoff distance for this pair style can be mixed. The default mix
-value is *geometric*. See the "pair_modify" command for details.
-
-This pair style does not support the :doc:`pair_modify <pair_modify>`
-shift, table, and tail options.
-
-This pair style writes its information to :doc:`binary restart files <restart>`, so pair_style and pair_coeff commands do not need
-to be specified in an input script that reads a restart file.
-
-This pair style can only be used via the *pair* keyword of the
-:doc:`run_style respa <run_style>` command. It does not support the
-*inner*, *middle*, *outer* keywords.
-
-
-----------
-
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`pair_style none <pair_none>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/partition.txt b/doc/_sources/partition.txt
deleted file mode 100644
index a4ab17e9a..000000000
--- a/doc/_sources/partition.txt
+++ /dev/null
@@ -1,82 +0,0 @@
-.. index:: partition
-
-partition command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- partition style N command ...
-
-* style = *yes* or *no*
-* N = partition number (see asterisk form below)
-* command = any LAMMPS command
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- partition yes 1 processors 4 10 6
- partition no 5 print "Active partition"
- partition yes *5 fix all nve
- partition yes 6* fix all nvt temp 1.0 1.0 0.1
-
-Description
-"""""""""""
-
-This command invokes the specified command on a subset of the
-partitions of processors you have defined via the -partition
-command-line switch. See :ref:`Section_start 6 <start_7>`
-for an explanation of the switch.
-
-Normally, every input script command in your script is invoked by
-every partition. This behavior can be modified by defining world- or
-universe-style :doc:`variables <variable>` that have different values
-for each partition. This mechanism can be used to cause your script
-to jump to different input script files on different partitions, if
-such a variable is used in a :doc:`jump <jump>` command.
-
-The "partition" command is another mechanism for having as input
-script operate differently on different partitions. It is basically a
-prefix on any LAMMPS command. The commmand will only be invoked on
-the partition(s) specified by the *style* and *N* arguments.
-
-If the *style* is *yes*, the command will be invoked on any partition
-which matches the *N* argument. If the *style* is *no* the command
-will be invoked on all the partitions which do not match the Np
-argument.
-
-Partitions are numbered from 1 to Np, where Np is the number of
-partitions specified by the :ref:`-partition command-line switch <start_7>`.
-
-*N* can be specified in one of two ways. An explicit numeric value
-can be used, as in the 1st example above. Or a wild-card asterisk can
-be used to span a range of partition numbers. This takes the form "*"
-or "*n" or "n*" or "m*n". An asterisk with no numeric values means
-all partitions from 1 to Np. A leading asterisk means all partitions
-from 1 to n (inclusive). A trailing asterisk means all partitions
-from n to Np (inclusive). A middle asterisk means all partitions from
-m to n (inclusive).
-
-This command can be useful for the "run_style verlet/split" command
-which imposed requirements on how the :doc:`processors <processors>`
-command lays out a 3d grid of processors in each of 2 partitions.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`run_style verlet/split <run_style>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/prd.txt b/doc/_sources/prd.txt
deleted file mode 100644
index 204bd0cf2..000000000
--- a/doc/_sources/prd.txt
+++ /dev/null
@@ -1,352 +0,0 @@
-.. index:: prd
-
-prd command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- prd N t_event n_dephase t_dephase t_correlate compute-ID seed keyword value ...
-
-* N = # of timesteps to run (not including dephasing/quenching)
-* t_event = timestep interval between event checks
-* n_dephase = number of velocity randomizations to perform in each dephase run
-* t_dephase = number of timesteps to run dynamics after each velocity randomization during dephase
-* t_correlate = number of timesteps within which 2 consecutive events are considered to be correlated
-* compute-ID = ID of the compute used for event detection
-* random_seed = random # seed (positive integer)
-* zero or more keyword/value pairs may be appended
-* keyword = *min* or *temp* or *vel*
-.. parsed-literal::
-
- *min* values = etol ftol maxiter maxeval
- etol = stopping tolerance for energy, used in quenching
- ftol = stopping tolerance for force, used in quenching
- maxiter = max iterations of minimize, used in quenching
- maxeval = max number of force/energy evaluations, used in quenching
- *temp* value = Tdephase
- Tdephase = target temperature for velocity randomization, used in dephasing
- *vel* values = loop dist
- loop = *all* or *local* or *geom*, used in dephasing
- dist = *uniform* or *gaussian*, used in dephasing
- *time* value = *steps* or *clock*
- *steps* = simulation runs for N timesteps on each replica (default)
- *clock* = simulation runs for N timesteps across all replicas
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- prd 5000 100 10 10 100 1 54982
- prd 5000 100 10 10 100 1 54982 min 0.1 0.1 100 200
-
-Description
-"""""""""""
-
-Run a parallel replica dynamics (PRD) simulation using multiple
-replicas of a system. One or more replicas can be used. The total
-number of steps *N* to run can be interpreted in one of two ways; see
-discussion of the *time* keyword below.
-
-PRD is described in :ref:`this paper <Voter>` by Art Voter. It is a method
-for performing accelerated dynamics that is suitable for
-infrequent-event systems that obey first-order kinetics. A good
-overview of accelerated dynamics methods for such systems in given in
-:ref:`this review paper <Voter2>` from the same group. To quote from the
-paper: "The dynamical evolution is characterized by vibrational
-excursions within a potential basin, punctuated by occasional
-transitions between basins." The transition probability is
-characterized by p(t) = k*exp(-kt) where k is the rate constant.
-Running multiple replicas gives an effective enhancement in the
-timescale spanned by the multiple simulations, while waiting for an
-event to occur.
-
-Each replica runs on a partition of one or more processors. Processor
-partitions are defined at run-time using the -partition command-line
-switch; see :ref:`Section_start 6 <start_7>` of the
-manual. Note that if you have MPI installed, you can run a
-multi-replica simulation with more replicas (partitions) than you have
-physical processors, e.g you can run a 10-replica simulation on one or
-two processors. For PRD, this makes little sense, since this offers
-no effective parallel speed-up in searching for infrequent events. See
-:ref:`Section_howto 5 <howto_5>` of the manual for further
-discussion.
-
-When a PRD simulation is performed, it is assumed that each replica is
-running the same model, though LAMMPS does not check for this.
-I.e. the simulation domain, the number of atoms, the interaction
-potentials, etc should be the same for every replica.
-
-A PRD run has several stages, which are repeated each time an "event"
-occurs in one of the replicas, as defined below. The logic for a PRD
-run is as follows:
-
-.. parsed-literal::
-
- while (time remains):
- dephase for n_dephase*t_dephase steps
- until (event occurs on some replica):
- run dynamics for t_event steps
- quench
- check for uncorrelated event on any replica
- until (no correlated event occurs):
- run dynamics for t_correlate steps
- quench
- check for correlated event on this replica
- event replica shares state with all replicas
-
-Before this loop begins, the state of the system on replica 0 is
-shared with all replicas, so that all replicas begin from the same
-initial state. The first potential energy basin is identified by
-quenching (an energy minimization, see below) the initial state and
-storing the resulting coordinates for reference.
-
-In the first stage, dephasing is performed by each replica
-independently to eliminate correlations between replicas. This is
-done by choosing a random set of velocities, based on the
-*random_seed* that is specified, and running *t_dephase* timesteps of
-dynamics. This is repeated *n_dephase* times. At each of the
-*n_dephase* stages, if an event occurs during the *t_dephase* steps of
-dynamics for a particular replica, the replica repeats the stage until
-no event occurs.
-
-If the *temp* keyword is not specified, the target temperature for
-velocity randomization for each replica is the current temperature of
-that replica. Otherwise, it is the specified *Tdephase* temperature.
-The style of velocity randomization is controlled using the keyword
-*vel* with arguments that have the same meaning as their counterparts
-in the :doc:`velocity <velocity>` command.
-
-In the second stage, each replica runs dynamics continuously, stopping
-every *t_event* steps to check if a transition event has occurred.
-This check is performed by quenching the system and comparing the
-resulting atom coordinates to the coordinates from the previous basin.
-The first time through the PRD loop, the "previous basin" is the set
-of quenched coordinates from the initial state of the system.
-
-A quench is an energy minimization and is performed by whichever
-algorithm has been defined by the :doc:`min_style <min_style>` command.
-Minimization parameters may be set via the
-:doc:`min_modify <min_modify>` command and by the *min* keyword of the
-PRD command. The latter are the settings that would be used with the
-:doc:`minimize <minimize>` command. Note that typically, you do not
-need to perform a highly-converged minimization to detect a transition
-event.
-
-The event check is performed by a compute with the specified
-*compute-ID*. Currently there is only one compute that works with the
-PRD commmand, which is the :doc:`compute event/displace <compute_event_displace>` command. Other
-event-checking computes may be added. :doc:`Compute event/displace <compute_event_displace>` checks whether any atom in
-the compute group has moved further than a specified threshold
-distance. If so, an "event" has occurred.
-
-In the third stage, the replica on which the event occurred (event
-replica) continues to run dynamics to search for correlated events.
-This is done by running dynamics for *t_correlate* steps, quenching
-every *t_event* steps, and checking if another event has occurred.
-
-The first time no correlated event occurs, the final state of the
-event replica is shared with all replicas, the new basin reference
-coordinates are updated with the quenched state, and the outer loop
-begins again. While the replica event is searching for correlated
-events, all the other replicas also run dynamics and event checking
-with the same schedule, but the final states are always overwritten by
-the state of the event replica.
-
-The outer loop of the pseudo-code above continues until *N* steps of
-dynamics have been performed. Note that *N* only includes the
-dynamics of stages 2 and 3, not the steps taken during dephasing or
-the minimization iterations of quenching. The specified *N* is
-interpreted in one of two ways, depending on the *time* keyword. If
-the *time* value is *steps*, which is the default, then each replica
-runs for *N* timesteps. If the *time* value is *clock*, then the
-simulation runs until *N* aggregate timesteps across all replicas have
-elapsed. This aggregate time is the "clock" time defined below, which
-typically advances nearly M times faster than the timestepping on a
-single replica.
-
-
-----------
-
-
-Four kinds of output can be generated during a PRD run: event
-statistics, thermodynamic output by each replica, dump files, and
-restart files.
-
-When running with multiple partitions (each of which is a replica in
-this case), the print-out to the screen and master log.lammps file is
-limited to event statistics. Note that if a PRD run is performed on
-only a single replica then the event statistics will be intermixed
-with the usual thermodynamic output discussed below.
-
-The quantities printed each time an event occurs are the timestep, CPU
-time, clock, event number, a correlation flag, the number of
-coincident events, and the replica number of the chosen event.
-
-The timestep is the usual LAMMPS timestep, except that time does not
-advance during dephasing or quenches, but only during dynamics. Note
-that are two kinds of dynamics in the PRD loop listed above. The
-first is when all replicas are performing independent dynamics,
-waiting for an event to occur. The second is when correlated events
-are being searched for and only one replica is running dynamics.
-
-The CPU time is the total processor time since the start of the PRD
-run.
-
-The clock is the same as the timestep except that it advances by M
-steps every timestep during the first kind of dynamics when the M
-replicas are running independently. The clock advances by only 1 step
-per timestep during the second kind of dynamics, since only a single
-replica is checking for a correlated event. Thus "clock" time
-represents the aggregate time (in steps) that effectively elapses
-during a PRD simulation on M replicas. If most of the PRD run is
-spent in the second stage of the loop above, searching for infrequent
-events, then the clock will advance nearly M times faster than it
-would if a single replica was running. Note the clock time between
-events will be drawn from p(t).
-
-The event number is a counter that increments with each event, whether
-it is uncorrelated or correlated.
-
-The correlation flag will be 0 when an uncorrelated event occurs
-during the second stage of the loop listed above, i.e. when all
-replicas are running independently. The correlation flag will be 1
-when a correlated event occurs during the third stage of the loop
-listed above, i.e. when only one replica is running dynamics.
-
-When more than one replica detects an event at the end of the second
-stage, then one of them is chosen at random. The number of coincident
-events is the number of replicas that detected an event. Normally, we
-expect this value to be 1. If it is often greater than 1, then either
-the number of replicas is too large, or *t_event* is too large.
-
-The replica number is the ID of the replica (from 0 to M-1) that
-found the event.
-
-
-----------
-
-
-When running on multiple partitions, LAMMPS produces additional log
-files for each partition, e.g. log.lammps.0, log.lammps.1, etc. For
-the PRD command, these contain the thermodynamic output for each
-replica. You will see short runs and minimizations corresponding to
-the dynamics and quench operations of the loop listed above. The
-timestep will be reset aprpopriately depending on whether the
-operation advances time or not.
-
-After the PRD command completes, timing statistics for the PRD run are
-printed in each replica's log file, giving a breakdown of how much CPU
-time was spent in each stage (dephasing, dynamics, quenching, etc).
-
-
-----------
-
-
-Any :doc:`dump files <dump>` defined in the input script, will be
-written to during a PRD run at timesteps corresponding to both
-uncorrelated and correlated events. This means the the requested dump
-frequency in the :doc:`dump <dump>` command is ignored. There will be
-one dump file (per dump command) created for all partitions.
-
-The atom coordinates of the dump snapshot are those of the minimum
-energy configuration resulting from quenching following a transition
-event. The timesteps written into the dump files correspond to the
-timestep at which the event occurred and NOT the clock. A dump
-snapshot corresponding to the initial minimum state used for event
-detection is written to the dump file at the beginning of each PRD
-run.
-
-
-----------
-
-
-If the :doc:`restart <restart>` command is used, a single restart file
-for all the partitions is generated, which allows a PRD run to be
-continued by a new input script in the usual manner.
-
-The restart file is generated at the end of the loop listed above. If
-no correlated events are found, this means it contains a snapshot of
-the system at time T + *t_correlate*, where T is the time at which the
-uncorrelated event occurred. If correlated events were found, then it
-contains a snapshot of the system at time T + *t_correlate*, where T
-is the time of the last correlated event.
-
-The restart frequency specified in the :doc:`restart <restart>` command
-is interpreted differently when performing a PRD run. It does not
-mean the timestep interval between restart files. Instead it means an
-event interval for uncorrelated events. Thus a frequency of 1 means
-write a restart file every time an uncorrelated event occurs. A
-frequency of 10 means write a restart file every 10th uncorrelated
-event.
-
-When an input script reads a restart file from a previous PRD run, the
-new script can be run on a different number of replicas or processors.
-However, it is assumed that *t_correlate* in the new PRD command is
-the same as it was previously. If not, the calculation of the "clock"
-value for the first event in the new run will be slightly off.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command can only be used if LAMMPS was built with the REPLICA
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-*N* and *t_correlate* settings must be integer multiples of
-*t_event*.
-
-Runs restarted from restart file written during a PRD run will not
-produce identical results due to changes in the random numbers used
-for dephasing.
-
-This command cannot be used when any fixes are defined that keep track
-of elapsed time to perform time-dependent operations. Examples
-include the "ave" fixes such as :doc:`fix ave/spatial <fix_ave_spatial>`. Also :doc:`fix dt/reset <fix_dt_reset>` and :doc:`fix deposit <fix_deposit>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute event/displace <compute_event_displace>`,
-:doc:`min_modify <min_modify>`, :doc:`min_style <min_style>`,
-:doc:`run_style <run_style>`, :doc:`minimize <minimize>`,
-:doc:`velocity <velocity>`, :doc:`temper <temper>`, :doc:`neb <neb>`,
-:doc:`tad <tad>`
-
-Default
-"""""""
-
-The option defaults are min = 0.1 0.1 40 50, no temp setting, vel =
-geom gaussian, and time = steps.
-
-
-----------
-
-
-.. _Voter:
-
-
-
-**(Voter)** Voter, Phys Rev B, 57, 13985 (1998).
-
-.. _Voter2:
-
-
-
-**(Voter2)** Voter, Montalenti, Germann, Annual Review of Materials
-Research 32, 321 (2002).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/print.txt b/doc/_sources/print.txt
deleted file mode 100644
index abac4f340..000000000
--- a/doc/_sources/print.txt
+++ /dev/null
@@ -1,91 +0,0 @@
-.. index:: print
-
-print command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- print string keyword value
-
-* string = text string to print, which may contain variables
-* zero or more keyword/value pairs may be appended
-* keyword = *file* or *append* or *screen*
-.. parsed-literal::
-
- *file* value = filename
- *append* value = filename
- *screen* value = *yes* or *no*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- print "Done with equilibration" file info.dat
- print Vol=$v append info.dat screen no
- print "The system volume is now $v"
- print 'The system volume is now $v'
- print """
- System volume = $v
- System temperature = $t
- """
-
-Description
-"""""""""""
-
-Print a text string to the screen and logfile. The text string must
-be a single argument, so if it is one line but more than one word, it
-should be enclosed in single or double quotes. To generate multiple
-lines of output, the string can be enclosed in triple quotes, as in
-the last example above. If the text string contains variables, they
-will be evaluated and their current values printed.
-
-If the *file* or *append* keyword is used, a filename is specified to
-which the output will be written. If *file* is used, then the
-filename is overwritten if it already exists. If *append* is used,
-then the filename is appended to if it already exists, or created if
-it does not exist.
-
-If the *screen* keyword is used, output to the screen and logfile can
-be turned on or off as desired.
-
-If you want the print command to be executed multiple times (with
-changing variable values), there are 3 options. First, consider using
-the :doc:`fix print <fix_print>` command, which will print a string
-periodically during a simulation. Second, the print command can be
-used as an argument to the *every* option of the :doc:`run <run>`
-command. Third, the print command could appear in a section of the
-input script that is looped over (see the :doc:`jump <jump>` and
-:doc:`next <next>` commands).
-
-See the :doc:`variable <variable>` command for a description of *equal*
-style variables which are typically the most useful ones to use with
-the print command. Equal-style variables can calculate formulas
-involving mathematical operations, atom properties, group properties,
-thermodynamic properties, global values calculated by a
-:doc:`compute <compute>` or :doc:`fix <fix>`, or references to other
-:doc:`variables <variable>`.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix print <fix_print>`, :doc:`variable <variable>`
-
-Default
-"""""""
-
-The option defaults are no file output and screen = yes.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/processors.txt b/doc/_sources/processors.txt
deleted file mode 100644
index b2b3c6e97..000000000
--- a/doc/_sources/processors.txt
+++ /dev/null
@@ -1,378 +0,0 @@
-.. index:: processors
-
-processors command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- processors Px Py Pz keyword args ...
-
-* Px,Py,Pz = # of processors in each dimension of 3d grid overlaying the simulation domain
-* zero or more keyword/arg pairs may be appended
-* keyword = *grid* or *map* or *part* or *file*
-.. parsed-literal::
-
- *grid* arg = gstyle params ...
- gstyle = *onelevel* or *twolevel* or *numa* or *custom*
- onelevel params = none
- twolevel params = Nc Cx Cy Cz
- Nc = number of cores per node
- Cx,Cy,Cz = # of cores in each dimension of 3d sub-grid assigned to each node
- numa params = none
- custom params = infile
- infile = file containing grid layout
- *map* arg = *cart* or *cart/reorder* or *xyz* or *xzy* or *yxz* or *yzx* or *zxy* or *zyx*
- cart = use MPI_Cart() methods to map processors to 3d grid with reorder = 0
- cart/reorder = use MPI_Cart() methods to map processors to 3d grid with reorder = 1
- xyz,xzy,yxz,yzx,zxy,zyx = map procesors to 3d grid in IJK ordering
- *numa* arg = none
- *part* args = Psend Precv cstyle
- Psend = partition # (1 to Np) which will send its processor layout
- Precv = partition # (1 to Np) which will recv the processor layout
- cstyle = *multiple*
- *multiple* = Psend grid will be multiple of Precv grid in each dimension
- *file* arg = outfile
- outfile = name of file to write 3d grid of processors to
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- processors * * 5
- processors 2 4 4
- processors * * 8 map xyz
- processors * * * grid numa
- processors * * * grid twolevel 4 * * 1
- processors 4 8 16 grid custom myfile
- processors * * * part 1 2 multiple
-
-Description
-"""""""""""
-
-Specify how processors are mapped as a regular 3d grid to the global
-simulation box. The mapping involves 2 steps. First if there are P
-processors it means choosing a factorization P = Px by Py by Pz so
-that there are Px processors in the x dimension, and similarly for the
-y and z dimensions. Second, the P processors are mapped to the
-regular 3d grid. The arguments to this command control each of these
-2 steps.
-
-The Px, Py, Pz parameters affect the factorization. Any of the 3
-parameters can be specified with an asterisk "*", which means LAMMPS
-will choose the number of processors in that dimension of the grid.
-It will do this based on the size and shape of the global simulation
-box so as to minimize the surface-to-volume ratio of each processor's
-sub-domain.
-
-Choosing explicit values for Px or Py or Pz can be used to override
-the default manner in which LAMMPS will create the regular 3d grid of
-processors, if it is known to be sub-optimal for a particular problem.
-E.g. a problem where the extent of atoms will change dramatically in a
-particular dimension over the course of the simulation.
-
-The product of Px, Py, Pz must equal P, the total # of processors
-LAMMPS is running on. For a :doc:`2d simulation <dimension>`, Pz must
-equal 1.
-
-Note that if you run on a prime number of processors P, then a grid
-such as 1 x P x 1 will be required, which may incur extra
-communication costs due to the high surface area of each processor's
-sub-domain.
-
-Also note that if multiple partitions are being used then P is the
-number of processors in this partition; see :ref:`this section <start_7>` for an explanation of the
--partition command-line switch. Also note that you can prefix the
-processors command with the :doc:`partition <partition>` command to
-easily specify different Px,Py,Pz values for different partitions.
-
-You can use the :doc:`partition <partition>` command to specify
-different processor grids for different partitions, e.g.
-
-.. parsed-literal::
-
- partition yes 1 processors 4 4 4
- partition yes 2 processors 2 3 2
-
-.. note::
-
- This command only affects the initial regular 3d grid created
- when the simulation box is first specified via a
- :doc:`create_box <create_box>` or :doc:`read_data <read_data>` or
- :doc:`read_restart <read_restart>` command. Or if the simulation box is
- re-created via the :doc:`replicate <replicate>` command. The same
- regular grid is initially created, regardless of which
- :doc:`comm_style <comm_style>` command is in effect.
-
-If load-balancing is never invoked via the :doc:`balance <balance>` or
-:doc:`fix balance <fix_balance>` commands, then the initial regular grid
-will persist for all simulations. If balancing is performed, some of
-the methods invoked by those commands retain the logical toplogy of
-the initial 3d grid, and the mapping of processors to the grid
-specified by the processors command. However the grid spacings in
-different dimensions may change, so that processors own sub-domains of
-different sizes. If the :doc:`comm_style tiled <comm_style>` command is
-used, methods invoked by the balancing commands may discard the 3d
-grid of processors and tile the simulation domain with sub-domains of
-different sizes and shapes which no longer have a logical 3d
-connectivity. If that occurs, all the information specified by the
-processors command is ignored.
-
-
-----------
-
-
-The *grid* keyword affects the factorization of P into Px,Py,Pz and it
-can also affect how the P processor IDs are mapped to the 3d grid of
-processors.
-
-The *onelevel* style creates a 3d grid that is compatible with the
-Px,Py,Pz settings, and which minimizes the surface-to-volume ratio of
-each processor's sub-domain, as described above. The mapping of
-processors to the grid is determined by the *map* keyword setting.
-
-The *twolevel* style can be used on machines with multicore nodes to
-minimize off-node communication. It insures that contiguous
-sub-sections of the 3d grid are assigned to all the cores of a node.
-For example if *Nc* is 4, then 2x2x1 or 2x1x2 or 1x2x2 sub-sections of
-the 3d grid will correspond to the cores of each node. This affects
-both the factorization and mapping steps.
-
-The *Cx*, *Cy*, *Cz* settings are similar to the *Px*, *Py*, *Pz*
-settings, only their product should equal *Nc*. Any of the 3
-parameters can be specified with an asterisk "*", which means LAMMPS
-will choose the number of cores in that dimension of the node's
-sub-grid. As with Px,Py,Pz, it will do this based on the size and
-shape of the global simulation box so as to minimize the
-surface-to-volume ratio of each processor's sub-domain.
-
-.. note::
-
- For the *twolevel* style to work correctly, it assumes the MPI
- ranks of processors LAMMPS is running on are ordered by core and then
- by node. E.g. if you are running on 2 quad-core nodes, for a total of
- 8 processors, then it assumes processors 0,1,2,3 are on node 1, and
- processors 4,5,6,7 are on node 2. This is the default rank ordering
- for most MPI implementations, but some MPIs provide options for this
- ordering, e.g. via environment variable settings.
-
-The *numa* style operates similar to the *twolevel* keyword except
-that it auto-detects which cores are running on which nodes.
-Currently, it does this in only 2 levels, but it may be extended in
-the future to account for socket topology and other non-uniform memory
-access (NUMA) costs. It also uses a different algorithm than the
-*twolevel* keyword for doing the two-level factorization of the
-simulation box into a 3d processor grid to minimize off-node
-communication, and it does its own MPI-based mapping of nodes and
-cores to the regular 3d grid. Thus it may produce a different layout
-of the processors than the *twolevel* options.
-
-The *numa* style will give an error if the number of MPI processes is
-not divisible by the number of cores used per node, or any of the Px
-or Py of Pz values is greater than 1.
-
-.. note::
-
- Unlike the *twolevel* style, the *numa* style does not require
- any particular ordering of MPI ranks i norder to work correctly. This
- is because it auto-detects which processes are running on which nodes.
-
-The *custom* style uses the file *infile* to define both the 3d
-factorization and the mapping of processors to the grid.
-
-The file should have the following format. Any number of initial
-blank or comment lines (starting with a "#" character) can be present.
-The first non-blank, non-comment line should have
-3 values:
-
-.. parsed-literal::
-
- Px Py Py
-
-These must be compatible with the total number of processors
-and the Px, Py, Pz settings of the processors commmand.
-
-This line should be immediately followed by
-P = Px*Py*Pz lines of the form:
-
-.. parsed-literal::
-
- ID I J K
-
-where ID is a processor ID (from 0 to P-1) and I,J,K are the
-processors location in the 3d grid. I must be a number from 1 to Px
-(inclusive) and similarly for J and K. The P lines can be listed in
-any order, but no processor ID should appear more than once.
-
-
-----------
-
-
-The *map* keyword affects how the P processor IDs (from 0 to P-1) are
-mapped to the 3d grid of processors. It is only used by the
-*onelevel* and *twolevel* grid settings.
-
-The *cart* style uses the family of MPI Cartesian functions to perform
-the mapping, namely MPI_Cart_create(), MPI_Cart_get(),
-MPI_Cart_shift(), and MPI_Cart_rank(). It invokes the
-MPI_Cart_create() function with its reorder flag = 0, so that MPI is
-not free to reorder the processors.
-
-The *cart/reorder* style does the same thing as the *cart* style
-except it sets the reorder flag to 1, so that MPI can reorder
-processors if it desires.
-
-The *xyz*, *xzy*, *yxz*, *yzx*, *zxy*, and *zyx* styles are all
-similar. If the style is IJK, then it maps the P processors to the
-grid so that the processor ID in the I direction varies fastest, the
-processor ID in the J direction varies next fastest, and the processor
-ID in the K direction varies slowest. For example, if you select
-style *xyz* and you have a 2x2x2 grid of 8 processors, the assignments
-of the 8 octants of the simulation domain will be:
-
-.. parsed-literal::
-
- proc 0 = lo x, lo y, lo z octant
- proc 1 = hi x, lo y, lo z octant
- proc 2 = lo x, hi y, lo z octant
- proc 3 = hi x, hi y, lo z octant
- proc 4 = lo x, lo y, hi z octant
- proc 5 = hi x, lo y, hi z octant
- proc 6 = lo x, hi y, hi z octant
- proc 7 = hi x, hi y, hi z octant
-
-Note that, in principle, an MPI implementation on a particular machine
-should be aware of both the machine's network topology and the
-specific subset of processors and nodes that were assigned to your
-simulation. Thus its MPI_Cart calls can optimize the assignment of
-MPI processes to the 3d grid to minimize communication costs. In
-practice, however, few if any MPI implementations actually do this.
-So it is likely that the *cart* and *cart/reorder* styles simply give
-the same result as one of the IJK styles.
-
-Also note, that for the *twolevel* grid style, the *map* setting is
-used to first map the nodes to the 3d grid, then again to the cores
-within each node. For the latter step, the *cart* and *cart/reorder*
-styles are not supported, so an *xyz* style is used in their place.
-
-
-----------
-
-
-The *part* keyword affects the factorization of P into Px,Py,Pz.
-
-It can be useful when running in multi-partition mode, e.g. with the
-:doc:`run_style verlet/split <run_style>` command. It specifies a
-dependency bewteen a sending partition *Psend* and a receiving
-partition *Precv* which is enforced when each is setting up their own
-mapping of their processors to the simulation box. Each of *Psend*
-and *Precv* must be integers from 1 to Np, where Np is the number of
-partitions you have defined via the :ref:`-partition command-line switch <start_7>`.
-
-A "dependency" means that the sending partition will create its
-regular 3d grid as Px by Py by Pz and after it has done this, it will
-send the Px,Py,Pz values to the receiving partition. The receiving
-partition will wait to receive these values before creating its own
-regular 3d grid and will use the sender's Px,Py,Pz values as a
-constraint. The nature of the constraint is determined by the
-*cstyle* argument.
-
-For a *cstyle* of *multiple*, each dimension of the sender's processor
-grid is required to be an integer multiple of the corresponding
-dimension in the receiver's processor grid. This is a requirement of
-the :doc:`run_style verlet/split <run_style>` command.
-
-For example, assume the sending partition creates a 4x6x10 grid = 240
-processor grid. If the receiving partition is running on 80
-processors, it could create a 4x2x10 grid, but it will not create a
-2x4x10 grid, since in the y-dimension, 6 is not an integer multiple of
-4.
-
-.. note::
-
- If you use the :doc:`partition <partition>` command to invoke
- different "processsors" commands on different partitions, and you also
- use the *part* keyword, then you must insure that both the sending and
- receiving partitions invoke the "processors" command that connects the
- 2 partitions via the *part* keyword. LAMMPS cannot easily check for
- this, but your simulation will likely hang in its setup phase if this
- error has been made.
-
-
-----------
-
-
-The *file* keyword writes the mapping of the factorization of P
-processors and their mapping to the 3d grid to the specified file
-*outfile*. This is useful to check that you assigned physical
-processors in the manner you desired, which can be tricky to figure
-out, especially when running on multiple partitions or on, a multicore
-machine or when the processor ranks were reordered by use of the
-:ref:`-reorder command-line switch <start_7>` or due to
-use of MPI-specific launch options such as a config file.
-
-If you have multiple partitions you should insure that each one writes
-to a different file, e.g. using a :doc:`world-style variable <variable>`
-for the filename. The file has a self-explanatory header, followed by
-one-line per processor in this format:
-
-world-ID universe-ID original-ID: I J K: name
-
-The IDs are the processor's rank in this simulation (the world), the
-universe (of multiple simulations), and the original MPI communicator
-used to instantiate LAMMPS, respectively. The world and universe IDs
-will only be different if you are running on more than one partition;
-see the :ref:`-partition command-line switch <start_7>`.
-The universe and original IDs will only be different if you used the
-:ref:`-reorder command-line switch <start_7>` to reorder
-the processors differently than their rank in the original
-communicator LAMMPS was instantiated with.
-
-I,J,K are the indices of the processor in the regular 3d grid, each
-from 1 to Nd, where Nd is the number of processors in that dimension
-of the grid.
-
-The *name* is what is returned by a call to MPI_Get_processor_name()
-and should represent an identifier relevant to the physical processors
-in your machine. Note that depending on the MPI implementation,
-multiple cores can have the same *name*.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command cannot be used after the simulation box is defined by a
-:doc:`read_data <read_data>` or :doc:`create_box <create_box>` command.
-It can be used before a restart file is read to change the 3d
-processor grid from what is specified in the restart file.
-
-The *grid numa* keyword only currently works with the *map cart*
-option.
-
-The *part* keyword (for the receiving partition) only works with the
-*grid onelevel* or *grid twolevel* options.
-
-Related commands
-""""""""""""""""
-
-:doc:`partition <partition>`, :ref:`-reorder command-line switch <start_7>`
-
-Default
-"""""""
-
-The option defaults are Px Py Pz = * * *, grid = onelevel, and map =
-cart.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/python.txt b/doc/_sources/python.txt
deleted file mode 100644
index 92ab33bc5..000000000
--- a/doc/_sources/python.txt
+++ /dev/null
@@ -1,543 +0,0 @@
-.. index:: python
-
-python command
-==============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- python func keyword args ...
-
-* func = name of Python function
-* one or more keyword/args pairs must be appended
-.. parsed-literal::
-
- keyword = *invoke* or *input* or *return* or *format* or *file* or *here* or *exists*
- *invoke* arg = none = invoke the previously defined Python function
- *input* args = N i1 i2 ... iN
- N = # of inputs to function
- i1,...,iN = value, SELF, or LAMMPS variable name
- value = integer number, floating point number, or string
- SELF = reference to LAMMPS itself which can be accessed by Python function
- variable = v_name, where name = name of LAMMPS variable, e.g. v_abc
- *return* arg = varReturn
- varReturn = v_name = LAMMPS variable name which return value of function will be assigned to
- *format* arg = fstring with M characters
- M = N if no return value, where N = # of inputs
- M = N+1 if there is a return value
- fstring = each character (i,f,s,p) corresponds in order to an input or return value
- 'i' = integer, 'f' = floating point, 's' = string, 'p' = SELF
- *file* arg = filename
- filename = file of Python code, which defines func
- *here* arg = inline
- inline = one or more lines of Python code which defines func
- must be a single argument, typically enclosed between triple quotes
- *exists* arg = none = Python code has been loaded by previous python command
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- python pForce input 2 v_x 20.0 return v_f format fff file force.py
- python pForce invoke
-
-.. parsed-literal::
-
- python factorial input 1 myN return v_fac format ii here """
- def factorial(n):
- if n == 1: return n
- return n * factorial(n-1)
- """
-
-.. parsed-literal::
-
- python loop input 1 SELF return v_value format -f here """
- def loop(lmpptr,N,cut0):
- from lammps import lammps
- lmp = lammps(ptr=lmpptr)
-
-.. parsed-literal::
-
- # loop N times, increasing cutoff each time
-
-.. parsed-literal::
-
- for i in range(N):
- cut = cut0 + i*0.1
- lmp.set_variable("cut",cut) # set a variable in LAMMPS
- lmp.command("pair_style lj/cut ${cut}") # LAMMPS commands
- lmp.command("pair_coeff * * 1.0 1.0")
- lmp.command("run 100")
- """
-
-Description
-"""""""""""
-
-.. note::
-
- It is not currently possible to use the :doc:`python <python>`
- command described in this section with Python 3, only with Python 2.
- The C API changed from Python 2 to 3 and the LAMMPS code is not
- compatible with both.
-
-Define a Python function or execute a previously defined function.
-Arguments, including LAMMPS variables, can be passed to the function
-from the LAMMPS input script and a value returned by the Python
-function to a LAMMPS variable. The Python code for the function can
-be included directly in the input script or in a separate Python file.
-The function can be standard Python code or it can make "callbacks" to
-LAMMPS through its library interface to query or set internal values
-within LAMMPS. This is a powerful mechanism for performing complex
-operations in a LAMMPS input script that are not possible with the
-simple input script and variable syntax which LAMMPS defines. Thus
-your input script can operate more like a true programming language.
-
-Use of this command requires building LAMMPS with the PYTHON package
-which links to the Python library so that the Python interpreter is
-embedded in LAMMPS. More details about this process are given below.
-
-There are two ways to invoke a Python function once it has been
-defined. One is using the *invoke* keyword. The other is to assign
-the function to a :doc:`python-style variable <variable>` defined in
-your input script. Whenever the variable is evaluated, it will
-execute the Python function to assign a value to the variable. Note
-that variables can be evaluated in many different ways within LAMMPS.
-They can be substituted for directly in an input script. Or they can
-be passed to various commands as arguments, so that the variable is
-evaluated during a simulation run.
-
-A broader overview of how Python can be used with LAMMPS is
-given in :doc:`Section python <Section_python>`. There is an
-examples/python directory which illustrates use of the python
-command.
-
-
-----------
-
-
-The *func* setting specifies the name of the Python function. The
-code for the function is defined using the *file* or *here* keywords
-as explained below.
-
-If the *invoke* keyword is used, no other keywords can be used, and a
-previous python command must have defined the Python function
-referenced by this command. This invokes the Python function with the
-previously defined arguments and return value processed as explained
-below. You can invoke the function as many times as you wish in your
-input script.
-
-The *input* keyword defines how many arguments *N* the Python function
-expects. If it takes no arguments, then the *input* keyword should
-not be used. Each argument can be specified directly as a value,
-e.g. 6 or 3.14159 or abc (a string of characters). The type of each
-argument is specified by the *format* keyword as explained below, so
-that Python will know how to interpret the value. If the word SELF is
-used for an argument it has a special meaning. A pointer is passed to
-the Python function which it converts into a reference to LAMMPS
-itself. This enables the function to call back to LAMMPS through its
-library interface as explained below. This allows the Python function
-to query or set values internal to LAMMPS which can affect the
-subsequent execution of the input script. A LAMMPS variable can also
-be used as an argument, specified as v_name, where "name" is the name
-of the variable. Any style of LAMMPS variable can be used, as defined
-by the :doc:`variable <variable>` command. Each time the Python
-function is invoked, the LAMMPS variable is evaluated and its value is
-passed to the Python function.
-
-The *return* keyword is only needed if the Python function returns a
-value. The specified *varReturn* must be of the form v_name, where
-"name" is the name of a python-style LAMMPS variable, defined by the
-:doc:`variable <variable>` command. The Python function can return a
-numeric or string value, as specified by the *format* keyword.
-
-As explained on the :doc:`variable <variable>` doc page, the definition
-of a python-style variable associates a Python function name with the
-variable. This must match the *func* setting for this command. For
-exampe these two commands would be self-consistent:
-
-.. parsed-literal::
-
- variable foo python myMultiply
- python myMultiply return v_foo format f file funcs.py
-
-The two commands can appear in either order in the input script so
-long as both are specified before the Python function is invoked for
-the first time.
-
-The *format* keyword must be used if the *input* or *return* keyword
-is used. It defines an *fstring* with M characters, where M = sum of
-number of inputs and outputs. The order of characters corresponds to
-the N inputs, followed by the return value (if it exists). Each
-character must be one of the following: "i" for integer, "f" for
-floating point, "s" for string, or "p" for SELF. Each character
-defines the type of the corresponding input or output value of the
-Python function and affects the type conversion that is performed
-internally as data is passed back and forth between LAMMPS and Python.
-Note that it is permissible to use a :doc:`python-style variable <variable>` in a LAMMPS command that allows for an
-equal-style variable as an argument, but only if the output of the
-Python function is flagged as a numeric value ("i" or "f") via the
-*format* keyword.
-
-Either the *file*, *here*, or *exists* keyword must be used, but only
-one of them. These keywords specify what Python code to load into the
-Python interpreter. The *file* keyword gives the name of a file,
-which should end with a ".py" suffix, which contains Python code. The
-code will be immediately loaded into and run in the "main" module of
-the Python interpreter. Note that Python code which contains a
-function definition does not "execute" the function when it is run; it
-simply defines the function so that it can be invoked later.
-
-The *here* keyword does the same thing, except that the Python code
-follows as a single argument to the *here* keyword. This can be done
-using triple quotes as delimiters, as in the examples above. This
-allows Python code to be listed verbatim in your input script, with
-proper indentation, blank lines, and comments, as desired. See
-:ref:`Section 3.2 <cmd_2>`, for an explanation of how
-triple quotes can be used as part of input script syntax.
-
-The *exists* keyword takes no argument. It means that Python code
-containing the required Python function defined by the *func* setting,
-is assumed to have been previously loaded by another python command.
-
-Note that the Python code that is loaded and run must contain a
-function with the specified *func* name. To operate properly when
-later invoked, the the function code must match the *input* and
-*return* and *format* keywords specified by the python command.
-Otherwise Python will generate an error.
-
-
-----------
-
-
-This section describes how Python code can be written to work with
-LAMMPS.
-
-Whether you load Python code from a file or directly from your input
-script, via the *file* and *here* keywords, the code can be identical.
-It must be indented properly as Python requires. It can contain
-comments or blank lines. If the code is in your input script, it
-cannot however contain triple-quoted Python strings, since that will
-conflict with the triple-quote parsing that the LAMMPS input script
-performs.
-
-All the Python code you specify via one or more python commands is
-loaded into the Python "main" module, i.e. __main__. The code can
-define global variables or statements that are outside of function
-definitions. It can contain multiple functions, only one of which
-matches the *func* setting in the python command. This means you can
-use the *file* keyword once to load several functions, and the
-*exists* keyword thereafter in subsequent python commands to access
-the other functions previously loaded.
-
-A Python function you define (or more generally, the code you load)
-can import other Python modules or classes, it can make calls to other
-system functions or functions you define, and it can access or modify
-global variables (in the "main" module) which will persist between
-successive function calls. The latter can be useful, for example, to
-prevent a function from being invoke multiple times per timestep by
-different commands in a LAMMPS input script that access the returned
-python-style variable associated with the function. For example,
-consider this function loaded with two global variables defined
-outside the function:
-
-.. parsed-literal::
-
- nsteplast = -1
- nvaluelast = 0
-
-.. parsed-literal::
-
- def expensive(nstep):
- global nsteplast,nvaluelast
- if nstep == nsteplast: return nvaluelast
- nsteplast = nstep
- # perform complicated calculation
- nvalue = ...
- nvaluelast = nvalue
- return nvalue
-
-Nsteplast stores the previous timestep the function was invoked
-(passed as an argument to the function). Nvaluelast stores the return
-value computed on the last function invocation. If the function is
-invoked again on the same timestep, the previous value is simply
-returned, without re-computing it. The "global" statement inside the
-Python function allows it to overwrite the global variables.
-
-Note that if you load Python code multiple times (via multiple python
-commands), you can overwrite previously loaded variables and functions
-if you are not careful. E.g. if the code above were loaded twice, the
-global variables would be re-initialized, which might not be what you
-want. Likewise, if a function with the same name exists in two chunks
-of Python code you load, the function loaded second will override the
-function loaded first.
-
-It's important to realize that if you are running LAMMPS in parallel,
-each MPI task will load the Python interpreter and execute a local
-copy of the Python function(s) you define. There is no connection
-between the Python interpreters running on different processors.
-This implies three important things.
-
-First, if you put a print statement in your Python function, you will
-see P copies of the output, when running on P processors. If the
-prints occur at (nearly) the same time, the P copies of the output may
-be mixed together. Welcome to the world of parallel programming and
-debugging.
-
-Second, if your Python code loads modules that are not pre-loaded by
-the Python library, then it will load the module from disk. This may
-be a bottleneck if 1000s of processors try to load a module at the
-same time. On some large supercomputers, loading of modules from disk
-by Python may be disabled. In this case you would need to pre-build a
-Python library that has the required modules pre-loaded and link
-LAMMPS with that library.
-
-Third, if your Python code calls back to LAMMPS (discussed in the
-next section) and causes LAMMPS to perform an MPI operation requires
-global communication (e.g. via MPI_Allreduce), such as computing the
-global temperature of the system, then you must insure all your Python
-functions (running independently on different processors) call back to
-LAMMPS. Otherwise the code may hang.
-
-
-----------
-
-
-Your Python function can "call back" to LAMMPS through its
-library interface, if you use the SELF input to pass Python
-a pointer to LAMMPS. The mechanism for doing this in your
-Python function is as follows:
-
-.. parsed-literal::
-
- def foo(lmpptr,...):
- from lammps import lammps
- lmp = lammps(ptr=lmpptr)
- lmp.command('print "Hello from inside Python"')
- ...
-
-The function definition must include a variable (lmpptr in this case)
-which corresponds to SELF in the python command. The first line of
-the function imports the Python module lammps.py in the python dir of
-the distribution. The second line creates a Python object "lmp" which
-wraps the instance of LAMMPS that called the function. The
-"ptr=lmpptr" argument is what makes that happen. The thrid line
-invokes the command() function in the LAMMPS library interface. It
-takes a single string argument which is a LAMMPS input script command
-for LAMMPS to execute, the same as if it appeared in your input
-script. In this case, LAMMPS should output
-
-.. parsed-literal::
-
- Hello from inside Python
-
-to the screen and log file. Note that since the LAMMPS print command
-itself takes a string in quotes as its argument, the Python string
-must be delimited with a different style of quotes.
-
-:ref:`Section 11.7 <py_7>` describes the syntax for how
-Python wraps the various functions included in the LAMMPS library
-interface.
-
-A more interesting example is in the examples/python/in.python script
-which loads and runs the following function from examples/python/funcs.py:
-
-.. parsed-literal::
-
- def loop(N,cut0,thresh,lmpptr):
- print "LOOP ARGS",N,cut0,thresh,lmpptr
- from lammps import lammps
- lmp = lammps(ptr=lmpptr)
- natoms = lmp.get_natoms()
-
-.. parsed-literal::
-
- for i in range(N):
- cut = cut0 + i*0.1
-
-.. parsed-literal::
-
- lmp.set_variable("cut",cut) # set a variable in LAMMPS
- lmp.command("pair_style lj/cut ${cut}") # LAMMPS command
- #lmp.command("pair_style lj/cut %d" % cut) # LAMMPS command option
-
-.. parsed-literal::
-
- lmp.command("pair_coeff * * 1.0 1.0") # ditto
- lmp.command("run 10") # ditto
- pe = lmp.extract_compute("thermo_pe",0,0) # extract total PE from LAMMPS
- print "PE",pe/natoms,thresh
- if pe/natoms < thresh: return
-
-with these input script commands:
-
-.. parsed-literal::
-
- python loop input 4 10 1.0 -4.0 SELF format iffp file funcs.py
- python loop invoke
-
-This has the effect of looping over a series of 10 short runs (10
-timesteps each) where the pair style cutoff is increased from a value
-of 1.0 in distance units, in increments of 0.1. The looping stops
-when the per-atom potential energy falls below a threshhold of -4.0 in
-energy units. More generally, Python can be used to implement a loop
-with complex logic, much more so than can be created using the LAMMPS
-:doc:`jump <jump>` and :doc:`if <if>` commands.
-
-Several LAMMPS library functions are called from the loop function.
-Get_natoms() returns the number of atoms in the simulation, so that it
-can be used to normalize the potential energy that is returned by
-extract_compute() for the "thermo_pe" compute that is defined by
-default for LAMMPS thermodynamic output. Set_variable() sets the
-value of a string variable defined in LAMMPS. This library function
-is a useful way for a Python function to return multiple values to
-LAMMPS, more than the single value that can be passed back via a
-return statement. This cutoff value in the "cut" variable is then
-substituted (by LAMMPS) in the pair_style command that is executed
-next. Alternatively, the "LAMMPS command option" line could be used
-in place of the 2 preceeding lines, to have Python insert the value
-into the LAMMPS command string.
-
-.. note::
-
- When using the callback mechanism just described, recognize that
- there are some operations you should not attempt because LAMMPS cannot
- execute them correctly. If the Python function is invoked between
- runs in the LAMMPS input script, then it should be OK to invoke any
- LAMMPS input script command via the library interface command() or
- file() functions, so long as the command would work if it were
- executed in the LAMMPS input script directly at the same point.
-
-However, a Python function can also be invoked during a run, whenever
-an associated LAMMPS variable it is assigned to is evaluted. If the
-variable is an input argument to another LAMMPS command (e.g. :doc:`fix setforce <fix_setforce>`), then the Python function will be invoked
-inside the class for that command, in one of its methods that is
-invoked in the middle of a timestep. You cannot execute arbitrary
-input script commands from the Python function (again, via the
-command() or file() functions) at that point in the run and expect it
-to work. Other library functions such as those that invoke computes
-or other variables may have hidden side effects as well. In these
-cases, LAMMPS has no simple way to check that something illogical is
-being attempted.
-
-
-----------
-
-
-If you run Python code directly on your workstation, either
-interactively or by using Python to launch a Python script stored in a
-file, and your code has an error, you will typically see informative
-error messages. That is not the case when you run Python code from
-LAMMPS using an embedded Python interpreter. The code will typically
-fail silently. LAMMPS will catch some errors but cannot tell you
-where in the Python code the problem occurred. For example, if the
-Python code cannot be loaded and run because it has syntax or other
-logic errors, you may get an error from Python pointing to the
-offending line, or you may get one of these generic errors from
-LAMMPS:
-
-.. parsed-literal::
-
- Could not process Python file
- Could not process Python string
-
-When the Python function is invoked, if it does not return properly,
-you will typically get this generic error from LAMMPS:
-
-.. parsed-literal::
-
- Python function evaluation failed
-
-Here are three suggestions for debugging your Python code while
-running it under LAMMPS.
-
-First, don't run it under LAMMPS, at least to start with! Debug it
-using plain Python. Load and invoke your function, pass it arguments,
-check return values, etc.
-
-Second, add Python print statements to the function to check how far
-it gets and intermediate values it calculates. See the discussion
-above about printing from Python when running in parallel.
-
-Third, use Python exception handling. For example, say this statement
-in your Python function is failing, because you have not initialized the
-variable foo:
-
-.. parsed-literal::
-
- foo += 1
-
-If you put one (or more) statements inside a "try" statement,
-like this:
-
-.. parsed-literal::
-
- import exceptions
- print "Inside simple function"
- try:
- foo += 1 # one or more statements here
- except Exception, e:
- print "FOO error:",e
-
-then you will get this message printed to the screen:
-
-.. parsed-literal::
-
- FOO error: local variable 'foo' referenced before assignment
-
-If there is no error in the try statements, then nothing is printed.
-Either way the function continues on (unless you put a return or
-sys.exit() in the except clause).
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command is part of the PYTHON package. It is only enabled if
-LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-Building LAMMPS with the PYTHON package will link LAMMPS with the
-Python library on your system. Settings to enable this are in the
-lib/python/Makefile.lammps file. See the lib/python/README file for
-information on those settings.
-
-If you use Python code which calls back to LAMMPS, via the SELF input
-argument explained above, there is an extra step required when
-building LAMMPS. LAMMPS must also be built as a shared library and
-your Python function must be able to to load the Python module in
-python/lammps.py that wraps the LAMMPS library interface. These are
-the same steps required to use Python by itself to wrap LAMMPS.
-Details on these steps are explained in :doc:`Section python <Section.python>`. Note that it is important that the
-stand-alone LAMMPS executable and the LAMMPS shared library be
-consistent (built from the same source code files) in order for this
-to work. If the two have been built at different times using
-different source files, problems may occur.
-
-As described above, you can use the python command to invoke a Python
-function which calls back to LAMMPS through its Python-wrapped library
-interface. However you cannot do the opposite. I.e. you cannot call
-LAMMPS from Python and invoke the python command to "callback" to
-Python and execute a Python function. LAMMPS will generate an error
-if you try to do that. Note that we think there actually should be a
-way to do that, but haven't yet been able to figure out how to do it
-successfully.
-
-Related commands
-""""""""""""""""
-
-:doc:`shell <shell>`, :doc:`variable <variable>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/quit.txt b/doc/_sources/quit.txt
deleted file mode 100644
index bcb0f48b3..000000000
--- a/doc/_sources/quit.txt
+++ /dev/null
@@ -1,54 +0,0 @@
-.. index:: quit
-
-quit command
-============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- quit status
-
-status = numerical exit status (optional)
-
-Examples
-""""""""
-
-quit
-if "$n > 10000" then "quit 1":pre
-
-Description
-"""""""""""
-
-This command causes LAMMPS to exit, after shutting down all output
-cleanly.
-
-It can be used as a debug statement in an input script, to terminate
-the script at some intermediate point.
-
-It can also be used as an invoked command inside the "then" or "else"
-portion of an :doc:`if <if>` command.
-
-The optional status argument is an integer which signals the return
-status to a program calling LAMMPS. A return status of 0 usually
-indicates success. A status != 0 is failure, where the specified
-value can be used to distinguish the kind of error, e.g. where in the
-input script the quit was invoked. If not specified, a status of 0 is
-returned.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`if <if>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/read_data.txt b/doc/_sources/read_data.txt
deleted file mode 100644
index f8f86a7c0..000000000
--- a/doc/_sources/read_data.txt
+++ /dev/null
@@ -1,1354 +0,0 @@
-.. index:: read_data
-
-read_data command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- read_data file keyword args ...
-
-* file = name of data file to read in
-* zero or more keyword/arg pairs may be appended
-* keyword = *add* or *offset* or *shift* or *extra/atom/types* or *extra/bond/types* or *extra/angle/types* or *extra/dihedral/types* or *extra/improper/types* or *group* or *nocoeff* or *fix*
-.. parsed-literal::
-
- *add* arg = *append* or *Nstart* or *merge*
- append = add new atoms with IDs appended to current IDs
- Nstart = add new atoms with IDs starting with Nstart
- merge = add new atoms with their IDs unchanged
- *offset* args = toff boff aoff doff ioff
- toff = offset to add to atom types
- boff = offset to add to bond types
- aoff = offset to add to angle types
- doff = offset to add to dihedral types
- ioff = offset to add to improper types
- *shift* args = Sx Sy Sz
- Sx,Sy,Sz = distance to shift atoms when adding to system (distance units)
- *extra/atom/types* arg = # of extra atom types
- *extra/bond/types* arg = # of extra bond types
- *extra/angle/types* arg = # of extra angle types
- *extra/dihedral/types* arg = # of extra dihedral types
- *extra/improper/types* arg = # of extra improper types
- *group* args = groupID
- groupID = add atoms in data file to this group
- *nocoeff* = ignore force field parameters
- *fix* args = fix-ID header-string section-string
- fix-ID = ID of fix to process header lines and sections of data file
- header-string = header lines containing this string will be passed to fix
- section-string = section names with this string will be passed to fix
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- read_data data.lj
- read_data ../run7/data.polymer.gz
- read_data data.protein fix mycmap crossterm CMAP
- read_data data.water add append offset 3 1 1 1 1 shift 0.0 0.0 50.0
- read_data data.water add merge 1 group solvent
-
-Description
-"""""""""""
-
-Read in a data file containing information LAMMPS needs to run a
-simulation. The file can be ASCII text or a gzipped text file
-(detected by a .gz suffix). This is one of 3 ways to specify initial
-atom coordinates; see the :doc:`read_restart <read_restart>` and
-:doc:`create_atoms <create_atoms>` commands for alternative methods.
-Also see the explanation of the :ref:`-restart command-line switch <start_7>` which can convert a restart file to
-a data file.
-
-This command can be used multiple times to add new atoms and their
-properties to an existing system by using the *add*, *offset*, and
-*shift* keywords. See more details below, which includes the use case
-for the *extra* keywords.
-
-The *group* keyword adds all the atoms in the data file to the
-specified group-ID. The group will be created if it does not already
-exist. This is useful if you are reading multiple data files and wish
-to put sets of atoms into different groups so they can be operated on
-later. E.g. a group of added atoms can be moved to new positions via
-the :doc:`displace_atoms <displace_atoms>` command. Note that atoms
-read from the data file are also always added to the "all" group. The
-:doc:`group <group>` command discusses atom groups, as used in LAMMPS.
-
-The *nocoeff* keyword tells read_data to ignore force field parameters.
-The various Coeff sections are still read and have to have the correct
-number of lines, but they are not applied. This also allows to read a
-data file without having any pair, bond, angle, dihedral or improper
-styles defined, or to read a data file for a different force field.
-
-The use of the *fix* keyword is discussed below.
-
-
-----------
-
-
-**Reading multiple data files**
-
-The read_data command can be used multiple times with the same or
-different data files to build up a complex system from components
-contained in individual data files. For example one data file could
-contain fluid in a confined domain; a second could contain wall atoms,
-and the second file could be read a third time to create a wall on the
-other side of the fluid. The third set of atoms could be rotated to
-an opposing direction using the :doc:`displace_atoms <displace_atoms>`
-command, after the third read_data command is used.
-
-The *add*, *offset*, *shift*, *extra*, and *group* keywords are
-useful in this context.
-
-If a simulation box does not yet exist, the *add* keyword
-cannot be used; the read_data command is being used for the first
-time. If a simulation box does exist, due to using the
-:doc:`create_box <create_box>` command, or a previous read_data command,
-then the *add* keyword must be used.
-
-.. note::
-
- The simulation box size (xlo to xhi, ylo to yhi, zlo to zhi) in
- the new data file will be merged with the existing simulation box to
- create a large enough box in each dimension to contain both the
- existing and new atoms. Each box dimension never shrinks due to this
- merge operation, it only stays the same or grows. Care must be used if
- you are growing the existing simulation box in a periodic dimension.
- If there are existing atoms with bonds that straddle that periodic
- boundary, then the atoms may become far apart if the box size grows.
- This will separate the atoms in the bond, which can lead to "lost"
- bond atoms or bad dynamics.
-
-The three choices for the *add* argument affect how the IDs of atoms
-in the data file are treated. If *append* is specified, atoms in the
-data file are added to the current system, with their atom IDs reset
-so that an atomID = M in the data file becomes atomID = N+M, where N
-is the largest atom ID in the current system. This rule is applied to
-all occurrences of atom IDs in the data file, e.g. in the Velocity or
-Bonds section. If *Nstart* is specified, then *Nstart* is a numeric
-value is given, e.g. 1000, so that an atomID = M in the data file
-becomes atomID = 1000+M. If *merge* is specified, the data file atoms
-are added to the current system without changing their IDs. They are
-assumed to merge (without duplication) with the currently defined
-atoms. It is up to you to insure there are no multiply defined atom
-IDs, as LAMMPS only performs an incomplete check that this is the case
-by insuring the resulting max atomID >= the number of atoms.
-
-The *offset* and *shift* keywords can only be used if the *add*
-keyword is also specified.
-
-The *offset* keyword adds the specified offset values to the atom
-types, bond types, angle types, dihedral types, and improper types as
-they are read from the data file. E.g. if *toff* = 2, and the file
-uses atom types 1,2,3, then the added atoms will have atom types
-3,4,5. These offsets apply to all occurrences of types in the data
-file, e.g. for the Atoms or Masses or Pair Coeffs or Bond Coeffs
-sections. This makes it easy to use atoms and molecules and their
-attributes from a data file in different simulations, where you want
-their types (atom, bond, angle, etc) to be different depending on what
-other types already exist. All five offset values must be specified,
-but individual values will be ignored if the data file does not use
-that attribute (e.g. no bonds).
-
-The *shift* keyword can be used to specify an (Sx, Sy, Sz)
-displacement applied to the coordinates of each atom. Sz must be 0.0
-for a 2d simulation. This is a mechanism for adding structured
-collections of atoms at different locations within the simulation box,
-to build up a complex geometry. It is up to you to insure atoms do
-not end up overlapping unphysically which would lead to bad dynamics.
-Note that the :doc:`displace_atoms <displace_atoms>` command can be used
-to move a subset of atoms after they have been read from a data file.
-Likewise, the :doc:`delete_atoms <delete_atoms>` command can be used to
-remove overlapping atoms. Note that the shift values (Sx, Sy, Sz) are
-also added to the simulation box information (xlo, xhi, ylo, yhi, zlo,
-zhi) in the data file to shift its boundaries. E.g. xlo_new = xlo +
-Sx, xhi_new = xhi + Sx.
-
-The *extra* keywords can only be used the first time the read_data
-command is used. They are useful if you intend to add new atom, bond,
-angle, etc types later with additional read_data commands. This is
-because the maximum number of allowed atom, bond, angle, etc types is
-set by LAMMPS when the system is first initialized. If you do not use
-the *extra* keywords, then the number of these types will be limited
-to what appears in the first data file you read. For example, if the
-first data file is a solid substrate of Si, it will likely specify a
-single atom type. If you read a second data file with a different
-material (water molecules) that sit on top of the substrate, you will
-want to use different atom types for those atoms. You can only do
-this if you set the *extra/atom/types* keyword to a sufficiently large
-value when reading the substrate data file. Note that use of the
-*extra* keywords also allows each data file to contain sections like
-Masses or Pair Coeffs or Bond Coeffs which are sized appropriately for
-the number of types in that data file. If the *offset* keyword is
-used appropriately when each data file is read, the values in those
-sections will be stored correctly in the larger data structures
-allocated by the use of the *extra* keywords. E.g. the substrate file
-can list mass and pair coefficients for type 1 silicon atoms. The
-water file can list mass and pair coeffcients for type 1 and type 2
-hydrogen and oxygen atoms. Use of the *extra* and *offset* keywords
-will store those mass and pair coefficient values appropriately in
-data structures that allow for 3 atom types (Si, H, O). Of course,
-you would still need to specify coefficients for H/Si and O/Si
-interactions in your input script to have a complete pairwise
-interaction model.
-
-An alternative to using the *extra* keywords with the read_data
-command, is to use the :doc:`create_box <create_box>` command to
-initialize the simulation box and all the various type limits you need
-via its *extra* keywords. Then use the read_data command one or more
-times to populate the system with atoms, bonds, angles, etc, using the
-*offset* keyword if desired to alter types used in the various data
-files you read.
-
-
-----------
-
-
-**Format of a data file**
-
-The structure of the data file is important, though many settings and
-sections are optional or can come in any order. See the examples
-directory for sample data files for different problems.
-
-A data file has a header and a body. The header appears first. The
-first line of the header is always skipped; it typically contains a
-description of the file. Then lines are read one at a time. Lines
-can have a trailing comment starting with '#' that is ignored. If the
-line is blank (only whitespace after comment is deleted), it is
-skipped. If the line contains a header keyword, the corresponding
-value(s) is read from the line. If it doesn't contain a header
-keyword, the line begins the body of the file.
-
-The body of the file contains zero or more sections. The first line
-of a section has only a keyword. This line can have a trailing
-comment starting with '#' that is either ignored or can be used to
-check for a style match, as described below. The next line is
-skipped. The remaining lines of the section contain values. The
-number of lines depends on the section keyword as described below.
-Zero or more blank lines can be used between sections. Sections can
-appear in any order, with a few exceptions as noted below.
-
-The keyword *fix* can be used one or more times. Each usage specifies
-a fix that will be used to process a specific portion of the data
-file. Any header line containing *header-string* and any section with
-a name containing *section-string* will be passed to the specified
-fix. See the :doc:`fix property/atom <fix_property_atom>` command for
-an example of a fix that operates in this manner. The doc page for
-the fix defines the syntax of the header line(s) and section(s) that
-it reads from the data file. Note that the *header-string* can be
-specified as NULL, in which case no header lines are passed to the
-fix. This means that it can infer the length of its Section from
-standard header settings, such as the number of atoms.
-
-The formatting of individual lines in the data file (indentation,
-spacing between words and numbers) is not important except that header
-and section keywords (e.g. atoms, xlo xhi, Masses, Bond Coeffs) must
-be capitalized as shown and can't have extra white space between their
-words - e.g. two spaces or a tab between the 2 words in "xlo xhi" or
-the 2 words in "Bond Coeffs", is not valid.
-
-
-----------
-
-
-**Format of the header of a data file**
-
-These are the recognized header keywords. Header lines can come in
-any order. The value(s) are read from the beginning of the line.
-Thus the keyword *atoms* should be in a line like "1000 atoms"; the
-keyword *ylo yhi* should be in a line like "-10.0 10.0 ylo yhi"; the
-keyword *xy xz yz* should be in a line like "0.0 5.0 6.0 xy xz yz".
-All these settings have a default value of 0, except the lo/hi box
-size defaults are -0.5 and 0.5. A line need only appear if the value
-is different than the default.
-
-* *atoms* = # of atoms in system
-* *bonds* = # of bonds in system
-* *angles* = # of angles in system
-* *dihedrals* = # of dihedrals in system
-* *impropers* = # of impropers in system
-* *atom types* = # of atom types in system
-* *bond types* = # of bond types in system
-* *angle types* = # of angle types in system
-* *dihedral types* = # of dihedral types in system
-* *improper types* = # of improper types in system
-* *extra bond per atom* = leave space for this many new bonds per atom
-* *extra angle per atom* = leave space for this many new angles per atom
-* *extra dihedral per atom* = leave space for this many new dihedrals per atom
-* *extra improper per atom* = leave space for this many new impropers per atom
-* *extra special per atom* = leave space for this many new special bonds per atom
-* *ellipsoids* = # of ellipsoids in system
-* *lines* = # of line segments in system
-* *triangles* = # of triangles in system
-* *bodies* = # of bodies in system
-* *xlo xhi* = simulation box boundaries in x dimension
-* *ylo yhi* = simulation box boundaries in y dimension
-* *zlo zhi* = simulation box boundaries in z dimension
-* *xy xz yz* = simulation box tilt factors for triclinic system
-
-The initial simulation box size is determined by the lo/hi settings.
-In any dimension, the system may be periodic or non-periodic; see the
-:doc:`boundary <boundary>` command. When the simulation box is created
-it is also partitioned into a regular 3d grid of rectangular bricks,
-one per processor, based on the number of processors being used and
-the settings of the :doc:`processors <processors>` command. The
-partitioning can later be changed by the :doc:`balance <balance>` or
-:doc:`fix balance <fix_balance>` commands.
-
-If the *xy xz yz* line does not appear, LAMMPS will set up an
-axis-aligned (orthogonal) simulation box. If the line does appear,
-LAMMPS creates a non-orthogonal simulation domain shaped as a
-parallelepiped with triclinic symmetry. The parallelepiped has its
-"origin" at (xlo,ylo,zlo) and is defined by 3 edge vectors starting
-from the origin given by A = (xhi-xlo,0,0); B = (xy,yhi-ylo,0); C =
-(xz,yz,zhi-zlo). *Xy,xz,yz* can be 0.0 or positive or negative values
-and are called "tilt factors" because they are the amount of
-displacement applied to faces of an originally orthogonal box to
-transform it into the parallelepiped.
-
-By default, the tilt factors (xy,xz,yz) can not skew the box more than
-half the distance of the corresponding parallel box length. For
-example, if xlo = 2 and xhi = 12, then the x box length is 10 and the
-xy tilt factor must be between -5 and 5. Similarly, both xz and yz
-must be between -(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is not
-a limitation, since if the maximum tilt factor is 5 (as in this
-example), then configurations with tilt = ..., -15, -5, 5, 15, 25,
-... are all geometrically equivalent. If you wish to define a box
-with tilt factors that exceed these limits, you can use the :doc:`box tilt <box>` command, with a setting of *large*; a setting of
-*small* is the default.
-
-See :ref:`Section_howto 12 <howto_12>` of the doc pages
-for a geometric description of triclinic boxes, as defined by LAMMPS,
-and how to transform these parameters to and from other commonly used
-triclinic representations.
-
-When a triclinic system is used, the simulation domain should normally
-be periodic in the dimension that the tilt is applied to, which is
-given by the second dimension of the tilt factor (e.g. y for xy tilt).
-This is so that pairs of atoms interacting across that boundary will
-have one of them shifted by the tilt factor. Periodicity is set by
-the :doc:`boundary <boundary>` command. For example, if the xy tilt
-factor is non-zero, then the y dimension should be periodic.
-Similarly, the z dimension should be periodic if xz or yz is non-zero.
-LAMMPS does not require this periodicity, but you may lose atoms if
-this is not the case.
-
-Also note that if your simulation will tilt the box, e.g. via the :doc:`fix deform <fix_deform>` command, the simulation box must be setup to
-be triclinic, even if the tilt factors are initially 0.0. You can
-also change an orthogonal box to a triclinic box or vice versa by
-using the :doc:`change box <change_box>` command with its *ortho* and
-*triclinic* options.
-
-For 2d simulations, the *zlo zhi* values should be set to bound the z
-coords for atoms that appear in the file; the default of -0.5 0.5 is
-valid if all z coords are 0.0. For 2d triclinic simulations, the xz
-and yz tilt factors must be 0.0.
-
-If the system is periodic (in a dimension), then atom coordinates can
-be outside the bounds (in that dimension); they will be remapped (in a
-periodic sense) back inside the box. Note that if the *add* option is
-being used to add atoms to a simulation box that already exists, this
-periodic remapping will be performed using simulation box bounds that
-are the union of the existing box and the box boundaries in the new
-data file.
-
-.. note::
-
- If the system is non-periodic (in a dimension), then all atoms
- in the data file must have coordinates (in that dimension) that are
- "greater than or equal to" the lo value and "less than or equal to"
- the hi value. If the non-periodic dimension is of style "fixed" (see
- the :doc:`boundary <boundary>` command), then the atom coords must be
- strictly "less than" the hi value, due to the way LAMMPS assign atoms
- to processors. Note that you should not make the lo/hi values
- radically smaller/larger than the extent of the atoms. For example,
- if your atoms extend from 0 to 50, you should not specify the box
- bounds as -10000 and 10000. This is because LAMMPS uses the specified
- box size to layout the 3d grid of processors. A huge (mostly empty)
- box will be sub-optimal for performance when using "fixed" boundary
- conditions (see the :doc:`boundary <boundary>` command). When using
- "shrink-wrap" boundary conditions (see the :doc:`boundary <boundary>`
- command), a huge (mostly empty) box may cause a parallel simulation to
- lose atoms when LAMMPS shrink-wraps the box around the atoms. The
- read_data command will generate an error in this case.
-
-The "extra bond per atom" setting (angle, dihedral, improper) is only
-needed if new bonds (angles, dihedrals, impropers) will be added to
-the system when a simulation runs, e.g. by using the :doc:`fix bond/create <fix_bond_create>` command. This will pre-allocate
-space in LAMMPS data structures for storing the new bonds (angles,
-dihedrals, impropers).
-
-The "extra special per atom" setting is typically only needed if new
-bonds/angles/etc will be added to the system, e.g. by using the :doc:`fix bond/create <fix_bond_create>` command. Or if entire new molecules
-will be added to the system, e.g. by using the :doc:`fix deposit <fix_deposit>` or :doc:`fix pour <fix_pour>` commands, which
-will have more special 1-2,1-3,1-4 neighbors than any other molecules
-defined in the data file. Using this setting will pre-allocate space
-in the LAMMPS data structures for storing these neighbors. See the
-:doc:`special_bonds <special_bonds>` and :doc:`molecule <molecule>` doc
-pages for more discussion of 1-2,1-3,1-4 neighbors.
-
-.. note::
-
- All of the "extra" settings are only used if they appear in the
- first data file read; see the description of the *add* keyword above
- for reading multiple data files. If they appear in later data files,
- they are ignored.
-
-The "ellipsoids" and "lines" and "triangles" and "bodies" settings are
-only used with :doc:`atom_style ellipsoid or line or tri or body <atom_style>` and specify how many of the atoms are
-finite-size ellipsoids or lines or triangles or bodies; the remainder
-are point particles. See the discussion of ellipsoidflag and the
-*Ellipsoids* section below. See the discussion of lineflag and the
-*Lines* section below. See the discussion of triangleflag and the
-*Triangles* section below. See the discussion of bodyflag and the
-*Bodies* section below.
-
-.. note::
-
- For :doc:`atom_style template <atom_style>`, the molecular
- topology (bonds,angles,etc) is contained in the molecule templates
- read-in by the :doc:`molecule <molecule>` command. This means you
- cannot set the *bonds*, *angles*, etc header keywords in the data
- file, nor can you define *Bonds*, *Angles*, etc sections as discussed
- below. You can set the *bond types*, *angle types*, etc header
- keywords, though it is not necessary. If specified, they must match
- the maximum values defined in any of the template molecules.
-
-
-----------
-
-
-**Format of the body of a data file**
-
-These are the section keywords for the body of the file.
-
-* *Atoms, Velocities, Masses, Ellipsoids, Lines, Triangles, Bodies* = atom-property sections
-* *Bonds, Angles, Dihedrals, Impropers* = molecular topology sections
-* *Pair Coeffs, PairIJ Coeffs, Bond Coeffs, Angle Coeffs, Dihedral Coeffs, Improper Coeffs* = force field sections
-* *BondBond Coeffs, BondAngle Coeffs, MiddleBondTorsion Coeffs, EndBondTorsion Coeffs, AngleTorsion Coeffs, AngleAngleTorsion Coeffs, BondBond13 Coeffs, AngleAngle Coeffs* = class 2 force field sections
-
-These keywords will check an appended comment for a match with the
-currently defined style:
-
-* *Atoms, Pair Coeffs, PairIJ Coeffs, Bond Coeffs, Angle Coeffs, Dihedral Coeffs, Improper Coeffs*
-
-For example, these lines:
-
-.. parsed-literal::
-
- Atoms # sphere
- Pair Coeffs # lj/cut
-
-will check if the currently-defined :doc:`atom_style <atom_style>` is
-*sphere*, and the current `pair_style <pair_style>`_ is *lj/cut*. If
-not, LAMMPS will issue a warning to indicate that the data file
-section likely does not contain the correct number or type of
-parameters expected for the currently-defined style.
-
-Each section is listed below in alphabetic order. The format of each
-section is described including the number of lines it must contain and
-rules (if any) for where it can appear in the data file.
-
-Any individual line in the various sections can have a trailing
-comment starting with "#" for annotation purposes. E.g. in the
-Atoms section:
-
-.. parsed-literal::
-
- 10 1 17 -1.0 10.0 5.0 6.0 # salt ion
-
-
-----------
-
-
-*Angle Coeffs* section:
-
-* one line per angle type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = angle type (1-N)
- coeffs = list of coeffs
-
-* example:
-.. parsed-literal::
-
- 6 70 108.5 0 0
-
-
-
-The number and meaning of the coefficients are specific to the defined
-angle style. See the :doc:`angle_style <angle_style>` and
-:doc:`angle_coeff <angle_coeff>` commands for details. Coefficients can
-also be set via the :doc:`angle_coeff <angle_coeff>` command in the
-input script.
-
-
-----------
-
-
-*AngleAngle Coeffs* section:
-
-* one line per improper type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = improper type (1-N)
- coeffs = list of coeffs (see :doc:`improper_coeff <improper_coeff>`)
-
-
-
-
-----------
-
-
-*AngleAngleTorsion Coeffs* section:
-
-* one line per dihedral type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = dihedral type (1-N)
- coeffs = list of coeffs (see :doc:`dihedral_coeff <dihedral_coeff>`)
-
-
-
-
-----------
-
-
-*Angles* section:
-
-* one line per angle
-* line syntax: ID type atom1 atom2 atom3
-.. parsed-literal::
-
- ID = number of angle (1-Nangles)
- type = angle type (1-Nangletype)
- atom1,atom2,atom3 = IDs of 1st,2nd,3rd atoms in angle
-
-example:
-.. parsed-literal::
-
- 2 2 17 29 430
-
-
-
-The 3 atoms are ordered linearly within the angle. Thus the central
-atom (around which the angle is computed) is the atom2 in the list.
-E.g. H,O,H for a water molecule. The *Angles* section must appear
-after the *Atoms* section. All values in this section must be
-integers (1, not 1.0).
-
-
-----------
-
-
-*AngleTorsion Coeffs* section:
-
-* one line per dihedral type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = dihedral type (1-N)
- coeffs = list of coeffs (see :doc:`dihedral_coeff <dihedral_coeff>`)
-
-
-
-
-----------
-
-
-*Atoms* section:
-
-* one line per atom
-* line syntax: depends on atom style
-
-An *Atoms* section must appear in the data file if natoms > 0 in the
-header section. The atoms can be listed in any order. These are the
-line formats for each :doc:`atom style <atom_style>` in LAMMPS. As
-discussed below, each line can optionally have 3 flags (nx,ny,nz)
-appended to it, which indicate which image of a periodic simulation
-box the atom is in. These may be important to include for some kinds
-of analysis.
-
-+------------+---------------------------------------------------------------------------+
-| angle | atom-ID molecule-ID atom-type x y z |
-+------------+---------------------------------------------------------------------------+
-| atomic | atom-ID atom-type x y z |
-+------------+---------------------------------------------------------------------------+
-| body | atom-ID atom-type bodyflag mass x y z |
-+------------+---------------------------------------------------------------------------+
-| bond | atom-ID molecule-ID atom-type x y z |
-+------------+---------------------------------------------------------------------------+
-| charge | atom-ID atom-type q x y z |
-+------------+---------------------------------------------------------------------------+
-| dipole | atom-ID atom-type q x y z mux muy muz |
-+------------+---------------------------------------------------------------------------+
-| dpd | atom-ID atom-type theta x y z |
-+------------+---------------------------------------------------------------------------+
-| electron | atom-ID atom-type q spin eradius x y z |
-+------------+---------------------------------------------------------------------------+
-| ellipsoid | atom-ID atom-type ellipsoidflag density x y z |
-+------------+---------------------------------------------------------------------------+
-| full | atom-ID molecule-ID atom-type q x y z |
-+------------+---------------------------------------------------------------------------+
-| line | atom-ID molecule-ID atom-type lineflag density x y z |
-+------------+---------------------------------------------------------------------------+
-| meso | atom-ID atom-type rho e cv x y z |
-+------------+---------------------------------------------------------------------------+
-| molecular | atom-ID molecule-ID atom-type x y z |
-+------------+---------------------------------------------------------------------------+
-| peri | atom-ID atom-type volume density x y z |
-+------------+---------------------------------------------------------------------------+
-| smd | atom-ID atom-type molecule volume mass kernel-radius contact-radius x y z |
-+------------+---------------------------------------------------------------------------+
-| sphere | atom-ID atom-type diameter density x y z |
-+------------+---------------------------------------------------------------------------+
-| template | atom-ID molecule-ID template-index template-atom atom-type x y z |
-+------------+---------------------------------------------------------------------------+
-| tri | atom-ID molecule-ID atom-type triangleflag density x y z |
-+------------+---------------------------------------------------------------------------+
-| wavepacket | atom-ID atom-type charge spin eradius etag cs_re cs_im x y z |
-+------------+---------------------------------------------------------------------------+
-| hybrid | atom-ID atom-type x y z sub-style1 sub-style2 ... |
-+------------+---------------------------------------------------------------------------+
-
-The per-atom values have these meanings and units, listed alphabetically:
-
-* atom-ID = integer ID of atom
-* atom-type = type of atom (1-Ntype)
-* bodyflag = 1 for body particles, 0 for point particles
-* contact-radius = ??? (distance units)
-* cs_re,cs_im = real/imaginary parts of wavepacket coefficients
-* cv = heat capacity (need units) for SPH particles
-* density = density of particle (mass/distance^3 or mass/distance^2 or mass/distance units, depending on dimensionality of particle)
-* diameter = diameter of spherical atom (distance units)
-* e = energy (need units) for SPH particles
-* ellipsoidflag = 1 for ellipsoidal particles, 0 for point particles
-* eradius = electron radius (or fixed-core radius)
-* etag = integer ID of electron that each wavepacket belongs to
-* kernel-radius = ??? (distance units)
-* lineflag = 1 for line segment particles, 0 for point or spherical particles
-* mass = mass of particle (mass units)
-* molecule-ID = integer ID of molecule the atom belongs to
-* mux,muy,muz = components of dipole moment of atom (dipole units)
-* q = charge on atom (charge units)
-* rho = density (need units) for SPH particles
-* spin = electron spin (+1/-1), 0 = nuclei, 2 = fixed-core, 3 = pseudo-cores (i.e. ECP)
-* template-atom = which atom within a template molecule the atom is
-* template-index = which molecule within the molecule template the atom is part of
-* theta = internal temperature of a DPD particle
-* triangleflag = 1 for triangular particles, 0 for point or sperhical particles
-* volume = volume of Peridynamic particle (distance^3 units)
-* x,y,z = coordinates of atom (distance units)
-
-The units for these quantities depend on the unit style; see the
-:doc:`units <units>` command for details.
-
-For 2d simulations specify z as 0.0, or a value within the *zlo zhi*
-setting in the data file header.
-
-The atom-ID is used to identify the atom throughout the simulation and
-in dump files. Normally, it is a unique value from 1 to Natoms for
-each atom. Unique values larger than Natoms can be used, but they
-will cause extra memory to be allocated on each processor, if an atom
-map array is used, but not if an atom map hash is used; see the
-:doc:`atom_modify <atom_modify>` command for details. If an atom map is
-not used (e.g. an atomic system with no bonds), and you don't care if
-unique atom IDs appear in dump files, then the atom-IDs can all be set
-to 0.
-
-The molecule ID is a 2nd identifier attached to an atom. Normally, it
-is a number from 1 to N, identifying which molecule the atom belongs
-to. It can be 0 if it is an unbonded atom or if you don't care to
-keep track of molecule assignments.
-
-The diameter specifies the size of a finite-size spherical particle.
-It can be set to 0.0, which means that atom is a point particle.
-
-The ellipsoidflag, lineflag, triangleflag, and bodyflag determine
-whether the particle is a finite-size ellipsoid or line or triangle or
-body of finite size, or whether the particle is a point particle.
-Additional attributes must be defined for each ellipsoid, line,
-triangle, or body in the corresponding *Ellipsoids*, *Lines*,
-*Triangles*, or *Bodies* section.
-
-The *template-index* and *template-atom* are only defined used by
-:doc:`atom_style template <atom_style>`. In this case the
-:doc:`molecule <molecule>` command is used to define a molecule template
-which contains one or more molecules. If an atom belongs to one of
-those molecules, its *template-index* and *template-atom* are both set
-to positive integers; if not the values are both 0. The
-*template-index* is which molecule (1 to Nmols) the atom belongs to.
-The *template-atom* is which atom (1 to Natoms) within the molecule
-the atom is.
-
-Some pair styles and fixes and computes that operate on finite-size
-particles allow for a mixture of finite-size and point particles. See
-the doc pages of individual commands for details.
-
-For finite-size particles, the density is used in conjunction with the
-particle volume to set the mass of each particle as mass = density *
-volume. In this context, volume can be a 3d quantity (for spheres or
-ellipsoids), a 2d quantity (for triangles), or a 1d quantity (for line
-segments). If the volume is 0.0, meaning a point particle, then the
-density value is used as the mass. One exception is for the body atom
-style, in which case the mass of each particle (body or point
-particle) is specified explicitly. This is because the volume of the
-body is unknown.
-
-For atom_style hybrid, following the 5 initial values (ID,type,x,y,z),
-specific values for each sub-style must be listed. The order of the
-sub-styles is the same as they were listed in the
-:doc:`atom_style <atom_style>` command. The sub-style specific values
-are those that are not the 5 standard ones (ID,type,x,y,z). For
-example, for the "charge" sub-style, a "q" value would appear. For
-the "full" sub-style, a "molecule-ID" and "q" would appear. These are
-listed in the same order they appear as listed above. Thus if
-
-.. parsed-literal::
-
- atom_style hybrid charge sphere
-
-were used in the input script, each atom line would have these fields:
-
-.. parsed-literal::
-
- atom-ID atom-type x y z q diameter density
-
-Note that if a non-standard value is defined by multiple sub-styles,
-it must appear mutliple times in the atom line. E.g. the atom line
-for atom_style hybrid dipole full would list "q" twice:
-
-.. parsed-literal::
-
- atom-ID atom-type x y z q mux muy myz molecule-ID q
-
-Atom lines specify the (x,y,z) coordinates of atoms. These can be
-inside or outside the simulation box. When the data file is read,
-LAMMPS wraps coordinates outside the box back into the box for
-dimensions that are periodic. As discussed above, if an atom is
-outside the box in a non-periodic dimension, it will be lost.
-
-LAMMPS always stores atom coordinates as values which are inside the
-simulation box. It also stores 3 flags which indicate which image of
-the simulation box (in each dimension) the atom would be in if its
-coordinates were unwrapped across periodic boundaries. An image flag
-of 0 means the atom is still inside the box when unwrapped. A value
-of 2 means add 2 box lengths to get the unwrapped coordinate. A value
-of -1 means subtract 1 box length to get the unwrapped coordinate.
-LAMMPS updates these flags as atoms cross periodic boundaries during
-the simulation. The :doc:`dump <dump>` command can output atom atom
-coordinates in wrapped or unwrapped form, as well as the 3 image
-flags.
-
-In the data file, atom lines (all lines or none of them) can
-optionally list 3 trailing integer values (nx,ny,nz), which are used
-to initialize the atom's image flags. If nx,ny,nz values are not
-listed in the data file, LAMMPS initializes them to 0. Note that the
-image flags are immediately updated if an atom's coordinates need to
-wrapped back into the simulation box.
-
-It is only important to set image flags correctly in a data file if a
-simulation model relies on unwrapped coordinates for some calculation;
-otherwise they can be left unspecified. Examples of LAMMPS commands
-that use unwrapped coordinates internally are as follows:
-
-* Atoms in a rigid body (see :doc:`fix rigid <fix_rigid>`, :doc:`fix rigid/small <fix_rigid>`) must have consistent image flags, so that
- when the atoms are unwrapped, they are near each other, i.e. as a
- single body.
-* If the :doc:`replicate <replicate>` command is used to generate a larger
- system, image flags must be consistent for bonded atoms when the bond
- crosses a periodic boundary. I.e. the values of the image flags
- should be different by 1 (in the appropriate dimension) for the two
- atoms in such a bond.
-* If you plan to :doc:`dump <dump>` image flags and perform post-analysis
- that will unwrap atom coordinates, it may be important that a
- continued run (restarted from a data file) begins with image flags
- that are consistent with the previous run.
-.. note::
-
- If your system is an infinite periodic crystal with bonds then
- it is impossible to have fully consistent image flags. This is because
- some bonds will cross periodic boundaries and connect two atoms with the
- same image flag.
-
-Atom velocities and other atom quantities not defined above are set to
-0.0 when the *Atoms* section is read. Velocities can be set later by
-a *Velocities* section in the data file or by a
-:doc:`velocity <velocity>` or :doc:`set <set>` command in the input
-script.
-
-
-----------
-
-
-*Bodies* section:
-
-* one or more lines per body
-* first line syntax: atom-ID Ninteger Ndouble
-.. parsed-literal::
-
- Ninteger = # of integer quantities for this particle
- Ndouble = # of floating-point quantities for this particle
-
-* 0 or more integer lines with total of Ninteger values
-* 0 or more double lines with total of Ndouble values
-* example:
-.. parsed-literal::
-
- 12 3 6
- 2 3 2
- 1.0 2.0 3.0 1.0 2.0 4.0
-
-* example:
-.. parsed-literal::
-
- 12 0 14
- 1.0 2.0 3.0 1.0 2.0 4.0 1.0
- 2.0 3.0 1.0 2.0 4.0 4.0 2.0
-
-
-
-The *Bodies* section must appear if :doc:`atom_style body <atom_style>`
-is used and any atoms listed in the *Atoms* section have a bodyflag =
-1. The number of bodies should be specified in the header section via
-the "bodies" keyword.
-
-Each body can have a variable number of integer and/or floating-point
-values. The number and meaning of the values is defined by the body
-style, as described in the :doc:`body <body>` doc page. The body style
-is given as an argument to the :doc:`atom_style body <atom_style>`
-command.
-
-The Ninteger and Ndouble values determine how many integer and
-floating-point values are specified for this particle. Ninteger and
-Ndouble can be as large as needed and can be different for every body.
-Integer values are then listed next on subsequent lines. Lines are
-read one at a time until Ninteger values are read. Floating-point
-values follow on subsequent lines, Again lines are read one at a time
-until Ndouble values are read. Note that if there are no values of a
-particular type, no lines appear for that type.
-
-The *Bodies* section must appear after the *Atoms* section.
-
-
-----------
-
-
-*Bond Coeffs* section:
-
-* one line per bond type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = bond type (1-N)
- coeffs = list of coeffs
-
-* example:
-.. parsed-literal::
-
- 4 250 1.49
-
-
-
-The number and meaning of the coefficients are specific to the defined
-bond style. See the :doc:`bond_style <bond_style>` and
-:doc:`bond_coeff <bond_coeff>` commands for details. Coefficients can
-also be set via the :doc:`bond_coeff <bond_coeff>` command in the input
-script.
-
-
-----------
-
-
-*BondAngle Coeffs* section:
-
-* one line per angle type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = angle type (1-N)
- coeffs = list of coeffs (see class 2 section of :doc:`angle_coeff <angle_coeff>`)
-
-
-
-
-----------
-
-
-*BondBond Coeffs* section:
-
-* one line per angle type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = angle type (1-N)
- coeffs = list of coeffs (see class 2 section of :doc:`angle_coeff <angle_coeff>`)
-
-
-
-
-----------
-
-
-*BondBond13 Coeffs* section:
-
-* one line per dihedral type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = dihedral type (1-N)
- coeffs = list of coeffs (see class 2 section of :doc:`dihedral_coeff <dihedral_coeff>`)
-
-
-
-
-----------
-
-
-*Bonds* section:
-
-* one line per bond
-* line syntax: ID type atom1 atom2
-.. parsed-literal::
-
- ID = bond number (1-Nbonds)
- type = bond type (1-Nbondtype)
- atom1,atom2 = IDs of 1st,2nd atoms in bond
-
-* example:
-.. parsed-literal::
-
- 12 3 17 29
-
-
-
-The *Bonds* section must appear after the *Atoms* section. All values
-in this section must be integers (1, not 1.0).
-
-
-----------
-
-
-*Dihedral Coeffs* section:
-
-* one line per dihedral type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = dihedral type (1-N)
- coeffs = list of coeffs
-
-* example:
-.. parsed-literal::
-
- 3 0.6 1 0 1
-
-
-
-The number and meaning of the coefficients are specific to the defined
-dihedral style. See the :doc:`dihedral_style <dihedral_style>` and
-:doc:`dihedral_coeff <dihedral_coeff>` commands for details.
-Coefficients can also be set via the
-:doc:`dihedral_coeff <dihedral_coeff>` command in the input script.
-
-
-----------
-
-
-*Dihedrals* section:
-
-* one line per dihedral
-* line syntax: ID type atom1 atom2 atom3 atom4
-.. parsed-literal::
-
- ID = number of dihedral (1-Ndihedrals)
- type = dihedral type (1-Ndihedraltype)
- atom1,atom2,atom3,atom4 = IDs of 1st,2nd,3rd,4th atoms in dihedral
-
-* example:
-.. parsed-literal::
-
- 12 4 17 29 30 21
-
-
-
-The 4 atoms are ordered linearly within the dihedral. The *Dihedrals*
-section must appear after the *Atoms* section. All values in this
-section must be integers (1, not 1.0).
-
-
-----------
-
-
-*Ellipsoids* section:
-
-* one line per ellipsoid
-* line syntax: atom-ID shapex shapey shapez quatw quati quatj quatk
-.. parsed-literal::
-
- atom-ID = ID of atom which is an ellipsoid
- shapex,shapey,shapez = 3 diameters of ellipsoid (distance units)
- quatw,quati,quatj,quatk = quaternion components for orientation of atom
-
-* example:
-.. parsed-literal::
-
- 12 1 2 1 1 0 0 0
-
-
-
-The *Ellipsoids* section must appear if :doc:`atom_style ellipsoid <atom_style>` is used and any atoms are listed in the
-*Atoms* section with an ellipsoidflag = 1. The number of ellipsoids
-should be specified in the header section via the "ellipsoids"
-keyword.
-
-The 3 shape values specify the 3 diameters or aspect ratios of a
-finite-size ellipsoidal particle, when it is oriented along the 3
-coordinate axes. They must all be non-zero values.
-
-The values *quatw*, *quati*, *quatj*, and *quatk* set the orientation
-of the atom as a quaternion (4-vector). Note that the shape
-attributes specify the aspect ratios of an ellipsoidal particle, which
-is oriented by default with its x-axis along the simulation box's
-x-axis, and similarly for y and z. If this body is rotated (via the
-right-hand rule) by an angle theta around a unit vector (a,b,c), then
-the quaternion that represents its new orientation is given by
-(cos(theta/2), a*sin(theta/2), b*sin(theta/2), c*sin(theta/2)). These
-4 components are quatw, quati, quatj, and quatk as specified above.
-LAMMPS normalizes each atom's quaternion in case (a,b,c) is not
-specified as a unit vector.
-
-The *Ellipsoids* section must appear after the *Atoms* section.
-
-
-----------
-
-
-*EndBondTorsion Coeffs* section:
-
-* one line per dihedral type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = dihedral type (1-N)
- coeffs = list of coeffs (see class 2 section of :doc:`dihedral_coeff <dihedral_coeff>`)
-
-
-
-
-----------
-
-
-*Improper Coeffs* section:
-
-* one line per improper type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = improper type (1-N)
- coeffs = list of coeffs
-
-* example:
-.. parsed-literal::
-
- 2 20 0.0548311
-
-
-
-The number and meaning of the coefficients are specific to the defined
-improper style. See the :doc:`improper_style <improper_style>` and
-:doc:`improper_coeff <improper_coeff>` commands for details.
-Coefficients can also be set via the
-:doc:`improper_coeff <improper_coeff>` command in the input script.
-
-
-----------
-
-
-*Impropers* section:
-
-* one line per improper
-* line syntax: ID type atom1 atom2 atom3 atom4
-.. parsed-literal::
-
- ID = number of improper (1-Nimpropers)
- type = improper type (1-Nimpropertype)
- atom1,atom2,atom3,atom4 = IDs of 1st,2nd,3rd,4th atoms in improper
-
-* example:
-.. parsed-literal::
-
- 12 3 17 29 13 100
-
-
-
-The ordering of the 4 atoms determines the definition of the improper
-angle used in the formula for each :doc:`improper style <improper_style>`. See the doc pages for individual styles
-for details.
-
-The *Impropers* section must appear after the *Atoms* section. All
-values in this section must be integers (1, not 1.0).
-
-
-----------
-
-
-*Lines* section:
-
-* one line per line segment
-* line syntax: atom-ID x1 y1 x2 y2
-.. parsed-literal::
-
- atom-ID = ID of atom which is a line segment
- x1,y1 = 1st end point
- x2,y2 = 2nd end point
-
-* example:
-.. parsed-literal::
-
- 12 1.0 0.0 2.0 0.0
-
-
-
-The *Lines* section must appear if :doc:`atom_style line <atom_style>`
-is used and any atoms are listed in the *Atoms* section with a
-lineflag = 1. The number of lines should be specified in the header
-section via the "lines" keyword.
-
-The 2 end points are the end points of the line segment. The ordering
-of the 2 points should be such that using a right-hand rule to cross
-the line segment with a unit vector in the +z direction, gives an
-"outward" normal vector perpendicular to the line segment.
-I.e. normal = (c2-c1) x (0,0,1). This orientation may be important
-for defining some interactions.
-
-The *Lines* section must appear after the *Atoms* section.
-
-
-----------
-
-
-*Masses* section:
-
-* one line per atom type
-* line syntax: ID mass
-.. parsed-literal::
-
- ID = atom type (1-N)
- mass = mass value
-
-* example:
-.. parsed-literal::
-
- 3 1.01
-
-
-
-This defines the mass of each atom type. This can also be set via the
-:doc:`mass <mass>` command in the input script. This section cannot be
-used for atom styles that define a mass for individual atoms -
-e.g. :doc:`atom_style sphere <atom_style>`.
-
-
-----------
-
-
-*MiddleBondTorsion Coeffs* section:
-
-* one line per dihedral type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = dihedral type (1-N)
- coeffs = list of coeffs (see class 2 section of :doc:`dihedral_coeff <dihedral_coeff>`)
-
-
-
-
-----------
-
-
-*Pair Coeffs* section:
-
-* one line per atom type
-* line syntax: ID coeffs
-.. parsed-literal::
-
- ID = atom type (1-N)
- coeffs = list of coeffs
-
-* example:
-.. parsed-literal::
-
- 3 0.022 2.35197 0.022 2.35197
-
-
-
-The number and meaning of the coefficients are specific to the defined
-pair style. See the :doc:`pair_style <pair_style>` and
-:doc:`pair_coeff <pair_coeff>` commands for details. Since pair
-coefficients for types I != J are not specified, these will be
-generated automatically by the pair style's mixing rule. See the
-individual pair_style doc pages and the :doc:`pair_modify mix <pair_modify>` command for details. Pair coefficients can also
-be set via the :doc:`pair_coeff <pair_coeff>` command in the input
-script.
-
-
-----------
-
-
-*PairIJ Coeffs* section:
-
-* one line per pair of atom types for all I,J with I <= J
-* line syntax: ID1 ID2 coeffs
-.. parsed-literal::
-
- ID1 = atom type I = 1-N
- ID2 = atom type J = I-N, with I <= J
- coeffs = list of coeffs
-
-* examples:
-.. parsed-literal::
-
- 3 3 0.022 2.35197 0.022 2.35197
- 3 5 0.022 2.35197 0.022 2.35197
-
-
-
-This section must have N*(N+1)/2 lines where N = # of atom types. The
-number and meaning of the coefficients are specific to the defined
-pair style. See the :doc:`pair_style <pair_style>` and
-:doc:`pair_coeff <pair_coeff>` commands for details. Since pair
-coefficients for types I != J are all specified, these values will
-turn off the default mixing rule defined by the pair style. See the
-individual pair_style doc pages and the :doc:`pair_modify mix <pair_modify>` command for details. Pair coefficients can also
-be set via the :doc:`pair_coeff <pair_coeff>` command in the input
-script.
-
-
-----------
-
-
-*Triangles* section:
-
-* one line per triangle
-* line syntax: atom-ID x1 y1 x2 y2
-.. parsed-literal::
-
- atom-ID = ID of atom which is a line segment
- x1,y1,z1 = 1st corner point
- x2,y2,z2 = 2nd corner point
- x3,y3,z3 = 3rd corner point
-
-* example:
-.. parsed-literal::
-
- 12 0.0 0.0 0.0 2.0 0.0 1.0 0.0 2.0 1.0
-
-
-
-The *Triangles* section must appear if :doc:`atom_style tri <atom_style>` is used and any atoms are listed in the *Atoms*
-section with a triangleflag = 1. The number of lines should be
-specified in the header section via the "triangles" keyword.
-
-The 3 corner points are the corner points of the triangle. The
-ordering of the 3 points should be such that using a right-hand rule
-to go from point1 to point2 to point3 gives an "outward" normal vector
-to the face of the triangle. I.e. normal = (c2-c1) x (c3-c1). This
-orientation may be important for defining some interactions.
-
-The *Triangles* section must appear after the *Atoms* section.
-
-
-----------
-
-
-*Velocities* section:
-
-* one line per atom
-* line syntax: depends on atom style
-
-+--------------------------------+--------------------------------------------+
-| all styles except those listed | atom-ID vx vy vz |
-+--------------------------------+--------------------------------------------+
-| electron | atom-ID vx vy vz ervel |
-+--------------------------------+--------------------------------------------+
-| ellipsoid | atom-ID vx vy vz lx ly lz |
-+--------------------------------+--------------------------------------------+
-| sphere | atom-ID vx vy vz wx wy wz |
-+--------------------------------+--------------------------------------------+
-| hybrid | atom-ID vx vy vz sub-style1 sub-style2 ... |
-+--------------------------------+--------------------------------------------+
-
-where the keywords have these meanings:
-
-vx,vy,vz = translational velocity of atom
-lx,ly,lz = angular momentum of aspherical atom
-wx,wy,wz = angular velocity of spherical atom
-ervel = electron radial velocity (0 for fixed-core):ul
-
-The velocity lines can appear in any order. This section can only be
-used after an *Atoms* section. This is because the *Atoms* section
-must have assigned a unique atom ID to each atom so that velocities
-can be assigned to them.
-
-Vx, vy, vz, and ervel are in :doc:`units <units>` of velocity. Lx, ly,
-lz are in units of angular momentum (distance-velocity-mass). Wx, Wy,
-Wz are in units of angular velocity (radians/time).
-
-For atom_style hybrid, following the 4 initial values (ID,vx,vy,vz),
-specific values for each sub-style must be listed. The order of the
-sub-styles is the same as they were listed in the
-:doc:`atom_style <atom_style>` command. The sub-style specific values
-are those that are not the 5 standard ones (ID,vx,vy,vz). For
-example, for the "sphere" sub-style, "wx", "wy", "wz" values would
-appear. These are listed in the same order they appear as listed
-above. Thus if
-
-.. parsed-literal::
-
- atom_style hybrid electron sphere
-
-were used in the input script, each velocity line would have these
-fields:
-
-.. parsed-literal::
-
- atom-ID vx vy vz ervel wx wy wz
-
-Translational velocities can also be set by the
-:doc:`velocity <velocity>` command in the input script.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To read gzipped data files, you must compile LAMMPS with the
--DLAMMPS_GZIP option - see the :ref:`Making LAMMPS <start_2>` section of the documentation.
-
-Related commands
-""""""""""""""""
-
-:doc:`read_dump <read_dump>`, :doc:`read_restart <read_restart>`,
-:doc:`create_atoms <create_atoms>`, :doc:`write_data <write_data>`
-
-Default
-"""""""
-
-The default for all the *extra* keywords is 0.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/read_dump.txt b/doc/_sources/read_dump.txt
deleted file mode 100644
index 58b952574..000000000
--- a/doc/_sources/read_dump.txt
+++ /dev/null
@@ -1,354 +0,0 @@
-.. index:: read_dump
-
-read_dump command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- read_dump file Nstep field1 field2 ... keyword values ...
-
-* file = name of dump file to read
-* Nstep = snapshot timestep to read from file
-* one or more fields may be appended
-.. parsed-literal::
-
- field = *x* or *y* or *z* or *vx* or *vy* or *vz* or *q* or *ix* or *iy* or *iz*
- *x*,*y*,*z* = atom coordinates
- *vx*,*vy*,*vz* = velocity components
- *q* = charge
- *ix*,*iy*,*iz* = image flags in each dimension
-
-* zero or more keyword/value pairs may be appended
-* keyword = *box* or *replace* or *purge* or *trim* or *add* or *label* or *scaled* or *wrapped* or *format*
-.. parsed-literal::
-
- *box* value = *yes* or *no* = replace simulation box with dump box
- *replace* value = *yes* or *no* = overwrite atoms with dump atoms
- *purge* value = *yes* or *no* = delete all atoms before adding dump atoms
- *trim* value = *yes* or *no* = trim atoms not in dump snapshot
- *add* value = *yes* or *no* = add new dump atoms to system
- *label* value = field column
- field = one of the listed fields or *id* or *type*
- column = label on corresponding column in dump file
- *scaled* value = *yes* or *no* = coords in dump file are scaled/unscaled
- *wrapped* value = *yes* or *no* = coords in dump file are wrapped/unwrapped
- *format* values = format of dump file, must be last keyword if used
- *native* = native LAMMPS dump file
- *xyz* = XYZ file
- *molfile* style path = VMD molfile plugin interface
- style = *dcd* or *xyz* or others supported by molfile plugins
- path = optional path for location of molfile plugins
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- read_dump dump.file 5000 x y z
- read_dump dump.xyz 5 x y z box no format xyz
- read_dump dump.xyz 10 x y z box no format molfile xyz "../plugins"
- read_dump dump.dcd 0 x y z box yes format molfile dcd
- read_dump dump.file 1000 x y z vx vy vz box yes format molfile lammpstrj /usr/local/lib/vmd/plugins/LINUXAMD64/plugins/molfile
- read_dump dump.file 5000 x y vx vy trim yes
- read_dump ../run7/dump.file.gz 10000 x y z box yes
- read_dump dump.xyz 10 x y z box no format molfile xyz ../plugins
- read_dump dump.dcd 0 x y z format molfile dcd
- read_dump dump.file 1000 x y z vx vy vz format molfile lammpstrj /usr/local/lib/vmd/plugins/LINUXAMD64/plugins/molfile
-
-Description
-"""""""""""
-
-Read atom information from a dump file to overwrite the current atom
-coordinates, and optionally the atom velocities and image flags and
-the simluation box dimensions. This is useful for restarting a run
-from a particular snapshot in a dump file. See the
-:doc:`read_restart <read_restart>` and :doc:`read_data <read_data>`
-commands for alternative methods to do this. Also see the
-:doc:`rerun <rerun>` command for a means of reading multiple snapshots
-from a dump file.
-
-Note that a simulation box must already be defined before using the
-read_dump command. This can be done by the
-:doc:`create_box <create_box>`, :doc:`read_data <read_data>`, or
-:doc:`read_restart <read_restart>` commands. The read_dump command can
-reset the simulation box dimensions, as explained below.
-
-Also note that reading per-atom information from a dump snapshot is
-limited to the atom coordinates, velocities and image flags, as
-explained below. Other atom properties, which may be necessary to run
-a valid simulation, such as atom charge, or bond topology information
-for a molecular system, are not read from (or even contained in) dump
-files. Thus this auxiliary information should be defined in the usual
-way, e.g. in a data file read in by a :doc:`read_data <read_data>`
-command, before using the read_dump command, or by the :doc:`set <set>`
-command, after the dump snapshot is read.
-
-
-----------
-
-
-If the dump filename specified as *file* ends with ".gz", the dump
-file is read in gzipped format. You cannot (yet) read a dump file
-that was written in binary format with a ".bin" suffix, or to multiple
-files via the "%" option in the dump file name. See the
-:doc:`dump <dump>` command for details.
-
-The format of the dump file is selected through the *format* keyword.
-If specified, it must be the last keyword used, since all remaining
-arguments are passed on to the dump reader. The *native* format is
-for native LAMMPS dump files, written with a :doc:`dump atom <dump>` or
-:doc:`dump custom <dump>` command. The *xyz* format is for generic XYZ
-formatted dump files. These formats take no additional values.
-
-The *molfile* format supports reading data through using the `VMD <vmd>`_
-molfile plugin interface. This dump reader format is only available,
-if the USER-MOLFILE package has been installed when compiling
-LAMMPS.
-
-The *molfile* format takes one or two additional values. The *style*
-value determines the file format to be used and can be any format that
-the molfile plugins support, such as DCD or XYZ. Note that DCD dump
-files can be written by LAMMPS via the :doc:`dump dcd <dump>` command.
-The *path* value specifies a list of directories which LAMMPS will
-search for the molfile plugins appropriate to the specified *style*.
-The syntax of the *path* value is like other search paths: it can
-contain multiple directories separated by a colon (or semi-colon on
-windows). The *path* keyword is optional and defaults to ".",
-i.e. the current directory.
-
-Support for other dump format readers may be added in the future.
-
-
-----------
-
-
-Global information is first read from the dump file, namely timestep
-and box information.
-
-The dump file is scanned for a snapshot with a time stamp that matches
-the specified *Nstep*. This means the LAMMPS timestep the dump file
-snapshot was written on for the *native* format. Note that the *xyz*
-and *molfile* formats do not store the timestep. For these formats,
-timesteps are numbered logically, in a sequential manner, starting
-from 0. Thus to access the 10th snapshot in an *xyz* or *mofile*
-formatted dump file, use *Nstep* = 9.
-
-The dimensions of the simulation box for the selected snapshot are
-also read; see the *box* keyword discussion below. For the *native*
-format, an error is generated if the snapshot is for a triclinic box
-and the current simulation box is orthogonal or vice versa. A warning
-will be generated if the snapshot box boundary conditions (periodic,
-shrink-wrapped, etc) do not match the current simulation boundary
-conditions, but the boundary condition information in the snapshot is
-otherwise ignored. See the "boundary" command for more details.
-
-For the *xyz* format, no information about the box is available, so
-you must set the *box* flag to *no*. See details below.
-
-For the *molfile* format, reading simulation box information is
-typically supported, but the location of the simulation box origin is
-lost and no explicit information about periodicity or
-orthogonal/triclinic box shape is available. The USER-MOLFILE package
-makes a best effort to guess based on heuristics, but this may not
-always work perfectly.
-
-
-----------
-
-
-Per-atom information from the dump file snapshot is then read from the
-dump file snapshot. This corresponds to the specified *fields* listed
-in the read_dump command. It is an error to specify a z-dimension
-field, namely *z*, *vz*, or *iz*, for a 2d simulation.
-
-For dump files in *native* format, each column of per-atom data has a
-text label listed in the file. A matching label for each field must
-appear, e.g. the label "vy" for the field *vy*. For the *x*, *y*, *z*
-fields any of the following labels are considered a match:
-
-.. parsed-literal::
-
- x, xs, xu, xsu for field *x*
- y, ys, yu, ysu for field *y*
- z, zs, zu, zsu for field *z*
-
-The meaning of xs (scaled), xu (unwrapped), and xsu (scaled and
-unwrapped) is explained on the :doc:`dump <dump>` command doc page.
-These labels are searched for in the list of column labels in the dump
-file, in order, until a match is found.
-
-The dump file must also contain atom IDs, with a column label of "id".
-
-If the *add* keyword is specified with a value of *yes*, as discussed
-below, the dump file must contain atom types, with a column label of
-"type".
-
-If a column label you want to read from the dump file is not a match
-to a specified field, the *label* keyword can be used to specify the
-specific column label from the dump file to associate with that field.
-An example is if a time-averaged coordinate is written to the dump
-file via the :doc:`fix ave/atom <fix_ave_atom>` command. The column
-will then have a label corresponding to the fix-ID rather than "x" or
-"xs". The *label* keyword can also be used to specify new column
-labels for fields *id* and *type*.
-
-For dump files in *xyz* format, only the *x*, *y*, and *z* fields are
-supported. The dump file does not store atom IDs, so these are
-assigned consecutively to the atoms as they appear in the dump file,
-starting from 1. Thus you should insure that order of atoms is
-consistent from snapshot to snapshot in the the XYZ dump file. See
-the :doc:`dump_modify sort <dump_modify>` command if the XYZ dump file
-was written by LAMMPS.
-
-For dump files in *molfile* format, the *x*, *y*, *z*, *vx*, *vy*, and
-*vz* fields can be specified. However, not all molfile formats store
-velocities, or their respective plugins may not support reading of
-velocities. The molfile dump files do not store atom IDs, so these
-are assigned consecutively to the atoms as they appear in the dump
-file, starting from 1. Thus you should insure that order of atoms are
-consistent from snapshot to snapshot in the the molfile dump file.
-See the :doc:`dump_modify sort <dump_modify>` command if the dump file
-was written by LAMMPS.
-
-
-----------
-
-
-Information from the dump file snapshot is used to overwrite or
-replace properties of the current system. There are various options
-for how this is done, determined by the specified fields and optional
-keywords.
-
-The timestep of the snapshot becomes the current timestep for the
-simulation. See the :doc:`reset_timestep <reset_timestep>` command if
-you wish to change this after the dump snapshot is read.
-
-If the *box* keyword is specified with a *yes* value, then the current
-simulation box dimensions are replaced by the dump snapshot box
-dimensions. If the *box* keyword is specified with a *no* value, the
-current simulatoin box is unchanged.
-
-If the *purge* keyword is specified with a *yes* value, then all
-current atoms in the system are deleted before any of the operations
-invoked by the *replace*, *trim*, or *add* keywords take place.
-
-If the *replace* keyword is specified with a *yes* value, then atoms
-with IDs that are in both the current system and the dump snapshot
-have their properties overwritten by field values. If the *replace*
-keyword is specified with a *no* value, atoms with IDs that are in
-both the current system and the dump snapshot are not modified.
-
-If the *trim* keyword is specified with a *yes* value, then atoms with
-IDs that are in the current system but not in the dump snapshot are
-deleted. These atoms are unaffected if the *trim* keyword is
-specified with a *no* value.
-
-If the *add* keyword is specified with a *yes* value, then atoms with
-IDs that are in the dump snapshot, but not in the current system are
-added to the system. These dump atoms are ignored if the *add*
-keyword is specified with a *no* value.
-
-Note that atoms added via the *add* keyword will have only the
-attributes read from the dump file due to the *field* arguments. If
-*x* or *y* or *z* is not specified as a field, a value of 0.0 is used
-for added atoms. Added atoms must have an atom type, so this value
-must appear in the dump file.
-
-Any other attributes (e.g. charge or particle diameter for spherical
-particles) will be set to default values, the same as if the
-:doc:`create_atoms <create_atoms>` command were used.
-
-Note that atom IDs are not preserved for new dump snapshot atoms added
-via the *add* keyword. The procedure for assigning new atom IDS to
-added atoms is the same as is described for the
-:doc:`create_atoms <create_atoms>` command.
-
-
-----------
-
-
-Atom coordinates read from the dump file are first converted into
-unscaled coordinates, relative to the box dimensions of the snapshot.
-These coordinates are then be assigned to an existing or new atom in
-the current simulation. The coordinates will then be remapped to the
-simulation box, whether it is the original box or the dump snapshot
-box. If periodic boundary conditions apply, this means the atom will
-be remapped back into the simulation box if necessary. If shrink-wrap
-boundary conditions apply, the new coordinates may change the
-simulation box dimensions. If fixed boundary conditions apply, the
-atom will be lost if it is outside the simulation box.
-
-For *native* format dump files, the 3 xyz image flags for an atom in
-the dump file are set to the corresponding values appearing in the
-dump file if the *ix*, *iy*, *iz* fields are specified. If not
-specified, the image flags for replaced atoms are not changed and
-image flags for new atoms are set to default values. If coordinates
-read from the dump file are in unwrapped format (e.g. *xu*) then the
-image flags for read-in atoms are also set to default values. The
-remapping procedure described in the previous paragraph will then
-change images flags for all atoms (old and new) if periodic boundary
-conditions are applied to remap an atom back into the simulation box.
-
-.. note::
-
- If you get a warning about inconsistent image flags after
- reading in a dump snapshot, it means one or more pairs of bonded atoms
- now have inconsistent image flags. As discussed in :doc:`Section errors <Section_errors>` this may or may not cause problems for
- subsequent simulations, One way this can happen is if you read image
- flag fields from the dump file but do not also use the dump file box
- parameters.
-
-LAMMPS knows how to compute unscaled and remapped coordinates for the
-snapshot column labels discussed above, e.g. *x*, *xs*, *xu*, *xsu*.
-If another column label is assigned to the *x* or *y* or *z* field via
-the *label* keyword, e.g. for coordinates output by the :doc:`fix ave/atom <fix_ave_atom>` command, then LAMMPS needs to know whether
-the coordinate information in the dump file is scaled and/or wrapped.
-This can be set via the *scaled* and *wrapped* keywords. Note that
-the value of the *scaled* and *wrapped* keywords is ignored for fields
-*x* or *y* or *z* if the *label* keyword is not used to assign a
-column label to that field.
-
-The scaled/unscaled and wrapped/unwrapped setting must be identical
-for any of the *x*, *y*, *z* fields that are specified. Thus you
-cannot read *xs* and *yu* from the dump file. Also, if the dump file
-coordinates are scaled and the simulation box is triclinic, then all 3
-of the *x*, *y*, *z* fields must be specified, since they are all
-needed to generate absolute, unscaled coordinates.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To read gzipped dump files, you must compile LAMMPS with the
--DLAMMPS_GZIP option - see the :ref:`Making LAMMPS <start_2>` section of the documentation.
-
-The *molfile* dump file formats are part of the USER-MOLFILE package.
-They are only enabled if LAMMPS was built with that packages. See the
-:ref:`Making LAMMPS <start_3>` section for more info.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`dump molfile <dump_molfile>`,
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`,
-:doc:`rerun <rerun>`
-
-Default
-"""""""
-
-The option defaults are box = yes, replace = yes, purge = no, trim =
-no, add = no, scaled = no, wrapped = yes, and format = native.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/read_restart.txt b/doc/_sources/read_restart.txt
deleted file mode 100644
index 7eb2a4b62..000000000
--- a/doc/_sources/read_restart.txt
+++ /dev/null
@@ -1,258 +0,0 @@
-.. index:: read_restart
-
-read_restart command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- read_restart file flag
-
-* file = name of binary restart file to read in
-* flag = remap (optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- read_restart save.10000
- read_restart save.10000 remap
- read_restart restart.*
- read_restart restart.*.mpiio
- read_restart poly.*.% remap
-
-.. parsed-literal::
-
-
-Description
-"""""""""""
-
-Read in a previously saved system configuration from a restart file.
-This allows continuation of a previous run. Details about what
-information is stored (and not stored) in a restart file is given
-below. Basically this operation will re-create the simulation box
-with all its atoms and their attributes as well as some related global
-settings, at the point in time it was written to the restart file by a
-previous simluation. The simulation box will be partitioned into a
-regular 3d grid of rectangular bricks, one per processor, based on the
-number of processors in the current simulation and the settings of the
-:doc:`processors <processors>` command. The partitioning can later be
-changed by the :doc:`balance <balance>` or :doc:`fix balance <fix_balance>` commands.
-
-.. note::
-
- Normally, restart files are written by the
- :doc:`restart <restart>` or :doc:`write_restart <write_restart>` commands
- so that all atoms in the restart file are inside the simulation box.
- If this is not the case, the read_restart command will print an error
- that atoms were "lost" when the file is read. This error should be
- reported to the LAMMPS developers so the invalid writing of the
- restart file can be fixed. If you still wish to use the restart file,
- the optional *remap* flag can be appended to the read_restart command.
- This should avoid the error, by explicitly remapping each atom back
- into the simulation box, updating image flags for the atom
- appropriately.
-
-Restart files are saved in binary format to enable exact restarts,
-meaning that the trajectories of a restarted run will precisely match
-those produced by the original run had it continued on.
-
-Several things can prevent exact restarts due to round-off effects, in
-which case the trajectories in the 2 runs will slowly diverge. These
-include running on a different number of processors or changing
-certain settings such as those set by the :doc:`newton <newton>` or
-:doc:`processors <processors>` commands. LAMMPS will issue a warning in
-these cases.
-
-Certain fixes will not restart exactly, though they should provide
-statistically similar results. These include :doc:`fix shake <fix_shake>` and :doc:`fix langevin <fix_langevin>`.
-
-Certain pair styles will not restart exactly, though they should
-provide statistically similar results. This is because the forces
-they compute depend on atom velocities, which are used at half-step
-values every timestep when forces are computed. When a run restarts,
-forces are initially evaluated with a full-step velocity, which is
-different than if the run had continued. These pair styles include
-:doc:`granular pair styles <pair_gran>`, :doc:`pair dpd <pair_dpd>`, and
-:doc:`pair lubricate <pair_lubricate>`.
-
-If a restarted run is immediately different than the run which
-produced the restart file, it could be a LAMMPS bug, so consider
-:ref:`reporting it <err_2>` if you think the behavior is
-wrong.
-
-Because restart files are binary, they may not be portable to other
-machines. In this case, you can use the :ref:`-restart command-line switch <start_7>` to convert a restart file to a data
-file.
-
-Similar to how restart files are written (see the
-:doc:`write_restart <write_restart>` and :doc:`restart <restart>`
-commands), the restart filename can contain two wild-card characters.
-If a "*" appears in the filename, the directory is searched for all
-filenames that match the pattern where "*" is replaced with a timestep
-value. The file with the largest timestep value is read in. Thus,
-this effectively means, read the latest restart file. It's useful if
-you want your script to continue a run from where it left off. See
-the :doc:`run <run>` command and its "upto" option for how to specify
-the run command so it doesn't need to be changed either.
-
-If a "%" character appears in the restart filename, LAMMPS expects a
-set of multiple files to exist. The :doc:`restart <restart>` and
-:doc:`write_restart <write_restart>` commands explain how such sets are
-created. Read_restart will first read a filename where "%" is
-replaced by "base". This file tells LAMMPS how many processors
-created the set and how many files are in it. Read_restart then reads
-the additional files. For example, if the restart file was specified
-as save.% when it was written, then read_restart reads the files
-save.base, save.0, save.1, ... save.P-1, where P is the number of
-processors that created the restart file.
-
-Note that P could be the total number of processors in the previous
-simulation, or some subset of those processors, if the *fileper* or
-*nfile* options were used when the restart file was written; see the
-:doc:`restart <restart>` and :doc:`write_restart <write_restart>` commands
-for details. The processors in the current LAMMPS simulation share
-the work of reading these files; each reads a roughly equal subset of
-the files. The number of processors which created the set can be
-different the number of processors in the current LAMMPS simulation.
-This can be a fast mode of input on parallel machines that support
-parallel I/O.
-
-A restart file can also be read in parallel as one large binary file
-via the MPI-IO library, assuming it was also written with MPI-IO.
-MPI-IO is part of the MPI standard for versions 2.0 and above. Using
-MPI-IO requires two steps. First, build LAMMPS with its MPIIO package
-installed, e.g.
-
-.. parsed-literal::
-
- make yes-mpiio # installs the MPIIO package
- make g++ # build LAMMPS for your platform
-
-Second, use a restart filename which contains ".mpiio". Note that it
-does not have to end in ".mpiio", just contain those characters.
-Unlike MPI-IO dump files, a particular restart file must be both
-written and read using MPI-IO.
-
-
-----------
-
-
-Here is the list of information included in a restart file, which
-means these quantities do not need to be re-specified in the input
-script that reads the restart file, though you can redefine many of
-these settings after the restart file is read.
-
-* :doc:`units <units>`
-* :doc:`atom style <atom_style>` and :doc:`atom_modify <atom_modify>` settings id, map, sort
-* :doc:`comm style <comm_style>` and `comm_modify <comm_modify>`_ settings mode, cutoff, vel
-* :doc:`timestep <timestep>`
-* simulation box size and shape and :doc:`boundary <boundary>` settings
-* atom :doc:`group <group>` definitions
-* per-type atom settings such as `mass <mass.thml>`_
-* per-atom attributes including their group assignments and molecular topology attributes (bonds, angles, etc)
-* force field styles (:doc:`pair <pair_style>`, :doc:`bond <bond_style>`, :doc:`angle <angle_style>`, etc)
-* force field coefficients (:doc:`pair <pair_coeff>`, :doc:`bond <bond_coeff>`, :doc:`angle <angle_coeff>`, etc) in some cases (see below)
-* :doc:`pair_modify <pair_modify>` settings, except the compute option
-* :doc:`special_bonds <special_bonds>` settings
-
-Here is a list of information not stored in a restart file, which
-means you must re-issue these commands in your input script, after
-reading the restart file.
-
-* :doc:`fix <fix>` commands (see below)
-* :doc:`compute <compute>` commands (see below)
-* :doc:`variable <variable>` commands
-* :doc:`region <region>` commands
-* :doc:`neighbor list <neighbor>` criteria including :doc:`neigh_modify <neigh_modify>` settings
-* :doc:`kspace_style <kspace_style>` and :doc:`kspace_modify <kspace_modify>` settings
-* info for :doc:`thermodynamic <thermo_style>`, :doc:`dump <dump>`, or :doc:`restart <restart>` output
-
-Note that some force field styles (pair, bond, angle, etc) do not
-store their coefficient info in restart files. Typically these are
-many-body or tabulated potentials which read their parameters from
-separate files. In these cases you will need to re-specify the "pair
-:doc:`pair_coeff <pair_coeff>`, :doc:`bond_coeff <bond_coeff>`, etc
-commands in your restart input script. The doc pages for individual
-force field styles mention if this is the case. This is also true of
-:doc:`pair_style hybrid <pair_hybrid>` (bond hybrid, angle hybrid, etc)
-commands; they do not store coefficient info.
-
-As indicated in the above list, the :doc:`fixes <fix>` used for a
-simulation are not stored in the restart file. This means the new
-input script should specify all fixes it will use. However, note that
-some fixes store an internal "state" which is written to the restart
-file. This allows the fix to continue on with its calculations in a
-restarted simulation. To re-enable such a fix, the fix command in the
-new input script must use the same fix-ID and group-ID as was used in
-the input script that wrote the restart file. If a match is found,
-LAMMPS prints a message indicating that the fix is being re-enabled.
-If no match is found before the first run or minimization is performed
-by the new script, the "state" information for the saved fix is
-discarded. See the doc pages for individual fixes for info on which
-ones can be restarted in this manner.
-
-Likewise, the :doc:`computes <fix>` used for a simulation are not stored
-in the restart file. This means the new input script should specify
-all computes it will use. However, some computes create a fix
-internally to store "state" information that persists from timestep to
-timestep. An example is the :doc:`compute msd <compute_msd>` command
-which uses a fix to store a reference coordinate for each atom, so
-that a displacement can be calculated at any later time. If the
-compute command in the new input script uses the same compute-ID and
-group-ID as was used in the input script that wrote the restart file,
-then it will create the same fix in the restarted run. This means the
-re-created fix will be re-enabled with the stored state information as
-described in the previous paragraph, so that the compute can continue
-its calculations in a consistent manner.
-
-Some pair styles, like the :doc:`granular pair styles <pair_gran>`, also
-use a fix to store "state" information that persists from timestep to
-timestep. In the case of granular potentials, it is contact
-information between pairs of touching particles. This info will also
-be re-enabled in the restart script, assuming you re-use the same
-granular pair style.
-
-LAMMPS allows bond interactions (angle, etc) to be turned off or
-deleted in various ways, which can affect how their info is stored in
-a restart file.
-
-If bonds (angles, etc) have been turned off by the :doc:`fix shake <fix_shake>` or :doc:`delete_bonds <delete_bonds>` command,
-their info will be written to a restart file as if they are turned on.
-This means they will need to be turned off again in a new run after
-the restart file is read.
-
-Bonds that are broken (e.g. by a bond-breaking potential) are written
-to the restart file as broken bonds with a type of 0. Thus these
-bonds will still be broken when the restart file is read.
-
-Bonds that have been broken by the :doc:`fix bond/break <fix_bond_break>` command have disappeared from the
-system. No information about these bonds is written to the restart
-file.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To write and read restart files in parallel with MPI-IO, the MPIIO
-package must be installed.
-
-Related commands
-""""""""""""""""
-
-:doc:`read_data <read_data>`, :doc:`read_dump <read_dump>`,
-:doc:`write_restart <write_restart>`, :doc:`restart <restart>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/region.txt b/doc/_sources/region.txt
deleted file mode 100644
index e15feb5ef..000000000
--- a/doc/_sources/region.txt
+++ /dev/null
@@ -1,367 +0,0 @@
-.. index:: region
-
-region command
-==============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- region ID style args keyword arg ...
-
-* ID = user-assigned name for the region
-* style = *delete* or *block* or *cone* or *cylinder* or *plane* or *prism* or *sphere* or *union* or *intersect*
-.. parsed-literal::
-
- *delete* = no args
- *block* args = xlo xhi ylo yhi zlo zhi
- xlo,xhi,ylo,yhi,zlo,zhi = bounds of block in all dimensions (distance units)
- *cone* args = dim c1 c2 radlo radhi lo hi
- dim = *x* or *y* or *z* = axis of cone
- c1,c2 = coords of cone axis in other 2 dimensions (distance units)
- radlo,radhi = cone radii at lo and hi end (distance units)
- lo,hi = bounds of cone in dim (distance units)
- *cylinder* args = dim c1 c2 radius lo hi
- dim = *x* or *y* or *z* = axis of cylinder
- c1,c2 = coords of cylinder axis in other 2 dimensions (distance units)
- radius = cylinder radius (distance units)
- radius can be a variable (see below)
- lo,hi = bounds of cylinder in dim (distance units)
- *plane* args = px py pz nx ny nz
- px,py,pz = point on the plane (distance units)
- nx,ny,nz = direction normal to plane (distance units)
- *prism* args = xlo xhi ylo yhi zlo zhi xy xz yz
- xlo,xhi,ylo,yhi,zlo,zhi = bounds of untilted prism (distance units)
- xy = distance to tilt y in x direction (distance units)
- xz = distance to tilt z in x direction (distance units)
- yz = distance to tilt z in y direction (distance units)
- *sphere* args = x y z radius
- x,y,z = center of sphere (distance units)
- radius = radius of sphere (distance units)
- radius can be a variable (see below)
- *union* args = N reg-ID1 reg-ID2 ...
- N = # of regions to follow, must be 2 or greater
- reg-ID1,reg-ID2, ... = IDs of regions to join together
- *intersect* args = N reg-ID1 reg-ID2 ...
- N = # of regions to follow, must be 2 or greater
- reg-ID1,reg-ID2, ... = IDs of regions to intersect
-
-* zero or more keyword/arg pairs may be appended
-* keyword = *side* or *units* or *move* or *rotate*
-.. parsed-literal::
-
- *side* value = *in* or *out*
- *in* = the region is inside the specified geometry
- *out* = the region is outside the specified geometry
- *units* value = *lattice* or *box*
- *lattice* = the geometry is defined in lattice units
- *box* = the geometry is defined in simulation box units
- *move* args = v_x v_y v_z
- v_x,v_y,v_z = equal-style variables for x,y,z displacement of region over time
- *rotate* args = v_theta Px Py Pz Rx Ry Rz
- v_theta = equal-style variable for rotaton of region over time (in radians)
- Px,Py,Pz = origin for axis of rotation (distance units)
- Rx,Ry,Rz = axis of rotation vector
-
-* accelerated styles (with same args) = *block/kk*
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- region 1 block -3.0 5.0 INF 10.0 INF INF
- region 2 sphere 0.0 0.0 0.0 5 side out
- region void cylinder y 2 3 5 -5.0 EDGE units box
- region 1 prism 0 10 0 10 0 10 2 0 0
- region outside union 4 side1 side2 side3 side4
- region 2 sphere 0.0 0.0 0.0 5 side out move v_left v_up NULL
-
-Description
-"""""""""""
-
-This command defines a geometric region of space. Various other
-commands use regions. For example, the region can be filled with
-atoms via the :doc:`create_atoms <create_atoms>` command. Or a bounding
-box around the region, can be used to define the simulation box via
-the :doc:`create_box <create_box>` command. Or the atoms in the region
-can be identified as a group via the :doc:`group <group>` command, or
-deleted via the :doc:`delete_atoms <delete_atoms>` command. Or the
-surface of the region can be used as a boundary wall via the :doc:`fix wall/region <fix_wall_region>` command.
-
-Commands which use regions typically test whether an atom's position
-is contained in the region or not. For this purpose, coordinates
-exactly on the region boundary are considered to be interior to the
-region. This means, for example, for a spherical region, an atom on
-the sphere surface would be part of the region if the sphere were
-defined with the *side in* keyword, but would not be part of the
-region if it were defined using the *side out* keyword. See more
-details on the *side* keyword below.
-
-Normally, regions in LAMMPS are "static", meaning their geometric
-extent does not change with time. If the *move* or *rotate* keyword
-is used, as described below, the region becomes "dynamic", meaning
-it's location or orientation changes with time. This may be useful,
-for example, when thermostatting a region, via the compute temp/region
-command, or when the fix wall/region command uses a region surface as
-a bounding wall on particle motion, i.e. a rotating container.
-
-The *delete* style removes the named region. Since there is little
-overhead to defining extra regions, there is normally no need to do
-this, unless you are defining and discarding large numbers of regions
-in your input script.
-
-The lo/hi values for *block* or *cone* or *cylinder* or *prism* styles
-can be specified as EDGE or INF. EDGE means they extend all the way
-to the global simulation box boundary. Note that this is the current
-box boundary; if the box changes size during a simulation, the region
-does not. INF means a large negative or positive number (1.0e20), so
-it should encompass the simulation box even if it changes size. If a
-region is defined before the simulation box has been created (via
-:doc:`create_box <create_box>` or :doc:`read_data <read_data>` or
-:doc:`read_restart <read_restart>` commands), then an EDGE or INF
-parameter cannot be used. For a *prism* region, a non-zero tilt
-factor in any pair of dimensions cannot be used if both the lo/hi
-values in either of those dimensions are INF. E.g. if the xy tilt is
-non-zero, then xlo and xhi cannot both be INF, nor can ylo and yhi.
-
-.. note::
-
- Regions in LAMMPS do not get wrapped across periodic boundaries,
- as specified by the :doc:`boundary <boundary>` command. For example, a
- spherical region that is defined so that it overlaps a periodic
- boundary is not treated as 2 half-spheres, one on either side of the
- simulation box.
-
-.. note::
-
- Regions in LAMMPS are always 3d geometric objects, regardless of
- whether the :doc:`dimension <dimension>` of a simulation is 2d or 3d.
- Thus when using regions in a 2d simulation, you should be careful to
- define the region so that its intersection with the 2d x-y plane of
- the simulation has the 2d geometric extent you want.
-
-For style *cone*, an axis-aligned cone is defined which is like a
-*cylinder* except that two different radii (one at each end) can be
-defined. Either of the radii (but not both) can be 0.0.
-
-For style *cone* and *cylinder*, the c1,c2 params are coordinates in
-the 2 other dimensions besides the cylinder axis dimension. For dim =
-x, c1/c2 = y/z; for dim = y, c1/c2 = x/z; for dim = z, c1/c2 = x/y.
-Thus the third example above specifies a cylinder with its axis in the
-y-direction located at x = 2.0 and z = 3.0, with a radius of 5.0, and
-extending in the y-direction from -5.0 to the upper box boundary.
-
-For style *plane*, a plane is defined which contain the point
-(px,py,pz) and has a normal vector (nx,ny,nz). The normal vector does
-not have to be of unit length. The "inside" of the plane is the
-half-space in the direction of the normal vector; see the discussion
-of the *side* option below.
-
-For style *prism*, a parallelepiped is defined (it's too hard to spell
-parallelepiped in an input script!). The parallelepiped has its
-"origin" at (xlo,ylo,zlo) and is defined by 3 edge vectors starting
-from the origin given by A = (xhi-xlo,0,0); B = (xy,yhi-ylo,0); C =
-(xz,yz,zhi-zlo). *Xy,xz,yz* can be 0.0 or positive or negative values
-and are called "tilt factors" because they are the amount of
-displacement applied to faces of an originally orthogonal box to
-transform it into the parallelepiped.
-
-A prism region that will be used with the :doc:`create_box <create_box>`
-command to define a triclinic simulation box must have tilt factors
-(xy,xz,yz) that do not skew the box more than half the distance of
-corresponding the parallel box length. For example, if xlo = 2 and
-xhi = 12, then the x box length is 10 and the xy tilt factor must be
-between -5 and 5. Similarly, both xz and yz must be between
--(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is not a limitation,
-since if the maximum tilt factor is 5 (as in this example), then
-configurations with tilt = ..., -15, -5, 5, 15, 25, ... are all
-geometrically equivalent.
-
-The *radius* value for style *sphere* and *cylinder* can be specified
-as an equal-style :doc:`variable <variable>`. If the value is a
-variable, it should be specified as v_name, where name is the variable
-name. In this case, the variable will be evaluated each timestep, and
-its value used to determine the radius of the region.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. Thus it is easy to specify a time-dependent radius.
-
-See :ref:`Section_howto 12 <howto_12>` of the doc pages
-for a geometric description of triclinic boxes, as defined by LAMMPS,
-and how to transform these parameters to and from other commonly used
-triclinic representations.
-
-The *union* style creates a region consisting of the volume of all the
-listed regions combined. The *intersect* style creates a region
-consisting of the volume that is common to all the listed regions.
-
-.. note::
-
- The *union* and *intersect* regions operate by invoking methods
- from their list of sub-regions. Thus you cannot delete the
- sub-regions after defining the *union* or *intersection* region.
-
-
-----------
-
-
-The *side* keyword determines whether the region is considered to be
-inside or outside of the specified geometry. Using this keyword in
-conjunction with *union* and *intersect* regions, complex geometries
-can be built up. For example, if the interior of two spheres were
-each defined as regions, and a *union* style with *side* = out was
-constructed listing the region-IDs of the 2 spheres, the resulting
-region would be all the volume in the simulation box that was outside
-both of the spheres.
-
-The *units* keyword determines the meaning of the distance units used
-to define the region for any argument above listed as having distance
-units. It also affects the scaling of the velocity vector specfied
-with the *vel* keyword, the amplitude vector specified with the
-*wiggle* keyword, and the rotation point specified with the *rotate*
-keyword, since they each involve a distance metric.
-
-A *box* value selects standard distance units as defined by the
-:doc:`units <units>` command, e.g. Angstroms for units = real or metal.
-A *lattice* value means the distance units are in lattice spacings.
-The :doc:`lattice <lattice>` command must have been previously used to
-define the lattice spacings which are used as follows:
-
-* For style *block*, the lattice spacing in dimension x is applied to
- xlo and xhi, similarly the spacings in dimensions y,z are applied to
- ylo/yhi and zlo/zhi.
-* For style *cone*, the lattice spacing in argument *dim* is applied to
- lo and hi. The spacings in the two radial dimensions are applied to
- c1 and c2. The two cone radii are scaled by the lattice
- spacing in the dimension corresponding to c1.
-* For style *cylinder*, the lattice spacing in argument *dim* is applied
- to lo and hi. The spacings in the two radial dimensions are applied
- to c1 and c2. The cylinder radius is scaled by the lattice
- spacing in the dimension corresponding to c1.
-* For style *plane*, the lattice spacing in dimension x is applied to
- px and nx, similarly the spacings in dimensions y,z are applied to
- py/ny and pz/nz.
-* For style *prism*, the lattice spacing in dimension x is applied to
- xlo and xhi, similarly for ylo/yhi and zlo/zhi. The lattice spacing
- in dimension x is applied to xy and xz, and the spacing in dimension y
- to yz.
-* For style *sphere*, the lattice spacing in dimensions x,y,z are
- applied to the sphere center x,y,z. The spacing in dimension x is
- applied to the sphere radius.
-
-----------
-
-
-If the *move* or *rotate* keywords are used, the region is "dynamic",
-meaning its location or orientation changes with time. These keywords
-cannot be used with a *union* or *intersect* style region. Instead,
-the keywords should be used to make the individual sub-regions of the
-*union* or *intersect* region dynamic. Normally, each sub-region
-should be "dynamic" in the same manner (e.g. rotate around the same
-point), though this is not a requirement.
-
-The *move* keyword allows one or more :doc:`equal-style variables <variable>` to be used to specify the x,y,z displacement
-of the region, typically as a function of time. A variable is
-specified as v_name, where name is the variable name. Any of the
-three variables can be specified as NULL, in which case no
-displacement is calculated in that dimension.
-
-Note that equal-style variables can specify formulas with various
-mathematical functions, and include :doc:`thermo_style <thermo_style>`
-command keywords for the simulation box parameters and timestep and
-elapsed time. Thus it is easy to specify a region displacement that
-change as a function of time or spans consecutive runs in a continuous
-fashion. For the latter, see the *start* and *stop* keywords of the
-:doc:`run <run>` command and the *elaplong* keyword of :doc:`thermo_style custom <thermo_style>` for details.
-
-For example, these commands would displace a region from its initial
-position, in the positive x direction, effectively at a constant
-velocity:
-
-.. parsed-literal::
-
- variable dx equal ramp(0,10)
- region 2 sphere 10.0 10.0 0.0 5 move v_dx NULL NULL
-
-Note that the initial displacemet is 0.0, though that is not required.
-
-Either of these varaibles would "wiggle" the region back and forth in
-the y direction:
-
-.. parsed-literal::
-
- variable dy equal swiggle(0,5,100)
- variable dysame equal 5*sin(2*PI*elaplong*dt/100)
- region 2 sphere 10.0 10.0 0.0 5 move NULL v_dy NULL
-
-The *rotate* keyword rotates the region around a rotation axis *R* =
-(Rx,Ry,Rz) that goes thru a point *P* = (Px,Py,Pz). The rotation
-angle is calculated, presumably as a function of time, by a variable
-specified as v_theta, where theta is the variable name. The variable
-should generate its result in radians. The direction of rotation for
-the region around the rotation axis is consistent with the right-hand
-rule: if your right-hand thumb points along *R*, then your fingers
-wrap around the axis in the direction of rotation.
-
-The *move* and *rotate* keywords can be used together. In this case,
-the displacement specified by the *move* keyword is applied to the *P*
-point of the *rotate* keyword.
-
-
-----------
-
-
-Styles with a *kk* suffix are functionally the same as the
-corresponding style without the suffix. They have been optimized to
-run faster, depending on your available hardware, as discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual. The
-accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-The code using the region (such as a fix or compute) must also be supported
-by Kokkos or no acceleration will occur. Currently, only *block* style
-regions are supported by Kokkos.
-
-These accelerated styles are part of the Kokkos package. They are
-only enabled if LAMMPS was built with that package. See the :ref:`Making LAMMPS <start_3>` section for more info.
-
-You can specify the accelerated styles explicitly in your input script
-by including their suffix, or you can use the :ref:`-suffix command-line switch <start_7>` when you invoke LAMMPS, or you can
-use the :doc:`suffix <suffix>` command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-A prism cannot be of 0.0 thickness in any dimension; use a small z
-thickness for 2d simulations. For 2d simulations, the xz and yz
-parameters must be 0.0.
-
-Related commands
-""""""""""""""""
-
-:doc:`lattice <lattice>`, :doc:`create_atoms <create_atoms>`,
-:doc:`delete_atoms <delete_atoms>`, :doc:`group <group>`
-
-Default
-"""""""
-
-The option defaults are side = in, units = lattice, and no move or
-rotation.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/replicate.txt b/doc/_sources/replicate.txt
deleted file mode 100644
index 3b30078e9..000000000
--- a/doc/_sources/replicate.txt
+++ /dev/null
@@ -1,104 +0,0 @@
-.. index:: replicate
-
-replicate command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- replicate nx ny nz
-
-* nx,ny,nz = replication factors in each dimension
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- replicate 2 3 2
-
-Description
-"""""""""""
-
-Replicate the current simulation one or more times in each dimension.
-For example, replication factors of 2,2,2 will create a simulation
-with 8x as many atoms by doubling the simulation domain in each
-dimension. A replication factor of 1 in a dimension leaves the
-simulation domain unchanged. When the new simulation box is created
-it is also partitioned into a regular 3d grid of rectangular bricks,
-one per processor, based on the number of processors being used and
-the settings of the :doc:`processors <processors>` command. The
-partitioning can later be changed by the :doc:`balance <balance>` or
-:doc:`fix balance <fix_balance>` commands.
-
-All properties of the atoms are replicated, including their
-velocities, which may or may not be desirable. New atom IDs are
-assigned to new atoms, as are molecule IDs. Bonds and other topology
-interactions are created between pairs of new atoms as well as between
-old and new atoms. This is done by using the image flag for each atom
-to "unwrap" it out of the periodic box before replicating it.
-
-This means that any molecular bond you specify in the original data
-file that crosses a periodic boundary should be between two atoms with
-image flags that differ by 1. This will allow the bond to be
-unwrapped appropriately.
-
-Restrictions
-""""""""""""
-
-
-A 2d simulation cannot be replicated in the z dimension.
-
-If a simulation is non-periodic in a dimension, care should be used
-when replicating it in that dimension, as it may put atoms nearly on
-top of each other.
-
-.. note::
-
- You cannot use the replicate command on a system which has a
- molecule that spans the box and is bonded to itself across a periodic
- boundary, so that the molecule is efffectively a loop. A simple
- example would be a linear polymer chain that spans the simulation box
- and bonds back to itself across the periodic boundary. More realistic
- examples would be a CNT (meant to be an infinitely long CNT) or a
- graphene sheet or a bulk periodic crystal where there are explicit
- bonds specified between near neighbors. (Note that this only applies
- to systems that have permanent bonds as specified in the data file. A
- CNT that is just atoms modeled with the :doc:`AIREBO potential <pair_airebo>` has no such permanent bonds, so it can be
- replicated.) The reason replication does not work with those systems
- is that the image flag settings described above cannot be made
- consistent. I.e. it is not possible to define images flags so that
- when every pair of bonded atoms is unwrapped (using the image flags),
- they will be close to each other. The only way the replicate command
- could work in this scenario is for it to break a bond, insert more
- atoms, and re-connect the loop for the larger simulation box. But it
- is not clever enough to do this. So you will have to construct a
- larger version of your molecule as a pre-processing step and input a
- new data file to LAMMPS.
-
-If the current simulation was read in from a restart file (before a
-run is performed), there can have been no fix information stored in
-the file for individual atoms. Similarly, no fixes can be defined at
-the time the replicate command is used that require vectors of atom
-information to be stored. This is because the replicate command does
-not know how to replicate that information for new atoms it creates.
-
-Replicating a system that has rigid bodies (defined via the :doc:`fix rigid <fix_rigid>` command), either currently defined or that
-created the restart file which was read in before replicating, can
-cause problems if there is a bond between a pair of rigid bodies that
-straddle a periodic boundary. This is because the periodic image
-information for particles in the rigid bodies are set differently than
-for a non-rigid system and can result in a new bond being created that
-spans the periodic box. Thus you cannot use the replicate command in
-this scenario.
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/rerun.txt b/doc/_sources/rerun.txt
deleted file mode 100644
index 3b4e7e3db..000000000
--- a/doc/_sources/rerun.txt
+++ /dev/null
@@ -1,212 +0,0 @@
-.. index:: rerun
-
-rerun command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- rerun file1 file2 ... keyword args ...
-
-* file1,file2,... = dump file(s) to read
-* one or more keywords may be appended, keyword *dump* must appear and be last
-.. parsed-literal::
-
- keyword = *first* or *last* or *every* or *skip* or *start* or *stop* or *dump*
- *first* args = Nfirts
- Nfirst = dump timestep to start on
- *last* args = Nlast
- Nlast = dumptimestep to stop on
- *every* args = Nevery
- Nevery = read snapshots matching every this many timesteps
- *skip* args = Nskip
- Nskip = read one out of every Nskip snapshots
- *start* args = Nstart
- Nstart = timestep on which pseudo run will start
- *stop* args = Nstop
- Nstop = timestep to which pseudo run will end
- *dump* args = same as :doc:`read_dump <read_dump>` command starting with its field arguments
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- rerun dump.file dump x y z vx vy vz
- rerun dump1.txt dump2.txt first 10000 every 1000 dump x y z
- rerun dump.vels dump x y z vx vy vz box yes format molfile lammpstrj
- rerun dump.dcd dump x y z box no format molfile dcd
- rerun ../run7/dump.file.gz skip 2 dump x y z box yes
-
-Description
-"""""""""""
-
-Perform a psuedo simulation run where atom information is read one
-snapshot at a time from a dump file(s), and energies and forces are
-computed on the shapshot to produce thermodynamic or other output.
-
-This can be useful in the following kinds of scenarios, after an
-initial simulation produced the dump file:
-
-* Compute the energy and forces of snaphots using a different potential.
-* Calculate one or more diagnostic quantities on the snapshots that
- weren't computed in the initial run. These can also be computed with
- settings not used in the initial run, e.g. computing an RDF via the
- :doc:`compute rdf <compute.rdf>` command with a longer cutoff than was
- used initially.
-* Calculate the portion of per-atom forces resulting from a subset of
- the potential. E.g. compute only Coulombic forces. This can be done
- by only defining only a Coulombic pair style in the rerun script.
- Doing this in the original script would result in different (bad)
- dynamics.
-Conceptually, using the rerun command is like running an input script
-that has a loop in it (see the :doc:`next <next>` and :doc:`jump <jump>`
-commands). Each iteration of the loop reads one snapshot from the
-dump file via the :doc:`read_dump <read_dump>` command, sets the
-timestep to the appropriate value, and then invokes a :doc:`run <run>`
-command for zero timesteps to simply compute energy and forces, and
-any other :doc:`thermodynamic output <thermo_style>` or diagnostic info
-you have defined. This computation also invokes any fixes you have
-defined that apply constraints to the system, such as :doc:`fix shake <fix_shake>` or :doc:`fix indent <fix_indent>`.
-
-Note that a simulation box must already be defined before using the
-rerun command. This can be done by the :doc:`create_box <create_box>`,
-:doc:`read_data <read_data>`, or :doc:`read_restart <read_restart>`
-commands.
-
-Also note that reading per-atom information from dump snapshots is
-limited to the atom coordinates, velocities and image flags as
-explained in the :doc:`read_dump <read_dump>` command. Other atom
-properties, which may be necessary to compute energies and forces,
-such as atom charge, or bond topology information for a molecular
-system, are not read from (or even contained in) dump files. Thus
-this auxiliary information should be defined in the usual way, e.g. in
-a data file read in by a :doc:`read_data <read_data>` command, before
-using the rerun command.
-
-
-----------
-
-
-If more than one dump file is specified, the dump files are read one
-after the other. It is assumed that snapshot timesteps will be in
-ascending order. If a snapshot is encountered that is not in
-ascending order, it will cause the rerun command to complete.
-
-The *first*, *last*, *every*, *skip* keywords determine which
-snapshots are read from the dump file(s). Snapshots are skipped until
-they have a timestamp >= *Nfirst*. When a snapshot with a timestamp >
-*Nlast* is encountered, the rerun command finishes. Note below that
-the defaults for *first* and *last* are to read all snapshots. If the
-*every* keyword is set to a value > 0, then only snapshots with
-timestamps that are a multiple of *Nevery* are read (the first
-snapshot is always read). If *Nevery* = 0, then this criterion is
-ignored, i.e. every snapshot is read that meets the other criteria.
-If the *skip* keyword is used, then after the first snapshot is read,
-every Nth snapshot is read, where N = *Nskip*. E.g. if *Nskip* = 3,
-then only 1 out of every 3 snapshots is read, assuming the snapshot
-timestamp is also consistent with the other criteria.
-
-The *start* and *stop* keywords do not affect which snapshots are read
-from the dump file(s). Rather, they have the same meaning that they
-do for the :doc:`run <run>` command. They only need to be defined if
-(a) you are using a :doc:`fix <fix>` command that changes some value
-over time, and (b) you want the reference point for elapsed time (from
-start to stop) to be different than the *first* and *last* settings.
-See the doc page for individual fixes to see which ones can be used
-with the *start/stop* keywords. Note that if you define neither of
-the *start*/*stop* or *first*/*last* keywords, then LAMMPS treats the
-pseudo run as going from 0 to a huge value (effectively infinity).
-This means that any quantity that a fix scales as a fraction of
-elapsed time in the run, will essentially remain at its intiial value.
-Also note that an error will occur if you read a snapshot from the
-dump file with a timestep value larger than the *stop* setting you
-have specified.
-
-The *dump* keyword is required and must be the last keyword specified.
-Its arguments are passed internally to the :doc:`read_dump <read_dump>`
-command. The first argument following the *dump* keyword should be
-the *field1* argument of the :doc:`read_dump <read_dump>` command. See
-the :doc:`read_dump <read_dump>` doc page for details on the various
-options it allows for extracting information from the dump file
-snapshots, and for using that information to alter the LAMMPS
-simulation.
-
-
-----------
-
-
-In general, a LAMMPS input script that uses a rerun command can
-include and perform all the usual operations of an input script that
-uses the :doc:`run <run>` command. There are a few exceptions and
-points to consider, as discussed here.
-
-Fixes that perform time integration, such as :doc:`fix nve <fix_nve>` or
-:doc:`fix npt <fix_nh>` are not invoked, since no time integration is
-performed. Fixes that perturb or constrain the forces on atoms will
-be invoked, just as they would during a normal run. Examples are :doc:`fix indent <fix_indent>` and :doc:`fix langevin <fix_langevin>`. So you
-should think carefully as to whether that makes sense for the manner
-in which you are reprocessing the dump snapshots.
-
-If you only want the rerun script to perform analyses that do not
-involve pair interactions, such as use compute msd to calculated
-displacements over time, you do not need to define a :doc:`pair style <pair_style>`, which may also mean neighbor lists will not
-need to be calculated which saves time. The :doc:`comm_modify cutoff <comm_modify>` command can also be used to insure ghost
-atoms are acquired from far enough away for operations like bond and
-angle evaluations, if no pair style is being used.
-
-Every time a snapshot is read, the timestep for the simulation is
-reset, as if the :doc:`reset_timestep <reset_timestep>` command were
-used. This command has some restrictions as to what fixes can be
-defined. See its doc page for details. For example, the :doc:`fix deposit <fix_deposit>` and :doc:`fix dt/reset <fix_dt_reset>` fixes
-are in this category. They also make no sense to use with a rerun
-command.
-
-If time-averaging fixes like :doc:`fix ave/time <fix_ave_time>` are
-used, they are invoked on timesteps that are a function of their
-*Nevery*, *Nrepeat*, and *Nfreq* settings. As an example, see the
-:doc:`fix ave/time <fix_ave_time>` doc page for details. You must
-insure those settings are consistent with the snapshot timestamps that
-are read from the dump file(s). If an averaging fix is not invoked on
-a timestep it expects to be, LAMMPS will flag an error.
-
-The various forms of LAMMPS output, as defined by the
-:doc:`thermo_style <thermo_style>`, :doc:`thermo <thermo>`,
-:doc:`dump <dump>`, and :doc:`restart <restart>` commands occur on
-specific timesteps. If successvive dump snapshots skip those
-timesteps, then no output will be produced. E.g. if you request
-thermodynamic output every 100 steps, but the dump file snapshots are
-every 1000 steps, then you will only see thermodynamic output every
-1000 steps.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To read gzipped dump files, you must compile LAMMPS with the
--DLAMMPS_GZIP option - see the :ref:`Making LAMMPS <start_2>` section of the documentation.
-
-Related commands
-""""""""""""""""
-
-:doc:`read_dump <read_dump>`
-
-Default
-"""""""
-
-The option defaults are first = 0, last = a huge value (effectively
-infinity), start = same as first, stop = same as last, every = 0, skip
-= 1;
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/reset_timestep.txt b/doc/_sources/reset_timestep.txt
deleted file mode 100644
index e52739884..000000000
--- a/doc/_sources/reset_timestep.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-.. index:: reset_timestep
-
-reset_timestep command
-======================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- reset_timestep N
-
-* N = timestep number
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- reset_timestep 0
- reset_timestep 4000000
-
-Description
-"""""""""""
-
-Set the timestep counter to the specified value. This command
-normally comes after the timestep has been set by reading a restart
-file via the :doc:`read_restart <read_restart>` command, or a previous
-simulation advanced the timestep.
-
-The :doc:`read_data <read_data>` and :doc:`create_box <create_box>`
-commands set the timestep to 0; the :doc:`read_restart <read_restart>`
-command sets the timestep to the value it had when the restart file
-was written.
-
-Restrictions
-""""""""""""
- none
-
-This command cannot be used when any fixes are defined that keep track
-of elapsed time to perform certain kinds of time-dependent operations.
-Examples are the :doc:`fix deposit <fix_deposit>` and :doc:`fix dt/reset <fix_dt_reset>` commands. The former adds atoms on
-specific timesteps. The latter keeps track of accumulated time.
-
-Various fixes use the current timestep to calculate related
-quantities. If the timestep is reset, this may produce unexpected
-behavior, but LAMMPS allows the fixes to be defined even if the
-timestep is reset. For example, commands which thermostat the system,
-e.g. :doc:`fix nvt <fix_nh>`, allow you to specify a target temperature
-which ramps from Tstart to Tstop which may persist over several runs.
-If you change the timestep, you may induce an instantaneous change in
-the target temperature.
-
-Resetting the timestep clears flags for :doc:`computes <compute>` that
-may have calculated some quantity from a previous run. This means
-these quantity cannot be accessed by a variable in between runs until
-a new run is performed. See the :doc:`variable <variable>` command for
-more details.
-
-Related commands
-""""""""""""""""
-
-:doc:`rerun <rerun>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/restart.txt b/doc/_sources/restart.txt
deleted file mode 100644
index 1437db889..000000000
--- a/doc/_sources/restart.txt
+++ /dev/null
@@ -1,199 +0,0 @@
-.. index:: restart
-
-restart command
-===============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- restart 0
- restart N root keyword value ...
- restart N file1 file2 keyword value ...
-
-* N = write a restart file every this many timesteps
-* N can be a variable (see below)
-* root = filename to which timestep # is appended
-* file1,file2 = two full filenames, toggle between them when writing file
-* zero or more keyword/value pairs may be appended
-* keyword = *fileper* or *nfile*
-.. parsed-literal::
-
- *fileper* arg = Np
- Np = write one file for every this many processors
- *nfile* arg = Nf
- Nf = write this many files, one from each of Nf processors
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- restart 0
- restart 1000 poly.restart
- restart 1000 poly.restart.mpiio
- restart 1000 restart.*.equil
- restart 10000 poly.%.1 poly.%.2 nfile 10
- restart v_mystep poly.restart
-
-Description
-"""""""""""
-
-Write out a binary restart file with the current state of the
-simulation every so many timesteps, in either or both of two modes, as
-a run proceeds. A value of 0 means do not write out any restart
-files. The two modes are as follows. If one filename is specified, a
-series of filenames will be created which include the timestep in the
-filename. If two filenames are specified, only 2 restart files will
-be created, with those names. LAMMPS will toggle between the 2 names
-as it writes successive restart files.
-
-Note that you can specify the restart command twice, once with a
-single filename and once with two filenames. This would allow you,
-for example, to write out archival restart files every 100000 steps
-using a single filenname, and more frequent temporary restart files
-every 1000 steps, using two filenames. Using restart 0 will turn off
-both modes of output.
-
-Similar to :doc:`dump <dump>` files, the restart filename(s) can contain
-two wild-card characters.
-
-If a "*" appears in the single filename, it is replaced with the
-current timestep value. This is only recognized when a single
-filename is used (not when toggling back and forth). Thus, the 3rd
-example above creates restart files as follows: restart.1000.equil,
-restart.2000.equil, etc. If a single filename is used with no "*",
-then the timestep value is appended. E.g. the 2nd example above
-creates restart files as follows: poly.restart.1000,
-poly.restart.2000, etc.
-
-If a "%" character appears in the restart filename(s), then one file
-is written for each processor and the "%" character is replaced with
-the processor ID from 0 to P-1. An additional file with the "%"
-replaced by "base" is also written, which contains global information.
-For example, the files written on step 1000 for filename restart.%
-would be restart.base.1000, restart.0.1000, restart.1.1000, ...,
-restart.P-1.1000. This creates smaller files and can be a fast mode
-of output and subsequent input on parallel machines that support
-parallel I/O. The optional *fileper* and *nfile* keywords discussed
-below can alter the number of files written.
-
-The restart file can also be written in parallel as one large binary
-file via the MPI-IO library, which is part of the MPI standard for
-versions 2.0 and above. Using MPI-IO requires two steps. First,
-build LAMMPS with its MPIIO package installed, e.g.
-
-.. parsed-literal::
-
- make yes-mpiio # installs the MPIIO package
- make g++ # build LAMMPS for your platform
-
-Second, use a restart filename which contains ".mpiio". Note that it
-does not have to end in ".mpiio", just contain those characters.
-Unlike MPI-IO dump files, a particular restart file must be both
-written and read using MPI-IO.
-
-Restart files are written on timesteps that are a multiple of N but
-not on the first timestep of a run or minimization. You can use the
-:doc:`write_restart <write_restart>` command to write a restart file
-before a run begins. A restart file is not written on the last
-timestep of a run unless it is a multiple of N. A restart file is
-written on the last timestep of a minimization if N > 0 and the
-minimization converges.
-
-Instead of a numeric value, N can be specifed as an :doc:`equal-style variable <variable>`, which should be specified as v_name, where
-name is the variable name. In this case, the variable is evaluated at
-the beginning of a run to determine the next timestep at which a
-restart file will be written out. On that timestep, the variable will
-be evaluated again to determine the next timestep, etc. Thus the
-variable should return timestep values. See the stagger() and
-logfreq() and stride() math functions for :doc:`equal-style variables <variable>`, as examples of useful functions to use in
-this context. Other similar math functions could easily be added as
-options for :doc:`equal-style variables <variable>`.
-
-For example, the following commands will write restart files
-every step from 1100 to 1200, and could be useful for debugging
-a simulation where something goes wrong at step 1163:
-
-.. parsed-literal::
-
- variable s equal stride(1100,1200,1)
- restart v_s tmp.restart
-
-
-----------
-
-
-See the :doc:`read_restart <read_restart>` command for information about
-what is stored in a restart file.
-
-Restart files can be read by a :doc:`read_restart <read_restart>`
-command to restart a simulation from a particular state. Because the
-file is binary (to enable exact restarts), it may not be readable on
-another machine. In this case, you can use the :ref:`-r command-line switch <start_7>` to convert a restart file to a data
-file.
-
-.. note::
-
- Although the purpose of restart files is to enable restarting a
- simulation from where it left off, not all information about a
- simulation is stored in the file. For example, the list of fixes that
- were specified during the initial run is not stored, which means the
- new input script must specify any fixes you want to use. Even when
- restart information is stored in the file, as it is for some fixes,
- commands may need to be re-specified in the new input script, in order
- to re-use that information. See the :doc:`read_restart <read_restart>`
- command for information about what is stored in a restart file.
-
-
-----------
-
-
-The optional *nfile* or *fileper* keywords can be used in conjunction
-with the "%" wildcard character in the specified restart file name(s).
-As explained above, the "%" character causes the restart file to be
-written in pieces, one piece for each of P processors. By default P =
-the number of processors the simulation is running on. The *nfile* or
-*fileper* keyword can be used to set P to a smaller value, which can
-be more efficient when running on a large number of processors.
-
-The *nfile* keyword sets P to the specified Nf value. For example, if
-Nf = 4, and the simulation is running on 100 processors, 4 files will
-be written, by processors 0,25,50,75. Each will collect information
-from itself and the next 24 processors and write it to a restart file.
-
-For the *fileper* keyword, the specified value of Np means write one
-file for every Np processors. For example, if Np = 4, every 4th
-processor (0,4,8,12,etc) will collect information from itself and the
-next 3 processors and write it to a restart file.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-To write and read restart files in parallel with MPI-IO, the MPIIO
-package must be installed.
-
-Related commands
-""""""""""""""""
-
-:doc:`write_restart <write_restart>`, :doc:`read_restart <read_restart>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- restart 0
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/run.txt b/doc/_sources/run.txt
deleted file mode 100644
index 73685d14c..000000000
--- a/doc/_sources/run.txt
+++ /dev/null
@@ -1,232 +0,0 @@
-.. index:: run
-
-run command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- run N keyword values ...
-
-* N = # of timesteps
-* zero or more keyword/value pairs may be appended
-* keyword = *upto* or *start* or *stop* or *pre* or *post* or *every*
-.. parsed-literal::
-
- *upto* value = none
- *start* value = N1
- N1 = timestep at which 1st run started
- *stop* value = N2
- N2 = timestep at which last run will end
- *pre* value = *no* or *yes*
- *post* value = *no* or *yes*
- *every* values = M c1 c2 ...
- M = break the run into M-timestep segments and invoke one or more commands between each segment
- c1,c2,...,cN = one or more LAMMPS commands, each enclosed in quotes
- c1 = NULL means no command will be invoked
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- run 10000
- run 1000000 upto
- run 100 start 0 stop 1000
- run 1000 pre no post yes
- run 100000 start 0 stop 1000000 every 1000 "print 'Protein Rg = $r'"
- run 100000 every 1000 NULL
-
-Description
-"""""""""""
-
-Run or continue dynamics for a specified number of timesteps.
-
-When the :doc:`run style <run_style>` is *respa*, N refers to outer
-loop (largest) timesteps.
-
-A value of N = 0 is acceptable; only the thermodynamics of the system
-are computed and printed without taking a timestep.
-
-The *upto* keyword means to perform a run starting at the current
-timestep up to the specified timestep. E.g. if the current timestep
-is 10,000 and "run 100000 upto" is used, then an additional 90,000
-timesteps will be run. This can be useful for very long runs on a
-machine that allocates chunks of time and terminate your job when time
-is exceeded. If you need to restart your script multiple times
-(reading in the last restart file), you can keep restarting your
-script with the same run command until the simulation finally
-completes.
-
-The *start* or *stop* keywords can be used if multiple runs are being
-performed and you want a :doc:`fix <fix>` command that changes some
-value over time (e.g. temperature) to make the change across the
-entire set of runs and not just a single run. See the doc page for
-individual fixes to see which ones can be used with the *start/stop*
-keywords.
-
-For example, consider this fix followed by 10 run commands:
-
-.. parsed-literal::
-
- fix 1 all nvt 200.0 300.0 1.0
- run 1000 start 0 stop 10000
- run 1000 start 0 stop 10000
- ...
- run 1000 start 0 stop 10000
-
-The NVT fix ramps the target temperature from 200.0 to 300.0 during a
-run. If the run commands did not have the start/stop keywords (just
-"run 1000"), then the temperature would ramp from 200.0 to 300.0
-during the 1000 steps of each run. With the start/stop keywords, the
-ramping takes place over the 10000 steps of all runs together.
-
-The *pre* and *post* keywords can be used to streamline the setup,
-clean-up, and associated output to the screen that happens before and
-after a run. This can be useful if you wish to do many short runs in
-succession (e.g. LAMMPS is being called as a library which is doing
-other computations between successive short LAMMPS runs).
-
-By default (pre and post = yes), LAMMPS creates neighbor lists,
-computes forces, and imposes fix constraints before every run. And
-after every run it gathers and prints timings statistics. If a run is
-just a continuation of a previous run (i.e. no settings are changed),
-the initial computation is not necessary; the old neighbor list is
-still valid as are the forces. So if *pre* is specified as "no" then
-the initial setup is skipped, except for printing thermodynamic info.
-Note that if *pre* is set to "no" for the very 1st run LAMMPS
-performs, then it is overridden, since the initial setup computations
-must be done.
-
-.. note::
-
- If your input script changes the system between 2 runs, then the
- initial setup must be performed to insure the change is recognized by
- all parts of the code that are affected. Examples are adding a
- :doc:`fix <fix>` or :doc:`dump <dump>` or :doc:`compute <compute>`, changing
- a :doc:`neighbor <neigh_modify>` list parameter, or writing restart file
- which can migrate atoms between processors. LAMMPS has no easy way to
- check if this has happened, but it is an error to use the *pre no*
- option in this case.
-
-If *post* is specified as "no", the full timing summary is skipped;
-only a one-line summary timing is printed.
-
-The *every* keyword provides a means of breaking a LAMMPS run into a
-series of shorter runs. Optionally, one or more LAMMPS commands (c1,
-c2, ..., cN) will be executed in between the short runs. If used, the
-*every* keyword must be the last keyword, since it has a variable
-number of arguments. Each of the trailing arguments is a single
-LAMMPS command, and each command should be enclosed in quotes, so that
-the entire command will be treated as a single argument. This will
-also prevent any variables in the command from being evaluated until
-it is executed multiple times during the run. Note that if a command
-itself needs one of its arguments quoted (e.g. the :doc:`print <print>`
-command), then you can use a combination of single and double quotes,
-as in the example above or below.
-
-The *every* keyword is a means to avoid listing a long series of runs
-and interleaving commands in your input script. For example, a
-:doc:`print <print>` command could be invoked or a :doc:`fix <fix>` could
-be redefined, e.g. to reset a thermostat temperature. Or this could
-be useful for invoking a command you have added to LAMMPS that wraps
-some other code (e.g. as a library) to perform a computation
-periodically during a long LAMMPS run. See :doc:`this section <Section_modify>` of the documentation for info about how
-to add new commands to LAMMPS. See :ref:`this section <howto_10>` of the documentation for ideas
-about how to couple LAMMPS to other codes.
-
-With the *every* option, N total steps are simulated, in shorter runs
-of M steps each. After each M-length run, the specified commands are
-invoked. If only a single command is specified as NULL, then no
-command is invoked. Thus these lines:
-
-.. parsed-literal::
-
- variable q equal x[100]
- run 6000 every 2000 "print 'Coord = $q'"
-
-are the equivalent of:
-
-.. parsed-literal::
-
- variable q equal x[100]
- run 2000
- print "Coord = $q"
- run 2000
- print "Coord = $q"
- run 2000
- print "Coord = $q"
-
-which does 3 runs of 2000 steps and prints the x-coordinate of a
-particular atom between runs. Note that the variable "$q" will
-be evaluated afresh each time the print command is executed.
-
-Note that by using the line continuation character "&", the run every
-command can be spread across many lines, though it is still a single
-command:
-
-.. parsed-literal::
-
- run 100000 every 1000 &
- "print 'Minimum value = $a'" &
- "print 'Maximum value = $b'" &
- "print 'Temp = $c'" &
- "print 'Press = $d'"
-
-If the *pre* and *post* options are set to "no" when used with the
-*every* keyword, then the 1st run will do the full setup and the last
-run will print the full timing summary, but these operations will be
-skipped for intermediate runs.
-
-.. note::
-
- You might hope to specify a command that exits the run by
- jumping out of the loop, e.g.
-
-.. parsed-literal::
-
- variable t equal temp
- run 10000 every 100 "if '$t < 300.0' then 'jump SELF afterrun'"
-
-Unfortunately this will not currently work. The run command simply
-executes each command one at a time each time it pauses, then
-continues the run. You can replace the jump command with a simple
-:doc:`quit <quit>` command and cause LAMMPS to exit during the
-middle of a run when the condition is met.
-
-Restrictions
-""""""""""""
-
-
-When not using the *upto* keyword, the number of specified timesteps N
-must fit in a signed 32-bit integer, so you are limited to slightly
-more than 2 billion steps (2^31) in a single run. When using *upto*,
-N can be larger than a signed 32-bit integer, however the difference
-between N and the current timestep must still be no larger than
-2^31 steps.
-
-However, with or without the *upto* keyword, you can perform
-successive runs to run a simulation for any number of steps (ok, up to
-2^63 total steps). I.e. the timestep counter within LAMMPS is a
-64-bit signed integer.
-
-Related commands
-""""""""""""""""
-
-:doc:`minimize <minimize>`, :doc:`run_style <run_style>`,
-:doc:`temper <temper>`
-
-Default
-"""""""
-
-The option defaults are start = the current timestep, stop = current
-timestep + N, pre = yes, and post = yes.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/run_style.txt b/doc/_sources/run_style.txt
deleted file mode 100644
index c98db07af..000000000
--- a/doc/_sources/run_style.txt
+++ /dev/null
@@ -1,331 +0,0 @@
-.. index:: run_style
-
-run_style command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- run_style style args
-
-* style = *verlet* or *verlet/split* or *respa* or *respa/omp*
-.. parsed-literal::
-
- *verlet* args = none
- *verlet/split* args = none
- *respa* args = N n1 n2 ... keyword values ...
- N = # of levels of rRESPA
- n1, n2, ... = loop factor between rRESPA levels (N-1 values)
- zero or more keyword/value pairings may be appended to the loop factors
- keyword = *bond* or *angle* or *dihedral* or *improper* or
- *pair* or *inner* or *middle* or *outer* or *hybrid* or *kspace*
- *bond* value = M
- M = which level (1-N) to compute bond forces in
- *angle* value = M
- M = which level (1-N) to compute angle forces in
- *dihedral* value = M
- M = which level (1-N) to compute dihedral forces in
- *improper* value = M
- M = which level (1-N) to compute improper forces in
- *pair* value = M
- M = which level (1-N) to compute pair forces in
- *inner* values = M cut1 cut2
- M = which level (1-N) to compute pair inner forces in
- cut1 = inner cutoff between pair inner and
- pair middle or outer (distance units)
- cut2 = outer cutoff between pair inner and
- pair middle or outer (distance units)
- *middle* values = M cut1 cut2
- M = which level (1-N) to compute pair middle forces in
- cut1 = inner cutoff between pair middle and pair outer (distance units)
- cut2 = outer cutoff between pair middle and pair outer (distance units)
- *outer* value = M
- M = which level (1-N) to compute pair outer forces in
- *hybrid* values = M1 M2 ... (as many values as there are hybrid sub-styles
- M1 = which level (1-N) to compute the first pair_style hybrid sub-style in
- M2 = which level (1-N) to compute the second pair_style hybrid sub-style in
- M3,etc
- *kspace* value = M
- M = which level (1-N) to compute kspace forces in
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- run_style verlet
- run_style respa 4 2 2 2 bond 1 dihedral 2 pair 3 kspace 4
- run_style respa 4 2 2 2 bond 1 dihedral 2 inner 3 5.0 6.0 outer 4 kspace 4
-
-.. parsed-literal::
-
- run_style respa 3 4 2 bond 1 hybrid 2 2 1 kspace 3
-
-Description
-"""""""""""
-
-Choose the style of time integrator used for molecular dynamics
-simulations performed by LAMMPS.
-
-The *verlet* style is a standard velocity-Verlet integrator.
-
-
-----------
-
-
-The *verlet/split* style is also a velocity-Verlet integrator, but it
-splits the force calculation within each timestep over 2 partitions of
-processors. See :ref:`Section_start 6 <start_7>` for an
-explanation of the -partition command-line switch.
-
-Specifically, this style performs all computation except the
-:doc:`kspace_style <kspace_style>` portion of the force field on the 1st
-partition. This include the :doc:`pair style <pair_style>`, :doc:`bond style <bond_style>`, :doc:`neighbor list building <neighbor>`,
-:doc:`fixes <fix>` including time intergration, and output. The
-:doc:`kspace_style <kspace_style>` portion of the calculation is
-performed on the 2nd partition.
-
-This is most useful for the PPPM kspace_style when its performance on
-a large number of processors degrades due to the cost of communication
-in its 3d FFTs. In this scenario, splitting your P total processors
-into 2 subsets of processors, P1 in the 1st partition and P2 in the
-2nd partition, can enable your simulation to run faster. This is
-because the long-range forces in PPPM can be calculated at the same
-time as pair-wise and bonded forces are being calculated, and the FFTs
-can actually speed up when running on fewer processors.
-
-To use this style, you must define 2 partitions where P1 is a multiple
-of P2. Typically having P1 be 3x larger than P2 is a good choice.
-The 3d processor layouts in each partition must overlay in the
-following sense. If P1 is a Px1 by Py1 by Pz1 grid, and P2 = Px2 by
-Py2 by Pz2, then Px1 must be an integer multiple of Px2, and similarly
-for Py1 a multiple of Py2, and Pz1 a multiple of Pz2.
-
-Typically the best way to do this is to let the 1st partition choose
-its onn optimal layout, then require the 2nd partition's layout to
-match the integer multiple constraint. See the
-:doc:`processors <processors>` command with its *part* keyword for a way
-to control this, e.g.
-
-.. parsed-literal::
-
- procssors * * * part 1 2 multiple
-
-You can also use the :doc:`partition <partition>` command to explicitly
-specity the processor layout on each partition. E.g. for 2 partitions
-of 60 and 15 processors each:
-
-.. parsed-literal::
-
- partition yes 1 processors 3 4 5
- partition yes 2 processors 3 1 5
-
-When you run in 2-partition mode with the *verlet/split* style, the
-thermodyanmic data for the entire simulation will be output to the log
-and screen file of the 1st partition, which are log.lammps.0 and
-screen.0 by default; see the "-plog and -pscreen command-line
-switches"Section_start.html#start_7 to change this. The log and
-screen file for the 2nd partition will not contain thermodynamic
-output beyone the 1st timestep of the run.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-performance details of the speed-up offered by the *verlet/split*
-style. One important performance consideration is the assignemnt of
-logical processors in the 2 partitions to the physical cores of a
-parallel machine. The :doc:`processors <processors>` command has
-options to support this, and strategies are discussed in
-:doc:`Section_accelerate <Section_accelerate>` of the manual.
-
-
-----------
-
-
-The *respa* style implements the rRESPA multi-timescale integrator
-:ref:`(Tuckerman) <Tuckerman>` with N hierarchical levels, where level 1 is
-the innermost loop (shortest timestep) and level N is the outermost
-loop (largest timestep). The loop factor arguments specify what the
-looping factor is between levels. N1 specifies the number of
-iterations of level 1 for a single iteration of level 2, N2 is the
-iterations of level 2 per iteration of level 3, etc. N-1 looping
-parameters must be specified.
-
-The :doc:`timestep <timestep>` command sets the timestep for the
-outermost rRESPA level. Thus if the example command above for a
-4-level rRESPA had an outer timestep of 4.0 fmsec, the inner timestep
-would be 8x smaller or 0.5 fmsec. All other LAMMPS commands that
-specify number of timesteps (e.g. :doc:`neigh_modify <neigh_modify>`
-parameters, :doc:`dump <dump>` every N timesteps, etc) refer to the
-outermost timesteps.
-
-The rRESPA keywords enable you to specify at what level of the
-hierarchy various forces will be computed. If not specified, the
-defaults are that bond forces are computed at level 1 (innermost
-loop), angle forces are computed where bond forces are, dihedral
-forces are computed where angle forces are, improper forces are
-computed where dihedral forces are, pair forces are computed at the
-outermost level, and kspace forces are computed where pair forces are.
-The inner, middle, outer forces have no defaults.
-
-The *inner* and *middle* keywords take additional arguments for
-cutoffs that are used by the pairwise force computations. If the 2
-cutoffs for *inner* are 5.0 and 6.0, this means that all pairs up to
-6.0 apart are computed by the inner force. Those between 5.0 and 6.0
-have their force go ramped to 0.0 so the overlap with the next regime
-(middle or outer) is smooth. The next regime (middle or outer) will
-compute forces for all pairs from 5.0 outward, with those from 5.0 to
-6.0 having their value ramped in an inverse manner.
-
-Only some pair potentials support the use of the *inner* and *middle*
-and *outer* keywords. If not, only the *pair* keyword can be used
-with that pair style, meaning all pairwise forces are computed at the
-same rRESPA level. See the doc pages for individual pair styles for
-details.i
-
-Another option for using pair potentials with rRESPA is with the
-*hybrid* keyword, which requires the use of the :doc:`pair_style hybrid or hybrid/overlay <pair_hybrid>` command. In this scenario, different
-sub-styles of the hybrid pair style are evaluated at different rRESPA
-levels. This can be useful, for example, to set different timesteps
-for hybrid coarse-grained/all-atom models. The *hybrid* keyword
-requires as many level assignments as there are hybrid substyles,
-which assigns each sub-style to a rRESPA level, following their order
-of definition in the pair_style command. Since the *hybrid* keyword
-operates on pair style computations, it is mututally exclusive with
-either the *pair* or the *inner*/*middle*/*outer* keywords.
-
-When using rRESPA (or for any MD simulation) care must be taken to
-choose a timestep size(s) that insures the Hamiltonian for the chosen
-ensemble is conserved. For the constant NVE ensemble, total energy
-must be conserved. Unfortunately, it is difficult to know *a priori*
-how well energy will be conserved, and a fairly long test simulation
-(~10 ps) is usually necessary in order to verify that no long-term
-drift in energy occurs with the trial set of parameters.
-
-With that caveat, a few rules-of-thumb may be useful in selecting
-*respa* settings. The following applies mostly to biomolecular
-simulations using the CHARMM or a similar all-atom force field, but
-the concepts are adaptable to other problems. Without SHAKE, bonds
-involving hydrogen atoms exhibit high-frequency vibrations and require
-a timestep on the order of 0.5 fmsec in order to conserve energy. The
-relatively inexpensive force computations for the bonds, angles,
-impropers, and dihedrals can be computed on this innermost 0.5 fmsec
-step. The outermost timestep cannot be greater than 4.0 fmsec without
-risking energy drift. Smooth switching of forces between the levels
-of the rRESPA hierarchy is also necessary to avoid drift, and a 1-2
-angstrom "healing distance" (the distance between the outer and inner
-cutoffs) works reasonably well. We thus recommend the following
-settings for use of the *respa* style without SHAKE in biomolecular
-simulations:
-
-.. parsed-literal::
-
- timestep 4.0
- run_style respa 4 2 2 2 inner 2 4.5 6.0 middle 3 8.0 10.0 outer 4
-
-With these settings, users can expect good energy conservation and
-roughly a 2.5 fold speedup over the *verlet* style with a 0.5 fmsec
-timestep.
-
-If SHAKE is used with the *respa* style, time reversibility is lost,
-but substantially longer time steps can be achieved. For biomolecular
-simulations using the CHARMM or similar all-atom force field, bonds
-involving hydrogen atoms exhibit high frequency vibrations and require
-a time step on the order of 0.5 fmsec in order to conserve energy.
-These high frequency modes also limit the outer time step sizes since
-the modes are coupled. It is therefore desirable to use SHAKE with
-respa in order to freeze out these high frequency motions and increase
-the size of the time steps in the respa hierarchy. The following
-settings can be used for biomolecular simulations with SHAKE and
-rRESPA:
-
-.. parsed-literal::
-
- fix 2 all shake 0.000001 500 0 m 1.0 a 1
- timestep 4.0
- run_style respa 2 2 inner 1 4.0 5.0 outer 2
-
-With these settings, users can expect good energy conservation and
-roughly a 1.5 fold speedup over the *verlet* style with SHAKE and a
-2.0 fmsec timestep.
-
-For non-biomolecular simulations, the *respa* style can be
-advantageous if there is a clear separation of time scales - fast and
-slow modes in the simulation. Even a LJ system can benefit from
-rRESPA if the interactions are divided by the inner, middle and outer
-keywords. A 2-fold or more speedup can be obtained while maintaining
-good energy conservation. In real units, for a pure LJ fluid at
-liquid density, with a sigma of 3.0 angstroms, and epsilon of 0.1
-Kcal/mol, the following settings seem to work well:
-
-.. parsed-literal::
-
- timestep 36.0
- run_style respa 3 3 4 inner 1 3.0 4.0 middle 2 6.0 7.0 outer 3
-
-
-----------
-
-
-The *respa/omp* styles is a variant of *respa* adapted for use with
-pair, bond, angle, dihedral, improper, or kspace styles with an *omp*
-suffix. It is functionally equivalent to *respa* but performs additional
-operations required for managing *omp* styles. For more on *omp* styles
-see the :doc:`Section_accelerate <Section_accelerate>` of the manual.
-Accelerated styles take the same arguments and should produce the same
-results, except for round-off and precision issues.
-
-You can specify *respa/omp* explicitly in your input script, or
-you can use the :ref:`-suffix command-line switch <start_7>`
-when you invoke LAMMPS, or you can use the :doc:`suffix <suffix>`
-command in your input script.
-
-See :doc:`Section_accelerate <Section_accelerate>` of the manual for
-more instructions on how to use the accelerated styles effectively.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-The *verlet/split* style can only be used if LAMMPS was built with the
-REPLICA package. Correspondingly the *respa/omp* style is available only
-if the USER-OMP package was included. See the :ref:`Making LAMMPS <start_3>`
-section for more info on packages.
-
-Whenever using rRESPA, the user should experiment with trade-offs in
-speed and accuracy for their system, and verify that they are
-conserving energy to adequate precision.
-
-Related commands
-""""""""""""""""
-
-:doc:`timestep <timestep>`, :doc:`run <run>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- run_style verlet
-
-
-----------
-
-
-.. _Tuckerman:
-
-
-
-**(Tuckerman)** Tuckerman, Berne and Martyna, J Chem Phys, 97, p 1990
-(1992).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/set.txt b/doc/_sources/set.txt
deleted file mode 100644
index 8b914bbb2..000000000
--- a/doc/_sources/set.txt
+++ /dev/null
@@ -1,425 +0,0 @@
-.. index:: set
-
-set command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- set style ID keyword values ...
-
-* style = *atom* or *type* or *mol* or *group* or *region*
-* ID = atom ID range or type range or mol ID range or group ID or region ID
-* one or more keyword/value pairs may be appended
-* keyword = *type* or *type/fraction* or *mol* or *x* or *y* or *z* or *charge* or *dipole* or *dipole/random* or *quat* or *quat/random* or *diameter* or *shape* or *length* or *tri* or *theta* or *theta/random* or *angmom* or *omega* or *mass* or *density* or *volume* or *image* or *bond* or *angle* or *dihedral* or *improper* or *meso/e* or *meso/cv* or *meso/rho* or *smd/contact/radius* or *smd/mass/density* or *dpd/theta* or *i_name* or *d_name*
-.. parsed-literal::
-
- *type* value = atom type
- value can be an atom-style variable (see below)
- *type/fraction* values = type fraction seed
- type = new atom type
- fraction = fraction of selected atoms to set to new atom type
- seed = random # seed (positive integer)
- *mol* value = molecule ID
- value can be an atom-style variable (see below)
- *x*,*y*,*z* value = atom coordinate (distance units)
- value can be an atom-style variable (see below)
- *charge* value = atomic charge (charge units)
- value can be an atom-style variable (see below)
- *dipole* values = x y z
- x,y,z = orientation of dipole moment vector
- any of x,y,z can be an atom-style variable (see below)
- *dipole/random* value = seed Dlen
- seed = random # seed (positive integer) for dipole moment orientations
- Dlen = magnitude of dipole moment (dipole units)
- *quat* values = a b c theta
- a,b,c = unit vector to rotate particle around via right-hand rule
- theta = rotation angle (degrees)
- any of a,b,c,theta can be an atom-style variable (see below)
- *quat/random* value = seed
- seed = random # seed (positive integer) for quaternion orientations
- *diameter* value = diameter of spherical particle (distance units)
- value can be an atom-style variable (see below)
- *shape* value = Sx Sy Sz
- Sx,Sy,Sz = 3 diameters of ellipsoid (distance units)
- *length* value = len
- len = length of line segment (distance units)
- len can be an atom-style variable (see below)
- *tri* value = side
- side = side length of equilateral triangle (distance units)
- side can be an atom-style variable (see below)
- *theta* value = angle (degrees)
- angle = orientation of line segment with respect to x-axis
- angle can be an atom-style variable (see below)
- *theta/random* value = seed
- seed = random # seed (positive integer) for line segment orienations
- *angmom* values = Lx Ly Lz
- Lx,Ly,Lz = components of angular momentum vector (distance-mass-velocity units)
- any of Lx,Ly,Lz can be an atom-style variable (see below)
- *omega* values = Wx Wy Wz
- Wx,Wy,Wz = components of angular velocity vector (radians/time units)
- any of wx,wy,wz can be an atom-style variable (see below)
- *mass* value = per-atom mass (mass units)
- value can be an atom-style variable (see below)
- *density* value = particle density for sphere or ellipsoid (mass/distance^3 or mass/distance^2 or mass/distance units, depending on dimensionality of particle)
- value can be an atom-style variable (see below)
- *volume* value = particle volume for Peridynamic particle (distance^3 units)
- value can be an atom-style variable (see below)
- *image* nx ny nz
- nx,ny,nz = which periodic image of the simulation box the atom is in
- *bond* value = bond type for all bonds between selected atoms
- *angle* value = angle type for all angles between selected atoms
- *dihedral* value = dihedral type for all dihedrals between selected atoms
- *improper* value = improper type for all impropers between selected atoms
- *meso/e* value = energy of SPH particles (need units)
- value can be an atom-style variable (see below)
- *meso/cv* value = heat capacity of SPH particles (need units)
- value can be an atom-style variable (see below)
- *meso/rho* value = density of SPH particles (need units)
- value can be an atom-style variable (see below)
- *smd/contact/radius* = radius for short range interactions, i.e. contact and friction
- value can be an atom-style variable (see below)
- *smd/mass/density* = set particle mass based on volume by providing a mass density
- value can be an atom-style variable (see below)
- *dpd/theta* value = internal temperature of DPD particles (temperature units)
- *i_name* value = value for custom integer vector with name
- *d_name* value = value for custom floating-point vector with name
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- set group solvent type 2
- set group solvent type/fraction 2 0.5 12393
- set group edge bond 4
- set region half charge 0.5
- set type 3 charge 0.5
- set type 1*3 charge 0.5
- set atom * charge v_atomfile
- set atom 100*200 x 0.5 y 1.0
- set atom 1492 type 3
-
-Description
-"""""""""""
-
-Set one or more properties of one or more atoms. Since atom
-properties are initially assigned by the :doc:`read_data <read_data>`,
-:doc:`read_restart <read_restart>` or :doc:`create_atoms <create_atoms>`
-commands, this command changes those assignments. This can be useful
-for overriding the default values assigned by the
-:doc:`create_atoms <create_atoms>` command (e.g. charge = 0.0). It can
-be useful for altering pairwise and molecular force interactions,
-since force-field coefficients are defined in terms of types. It can
-be used to change the labeling of atoms by atom type or molecule ID
-when they are output in :doc:`dump <dump>` files. It can also be useful
-for debugging purposes; i.e. positioning an atom at a precise location
-to compute subsequent forces or energy.
-
-Note that the *style* and *ID* arguments determine which atoms have
-their properties reset. The remaining keywords specify which
-properties to reset and what the new values are. Some strings like
-*type* or *mol* can be used as a style and/or a keyword.
-
-
-----------
-
-
-This section describes how to select which atoms to change
-the properties of, via the *style* and *ID* arguments.
-
-The style *atom* selects all the atoms in a range of atom IDs. The
-style *type* selects all the atoms in a range of types. The style
-*mol* selects all the atoms in a range of molecule IDs.
-
-In each of the range cases, the range can be specified as a single
-numeric value, or a wildcard asterisk can be used to specify a range
-of values. This takes the form "*" or "*n" or "n*" or "m*n". For
-example, for the style *type*, if N = the number of atom types, then
-an asterisk with no numeric values means all types from 1 to N. A
-leading asterisk means all types from 1 to n (inclusive). A trailing
-asterisk means all types from n to N (inclusive). A middle asterisk
-means all types from m to n (inclusive). For all the styles except
-*mol*, the lowest value for the wildcard is 1; for *mol* it is 0.
-
-The style *group* selects all the atoms in the specified group. The
-style *region* selects all the atoms in the specified geometric
-region. See the :doc:`group <group>` and :doc:`region <region>` commands
-for details of how to specify a group or region.
-
-
-----------
-
-
-This section describes the keyword options for which properties to
-change, for the selected atoms.
-
-Note that except where explicitly prohibited below, all of the
-keywords allow an :doc:`atom-style or atomfile-style variable <variable>` to be used as the specified value(s). If the
-value is a variable, it should be specified as v_name, where name is
-the variable name. In this case, the variable will be evaluated, and
-its resulting per-atom value used to determine the value assigned to
-each selected atom. Note that the per-atom value from the variable
-will be ignored for atoms that are not selected via the *style* and
-*ID* settings explained above. A simple way to use per-atom values
-from the variable to reset a property for all atoms is to use style
-*atom* with *ID* = "*"; this selects all atom IDs.
-
-Atom-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters and timestep and elapsed
-time. They can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a time-dependent or
-spatially-dependent set of per-atom values. As explained on the
-:doc:`variable <variable>` doc page, atomfile-style variables can be
-used in place of atom-style variables, and thus as arguments to the
-set command. Atomfile-style variables read their per-atoms values
-from a file.
-
-.. note::
-
- Atom-style and atomfile-style variables return floating point
- per-atom values. If the values are assigned to an integer variable,
- such as the molecule ID, then the floating point value is truncated to
- its integer portion, e.g. a value of 2.6 would become 2.
-
-Keyword *type* sets the atom type for all selected atoms. The
-specified value must be from 1 to ntypes, where ntypes was set by the
-:doc:`create_box <create_box>` command or the *atom types* field in the
-header of the data file read by the :doc:`read_data <read_data>`
-command.
-
-Keyword *type/fraction* sets the atom type for a fraction of the
-selected atoms. The actual number of atoms changed is not guaranteed
-to be exactly the requested fraction, but should be statistically
-close. Random numbers are used in such a way that a particular atom
-is changed or not changed, regardless of how many processors are being
-used. This keyword does not allow use of an atom-style variable.
-
-Keyword *mol* sets the molecule ID for all selected atoms. The :doc:`atom style <atom_style>` being used must support the use of molecule
-IDs.
-
-Keywords *x*, *y*, *z*, and *charge* set the coordinates or charge of
-all selected atoms. For *charge*, the :doc:`atom style <atom_style>`
-being used must support the use of atomic charge.
-
-Keyword *dipole* uses the specified x,y,z values as components of a
-vector to set as the orientation of the dipole moment vectors of the
-selected atoms. The magnitude of the dipole moment is set
-by the length of this orientation vector.
-
-Keyword *dipole/random* randomizes the orientation of the dipole
-moment vectors for the selected atoms and sets the magnitude of each
-to the specified *Dlen* value. For 2d systems, the z component of the
-orientation is set to 0.0. Random numbers are used in such a way that
-the orientation of a particular atom is the same, regardless of how
-many processors are being used. This keyword does not allow use of an
-atom-style variable.
-
-Keyword *quat* uses the specified values to create a quaternion
-(4-vector) that represents the orientation of the selected atoms. The
-particles must define a quaternion for their orientation
-(e.g. ellipsoids, triangles, body particles) as defined by the
-:doc:`atom_style <atom_style>` command. Note that particles defined by
-:doc:`atom_style ellipsoid <atom_style>` have 3 shape parameters. The 3
-values must be non-zero for each particle set by this command. They
-are used to specify the aspect ratios of an ellipsoidal particle,
-which is oriented by default with its x-axis along the simulation
-box's x-axis, and similarly for y and z. If this body is rotated (via
-the right-hand rule) by an angle theta around a unit rotation vector
-(a,b,c), then the quaternion that represents its new orientation is
-given by (cos(theta/2), a*sin(theta/2), b*sin(theta/2),
-c*sin(theta/2)). The theta and a,b,c values are the arguments to the
-*quat* keyword. LAMMPS normalizes the quaternion in case (a,b,c) was
-not specified as a unit vector. For 2d systems, the a,b,c values are
-ignored, since a rotation vector of (0,0,1) is the only valid choice.
-
-Keyword *quat/random* randomizes the orientation of the quaternion for
-the selected atoms. The particles must define a quaternion for their
-orientation (e.g. ellipsoids, triangles, body particles) as defined by
-the :doc:`atom_style <atom_style>` command. Random numbers are used in
-such a way that the orientation of a particular atom is the same,
-regardless of how many processors are being used. For 2d systems,
-only orientations in the xy plane are generated. As with keyword
-*quat*, for ellipsoidal particles, the 3 shape values must be non-zero
-for each particle set by this command. This keyword does not allow
-use of an atom-style variable.
-
-Keyword *diameter* sets the size of the selected atoms. The particles
-must be finite-size spheres as defined by the :doc:`atom_style sphere <atom_style>` command. The diameter of a particle can be
-set to 0.0, which means they will be treated as point particles. Note
-that this command does not adjust the particle mass, even if it was
-defined with a density, e.g. via the :doc:`read_data <read_data>`
-command.
-
-Keyword *shape* sets the size and shape of the selected atoms. The
-particles must be ellipsoids as defined by the :doc:`atom_style ellipsoid <atom_style>` command. The *Sx*, *Sy*, *Sz* settings are
-the 3 diameters of the ellipsoid in each direction. All 3 can be set
-to the same value, which means the ellipsoid is effectively a sphere.
-They can also all be set to 0.0 which means the particle will be
-treated as a point particle. Note that this command does not adjust
-the particle mass, even if it was defined with a density, e.g. via the
-:doc:`read_data <read_data>` command.
-
-Keyword *length* sets the length of selected atoms. The particles
-must be line segments as defined by the :doc:`atom_style line <atom_style>` command. If the specified value is non-zero the
-line segment is (re)set to a length = the specified value, centered
-around the particle position, with an orientation along the x-axis.
-If the specified value is 0.0, the particle will become a point
-particle. Note that this command does not adjust the particle mass,
-even if it was defined with a density, e.g. via the
-:doc:`read_data <read_data>` command.
-
-Keyword *tri* sets the size of selected atoms. The particles must be
-triangles as defined by the :doc:`atom_style tri <atom_style>` command.
-If the specified value is non-zero the triangle is (re)set to be an
-equilateral triangle in the xy plane with side length = the specified
-value, with a centroid at the particle position, with its base
-parallel to the x axis, and the y-axis running from the center of the
-base to the top point of the triangle. If the specified value is 0.0,
-the particle will become a point particle. Note that this command
-does not adjust the particle mass, even if it was defined with a
-density, e.g. via the :doc:`read_data <read_data>` command.
-
-Keyword *theta* sets the orientation of selected atoms. The particles
-must be line segments as defined by the :doc:`atom_style line <atom_style>` command. The specified value is used to set the
-orientation angle of the line segments with respect to the x axis.
-
-Keyword *theta/random* randomizes the orientation of theta for the
-selected atoms. The particles must be line segments as defined by the
-:doc:`atom_style line <atom_style>` command. Random numbers are used in
-such a way that the orientation of a particular atom is the same,
-regardless of how many processors are being used. This keyword does
-not allow use of an atom-style variable.
-
-Keyword *angmom* sets the angular momentum of selected atoms. The
-particles must be ellipsoids as defined by the :doc:`atom_style ellipsoid <atom_style>` command or triangles as defined by the
-:doc:`atom_style tri <atom_style>` command. The angular momentum vector
-of the particles is set to the 3 specified components.
-
-Keyword *omega* sets the angular velocity of selected atoms. The
-particles must be spheres as defined by the "atom_style sphere"_
-atom_style.html command. The angular velocity vector of the particles
-is set to the 3 specified components.
-
-Keyword *mass* sets the mass of all selected particles. The particles
-must have a per-atom mass attribute, as defined by the
-:doc:`atom_style <atom_style>` command. See the "mass" command for how
-to set mass values on a per-type basis.
-
-Keyword *density* also sets the mass of all selected particles, but in
-a different way. The particles must have a per-atom mass attribute,
-as defined by the :doc:`atom_style <atom_style>` command. If the atom
-has a radius attribute (see :doc:`atom_style sphere <atom_style>`) and
-its radius is non-zero, its mass is set from the density and particle
-volume. If the atom has a shape attribute (see :doc:`atom_style ellipsoid <atom_style>`) and its 3 shape parameters are non-zero,
-then its mass is set from the density and particle volume. If the
-atom has a length attribute (see :doc:`atom_style line <atom_style>`)
-and its length is non-zero, then its mass is set from the density and
-line segment length (the input density is assumed to be in
-mass/distance units). If the atom has an area attribute (see
-:doc:`atom_style tri <atom_style>`) and its area is non-zero, then its
-mass is set from the density and triangle area (the input density is
-assumed to be in mass/distance^2 units). If none of these cases are
-valid, then the mass is set to the density value directly (the input
-density is assumed to be in mass units).
-
-Keyword *volume* sets the volume of all selected particles.
-Currently, only the :doc:`atom_style peri <atom_style>` command defines
-particles with a volume attribute. Note that this command does not
-adjust the particle mass.
-
-Keyword *image* sets which image of the simulation box the atom is
-considered to be in. An image of 0 means it is inside the box as
-defined. A value of 2 means add 2 box lengths to get the true value.
-A value of -1 means subtract 1 box length to get the true value.
-LAMMPS updates these flags as atoms cross periodic boundaries during
-the simulation. The flags can be output with atom snapshots via the
-:doc:`dump <dump>` command. If a value of NULL is specified for any of
-nx,ny,nz, then the current image value for that dimension is
-unchanged. For non-periodic dimensions only a value of 0 can be
-specified. This keyword does not allow use of atom-style variables.
-This command can be useful after a system has been equilibrated and
-atoms have diffused one or more box lengths in various directions.
-This command can then reset the image values for atoms so that they
-are effectively inside the simulation box, e.g if a diffusion
-coefficient is about to be measured via the :doc:`compute msd <compute_msd>` command. Care should be taken not to reset the
-image flags of two atoms in a bond to the same value if the bond
-straddles a periodic boundary (rather they should be different by +/-
-1). This will not affect the dynamics of a simulation, but may mess
-up analysis of the trajectories if a LAMMPS diagnostic or your own
-analysis relies on the image flags to unwrap a molecule which
-straddles the periodic box.
-
-Keywords *bond*, *angle*, *dihedral*, and *improper*, set the bond
-type (angle type, etc) of all bonds (angles, etc) of selected atoms to
-the specified value from 1 to nbondtypes (nangletypes, etc). All
-atoms in a particular bond (angle, etc) must be selected atoms in
-order for the change to be made. The value of nbondtype (nangletypes,
-etc) was set by the *bond types* (*angle types*, etc) field in the
-header of the data file read by the :doc:`read_data <read_data>`
-command. These keywords do not allow use of an atom-style variable.
-
-Keywords *meso/e*, *meso/cv*, and *meso/rho* set the energy, heat
-capacity, and density of smmothed particle hydrodynamics (SPH)
-particles. See `this PDF guide <USER/sph/SPH_LAMMPS_userguide.pdf>`_ to
-using SPH in LAMMPS.
-
-Keyword *smd/mass/density* sets the mass of all selected particles,
-but it is only applicable to the Smooth Mach Dynamics package
-USER-SMD. It assumes that the particle volume has already been
-correctly set and calculates particle mass from the provided mass
-density value.
-
-Keyword *smd/contact/radius* only applies to simulations with the
-Smooth Mach Dynamics package USER-SMD. Itsets an interaction radius
-for computing short-range interactions, e.g. repulsive forces to
-prevent different individual physical bodies from penetrating each
-other. Note that the SPH smoothing kernel diameter used for computing
-long range, nonlocal interactions, is set using the *diameter*
-keyword.
-
-Keyword *dpd/theta* sets the internal temperature of a DPD particle
-as defined by the USER-DPD package.
-
-Keywords *i_name* and *d_name* refer to custom integer and
-floating-point properties that have been added to each atom via the
-:doc:`fix property/atom <fix_property_atom>` command. When that command
-is used specific names are given to each attribute which are what is
-specified as the "name" portion of *i_name* or *d_name*.
-
-Restrictions
-""""""""""""
-
-
-You cannot set an atom attribute (e.g. *mol* or *q* or *volume*) if
-the :doc:`atom_style <atom_style>` does not have that attribute.
-
-This command requires inter-processor communication to coordinate the
-setting of bond types (angle types, etc). This means that your system
-must be ready to perform a simulation before using one of these
-keywords (force fields set, atom mass set, etc). This is not
-necessary for other keywords.
-
-Using the *region* style with the bond (angle, etc) keywords can give
-unpredictable results if there are bonds (angles, etc) that straddle
-periodic boundaries. This is because the region may only extend up to
-the boundary and partner atoms in the bond (angle, etc) may have
-coordinates outside the simulation box if they are ghost atoms.
-
-Related commands
-""""""""""""""""
-
-:doc:`create_box <create_box>`, :doc:`create_atoms <create_atoms>`,
-:doc:`read_data <read_data>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/shell.txt b/doc/_sources/shell.txt
deleted file mode 100644
index ab57c9628..000000000
--- a/doc/_sources/shell.txt
+++ /dev/null
@@ -1,123 +0,0 @@
-.. index:: shell
-
-shell command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- shell cmd args
-
-* cmd = *cd* or *mkdir* or *mv* or *rm* or *rmdir* or *putenv* or arbitrary command
-.. parsed-literal::
-
- *cd* arg = dir
- dir = directory to change to
- *mkdir* args = dir1 dir2 ...
- dir1,dir2 = one or more directories to create
- *mv* args = old new
- old = old filename
- new = new filename
- *rm* args = file1 file2 ...
- file1,file2 = one or more filenames to delete
- *rmdir* args = dir1 dir2 ...
- dir1,dir2 = one or more directories to delete
- *putenv* args = var1=value1 var2=value2
- var=value = one of more definitions of environment variables
- anything else is passed as a command to the shell for direct execution
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- shell cd sub1
- shell cd ..
- shell mkdir tmp1 tmp2 tmp3
- shell rmdir tmp1
- shell mv log.lammps hold/log.1
- shell rm TMP/file1 TMP/file2
- shell putenv LAMMPS_POTENTIALS=../../potentials
- shell my_setup file1 10 file2
- shell my_post_process 100 dump.out
-
-Description
-"""""""""""
-
-Execute a shell command. A few simple file-based shell commands are
-supported directly, in Unix-style syntax. Any command not listed
-above is passed as-is to the C-library system() call, which invokes
-the command in a shell.
-
-This is means to invoke other commands from your input script. For
-example, you can move files around in preparation for the next section
-of the input script. Or you can run a program that pre-processes data
-for input into LAMMPS. Or you can run a program that post-processes
-LAMMPS output data.
-
-With the exception of *cd*, all commands, including ones invoked via a
-system() call, are executed by only a single processor, so that
-files/directories are not being manipulated by multiple processors.
-
-The *cd* cmd executes the Unix "cd" command to change the working
-directory. All subsequent LAMMPS commands that read/write files will
-use the new directory. All processors execute this command.
-
-The *mkdir* cmd executes the Unix "mkdir" command to create one or
-more directories.
-
-The *mv* cmd executes the Unix "mv" command to rename a file and/or
-move it to a new directory.
-
-The *rm* cmd executes the Unix "rm" command to remove one or more
-files.
-
-The *rmdir* cmd executes the Unix "rmdir" command to remove one or
-more directories. A directory must be empty to be successfully
-removed.
-
-The *putenv* cmd defines or updates an environment variable directly.
-Since this command does not pass through the shell, no shell variable
-expansion or globbing is performed, only the usual substitution for
-LAMMPS variables defined with the :doc:`variable <variable>` command is
-performed. The resulting string is then used literally.
-
-Any other cmd is passed as-is to the shell along with its arguments as
-one string, invoked by the C-library system() call. For example,
-these lines in your input script:
-
-.. parsed-literal::
-
- variable n equal 10
- variable foo string file2
- shell my_setup file1 $n ${foo}
-
-would be the same as invoking
-
-.. parsed-literal::
-
- % my_setup file1 10 file2
-
-from a command-line prompt. The executable program "my_setup" is run
-with 3 arguments: file1 10 file2.
-
-Restrictions
-""""""""""""
-
-
-LAMMPS does not detect errors or print warnings when any of these
-commands execute. E.g. if the specified directory does not exist,
-executing the *cd* command will silently do nothing.
-
-**Related commands:** none
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/special_bonds.txt b/doc/_sources/special_bonds.txt
deleted file mode 100644
index dc38bb2a5..000000000
--- a/doc/_sources/special_bonds.txt
+++ /dev/null
@@ -1,305 +0,0 @@
-.. index:: special_bonds
-
-special_bonds command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- special_bonds keyword values ...
-
-* one or more keyword/value pairs may be appended
-* keyword = *amber* or *charmm* or *dreiding* or *fene* or *lj/coul* or *lj* or *coul* or *angle* or *dihedral* or *extra*
-.. parsed-literal::
-
- *amber* values = none
- *charmm* values = none
- *dreiding* values = none
- *fene* values = none
- *lj/coul* values = w1,w2,w3
- w1,w2,w3 = weights (0.0 to 1.0) on pairwise Lennard-Jones and Coulombic interactions
- *lj* values = w1,w2,w3
- w1,w2,w3 = weights (0.0 to 1.0) on pairwise Lennard-Jones interactions
- *coul* values = w1,w2,w3
- w1,w2,w3 = weights (0.0 to 1.0) on pairwise Coulombic interactions
- *angle* value = *yes* or *no*
- *dihedral* value = *yes* or *no*
- *extra* value = N
- N = number of extra 1-2,1-3,1-4 interactions to save space for
-
-
-
-Examples:
-
-.. parsed-literal::
-
- special_bonds amber
- special_bonds charmm
- special_bonds fene dihedral no
- special_bonds lj/coul 0.0 0.0 0.5 angle yes dihedral yes
- special_bonds lj 0.0 0.0 0.5 coul 0.0 0.0 0.0 dihedral yes
- special_bonds lj/coul 0 1 1 extra 2
-
-Description
-"""""""""""
-
-Set weighting coefficients for pairwise energy and force contributions
-between pairs of atoms that are also permanently bonded to each other,
-either directly or via one or two intermediate bonds. These weighting
-factors are used by nearly all :doc:`pair styles <pair_style>` in LAMMPS
-that compute simple pairwise interactions. Permanent bonds between
-atoms are specified by defining the bond topology in the data file
-read by the :doc:`read_data <read_data>` command. Typically a
-:doc:`bond_style <bond_style>` command is also used to define a bond
-potential. The rationale for using these weighting factors is that
-the interaction between a pair of bonded atoms is all (or mostly)
-specified by the bond, angle, dihedral potentials, and thus the
-non-bonded Lennard-Jones or Coulombic interaction between the pair of
-atoms should be excluded (or reduced by a weighting factor).
-
-.. note::
-
- These weighting factors are NOT used by :doc:`pair styles <pair_style>` that compute many-body interactions, since the
- "bonds" that result from such interactions are not permanent, but are
- created and broken dynamically as atom conformations change. Examples
- of pair styles in this category are EAM, MEAM, Stillinger-Weber,
- Tersoff, COMB, AIREBO, and ReaxFF. In fact, it generally makes no
- sense to define permanent bonds between atoms that interact via these
- potentials, though such bonds may exist elsewhere in your system,
- e.g. when using the :doc:`pair_style hybrid <pair_hybrid>` command.
- Thus LAMMPS ignores special_bonds settings when manybody potentials
- are calculated.
-
-.. note::
-
- Unlike some commands in LAMMPS, you cannot use this command
- multiple times in an incremental fashion: e.g. to first set the LJ
- settings and then the Coulombic ones. Each time you use this command
- it sets all the coefficients to default values and only overrides the
- one you specify, so you should set all the options you need each time
- you use it. See more details at the bottom of this page.
-
-The Coulomb factors are applied to any Coulomb (charge interaction)
-term that the potential calculates. The LJ factors are applied to the
-remaining terms that the potential calculates, whether they represent
-LJ interactions or not. The weighting factors are a scaling
-pre-factor on the energy and force between the pair of atoms. A value
-of 1.0 means include the full interaction; a value of 0.0 means
-exclude it completely.
-
-The 1st of the 3 coefficients (LJ or Coulombic) is the weighting
-factor on 1-2 atom pairs, which are pairs of atoms directly bonded to
-each other. The 2nd coefficient is the weighting factor on 1-3 atom
-pairs which are those separated by 2 bonds (e.g. the two H atoms in a
-water molecule). The 3rd coefficient is the weighting factor on 1-4
-atom pairs which are those separated by 3 bonds (e.g. the 1st and 4th
-atoms in a dihedral interaction). Thus if the 1-2 coefficient is set
-to 0.0, then the pairwise interaction is effectively turned off for
-all pairs of atoms bonded to each other. If it is set to 1.0, then
-that interaction will be at full strength.
-
-.. note::
-
- For purposes of computing weighted pairwise interactions, 1-3
- and 1-4 interactions are not defined from the list of angles or
- dihedrals used by the simulation. Rather, they are inferred
- topologically from the set of bonds specified when the simulation is
- defined from a data or restart file (see :doc:`read_data <read_data>` or
- :doc:`read_restart <read_restart>` commands). Thus the set of
- 1-2,1-3,1-4 interactions that the weights apply to is the same whether
- angle and dihedral potentials are computed or not, and remains the
- same even if bonds are constrained, or turned off, or removed during a
- simulation.
-
-The two exceptions to this rule are (a) if the *angle* or *dihedral*
-keywords are set to *yes* (see below), or (b) if the
-:doc:`delete_bonds <delete_bonds>` command is used with the *special*
-option that recomputes the 1-2,1-3,1-4 topologies after bonds are
-deleted; see the :doc:`delete_bonds <delete_bonds>` command for more
-details.
-
-The *amber* keyword sets the 3 coefficients to 0.0, 0.0, 0.5 for LJ
-interactions and to 0.0, 0.0, 0.8333 for Coulombic interactions, which
-is the default for a commonly used version of the AMBER force field,
-where the last value is really 5/6. See :ref:`(Cornell) <Cornell>` for a
-description of the AMBER force field.
-
-The *charmm* keyword sets the 3 coefficients to 0.0, 0.0, 0.0 for both
-LJ and Coulombic interactions, which is the default for a commonly
-used version of the CHARMM force field. Note that in pair styles
-*lj/charmm/coul/charmm* and *lj/charmm/coul/long* the 1-4 coefficients
-are defined explicitly, and these pairwise contributions are computed
-as part of the charmm dihedral style - see the
-:doc:`pair_coeff <pair_coeff>` and :doc:`dihedral_style <dihedral_style>`
-commands for more information. See :ref:`(MacKerell) <MacKerell>` for a
-description of the CHARMM force field.
-
-The *dreiding* keyword sets the 3 coefficients to 0.0, 0.0, 1.0 for both
-LJ and Coulombic interactions, which is the default for the Dreiding
-force field, as discussed in :ref:`(Mayo) <Mayo>`.
-
-The *fene* keyword sets the 3 coefficients to 0.0, 1.0, 1.0 for both
-LJ and Coulombic interactions, which is consistent with a
-coarse-grained polymer model with :doc:`FENE bonds <bond_fene>`. See
-:ref:`(Kremer) <Kremer>` for a description of FENE bonds.
-
-The *lj/coul*, *lj*, and *coul* keywords allow the 3 coefficients to
-be set explicitly. The *lj/coul* keyword sets both the LJ and
-Coulombic coefficients to the same 3 values. The *lj* and *coul*
-keywords only set either the LJ or Coulombic coefficients. Use both
-of them if you wish to set the LJ coefficients to different values
-than the Coulombic coefficients.
-
-The *angle* keyword allows the 1-3 weighting factor to be ignored for
-individual atom pairs if they are not listed as the first and last
-atoms in any angle defined in the simulation or as 1,3 or 2,4 atoms in
-any dihedral defined in the simulation. For example, imagine the 1-3
-weighting factor is set to 0.5 and you have a linear molecule with 4
-atoms and bonds as follows: 1-2-3-4. If your data file defines 1-2-3
-as an angle, but does not define 2-3-4 as an angle or 1-2-3-4 as a
-dihedral, then the pairwise interaction between atoms 1 and 3 will
-always be weighted by 0.5, but different force fields use different
-rules for weighting the pairwise interaction between atoms 2 and 4.
-If the *angle* keyword is specified as *yes*, then the pairwise
-interaction between atoms 2 and 4 will be unaffected (full weighting
-of 1.0). If the *angle* keyword is specified as *no* which is the
-default, then the 2,4 interaction will also be weighted by 0.5.
-
-The *dihedral* keyword allows the 1-4 weighting factor to be ignored
-for individual atom pairs if they are not listed as the first and last
-atoms in any dihedral defined in the simulation. For example, imagine
-the 1-4 weighting factor is set to 0.5 and you have a linear molecule
-with 5 atoms and bonds as follows: 1-2-3-4-5. If your data file
-defines 1-2-3-4 as a dihedral, but does not define 2-3-4-5 as a
-dihedral, then the pairwise interaction between atoms 1 and 4 will
-always be weighted by 0.5, but different force fields use different
-rules for weighting the pairwise interaction between atoms 2 and 5.
-If the *dihedral* keyword is specified as *yes*, then the pairwise
-interaction between atoms 2 and 5 will be unaffected (full weighting
-of 1.0). If the *dihedral* keyword is specified as *no* which is the
-default, then the 2,5 interaction will also be weighted by 0.5.
-
-The *extra* keyword can be used when additional bonds will be created
-during a simulation run, e.g. by the :doc:`fix bond/create <fix_bond_create>` command. It can also be used if
-molecules will be added to the system, e.g. via the :doc:`fix deposit <fix_deposit>`, or :doc:`fix pour <fix_pour>` commands, which
-will have atoms with more special neighbors than any atom in the
-current system has.
-
-
-----------
-
-
-.. note::
-
- LAMMPS stores and maintains a data structure with a list of the
- 1st, 2nd, and 3rd neighbors of each atom (within the bond topology of
- the system). If new bonds are created (or molecules added containing
- atoms with more special neighbors), the size of this list needs to
- grow. Note that adding a single bond always adds a new 1st neighbor
- but may also induce *many* new 2nd and 3rd neighbors, depending on the
- molecular topology of your system. Using the *extra* keyword leaves
- empty space in the list for this N additional 1st, 2nd, or 3rd
- neighbors to be added. If you do not do this, you may get an error
- when bonds (or molecules) are added.
-
-
-----------
-
-
-.. note::
-
- If you reuse this command in an input script, you should set all
- the options you need each time. This command cannot be used a 2nd
- time incrementally, e.g. to add some extra storage locations via the
- *extra* keyword. E.g. these two commands:
-
-special_bonds lj 0.0 1.0 1.0
-special_bonds coul 0.0 0.0 1.0
-
-are not the same as
-
-special_bonds lj 0.0 1.0 1.0 coul 0.0 0.0 1.0
-
-In the first case you end up with (after the 2nd command):
-
-LJ: 0.0 0.0 0.0
-Coul: coul 0.0 0.0 1.0
-
-because the LJ settings are reset to their default values
-each time the command is issued.
-
-Likewise
-
-.. parsed-literal::
-
- special_bonds amber
- special_bonds extra 2
-
-is not the same as this single command:
-
-.. parsed-literal::
-
- special_bonds amber extra 2
-
-since in the former case, the 2nd command will reset all the LJ and
-Coulombic weights to 0.0 (the default).
-
-One exception to this rule is the *extra* option itself. It is not
-reset to its default value of 0 each time the special_bonds command is
-invoked. This is because it can also be set by the
-:doc:`read_data <read_data>` and :doc:`create_box <create_box>` commands,
-so this command will not override those settings unless you explicitly
-use *extra* as an option.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`delete_bonds <delete_bonds>`, :doc:`fix bond/create <fix_bond_create>`
-
-Default
-"""""""
-
-All 3 Lennard-Jones and 3 Coulombic weighting coefficients = 0.0,
-angle = no, dihedral = no, and extra = 0.
-
-
-----------
-
-
-.. _Cornell:
-
-
-
-**(Cornell)** Cornell, Cieplak, Bayly, Gould, Merz, Ferguson,
-Spellmeyer, Fox, Caldwell, Kollman, JACS 117, 5179-5197 (1995).
-
-.. _Kremer:
-
-
-
-**(Kremer)** Kremer, Grest, J Chem Phys, 92, 5057 (1990).
-
-.. _MacKerell:
-
-
-
-**(MacKerell)** MacKerell, Bashford, Bellott, Dunbrack, Evanseck, Field,
-Fischer, Gao, Guo, Ha, et al, J Phys Chem, 102, 3586 (1998).
-
-.. _Mayo:
-
-
-
-**(Mayo)** Mayo, Olfason, Goddard III, J Phys Chem, 94, 8897-8909
-(1990).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/suffix.txt b/doc/_sources/suffix.txt
deleted file mode 100644
index bda38c351..000000000
--- a/doc/_sources/suffix.txt
+++ /dev/null
@@ -1,106 +0,0 @@
-.. index:: suffix
-
-suffix command
-==============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- suffix style args
-
-* style = *off* or *on* or *cuda* or *gpu* or *intel* or *kk* or *omp* or *opt* or *hybrid*
-* args = for hybrid style, default suffix to be used and alternative suffix
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- suffix off
- suffix on
- suffix gpu
- suffix intel
- suffix hybrid intel omp
- suffix kk
-
-Description
-"""""""""""
-
-This command allows you to use variants of various styles if they
-exist. In that respect it operates the same as the :ref:`-suffix command-line switch <start_7>`. It also has options
-to turn off or back on any suffix setting made via the command line.
-
-The specified style can be *cuda*, *gpu*, *intel*, *kk*, *omp*, *opt*
-or *hybrid*. These refer to optional packages that LAMMPS can be built
-with, as described in :ref:`this section of the manual <start_3>`. The "cuda" style corresponds to
-the USER-CUDA package, the "gpu" style to the GPU package, the "intel"
-style to the USER-INTEL package, the "kk" style to the KOKKOS package,
-the "omp" style to the USER-OMP package, and the "opt" style to the
-OPT package.
-
-These are the variants these packages provide:
-
-* USER-CUDA = a collection of atom, pair, fix, compute, and intergrate
- styles, optimized to run on one or more NVIDIA GPUs
-* GPU = a handful of pair styles and the PPPM kspace_style, optimized to
- run on one or more GPUs or multicore CPU/GPU nodes
-* USER-INTEL = a collection of pair styles and neighbor routines
- optimized to run in single, mixed, or double precision on CPUs and
- Intel(R) Xeon Phi(TM) coprocessors.
-* KOKKOS = a collection of atom, pair, and fix styles optimized to run
- using the Kokkos library on various kinds of hardware, including GPUs
- via Cuda and many-core chips via OpenMP or threading.
-* USER-OMP = a collection of pair, bond, angle, dihedral, improper,
- kspace, compute, and fix styles with support for OpenMP
- multi-threading
-* OPT = a handful of pair styles, cache-optimized for faster CPU
- performance
-* HYBRID = a combination of two packages can be specified (see below)
-As an example, all of the packages provide a :doc:`pair_style lj/cut <pair_lj>` variant, with style names lj/cut/opt, lj/cut/omp,
-lj/cut/gpu, lj/cut/intel, lj/cut/cuda, or lj/cut/kk. A variant styles
-can be specified explicitly in your input script, e.g. pair_style
-lj/cut/gpu. If the suffix command is used with the appropriate style,
-you do not need to modify your input script. The specified suffix
-(opt,omp,gpu,intel,cuda,kk) is automatically appended whenever your
-input script command creates a new :doc:`atom <atom_style>`,
-:doc:`pair <pair_style>`, :doc:`bond <bond_style>`,
-:doc:`angle <angle_style>`, :doc:`dihedral <dihedral_style>`,
-:doc:`improper <improper_style>`, :doc:`kspace <kspace_style>`,
-:doc:`fix <fix>`, :doc:`compute <compute>`, or :doc:`run <run_style>` style.
-If the variant version does not exist, the standard version is
-created.
-
-For "hybrid", two packages are specified. The first is used whenever
-available. If a style with the first suffix is not available, the style
-with the suffix for the second package will be used if available. For
-example, "hybrid intel omp" will use styles from the USER-INTEL package
-as a first choice and styles from the USER-OMP package as a second choice
-if no USER-INTEL variant is available.
-
-If the specified style is *off*, then any previously specified suffix
-is temporarily disabled, whether it was specified by a command-line
-switch or a previous suffix command. If the specified style is *on*,
-a disabled suffix is turned back on. The use of these 2 commands lets
-your input script use a standard LAMMPS style (i.e. a non-accelerated
-variant), which can be useful for testing or benchmarking purposes.
-Of course this is also possible by not using any suffix commands, and
-explictly appending or not appending the suffix to the relevant
-commands in your input script.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:ref:`Command-line switch -suffix <start_7>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/tad.txt b/doc/_sources/tad.txt
deleted file mode 100644
index 9305e6e77..000000000
--- a/doc/_sources/tad.txt
+++ /dev/null
@@ -1,334 +0,0 @@
-.. index:: tad
-
-tad command
-===========
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- tad N t_event T_lo T_hi delta tmax compute-ID keyword value ...
-
-* N = # of timesteps to run (not including dephasing/quenching)
-* t_event = timestep interval between event checks
-* T_lo = temperature at which event times are desired
-* T_hi = temperature at which MD simulation is performed
-* delta = desired confidence level for stopping criterion
-* tmax = reciprocal of lowest expected preexponential factor (time units)
-* compute-ID = ID of the compute used for event detection
-* zero or more keyword/value pairs may be appended
-* keyword = *min* or *neb* or *min_style* or *neb_style* or *neb_log*
-.. parsed-literal::
-
- *min* values = etol ftol maxiter maxeval
- etol = stopping tolerance for energy (energy units)
- ftol = stopping tolerance for force (force units)
- maxiter = max iterations of minimize
- maxeval = max number of force/energy evaluations
- *neb* values = ftol N1 N2 Nevery
- etol = stopping tolerance for energy (energy units)
- ftol = stopping tolerance for force (force units)
- N1 = max # of iterations (timesteps) to run initial NEB
- N2 = max # of iterations (timesteps) to run barrier-climbing NEB
- Nevery = print NEB statistics every this many timesteps
- *neb_style* value = *quickmin* or *fire*
- *neb_step* value = dtneb
- dtneb = timestep for NEB damped dynamics minimization
- *neb_log* value = file where NEB statistics are printed
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- tad 2000 50 1800 2300 0.01 0.01 event
- tad 2000 50 1800 2300 0.01 0.01 event &
- min 1e-05 1e-05 100 100 &
- neb 0.0 0.01 200 200 20 &
- min_style cg &
- neb_style fire &
- neb_log log.neb
-
-Description
-"""""""""""
-
-Run a temperature accelerated dynamics (TAD) simulation. This method
-requires two or more partitions to perform NEB transition state
-searches.
-
-TAD is described in :ref:`this paper <Voter>` by Art Voter. It is a method
-that uses accelerated dynamics at an elevated temperature to generate
-results at a specified lower temperature. A good overview of
-accelerated dynamics methods for such systems is given in :ref:`this review paper <Voter2>` from the same group. In general, these methods assume
-that the long-time dynamics is dominated by infrequent events i.e. the
-system is is confined to low energy basins for long periods,
-punctuated by brief, randomly-occurring transitions to adjacent
-basins. TAD is suitable for infrequent-event systems, where in
-addition, the transition kinetics are well-approximated by harmonic
-transition state theory (hTST). In hTST, the temperature dependence of
-transition rates follows the Arrhenius relation. As a consequence a
-set of event times generated in a high-temperature simulation can be
-mapped to a set of much longer estimated times in the low-temperature
-system. However, because this mapping involves the energy barrier of
-the transition event, which is different for each event, the first
-event at the high temperature may not be the earliest event at the low
-temperature. TAD handles this by first generating a set of possible
-events from the current basin. After each event, the simulation is
-reflected backwards into the current basin. This is repeated until
-the stopping criterion is satisfied, at which point the event with the
-earliest low-temperature occurrence time is selected. The stopping
-criterion is that the confidence measure be greater than
-1-*delta*. The confidence measure is the probability that no earlier
-low-temperature event will occur at some later time in the
-high-temperature simulation. hTST provides an lower bound for this
-probability, based on the user-specified minimum pre-exponential
-factor (reciprocal of *tmax*).
-
-In order to estimate the energy barrier for each event, the TAD method
-invokes the :doc:`NEB <neb>` method. Each NEB replica runs on a
-partition of processors. The current NEB implementation in LAMMPS
-restricts you to having exactly one processor per replica. For more
-information, see the documentation for the :doc:`neb <neb>` command. In
-the current LAMMPS implementation of TAD, all the non-NEB TAD
-operations are performed on the first partition, while the other
-partitions remain idle. See :ref:`Section_howto 5 <howto_5>` of the manual for further discussion of
-multi-replica simulations.
-
-A TAD run has several stages, which are repeated each time an event is
-performed. The logic for a TAD run is as follows:
-
-.. parsed-literal::
-
- while (time remains):
- while (time < tstop):
- until (event occurs):
- run dynamics for t_event steps
- quench
- run neb calculation using all replicas
- compute tlo from energy barrier
- update earliest event
- update tstop
- reflect back into current basin
- execute earliest event
-
-Before this outer loop begins, the initial potential energy basin is
-identified by quenching (an energy minimization, see below) the
-initial state and storing the resulting coordinates for reference.
-
-Inside the inner loop, dynamics is run continuously according to
-whatever integrator has been specified by the user, stopping every
-*t_event* steps to check if a transition event has occurred. This
-check is performed by quenching the system and comparing the resulting
-atom coordinates to the coordinates from the previous basin.
-
-A quench is an energy minimization and is performed by whichever
-algorithm has been defined by the :doc:`min_style <min_style>` command;
-its default is the CG minimizer. The tolerances and limits for each
-quench can be set by the *min* keyword. Note that typically, you do
-not need to perform a highly-converged minimization to detect a
-transition event.
-
-The event check is performed by a compute with the specified
-*compute-ID*. Currently there is only one compute that works with the
-TAD commmand, which is the :doc:`compute event/displace <compute_event_displace>` command. Other
-event-checking computes may be added. :doc:`Compute event/displace <compute_event_displace>` checks whether any atom in
-the compute group has moved further than a specified threshold
-distance. If so, an "event" has occurred.
-
-The NEB calculation is similar to that invoked by the :doc:`neb <neb>`
-command, except that the final state is generated internally, instead
-of being read in from a file. The style of minimization performed by
-NEB is determined by the *neb_style* keyword and must be a damped
-dynamics minimizer. The tolerances and limits for each NEB
-calculation can be set by the *neb* keyword. As discussed on the
-:doc:`neb <neb>`, it is often advantageous to use a larger timestep for
-NEB than for normal dyanmics. Since the size of the timestep set by
-the :doc:`timestep <timestep>` command is used by TAD for performing
-dynamics, there is a *neb_step* keyword which can be used to set a
-larger timestep for each NEB calculation if desired.
-
-
-----------
-
-
-A key aspect of the TAD method is setting the stopping criterion
-appropriately. If this criterion is too conservative, then many
-events must be generated before one is finally executed. Conversely,
-if this criterion is too aggressive, high-entropy high-barrier events
-will be over-sampled, while low-entropy low-barrier events will be
-under-sampled. If the lowest pre-exponential factor is known fairly
-accurately, then it can be used to estimate *tmax*, and the value of
-*delta* can be set to the desired confidence level e.g. *delta* = 0.05
-corresponds to 95% confidence. However, for systems where the dynamics
-are not well characterized (the most common case), it will be
-necessary to experiment with the values of *delta* and *tmax* to get a
-good trade-off between accuracy and performance.
-
-A second key aspect is the choice of *t_hi*. A larger value greatly
-increases the rate at which new events are generated. However, too
-large a value introduces errors due to anharmonicity (not accounted
-for within hTST). Once again, for any given system, experimentation is
-necessary to determine the best value of *t_hi*.
-
-
-----------
-
-
-Five kinds of output can be generated during a TAD run: event
-statistics, NEB statistics, thermodynamic output by each replica, dump
-files, and restart files.
-
-Event statistics are printed to the screen and master log.lammps file
-each time an event is executed. The quantities are the timestep, CPU
-time, global event number *N*, local event number *M*, event status,
-energy barrier, time margin, *t_lo* and *delt_lo*. The timestep is
-the usual LAMMPS timestep, which corresponds to the high-temperature
-time at which the event was detected, in units of timestep. The CPU
-time is the total processor time since the start of the TAD run. The
-global event number *N* is a counter that increments with each
-executed event. The local event number *M* is a counter that resets to
-zero upon entering each new basin. The event status is *E* when an
-event is executed, and is *D* for an event that is detected, while
-*DF* is for a detected event that is also the earliest (first) event
-at the low temperature.
-
-The time margin is the ratio of the high temperature time in the
-current basin to the stopping time. This last number can be used to
-judge whether the stopping time is too short or too long (see above).
-
-*t_lo* is the low-temperature event time when the current basin was
-entered, in units of timestep. del*t_lo* is the time of each detected
-event, measured relative to *t_lo*. *delt_lo* is equal to the
-high-temperature time since entering the current basin, scaled by an
-exponential factor that depends on the hi/lo temperature ratio and the
-energy barrier for that event.
-
-On lines for executed events, with status *E*, the global event number
-is incremented by one,
-the local event number and time margin are reset to zero,
-while the global event number, energy barrier, and
-*delt_lo* match the last event with status *DF*
-in the immediately preceding block of detected events.
-The low-temperature event time *t_lo* is incremented by *delt_lo*.
-
-NEB statistics are written to the file specified by the *neb_log*
-keyword. If the keyword value is "none", then no NEB statistics are
-printed out. The statistics are written every *Nevery* timesteps. See
-the :doc:`neb <neb>` command for a full description of the NEB
-statistics. When invoked from TAD, NEB statistics are never printed to
-the screen.
-
-Because the NEB calculation must run on multiple partitions, LAMMPS
-produces additional screen and log files for each partition,
-e.g. log.lammps.0, log.lammps.1, etc. For the TAD command, these
-contain the thermodynamic output of each NEB replica. In addition, the
-log file for the first partition, log.lammps.0, will contain
-thermodynamic output from short runs and minimizations corresponding
-to the dynamics and quench operations, as well as a line for each new
-detected event, as described above.
-
-After the TAD command completes, timing statistics for the TAD run are
-printed in each replica's log file, giving a breakdown of how much CPU
-time was spent in each stage (NEB, dynamics, quenching, etc).
-
-Any :doc:`dump files <dump>` defined in the input script will be written
-to during a TAD run at timesteps when an event is executed. This
-means the the requested dump frequency in the :doc:`dump <dump>` command
-is ignored. There will be one dump file (per dump command) created
-for all partitions. The atom coordinates of the dump snapshot are
-those of the minimum energy configuration resulting from quenching
-following the executed event. The timesteps written into the dump
-files correspond to the timestep at which the event occurred and NOT
-the clock. A dump snapshot corresponding to the initial minimum state
-used for event detection is written to the dump file at the beginning
-of each TAD run.
-
-If the :doc:`restart <restart>` command is used, a single restart file
-for all the partitions is generated, which allows a TAD run to be
-continued by a new input script in the usual manner. The restart file
-is generated after an event is executed. The restart file contains a
-snapshot of the system in the new quenched state, including the event
-number and the low-temperature time. The restart frequency specified
-in the :doc:`restart <restart>` command is interpreted differently when
-performing a TAD run. It does not mean the timestep interval between
-restart files. Instead it means an event interval for executed
-events. Thus a frequency of 1 means write a restart file every time
-an event is executed. A frequency of 10 means write a restart file
-every 10th executed event. When an input script reads a restart file
-from a previous TAD run, the new script can be run on a different
-number of replicas or processors.
-
-Note that within a single state, the dynamics will typically
-temporarily continue beyond the event that is ultimately chosen, until
-the stopping criterionis satisfied. When the event is eventually
-executed, the timestep counter is reset to the value when the event
-was detected. Similarly, after each quench and NEB minimization, the
-timestep counter is reset to the value at the start of the
-minimization. This means that the timesteps listed in the replica log
-files do not always increase monotonically. However, the timestep
-values printed to the master log file, dump files, and restart files
-are always monotonically increasing.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command can only be used if LAMMPS was built with the REPLICA
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-*N* setting must be integer multiple of *t_event*.
-
-Runs restarted from restart files written during a TAD run will only
-produce identical results if the user-specified integrator supports
-exact restarts. So :doc:`fix nvt <fix_nh>` will produce an exact
-restart, but :doc:`fix langevin <fix_langevin>` will not.
-
-This command cannot be used when any fixes are defined that keep track
-of elapsed time to perform time-dependent operations. Examples
-include the "ave" fixes such as :doc:`fix ave/spatial <fix_ave_spatial>`. Also :doc:`fix dt/reset <fix_dt_reset>` and :doc:`fix deposit <fix_deposit>`.
-
-Related commands
-""""""""""""""""
-
-:doc:`compute event/displace <compute_event_displace>`,
-:doc:`min_modify <min_modify>`, :doc:`min_style <min_style>`,
-:doc:`run_style <run_style>`, :doc:`minimize <minimize>`,
-:doc:`temper <temper>`, :doc:`neb <neb>`,
-:doc:`prd <prd>`
-
-Default
-"""""""
-
-The option defaults are *min* = 0.1 0.1 40 50, *neb* = 0.01 100 100
-10, *neb_style* = *quickmin*, *neb_step* = the same timestep set by
-the :doc:`timestep <timestep>` command, and *neb_log* = "none".
-
-
-----------
-
-
-.. _Voter:
-
-
-
-**(Voter)** Sorensen and Voter, J Chem Phys, 112, 9599 (2000)
-
-.. _Voter2:
-
-
-
-**(Voter2)** Voter, Montalenti, Germann, Annual Review of Materials
-Research 32, 321 (2002).
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/temper.txt b/doc/_sources/temper.txt
deleted file mode 100644
index 21ddf42a1..000000000
--- a/doc/_sources/temper.txt
+++ /dev/null
@@ -1,171 +0,0 @@
-.. index:: temper
-
-temper command
-==============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- temper N M temp fix-ID seed1 seed2 index
-
-* N = total # of timesteps to run
-* M = attempt a tempering swap every this many steps
-* temp = initial temperature for this ensemble
-* fix-ID = ID of the fix that will control temperature during the run
-* seed1 = random # seed used to decide on adjacent temperature to partner with
-* seed2 = random # seed for Boltzmann factor in Metropolis swap
-* index = which temperature (0 to N-1) I am simulating (optional)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- temper 100000 100 $t tempfix 0 58728
- temper 40000 100 $t tempfix 0 32285 $w
-
-Description
-"""""""""""
-
-Run a parallel tempering or replica exchange simulation using multiple
-replicas (ensembles) of a system. Two or more replicas must be used.
-
-Each replica runs on a partition of one or more processors. Processor
-partitions are defined at run-time using the -partition command-line
-switch; see :ref:`Section_start 6 <start_7>` of the
-manual. Note that if you have MPI installed, you can run a
-multi-replica simulation with more replicas (partitions) than you have
-physical processors, e.g you can run a 10-replica simulation on one or
-two processors. You will simply not get the performance speed-up you
-would see with one or more physical processors per replica. See :ref:`this section <howto_5>` of the manual for further
-discussion.
-
-Each replica's temperature is controlled at a different value by a fix
-with *fix-ID* that controls temperature. Most thermostat fix styles
-(with and without included time integration) are supported. The command
-will print an error message and abort, if the chosen fix is unsupported.
-The desired temperature is specified by *temp*, which is typically a
-variable previously set in the input script, so that each partition is
-assigned a different temperature. See the :doc:`variable <variable>`
-command for more details. For example:
-
-.. parsed-literal::
-
- variable t world 300.0 310.0 320.0 330.0
- fix myfix all nvt temp $t $t 100.0
- temper 100000 100 $t myfix 3847 58382
-
-would define 4 temperatures, and assign one of them to the thermostat
-used by each replica, and to the temper command.
-
-As the tempering simulation runs for *N* timesteps, a temperature swap
-between adjacent ensembles will be attempted every *M* timesteps. If
-*seed1* is 0, then the swap attempts will alternate between odd and
-even pairings. If *seed1* is non-zero then it is used as a seed in a
-random number generator to randomly choose an odd or even pairing each
-time. Each attempted swap of temperatures is either accepted or
-rejected based on a Boltzmann-weighted Metropolis criterion which uses
-*seed2* in the random number generator.
-
-As a tempering run proceeds, multiple log files and screen output
-files are created, one per replica. By default these files are named
-log.lammps.M and screen.M where M is the replica number from 0 to N-1,
-with N = # of replicas. See the :ref:`section on command-line switches <start_7>` for info on how to change these
-names.
-
-The main screen and log file (log.lammps) will list information about
-which temperature is assigned to each replica at each thermodynamic
-output timestep. E.g. for a simulation with 16 replicas:
-
-.. parsed-literal::
-
- Running on 16 partitions of processors
- Step T0 T1 T2 T3 T4 T5 T6 T7 T8 T9 T10 T11 T12 T13 T14 T15
- 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
- 500 1 0 3 2 5 4 6 7 8 9 10 11 12 13 14 15
- 1000 2 0 4 1 5 3 6 7 8 9 10 11 12 14 13 15
- 1500 2 1 4 0 5 3 6 7 9 8 10 11 12 14 13 15
- 2000 2 1 3 0 6 4 5 7 10 8 9 11 12 14 13 15
- 2500 2 1 3 0 6 4 5 7 11 8 9 10 12 14 13 15
- ...
-
-The column headings T0 to TN-1 mean which temperature is currently
-assigned to the replica 0 to N-1. Thus the columns represent replicas
-and the value in each column is its temperature (also numbered 0 to
-N-1). For example, a 0 in the 4th column (column T3, step 2500) means
-that the 4th replica is assigned temperature 0, i.e. the lowest
-temperature. You can verify this time sequence of temperature
-assignments for the Nth replica by comparing the Nth column of screen
-output to the thermodynamic data in the corresponding log.lammps.N or
-screen.N files as time proceeds.
-
-You can have each replica create its own dump file in the following
-manner:
-
-.. parsed-literal::
-
- variable rep world 0 1 2 3 4 5 6 7
- dump 1 all atom 1000 dump.temper.$*rep*
-
-.. note::
-
- Each replica's dump file will contain a continuous trajectory
- for its atoms where the temperature varies over time as swaps take
- place involving that replica. If you want a series of dump files,
- each with snapshots (from all replicas) that are all at a single
- temperature, then you will need to post-process the dump files using
- the information from the log.lammps file. E.g. you could produce one
- dump file with snapshots at 300K (from all replicas), another with
- snapshots at 310K, etc. Note that these new dump files will not
- contain "continuous trajectories" for individual atoms, because two
- successive snapshots (in time) may be from different replicas.
-
-The last argument *index* in the temper command is optional and is
-used when restarting a tempering run from a set of restart files (one
-for each replica) which had previously swapped to new temperatures.
-The *index* value (from 0 to N-1, where N is the # of replicas)
-identifies which temperature the replica was simulating on the
-timestep the restart files were written. Obviously, this argument
-must be a variable so that each partition has the correct value. Set
-the variable to the *N* values listed in the log file for the previous
-run for the replica temperatures at that timestep. For example if the
-log file listed the following for a simulation with 5 replicas:
-
-.. parsed-literal::
-
- 500000 2 4 0 1 3
-
-then a setting of
-
-.. parsed-literal::
-
- variable w world 2 4 0 1 3
-
-would be used to restart the run with a tempering command like the
-example above with $w as the last argument.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command can only be used if LAMMPS was built with the REPLICA
-package. See the :ref:`Making LAMMPS <start_3>` section
-for more info on packages.
-
-Related commands
-""""""""""""""""
-
-:doc:`variable <variable>`, :doc:`prd <prd>`, :doc:`neb <neb>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/thermo.txt b/doc/_sources/thermo.txt
deleted file mode 100644
index 05257f0ea..000000000
--- a/doc/_sources/thermo.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-.. index:: thermo
-
-thermo command
-==============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- thermo N
-
-* N = output thermodynamics every N timesteps
-* N can be a variable (see below)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- thermo 100
-
-Description
-"""""""""""
-
-Compute and print thermodynamic info (e.g. temperature, energy,
-pressure) on timesteps that are a multiple of N and at the beginning
-and end of a simulation. A value of 0 will only print thermodynamics
-at the beginning and end.
-
-The content and format of what is printed is controlled by the
-:doc:`thermo_style <thermo_style>` and
-:doc:`thermo_modify <thermo_modify>` commands.
-
-Instead of a numeric value, N can be specifed as an :doc:`equal-style variable <variable>`, which should be specified as v_name, where
-name is the variable name. In this case, the variable is evaluated at
-the beginning of a run to determine the next timestep at which
-thermodynamic info will be written out. On that timestep, the
-variable will be evaluated again to determine the next timestep, etc.
-Thus the variable should return timestep values. See the stagger()
-and logfreq() and stride() math functions for :doc:`equal-style variables <variable>`, as examples of useful functions to use in
-this context. Other similar math functions could easily be added as
-options for :doc:`equal-style variables <variable>`.
-
-For example, the following commands will output thermodynamic info at
-timesteps 0,10,20,30,100,200,300,1000,2000,etc:
-
-.. parsed-literal::
-
- variable s equal logfreq(10,3,10)
- thermo v_s
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`thermo_style <thermo_style>`, :doc:`thermo_modify <thermo_modify>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- thermo 0
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/thermo_modify.txt b/doc/_sources/thermo_modify.txt
deleted file mode 100644
index b836bde93..000000000
--- a/doc/_sources/thermo_modify.txt
+++ /dev/null
@@ -1,184 +0,0 @@
-.. index:: thermo_modify
-
-thermo_modify command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- thermo_modify keyword value ...
-
-* one or more keyword/value pairs may be listed
-.. parsed-literal::
-
- keyword = *lost* or *lost/bond* or *norm* or *flush* or *line* or *format* or *temp* or *press*:l
- *lost* value = *error* or *warn* or *ignore*
- *lost/bond* value = *error* or *warn* or *ignore*
- *norm* value = *yes* or *no*
- *flush* value = *yes* or *no*
- *line* value = *one* or *multi*
- *format* values = *int* string or *float* string or M string
- M = integer from 1 to N, where N = # of quantities being printed
- string = C-style format string
- *temp* value = compute ID that calculates a temperature
- *press* value = compute ID that calculates a pressure
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- thermo_modify lost ignore flush yes
- thermo_modify temp myTemp format 3 %15.8g
- thermo_modify line multi format float %g
-
-Description
-"""""""""""
-
-Set options for how thermodynamic information is computed and printed
-by LAMMPS.
-
-.. note::
-
- These options apply to the currently defined thermo style. When
- you specify a :doc:`thermo_style <thermo_style>` command, all
- thermodynamic settings are restored to their default values, including
- those previously reset by a thermo_modify command. Thus if your input
- script specifies a thermo_style command, you should use the
- thermo_modify command after it.
-
-The *lost* keyword determines whether LAMMPS checks for lost atoms
-each time it computes thermodynamics and what it does if atoms are
-lost. An atom can be "lost" if it moves across a non-periodic
-simulation box :doc:`boundary <boundary>` or if it moves more than a box
-length outside the simulation domain (or more than a processor
-sub-domain length) before reneighboring occurs. The latter case is
-typically due to bad dynamics, e.g. too large a timestep or huge
-forces and velocities. If the value is *ignore*, LAMMPS does not
-check for lost atoms. If the value is *error* or *warn*, LAMMPS
-checks and either issues an error or warning. The code will exit with
-an error and continue with a warning. A warning will only be issued
-once, the first time an atom is lost. This can be a useful debugging
-option.
-
-The *lost/bond* keyword determines whether LAMMPS throws an error or
-not if an atom in a bonded interaction (bond, angle, etc) cannot be
-found when it creates bonded neighbor lists. By default this is a
-fatal error. However in some scenarios it may be desirable to only
-issue a warning or ignore it and skip the computation of the missing
-bond, angle, etc. An example would be when gas molecules in a vapor
-are drifting out of the box through a fixed boundary condition (see
-the :doc:`boundary <boundary>` command). In this case one atom may be
-deleted before the rest of the molecule is, on a later timestep.
-
-The *norm* keyword determines whether various thermodynamic output
-values are normalized by the number of atoms or not, depending on
-whether it is set to *yes* or *no*. Different unit styles have
-different defaults for this setting (see below). Even if *norm* is
-set to *yes*, a value is only normalized if it is an "extensive"
-quantity, meaning that it scales with the number of atoms in the
-system. For the thermo keywords described by the doc page for the
-:doc:`thermo_style <thermo_style>` command, all energy-related keywords
-are extensive, such as *pe* or *ebond* or *enthalpy*. Other keywords
-such as *temp* or *press* are "intensive" meaning their value is
-independent (in a statistical sense) of the number of atoms in the
-system and thus are never normalized. For thermodynamic output values
-extracted from fixes and computes in a :doc:`thermo_style custom <thermo_style>` command, the doc page for the individual
-:doc:`fix <fix>` or :doc:`compute <compute>` lists whether the value is
-"extensive" or "intensive" and thus whether it is normalized.
-Thermodynamic output values calculated by a variable formula are
-assumed to be "intensive" and thus are never normalized. You can
-always include a divide by the number of atoms in the variable formula
-if this is not the case.
-
-The *flush* keyword invokes a flush operation after thermodynamic info
-is written to the log file. This insures the output in that file is
-current (no buffering by the OS), even if LAMMPS halts before the
-simulation completes.
-
-The *line* keyword determines whether thermodynamics will be printed
-as a series of numeric values on one line or in a multi-line format
-with 3 quantities with text strings per line and a dashed-line header
-containing the timestep and CPU time. This modify option overrides
-the *one* and *multi* thermo_style settings.
-
-The *format* keyword sets the numeric format of individual printed
-quantities. The *int* and *float* keywords set the format for all
-integer or floating-point quantities printed. The setting with a
-numeric value M (e.g. format 5 %10.4g) sets the format of the Mth
-value printed in each output line, e.g. the 5th column of output in
-this case. If the format for a specific column has been set, it will
-take precedent over the *int* or *float* setting.
-
-.. note::
-
- The thermo output values *step* and *atoms* are stored
- internally as 8-byte signed integers, rather than the usual 4-byte
- signed integers. When specifying the "format int" keyword you can use
- a "%d"-style format identifier in the format string and LAMMPS will
- convert this to the corresponding "%lu" form when it is applied to
- those keywords. However, when specifying the "format M string"
- keyword for *step* and *natoms*, you should specify a string
- appropriate for an 8-byte signed integer, e.g. one with "%ld".
-
-The *temp* keyword is used to determine how thermodynamic temperature
-is calculated, which is used by all thermo quantities that require a
-temperature ("temp", "press", "ke", "etotal", "enthalpy", "pxx", etc).
-The specified compute ID must have been previously defined by the user
-via the :doc:`compute <compute>` command and it must be a style of
-compute that calculates a temperature. As described in the
-:doc:`thermo_style <thermo_style>` command, thermo output uses a default
-compute for temperature with ID = *thermo_temp*. This option allows
-the user to override the default.
-
-The *press* keyword is used to determine how thermodynamic pressure is
-calculated, which is used by all thermo quantities that require a
-pressure ("press", "enthalpy", "pxx", etc). The specified compute ID
-must have been previously defined by the user via the
-:doc:`compute <compute>` command and it must be a style of compute that
-calculates a pressure. As described in the
-:doc:`thermo_style <thermo_style>` command, thermo output uses a default
-compute for pressure with ID = *thermo_press*. This option allows the
-user to override the default.
-
-.. note::
-
- If both the *temp* and *press* keywords are used in a single
- thermo_modify command (or in two separate commands), then the order in
- which the keywords are specified is important. Note that a :doc:`pressure compute <compute_pressure>` defines its own temperature compute as
- an argument when it is specified. The *temp* keyword will override
- this (for the pressure compute being used by thermodynamics), but only
- if the *temp* keyword comes after the *press* keyword. If the *temp*
- keyword comes before the *press* keyword, then the new pressure
- compute specified by the *press* keyword will be unaffected by the
- *temp* setting.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`thermo <thermo>`, :doc:`thermo_style <thermo_style>`
-
-Default
-"""""""
-
-The option defaults are lost = error, norm = yes for unit style of
-*lj*, norm = no for unit style of *real* and *metal*, flush = no,
-and temp/press = compute IDs defined by thermo_style.
-
-The defaults for the line and format options depend on the thermo
-style. For styles "one" and "custom", the line and format defaults
-are "one", "%8d", and "%12.8g". For style "multi", the line and
-format defaults are "multi", "%8d", and "%14.4f".
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/thermo_style.txt b/doc/_sources/thermo_style.txt
deleted file mode 100644
index ea5c5a843..000000000
--- a/doc/_sources/thermo_style.txt
+++ /dev/null
@@ -1,394 +0,0 @@
-.. index:: thermo_style
-
-thermo_style command
-====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- thermo_style style args
-
-* style = *one* or *multi* or *custom*
-* args = list of arguments for a particular style
-.. parsed-literal::
-
- *one* args = none
- *multi* args = none
- *custom* args = list of keywords
- possible keywords = step, elapsed, elaplong, dt, time,
- cpu, tpcpu, spcpu, cpuremain, part,
- atoms, temp, press, pe, ke, etotal, enthalpy,
- evdwl, ecoul, epair, ebond, eangle, edihed, eimp,
- emol, elong, etail,
- vol, density, lx, ly, lz, xlo, xhi, ylo, yhi, zlo, zhi,
- xy, xz, yz, xlat, ylat, zlat,
- bonds, angles, dihedrals, impropers,
- pxx, pyy, pzz, pxy, pxz, pyz,
- fmax, fnorm, nbuild, ndanger,
- cella, cellb, cellc, cellalpha, cellbeta, cellgamma,
- c_ID, c_ID[I], c_ID[I][J],
- f_ID, f_ID[I], f_ID[I][J],
- v_name, v_name[I]
- step = timestep
- elapsed = timesteps since start of this run
- elaplong = timesteps since start of initial run in a series of runs
- dt = timestep size
- time = simulation time
- cpu = elapsed CPU time in seconds
- tpcpu = time per CPU second
- spcpu = timesteps per CPU second
- cpuremain = estimated CPU time remaining in run
- part = which partition (0 to Npartition-1) this is
- atoms = # of atoms
- temp = temperature
- press = pressure
- pe = total potential energy
- ke = kinetic energy
- etotal = total energy (pe + ke)
- enthalpy = enthalpy (etotal + press*vol)
- evdwl = VanderWaal pairwise energy (includes etail)
- ecoul = Coulombic pairwise energy
- epair = pairwise energy (evdwl + ecoul + elong)
- ebond = bond energy
- eangle = angle energy
- edihed = dihedral energy
- eimp = improper energy
- emol = molecular energy (ebond + eangle + edihed + eimp)
- elong = long-range kspace energy
- etail = VanderWaal energy long-range tail correction
- vol = volume
- density = mass density of system
- lx,ly,lz = box lengths in x,y,z
- xlo,xhi,ylo,yhi,zlo,zhi = box boundaries
- xy,xz,yz = box tilt for triclinic (non-orthogonal) simulation boxes
- xlat,ylat,zlat = lattice spacings as calculated by :doc:`lattice <lattice>` command
- bonds,angles,dihedrals,impropers = # of these interactions defined
- pxx,pyy,pzz,pxy,pxz,pyz = 6 components of pressure tensor
- fmax = max component of force on any atom in any dimension
- fnorm = length of force vector for all atoms
- nbuild = # of neighbor list builds
- ndanger = # of dangerous neighbor list builds
- cella,cellb,cellc = periodic cell lattice constants a,b,c
- cellalpha, cellbeta, cellgamma = periodic cell angles alpha,beta,gamma
- c_ID = global scalar value calculated by a compute with ID
- c_ID[I] = Ith component of global vector calculated by a compute with ID
- c_ID[I][J] = I,J component of global array calculated by a compute with ID
- f_ID = global scalar value calculated by a fix with ID
- f_ID[I] = Ith component of global vector calculated by a fix with ID
- f_ID[I][J] = I,J component of global array calculated by a fix with ID
- v_name = value calculated by an equal-style variable with name
- v_name[I] = value calculated by a vector-style variable with name
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- thermo_style multi
- thermo_style custom step temp pe etotal press vol
- thermo_style custom step temp etotal c_myTemp v_abc
-
-Description
-"""""""""""
-
-Set the style and content for printing thermodynamic data to the
-screen and log file.
-
-Style *one* prints a one-line summary of thermodynamic info that is
-the equivalent of "thermo_style custom step temp epair emol etotal
-press". The line contains only numeric values.
-
-Style *multi* prints a multiple-line listing of thermodynamic info
-that is the equivalent of "thermo_style custom etotal ke temp pe ebond
-eangle edihed eimp evdwl ecoul elong press". The listing contains
-numeric values and a string ID for each quantity.
-
-Style *custom* is the most general setting and allows you to specify
-which of the keywords listed above you want printed on each
-thermodynamic timestep. Note that the keywords c_ID, f_ID, v_name are
-references to :doc:`computes <compute>`, :doc:`fixes <fix>`, and
-equal-style `variables <variable.html">`_ that have been defined
-elsewhere in the input script or can even be new styles which users
-have added to LAMMPS (see the :doc:`Section_modify <Section_modify>`
-section of the documentation). Thus the *custom* style provides a
-flexible means of outputting essentially any desired quantity as a
-simulation proceeds.
-
-All styles except *custom* have *vol* appended to their list of
-outputs if the simulation box volume changes during the simulation.
-
-The values printed by the various keywords are instantaneous values,
-calculated on the current timestep. Time-averaged quantities, which
-include values from previous timesteps, can be output by using the
-f_ID keyword and accessing a fix that does time-averaging such as the
-:doc:`fix ave/time <fix_ave_time>` command.
-
-Options invoked by the :doc:`thermo_modify <thermo_modify>` command can
-be used to set the one- or multi-line format of the print-out, the
-normalization of thermodynamic output (total values versus per-atom
-values for extensive quantities (ones which scale with the number of
-atoms in the system), and the numeric precision of each printed value.
-
-.. note::
-
- When you use a "thermo_style" command, all thermodynamic
- settings are restored to their default values, including those
- previously set by a :doc:`thermo_modify <thermo_modify>` command. Thus
- if your input script specifies a thermo_style command, you should use
- the thermo_modify command after it.
-
-
-----------
-
-
-Several of the thermodynamic quantities require a temperature to be
-computed: "temp", "press", "ke", "etotal", "enthalpy", "pxx", etc. By
-default this is done by using a *temperature* compute which is created
-when LAMMPS starts up, as if this command had been issued:
-
-.. parsed-literal::
-
- compute thermo_temp all temp
-
-See the :doc:`compute temp <compute_temp>` command for details. Note
-that the ID of this compute is *thermo_temp* and the group is *all*.
-You can change the attributes of this temperature (e.g. its
-degrees-of-freedom) via the :doc:`compute_modify <compute_modify>`
-command. Alternatively, you can directly assign a new compute (that
-calculates temperature) which you have defined, to be used for
-calculating any thermodynamic quantity that requires a temperature.
-This is done via the :doc:`thermo_modify <thermo_modify>` command.
-
-Several of the thermodynamic quantities require a pressure to be
-computed: "press", "enthalpy", "pxx", etc. By default this is done by
-using a *pressure* compute which is created when LAMMPS starts up, as
-if this command had been issued:
-
-.. parsed-literal::
-
- compute thermo_press all pressure thermo_temp
-
-See the :doc:`compute pressure <compute_pressure>` command for details.
-Note that the ID of this compute is *thermo_press* and the group is
-*all*. You can change the attributes of this pressure via the
-:doc:`compute_modify <compute_modify>` command. Alternatively, you can
-directly assign a new compute (that calculates pressure) which you
-have defined, to be used for calculating any thermodynamic quantity
-that requires a pressure. This is done via the
-:doc:`thermo_modify <thermo_modify>` command.
-
-Several of the thermodynamic quantities require a potential energy to
-be computed: "pe", "etotal", "ebond", etc. This is done by using a
-*pe* compute which is created when LAMMPS starts up, as if this
-command had been issued:
-
-.. parsed-literal::
-
- compute thermo_pe all pe
-
-See the :doc:`compute pe <compute_pe>` command for details. Note that
-the ID of this compute is *thermo_pe* and the group is *all*. You can
-change the attributes of this potential energy via the
-:doc:`compute_modify <compute_modify>` command.
-
-
-----------
-
-
-The kinetic energy of the system *ke* is inferred from the temperature
-of the system with 1/2 Kb T of energy for each degree of freedom.
-Thus, using different :doc:`compute commands <compute>` for calculating
-temperature, via the :doc:`thermo_modify temp <thermo_modify>` command,
-may yield different kinetic energies, since different computes that
-calculate temperature can subtract out different non-thermal
-components of velocity and/or include different degrees of freedom
-(translational, rotational, etc).
-
-The potential energy of the system *pe* will include contributions
-from fixes if the :doc:`fix_modify thermo <fix_modify>` option is set
-for a fix that calculates such a contribution. For example, the :doc:`fix wall/lj93 <fix_wall>` fix calculates the energy of atoms
-interacting with the wall. See the doc pages for "individual fixes"
-to see which ones contribute.
-
-A long-range tail correction *etail* for the VanderWaal pairwise
-energy will be non-zero only if the :doc:`pair_modify tail <pair_modify>` option is turned on. The *etail* contribution
-is included in *evdwl*, *epair*, *pe*, and *etotal*, and the
-corresponding tail correction to the pressure is included in *press*
-and *pxx*, *pyy*, etc.
-
-
-----------
-
-
-The *step*, *elapsed*, and *elaplong* keywords refer to timestep
-count. *Step* is the current timestep, or iteration count when a
-:doc:`minimization <minimize>` is being performed. *Elapsed* is the
-number of timesteps elapsed since the beginning of this run.
-*Elaplong* is the number of timesteps elapsed since the beginning of
-an initial run in a series of runs. See the *start* and *stop*
-keywords for the :doc:`run <run>` for info on how to invoke a series of
-runs that keep track of an initial starting time. If these keywords
-are not used, then *elapsed* and *elaplong* are the same value.
-
-The *dt* keyword is the current timestep size in time
-:doc:`units <units>`. The *time* keyword is the current elapsed
-simulation time, also in time :doc:`units <units>`, which is simply
-(step*dt) if the timestep size has not changed and the timestep has
-not been reset. If the timestep has changed (e.g. via :doc:`fix dt/reset <fix_dt_reset>`) or the timestep has been reset (e.g. via
-the "reset_timestep" command), then the simulation time is effectively
-a cummulative value up to the current point.
-
-The *cpu* keyword is elapsed CPU seconds since the beginning of this
-run. The *tpcpu* and *spcpu* keywords are measures of how fast your
-simulation is currently running. The *tpcpu* keyword is simulation
-time per CPU second, where simulation time is in time
-:doc:`units <units>`. E.g. for metal units, the *tpcpu* value would be
-picoseconds per CPU second. The *spcpu* keyword is the number of
-timesteps per CPU second. Both quantities are on-the-fly metrics,
-measured relative to the last time they were invoked. Thus if you are
-printing out thermodyamic output every 100 timesteps, the two keywords
-will continually output the time and timestep rate for the last 100
-steps. The *tpcpu* keyword does not attempt to track any changes in
-timestep size, e.g. due to using the :doc:`fix dt/reset <fix_dt_reset>`
-command.
-
-The *cpuremain* keyword estimates the CPU time remaining in the
-current run, based on the time elapsed thus far. It will only be a
-good estimate if the CPU time/timestep for the rest of the run is
-similar to the preceding timesteps. On the initial timestep the value
-will be 0.0 since there is no history to estimate from. For a
-minimization run performed by the "minimize" command, the estimate is
-based on the *maxiter* parameter, assuming the minimization will
-proceed for the maximum number of allowed iterations.
-
-The *part* keyword is useful for multi-replica or multi-partition
-simulations to indicate which partition this output and this file
-corresponds to, or for use in a :doc:`variable <variable>` to append to
-a filename for output specific to this partition. See :ref:`Section_start 7 <start_7>` of the manual for details on running in
-multi-partition mode.
-
-The *fmax* and *fnorm* keywords are useful for monitoring the progress
-of an :doc:`energy minimization <minimize>`. The *fmax* keyword
-calculates the maximum force in any dimension on any atom in the
-system, or the infinity-norm of the force vector for the system. The
-*fnorm* keyword calculates the 2-norm or length of the force vector.
-
-The *nbuild* and *ndanger* keywords are useful for monitoring neighbor
-list builds during a run. Note that both these values are also
-printed with the end-of-run statistics. The *nbuild* keyword is the
-number of re-builds during the current run. The *ndanger* keyword is
-the number of re-builds that LAMMPS considered potentially
-"dangerous". If atom movement triggered neighbor list rebuilding (see
-the :doc:`neigh_modify <neigh_modify>` command), then dangerous
-reneighborings are those that were triggered on the first timestep
-atom movement was checked for. If this count is non-zero you may wish
-to reduce the delay factor to insure no force interactions are missed
-by atoms moving beyond the neighbor skin distance before a rebuild
-takes place.
-
-The keywords *cella*, *cellb*, *cellc*, *cellalpha*, *cellbeta*,
-*cellgamma*, correspond to the usual crystallographic quantities that
-define the periodic unit cell of a crystal. See :ref:`this section <howto_12>` of the doc pages for a geometric
-description of triclinic periodic cells, including a precise defintion
-of these quantities in terms of the internal LAMMPS cell dimensions
-*lx*, *ly*, *lz*, *yz*, *xz*, *xy*.
-
-
-----------
-
-
-The *c_ID* and *c_ID[I]* and *c_ID[I][J]* keywords allow global
-values calculated by a compute to be output. As discussed on the
-:doc:`compute <compute>` doc page, computes can calculate global,
-per-atom, or local values. Only global values can be referenced by
-this command. However, per-atom compute values can be referenced in a
-:doc:`variable <variable>` and the variable referenced by thermo_style
-custom, as discussed below.
-
-The ID in the keyword should be replaced by the actual ID of a compute
-that has been defined elsewhere in the input script. See the
-:doc:`compute <compute>` command for details. If the compute calculates
-a global scalar, vector, or array, then the keyword formats with 0, 1,
-or 2 brackets will reference a scalar value from the compute.
-
-Note that some computes calculate "intensive" global quantities like
-temperature; others calculate "extensive" global quantities like
-kinetic energy that are summed over all atoms in the compute group.
-Intensive quantities are printed directly without normalization by
-thermo_style custom. Extensive quantities may be normalized by the
-total number of atoms in the simulation (NOT the number of atoms in
-the compute group) when output, depending on the :doc:`thermo_modify norm <thermo_modify>` option being used.
-
-The *f_ID* and *f_ID[I]* and *f_ID[I][J]* keywords allow global
-values calculated by a fix to be output. As discussed on the
-:doc:`fix <fix>` doc page, fixes can calculate global, per-atom, or
-local values. Only global values can be referenced by this command.
-However, per-atom fix values can be referenced in a
-:doc:`variable <variable>` and the variable referenced by thermo_style
-custom, as discussed below.
-
-The ID in the keyword should be replaced by the actual ID of a fix
-that has been defined elsewhere in the input script. See the
-:doc:`fix <fix>` command for details. If the fix calculates a global
-scalar, vector, or array, then the keyword formats with 0, 1, or 2
-brackets will reference a scalar value from the fix.
-
-Note that some fixes calculate "intensive" global quantities like
-timestep size; others calculate "extensive" global quantities like
-energy that are summed over all atoms in the fix group. Intensive
-quantities are printed directly without normalization by thermo_style
-custom. Extensive quantities may be normalized by the total number of
-atoms in the simulation (NOT the number of atoms in the fix group)
-when output, depending on the :doc:`thermo_modify norm <thermo_modify>`
-option being used.
-
-The *v_name* keyword allow the current value of a variable to be
-output. The name in the keyword should be replaced by the variable
-name that has been defined elsewhere in the input script. Only
-equal-style and vector-style variables can be referenced; the latter
-requires a bracketed term to specify the Ith element of the vector
-calculated by the variable. See the :doc:`variable <variable>` command
-for details. Variables of style *equal* and *vector* define a formula
-which can reference per-atom properties or thermodynamic keywords, or
-they can invoke other computes, fixes, or variables when evaluated, so
-this is a very general means of creating thermodynamic output.
-
-Note that equal-style and vector-style variables are assumed to
-produce "intensive" global quantities, which are thus printed as-is,
-without normalization by thermo_style custom. You can include a
-division by "natoms" in the variable formula if this is not the case.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command must come after the simulation box is defined by a
-:doc:`read_data <read_data>`, :doc:`read_restart <read_restart>`, or
-:doc:`create_box <create_box>` command.
-
-Related commands
-""""""""""""""""
-
-:doc:`thermo <thermo>`, :doc:`thermo_modify <thermo_modify>`,
-:doc:`fix_modify <fix_modify>`, :doc:`compute temp <compute_temp>`,
-:doc:`compute pressure <compute_pressure>`
-
-Default
-"""""""
-
-.. parsed-literal::
-
- thermo_style one
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/timer.txt b/doc/_sources/timer.txt
deleted file mode 100644
index 789edc109..000000000
--- a/doc/_sources/timer.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-.. index:: timer
-
-timer command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- timer args
-
-* *args* = one or more of *off* or *loop* or *normal* or *full* or *sync* or *nosync*
-.. parsed-literal::
-
- *off* = do not collect or print any timing information
- *loop* = collect only the total time for the simulation loop
- *normal* = collect timer information broken down by sections (default)
- *full* = like *normal* but also include CPU and thread utilzation
- *sync* = explicitly synchronize MPI tasks between sections
- *nosync* = do not synchronize MPI tasks between sections (default)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- timer full sync
- timer loop
-
-Description
-"""""""""""
-
-Select the level of detail LAMMPS performs its CPU timings.
-
-During a simulation run LAMMPS collects information about how much
-time is spent in different sections of the code and thus can provide
-valuable information for determining performance and load imbalance
-problems. This can be done at different levels of detail and
-accuracy. For more information about the timing output, see this
-:ref:`discussion of screen output <start_8>`.
-
-The *off* setting will turn all time measurements off. The *loop*
-setting will only measure the total time for a run and not collect any
-detailed per section information. With the *normal* setting, timing
-information for portions of the timestep (pairwise calculations,
-neighbor list construction, output, etc) are collected as well as
-information about load imbalances for those sections across
-procsessors. The *full* setting adds information about CPU
-utilization and thread utilization, when multi-threading is enabled.
-
-With the *sync* setting, all MPI tasks are synchronized at each timer
-call which meaures load imbalance more accuractly, though it can also
-slow down the simulation. Using the *nosync* setting (which is the
-default) turns off this synchronization.
-
-Multiple keywords can be specified. For keywords that are mutually
-exclusive, the last one specified takes effect.
-
-.. note::
-
- Using the *full* and *sync* options provides the most detailed
- and accurate timing information, but can also have a negative
- performance impact due to the overhead of the many required system
- calls. It is thus recommended to use these settings only when testing
- tests to identify performance bottlenecks. For calculations with few
- atoms or a very large number of processors, even the *normal* setting
- can have a measurable negative performance impact. In those cases you
- can just use the *loop* or *off* setting.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`run post no <run>`, :doc:`kspace_modify fftbench <kspace_modify>`
-
-Default
-"""""""
-
-timer normal nosync
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/timers.txt b/doc/_sources/timers.txt
deleted file mode 100644
index 10437add1..000000000
--- a/doc/_sources/timers.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-.. index:: timestep
-
-timestep command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- timers args
-
-* *args* = one or more of *off* or *loop* or *normal* or *full* or *sync* or *nosync*
-.. parsed-literal::
-
- *off* = do not collect and print timing information
- *loop* = collect only the total time for the simulation loop
- *normal* = collect timer information broken down in sections (default)
- *full* = like *normal* but also include CPU and thread utilzation
- *sync* = explicitly synchronize MPI tasks between sections
- *nosync* = do not synchronize MPI tasks when collecting timer info (default)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- timers full sync
- timers loop
-
-Description
-"""""""""""
-
-Select to which level of detail LAMMPS is performing internal profiling.
-
-During regular runs LAMMPS will collect information about how much time is
-spent in different sections of the code and thus can provide valuable
-information for determining performance and load imbalance problems. This
-can be done at different levels of detail and accuracy. For more
-information about the timing output, please have a look at the :ref:`discussion of screen output <start_8>`.
-
-The *off* setting will turn all time measurements off. The *loop* setting
-will only measure the total time of run loop and not collect any detailed
-per section information. With the *normal* setting, timing information for
-individual sections of the code are collected and also information about
-load imbalances inside those sections presented. The *full* setting adds
-information about CPU utilization and thread utilization, when multi-threading
-is enabled.
-
-With the *sync* setting, all MPI tasks are synchronized at each timer call
-and thus allowing to study load imbalance more accuractly, but this usually
-has some performance impact. Using the *nosync* setting this can be turned
-off (which is the default).
-
-Multiple keywords can be provided and for keywords that are mutually
-exclusive, the last one in that group is taking effect.
-
-.. warning::
-
- Using the *full* and *sync* options provides the most
- detailed and accurate timing information, but also can have a significant
- negative performance impact due to the overhead of the many required system
- calls. It is thus recommended to use these settings only when making tests
- to identify the performance. For calculations with few atoms or a very
- large number of performance, even using the *normal* setting can have
- a measurable performance impact. It is recommended in those cases to use
- the *loop* or *off* setting.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-:doc:`run post no <run>`, :doc:`kspace_modify fftbench <kspace_modify>`
-
-Default
-"""""""
-
-timers normal nosync
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/timestep.txt b/doc/_sources/timestep.txt
deleted file mode 100644
index c80489b64..000000000
--- a/doc/_sources/timestep.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-.. index:: timestep
-
-timestep command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- timestep dt
-
-* dt = timestep size (time units)
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- timestep 2.0
- timestep 0.003
-
-Description
-"""""""""""
-
-Set the timestep size for subsequent molecular dynamics simulations.
-See the :doc:`units <units>` command for the time units associated with
-each choice of units that LAMMPS supports.
-
-The default value for the timestep size also depends on the choice of
-units for the simulation; see the default values below.
-
-When the :doc:`run style <run_style>` is *respa*, dt is the timestep for
-the outer loop (largest) timestep.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix dt/reset <fix_dt_reset>`, :doc:`run <run>`,
-:doc:`run_style <run_style>` respa, :doc:`units <units>`
-
-Default
-"""""""
-
-+--------------------------------+------------+-----------------------+
-| choice of :doc:`units <units>` | time units | default timestep size |
-+--------------------------------+------------+-----------------------+
-| lj | tau | 0.005 tau |
-+--------------------------------+------------+-----------------------+
-| real | fmsec | 1.0 fmsec |
-+--------------------------------+------------+-----------------------+
-| metal | psec | 0.001 psec |
-+--------------------------------+------------+-----------------------+
-| si | sec | 1.0e-8 sec (10 nsec) |
-+--------------------------------+------------+-----------------------+
-| cgs | sec | 1.0e-8 sec (10 nsec) |
-+--------------------------------+------------+-----------------------+
-| electron | fmsec | 0.001 fmsec |
-+--------------------------------+------------+-----------------------+
-| micro | usec | 2.0 usec |
-+--------------------------------+------------+-----------------------+
-| nano | nsec | 0.00045 nsec |
-+--------------------------------+------------+-----------------------+
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/tutorial_drude.txt b/doc/_sources/tutorial_drude.txt
deleted file mode 100644
index e66865a8e..000000000
--- a/doc/_sources/tutorial_drude.txt
+++ /dev/null
@@ -1,518 +0,0 @@
-**Overview of Drude induced dipoles**
-
-Polarizable atoms acquire an induced electric dipole moment under the
-action of an external electric field, for example the electric field
-created by the surrounding particles. Drude oscillators represent
-these dipoles by two fixed charges: the core (DC) and the Drude
-particle (DP) bound by a harmonic potential. The Drude particle can be
-thought of as the electron cloud whose center can be displaced from
-the position of the the corresponding nucleus.
-
-The sum of the masses of a core-Drude pair should be the mass of the
-initial (unsplit) atom, :math:`m_C + m_D = m`. The sum of their charges
-should be the charge of the initial (unsplit) atom, :math:`q_C + q_D = q`.
-A harmonic potential between the core and Drude partners should be
-present, with force constant :math:`k_D` and an equilibrium distance of
-zero. The (half-)stiffness of the :doc:`harmonic bond <bond_harmonic>`
-:math:`K_D = k_D/2` and the Drude charge :math:`q_D` are related to the atom
-polarizability :math:`\alpha` by
-
-
-.. math::
-
- \begin{equation} K_D = \frac 1 2\, \frac {q_D^2} \alpha\end{equation}
-
-Ideally, the mass of the Drude particle should be small, and the
-stiffness of the harmonic bond should be large, so that the Drude
-particle remains close ot the core. The values of Drude mass, Drude
-charge, and force constant can be chosen following different
-strategies, as in the following examples of polarizable force
-fields.
-
-* :ref:`Lamoureux and Roux <Lamoureux>` suggest adopting a global
- half-stiffness, :math:`K_D` = 500 kcal/(mol &Aring;<sup>2</sup>) &mdash;
- which corresponds to a force constant :math:`k_D` = 4184 kJ/(mol
- &Aring;<sup>2</sup>) &mdash; for all types of core-Drude bond, a
- global mass :math:`m_D` = 0.4 g/mol (or u) for all types of Drude
- particle, and to calculate the Drude charges for individual atom types
- from the atom polarizabilities using equation (1). This choice is
- followed in the polarizable CHARMM force field.
-* :ref:`Schroeder and Steinhauser <Schroeder>` suggest adopting a global
- charge :math:`q_D` = -1.0e and a global mass :math:`m_D` = 0.1 g/mol (or u)
- for all Drude particles, and to calculate the force constant for each
- type of core-Drude bond from equation (1). The timesteps used by these
- authors are between 0.5 and 2 fs, with the degrees of freedom of the
- Drude oscillators kept cold at 1 K. In both these force fields
- hydrogen atoms are treated as non-polarizable.
-The motion of of the Drude particles can be calculated by minimizing
-the energy of the induced dipoles at each timestep, by an interative,
-self-consistent procedure. The Drude particles can be massless and
-therefore do not contribute to the kinetic energy. However, the
-relaxed method is computationall slow. An extended-lagrangian method
-can be used to calculate the positions of the Drude particles, but
-this requires them to have mass. It is important in this case to
-decouple the degrees of freedom associated with the Drude oscillators
-from those of the normal atoms. Thermalizing the Drude dipoles at
-temperatures comparable to the rest of the simulation leads to several
-problems (kinetic energy transfer, very short timestep, etc.), which
-can be remediated by the "cold Drude" technique (:ref:`Lamoureux and Roux <Lamoureux>`).
-
-Two closely related models are used to represent polarization through
-"charges on a spring": the core-shell model and the Drude
-model. Although the basic idea is the same, the core-shell model is
-normally used for ionic/crystalline materials, whereas the Drude model
-is normally used for molecular systems and fluid states. In ionic
-crystals the symmetry around each ion and the distance between them
-are such that the core-shell model is sufficiently stable. But to be
-applicable to molecular/covalent systems the Drude model includes two
-important features:
-
-#. The possibility to thermostat the additional degrees of freedom
- associated with the induced dipoles at very low temperature, in terms
- of the reduced coordinates of the Drude particles with respect to
- their cores. This makes the trajectory close to that of relaxed
- induced dipoles.
-#. The Drude dipoles on covalently bonded atoms interact too strongly
- due to the short distances, so an atom may capture the Drude particle
- (shell) of a neighbor, or the induced dipoles within the same molecule
- may align too much. To avoid this, damping at short of the
- interactions between the point charges composing the induced dipole
- can be done by :ref:`Thole <Thole>` functions.
-
-----------
-
-
-**Preparation of the data file**
-
-The data file is similar to a standard LAMMPS data file for
-*atom_style full*. The DPs and the *harmonic bonds* connecting them
-to their DC should appear in the data file as normal atoms and bonds.
-
-You can use the *polarizer* tool (Python script distributed with the
-USER-DRUDE package) to convert a non-polarizable data file (here
-*data.102494.lmp*) to a polarizable data file (*data-p.lmp*)
-
-.. parsed-literal::
-
- polarizer -q -f phenol.dff data.102494.lmp data-p.lmp
-
-This will automatically insert the new atoms and bonds.
-The masses and charges of DCs and DPs are computed
-from *phenol.dff*, as well as the DC-DP bond constants. The file
-*phenol.dff* contains the polarizabilities of the atom types
-and the mass of the Drude particles, for instance:
-
-.. parsed-literal::
-
- # units: kJ/mol, A, deg
- # kforce is in the form k/2 r_D^2
- # type m_D/u q_D/e k_D alpha/A3 thole
- OH 0.4 -1.0 4184.0 0.63 0.67
- CA 0.4 -1.0 4184.0 1.36 2.51
- CAI 0.4 -1.0 4184.0 1.09 2.51
-
-The hydrogen atoms are absent from this file, so they will be treated
-as non-polarizable atoms. In the non-polarizable data file
-*data.102494.lmp*, atom names corresponding to the atom type numbers
-have to be specified as comments at the end of lines of the *Masses*
-section. You probably need to edit it to add these names. It should
-look like
-
-.. parsed-literal::
-
- Masses
-
-.. parsed-literal::
-
- 1 12.011 # CAI
- 2 12.011 # CA
- 3 15.999 # OH
- 4 1.008 # HA
- 5 1.008 # HO
-
-
-----------
-
-
-**Basic input file**
-
-The atom style should be set to (or derive from) *full*, so that you
-can define atomic charges and molecular bonds, angles, dihedrals...
-
-The *polarizer* tool also outputs certain lines related to the input
-script (the use of these lines will be explained below). In order for
-LAMMPS to recognize that you are using Drude oscillators, you should
-use the fix *drude*. The command is
-
-.. parsed-literal::
-
- fix DRUDE all drude C C C N N D D D
-
-The N, C, D following the *drude* keyword have the following meaning:
-There is one tag for each atom type. This tag is C for DCs, D for DPs
-and N for non-polarizable atoms. Here the atom types 1 to 3 (C and O
-atoms) are DC, atom types 4 and 5 (H atoms) are non-polarizable and
-the atom types 6 to 8 are the newly created DPs.
-
-By recognizing the fix *drude*, LAMMPS will find and store matching
-DC-DP pairs and will treat DP as equivalent to their DC in the
-*special bonds* relations. It may be necessary to extend the space
-for storing such special relations. In this case extra space should
-be reserved by using the *extra* keyword of the *special_bonds*
-command. With our phenol, there is 1 more special neighbor for which
-space is required. Otherwise LAMMPS crashes and gives the required
-value.
-
-.. parsed-literal::
-
- special_bonds lj/coul 0.0 0.0 0.5 extra 1
-
-Let us assume we want to run a simple NVT simulation at 300 K. Note
-that Drude oscillators need to be thermalized at a low temperature in
-order to approximate a self-consistent field (SCF), therefore it is not
-possible to simulate an NVE ensemble with this package. Since dipoles
-are approximated by a charged DC-DP pair, the *pair_style* must
-include Coulomb interactions, for instance *lj/cut/coul/long* with
-*kspace_style pppm*. For example, with a cutoff of 10. and a precision
-1.e-4:
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/long 10.0
- kspace_style pppm 1.0e-4
-
-As compared to the non-polarizable input file, *pair_coeff* lines need
-to be added for the DPs. Since the DPs have no Lennard-Jones
-interactions, their *epsilon* is 0. so the only *pair_coeff* line
-that needs to be added is
-
-.. parsed-literal::
-
- pair_coeff * 6* 0.0 0.0 # All-DPs
-
-Now for the thermalization, the simplest choice is to use the :doc:`fix langevin/drude <fix_langevin_drude>`.
-
-.. parsed-literal::
-
- fix LANG all langevin/drude 300. 100 12435 1. 20 13977
-
-This applies a Langevin thermostat at temperature 300. to the centers
-of mass of the DC-DP pairs, with relaxation time 100 and with random
-seed 12345. This fix applies also a Langevin thermostat at temperature
-1. to the relative motion of the DPs around their DCs, with relaxation
-time 20 and random seed 13977. Only the DCs and non-polarizable
-atoms need to be in this fix's group. LAMMPS will thermostate the DPs
-together with their DC. For this, ghost atoms need to know their
-velocities. Thus you need to add the following command:
-
-.. parsed-literal::
-
- comm_modify vel yes
-
-In order to avoid that the center of mass of the whole system
-drifts due to the random forces of the Langevin thermostat on DCs, you
-can add the *zero yes* option at the end of the fix line.
-
-If the fix *shake* is used to constrain the C-H bonds, it should be
-invoked after the fix *langevin/drude* for more accuracy.
-
-.. parsed-literal::
-
- fix SHAKE ATOMS shake 0.0001 20 0 t 4 5
-
-.. note::
-
- The group of the fix *shake* must not include the DPs. If the
- group *ATOMS* is defined by non-DPs atom types, you could use
-
-Since the fix *langevin/drude* does not perform time integration (just
-modification of forces but no position/velocity updates), the fix
-*nve* should be used in conjunction.
-
-.. parsed-literal::
-
- fix NVE all nve
-
-Finally, do not forget to update the atom type elements if you use
-them in a *dump_modify ... element ...* command, by adding the element
-type of the DPs. Here for instance
-
-.. parsed-literal::
-
- dump DUMP all custom 10 dump.lammpstrj id mol type element x y z ix iy iz
- dump_modify DUMP element C C O H H D D D
-
-The input file should now be ready for use!
-
-You will notice that the global temperature *thermo_temp* computed by
-LAMMPS is not 300. K as wanted. This is because LAMMPS treats DPs as
-standard atoms in his default compute. If you want to output the
-temperatures of the DC-DP pair centers of mass and of the DPs relative
-to their DCs, you should use the :doc:`compute temp_drude <compute_temp_drude>`
-
-.. parsed-literal::
-
- compute TDRUDE all temp/drude
-
-And then output the correct temperatures of the Drude oscillators
-using *thermo_style custom* with respectively *c_TDRUDE[1]* and
-*c_TDRUDE[2]*. These should be close to 300.0 and 1.0 on average.
-
-.. parsed-literal::
-
- thermo_style custom step temp c_TDRUDE[1] c_TDRUDE[2]
-
-
-----------
-
-
-**Thole screening**
-
-Dipolar interactions represented by point charges on springs may not
-be stable, for example if the atomic polarizability is too high for
-instance, a DP can escape from its DC and be captured by another DC,
-which makes the force and energy diverge and the simulation
-crash. Even without reaching this extreme case, the correlation
-between nearby dipoles on the same molecule may be exagerated. Often,
-special bond relations prevent bonded neighboring atoms to see the
-charge of each other's DP, so that the problem does not always appear.
-It is possible to use screened dipole dipole interactions by using the
-:doc:`*pair_style thole* <pair_thole>`. This is implemented as a
-correction to the Coulomb pair_styles, which dampens at short distance
-the interactions between the charges representing the induced dipoles.
-It is to be used as *hybrid/overlay* with any standard *coul* pair
-style. In our example, we would use
-
-.. parsed-literal::
-
- pair_style hybrid/overlay lj/cut/coul/long 10.0 thole 2.6 10.0
-
-This tells LAMMPS that we are using two pair_styles. The first one is
-as above (*lj/cut/coul/long 10.0*). The second one is a *thole*
-pair_style with default screening factor 2.6 (:ref:`Noskov <Noskov>`) and
-cutoff 10.0.
-
-Since *hybrid/overlay* does not support mixing rules, the interaction
-coefficients of all the pairs of atom types with i < j should be
-explicitly defined. The output of the *polarizer* script can be used
-to complete the *pair_coeff* section of the input file. In our
-example, this will look like:
-
-.. parsed-literal::
-
- pair_coeff 1 1 lj/cut/coul/long 0.0700 3.550
- pair_coeff 1 2 lj/cut/coul/long 0.0700 3.550
- pair_coeff 1 3 lj/cut/coul/long 0.1091 3.310
- pair_coeff 1 4 lj/cut/coul/long 0.0458 2.985
- pair_coeff 2 2 lj/cut/coul/long 0.0700 3.550
- pair_coeff 2 3 lj/cut/coul/long 0.1091 3.310
- pair_coeff 2 4 lj/cut/coul/long 0.0458 2.985
- pair_coeff 3 3 lj/cut/coul/long 0.1700 3.070
- pair_coeff 3 4 lj/cut/coul/long 0.0714 2.745
- pair_coeff 4 4 lj/cut/coul/long 0.0300 2.420
- pair_coeff * 5 lj/cut/coul/long 0.0000 0.000
- pair_coeff * 6* lj/cut/coul/long 0.0000 0.000
- pair_coeff 1 1 thole 1.090 2.510
- pair_coeff 1 2 thole 1.218 2.510
- pair_coeff 1 3 thole 0.829 1.590
- pair_coeff 1 6 thole 1.090 2.510
- pair_coeff 1 7 thole 1.218 2.510
- pair_coeff 1 8 thole 0.829 1.590
- pair_coeff 2 2 thole 1.360 2.510
- pair_coeff 2 3 thole 0.926 1.590
- pair_coeff 2 6 thole 1.218 2.510
- pair_coeff 2 7 thole 1.360 2.510
- pair_coeff 2 8 thole 0.926 1.590
- pair_coeff 3 3 thole 0.630 0.670
- pair_coeff 3 6 thole 0.829 1.590
- pair_coeff 3 7 thole 0.926 1.590
- pair_coeff 3 8 thole 0.630 0.670
- pair_coeff 6 6 thole 1.090 2.510
- pair_coeff 6 7 thole 1.218 2.510
- pair_coeff 6 8 thole 0.829 1.590
- pair_coeff 7 7 thole 1.360 2.510
- pair_coeff 7 8 thole 0.926 1.590
- pair_coeff 8 8 thole 0.630 0.670
-
-For the *thole* pair style the coefficients are
-
-#. the atom polarizability in units of cubic length
-#. the screening factor of the Thole function (optional, default value
- specified by the pair_style command)
-* the cutoff (optional, default value defined by the pair_style command)
-The special neighbors have charge-charge and charge-dipole
-interactions screened by the *coul* factors of the *special_bonds*
-command (0.0, 0.0, and 0.5 in the example above). Without using the
-pair_style *thole*, dipole-dipole interactions are screened by the
-same factor. By using the pair_style *thole*, dipole-dipole
-interactions are screened by Thole's function, whatever their special
-relationship (except within each DC-DP pair of course). Consider for
-example 1-2 neighbors: using the pair_style *thole*, their dipoles
-will see each other (despite the *coul* factor being 0.) and the
-interactions between these dipoles will be damped by Thole's function.
-
-
-----------
-
-
-**Thermostats and barostats**
-
-Using a Nose-Hoover barostat with the *langevin/drude* thermostat is
-straightforward using fix *nph* instead of *nve*. For example:
-
-.. parsed-literal::
-
- fix NPH all nph iso 1. 1. 500
-
-It is also possible to use a Nose-Hoover instead of a Langevin
-thermostat. This requires to use :doc:`*fix drude/transform* <fix_drude_transform>` just before and after the
-time intergation fixes. The *fix drude/transform/direct* converts the
-atomic masses, positions, velocities and forces into a reduced
-representation, where the DCs transform into the centers of mass of
-the DC-DP pairs and the DPs transform into their relative position
-with respect to their DC. The *fix drude/transform/inverse* performs
-the reverse transformation. For a NVT simulation, with the DCs and
-atoms at 300 K and the DPs at 1 K relative to their DC one would use
-
-.. parsed-literal::
-
- fix DIRECT all drude/transform/direct
- fix NVT1 ATOMS nvt temp 300. 300. 100
- fix NVT2 DRUDES nvt temp 1. 1. 20
- fix INVERSE all drude/transform/inverse
-
-For our phenol example, the groups would be defined as
-
-.. parsed-literal::
-
- group ATOMS type 1 2 3 4 5 # DCs and non-polarizable atoms
- group CORES type 1 2 3 # DCs
- group DRUDES type 6 7 8 # DPs
-
-Note that with the fixes *drude/transform*, it is not required to
-specify *comm_modify vel yes* because the fixes do it anyway (several
-times and for the forces also). To avoid the flying ice cube artifact
-:ref:`(Lamoureux) <Lamoureux>`, where the atoms progressively freeze and the
-center of mass of the whole system drifts faster and faster, the *fix
-momentum* can be used. For instance:
-
-.. parsed-literal::
-
- fix MOMENTUM all momentum 100 linear 1 1 1
-
-It is a bit more tricky to run a NPT simulation with Nose-Hoover
-barostat and thermostat. First, the volume should be integrated only
-once. So the fix for DCs and atoms should be *npt* while the fix for
-DPs should be *nvt* (or vice versa). Second, the *fix npt* computes a
-global pressure and thus a global temperature whatever the fix group.
-We do want the pressure to correspond to the whole system, but we want
-the temperature to correspond to the fix group only. We must then use
-the *fix_modify* command for this. In the end, the block of
-instructions for thermostating and barostating will look like
-
-.. parsed-literal::
-
- compute TATOMS ATOMS temp
- fix DIRECT all drude/transform/direct
- fix NPT ATOMS npt temp 300. 300. 100 iso 1. 1. 500
- fix_modify NPT temp TATOMS press thermo_press
- fix NVT DRUDES nvt temp 1. 1. 20
- fix INVERSE all drude/transform/inverse
-
-
-----------
-
-
-**Rigid bodies**
-
-You may want to simulate molecules as rigid bodies (but polarizable).
-Common cases are water models such as :ref:`SWM4-NDP <SWM4-NDP>`, which is a
-kind of polarizable TIP4P water. The rigid bodies and the DPs should
-be integrated separately, even with the Langevin thermostat. Let us
-review the different thermostats and ensemble combinations.
-
-NVT ensemble using Langevin thermostat:
-
-.. parsed-literal::
-
- comm_modify vel yes
- fix LANG all langevin/drude 300. 100 12435 1. 20 13977
- fix RIGID ATOMS rigid/nve/small molecule
- fix NVE DRUDES nve
-
-NVT ensemble using Nose-Hoover thermostat:
-
-.. parsed-literal::
-
- fix DIRECT all drude/transform/direct
- fix RIGID ATOMS rigid/nvt/small molecule temp 300. 300. 100
- fix NVT DRUDES nvt temp 1. 1. 20
- fix INVERSE all drude/transform/inverse
-
-NPT ensemble with Langevin thermostat:
-
-.. parsed-literal::
-
- comm_modify vel yes
- fix LANG all langevin/drude 300. 100 12435 1. 20 13977
- fix RIGID ATOMS rigid/nph/small molecule iso 1. 1. 500
- fix NVE DRUDES nve
-
-NPT ensemble using Nose-Hoover thermostat:
-
-.. parsed-literal::
-
- compute TATOM ATOMS temp
- fix DIRECT all drude/transform/direct
- fix RIGID ATOMS rigid/npt/small molecule temp 300. 300. 100 iso 1. 1. 500
- fix_modify RIGID temp TATOM press thermo_press
- fix NVT DRUDES nvt temp 1. 1. 20
- fix INVERSE all drude/transform/inverse
-
-
-----------
-
-
-.. _Lamoureux:
-
-
-
-**(Lamoureux)** Lamoureux and Roux, J Chem Phys, 119, 3025-3039 (2003)
-
-.. _Schroeder:
-
-
-
-**(Schroeder)** Schr&ouml;der and Steinhauser, J Chem Phys, 133,
-154511 (2010).
-
-.. _Jiang:
-
-
-
-**(Jiang)** Jiang, Hardy, Phillips, MacKerell, Schulten, and Roux,
- J Phys Chem Lett, 2, 87-92 (2011).
-
-.. _Thole:
-
-
-
-**(Thole)** Chem Phys, 59, 341 (1981).
-
-.. _Noskov:
-
-
-
-**(Noskov)** Noskov, Lamoureux and Roux, J Phys Chem B, 109, 6705 (2005).
-
-.. _SWM4-NDP:
-
-
-
-**(SWM4-NDP)** Lamoureux, Harder, Vorobyov, Roux, MacKerell, Chem Phys
-Let, 418, 245-249 (2006)
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/tutorial_github.txt b/doc/_sources/tutorial_github.txt
deleted file mode 100644
index d15403efe..000000000
--- a/doc/_sources/tutorial_github.txt
+++ /dev/null
@@ -1,256 +0,0 @@
-LAMMPS GitHub tutorial
-######################
-
-written by Stefan Paquay
-========================
-
-
-----------
-
-
-This document briefly describes how to use GitHub to merge changes
-into LAMMPS using GitHub. It assumes that you are familiar with
-git. You may want to have a look at the `Git book <http://git-scm.com/book/>`_ to reacquaint yourself.
-
-
-----------
-
-
-Making an account
-*****************
-
-First of all, you need a GitHub account. This is fairly simple, just
-go to `GitHub <https://github.com>`_ and create an account by clicking
-the ``Sign up for GitHub'' button. Once your account is created, you
-can sign in by clicking the button in the top left and filling in your
-username or e-mail address and password.
-
-
-----------
-
-
-Forking the repository
-**********************
-
-To get changes into LAMMPS, you need to first fork the repository. At
-the time of writing, LAMMPS-ICMS is the preferred fork. Go to `LAMMPS on GitHub <https://github.com/lammps/lammps>`_ and make sure branch is
-set to ``lammps-icms'', see the figure below.
-
-.. image:: JPG/tutorial_branch.png
- :align: center
-
-Now, click on fork in the top right corner:
-
-.. image:: JPG/tutorial_fork.png
- :align: center
-
-This will create your own fork of the LAMMPS repository. You can make
-changes in this fork and later file *pull requests* to allow the
-upstream repository to merge changes from your own fork into the one
-we just forked from. At the same time, you can set things up, so you
-can include changes from upstream into your repository.
-
-
-----------
-
-
-Adding changes to your own fork
-*******************************
-
-Before adding changes, it is better to first create a new branch that
-will contain these changes, a so-called feature branch.
-
-Feature branches
-================
-
-Since LAMMPS is such a big project and most user contributions come in
-small portions, the most ideal workflow for LAMMPS is the so-called
-``Feature branch'' workflow. It is explained in great detail here:
-`feature branch workflow <https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow>`_.
-
-The idea is that every new feature for LAMMPS gets its own
-branch. This way, it is fairly painless to incorporate new features
-into the upstream repository. I will explain briefly here how to do
-it. In this feature branch, I will add a USER-package.
-
-I assume that git is installed on the local machine and you know how
-to use a command line.
-
-First of all, you need to clone your own fork of LAMMPS:
-
-.. parsed-literal::
-
- $ git clone https://github.com/<your user name>/lammps.git
-
-You can find the proper url to the right of the "HTTPS" block, see figure.
-
-.. image:: JPG/tutorial_https_block.png
- :align: center
-
-The above command copies (``clones'') the git repository to your local
-machine. You can use this local clone to make changes and test them
-without interfering with the repository on github. First, however, it
-is recommended to make a new branch for a particular feature you would
-like added to LAMMPS. In this example, I will try adding a new
-USER-package called USER-MANIFOLD.
-
-To create a new branch, run the following git command in your repository:
-
-.. parsed-literal::
-
- $ git checkout -b add-user-manifold
-
-The name of this new branch is "add-user-manifold" in my case. Just
-name it after something that resembles the feature you want added to
-LAMMPS.
-
-Now that you've changed branches, you can edit the files as you see
-fit, add new files, and commit as much as you would like. Just
-remember that if halfway you decide to add another, unrelated feature,
-you should switch branches!
-
-After everything is done, add the files to the branch and commit them:
-
-.. parsed-literal::
-
- $ git add src/USER-MANIFOLD examples/USER/manifold/
- $ git add doc/fix_nv*t,e*_manifold_rattle.txt
- $ git add doc/fix_manifoldforce.txt doc/user_manifolds.txt
-
-After the files are added, the change should be comitted:
-
-.. parsed-literal::
-
- $ git commit -m 'Added user-manifold package'
-
-The "-m" switch is used to add a message to the commit. Use this to
-indicate what type of change was commited.
-
-Wisdom by Axel:
----------------
-
-*"Do not use "git commit -a". the -a flag will automatically include
-*all* modified or new files. mercurial does that and it find it
-hugely annoying and often leading to accidental commits of files you
-don't want. use git add, git rm, git mv for adding, removing,
-renaming and then git commit to finalize the commit. personally, i
-find it very convenient to use the bundled gui for commits, i.e. git
-gui. typically, i will do git add and other operations, but then
-verify and review them with git gui. git gui also allows to do
-line-by-line unstaging and other convenient operations."*
-
-After the commit, the changes can be pushed to the same branch on GitHub:
-
-.. parsed-literal::
-
- $ git push
-
-Git will ask you for your user name and password on GitHub if you have
-not configured anything. If you correctly type your user name and
-password, the change should be added to your fork on GitHub.
-
-If you want to make really sure you push to the right repository
-(which is good practice), you can provide it explicitly:
-
-.. parsed-literal::
-
- $ git push origin
-
-or using an explicit URL:
-
-.. parsed-literal::
-
- $ git push git@github.com:Pakketeretet2/lammps.git
-
-After that, you can file a new pull request based on this
-branch. GitHub will now look like this:
-
-.. image:: JPG/tutorial_pull_request_feature_branch1.png
- :align: center
-
-Make sure that the current branch is set to the correct one, which, in
-this case, is "add-user-manifold". Now click "New pull request". If
-done correctly, the only changes you will see are those that were made
-on this branch, so in my case, I will see nothing related to
-$\mathrm*pair\_dzugatov*.$
-
-This will open up a new window that lists changes made to the
-repository. If you are just adding new files, there is not much to do,
-but I suppose merge conflicts are to be resolved here if there are
-changes in existing files. If all changes can automatically be merged,
-green text at the top will say so and you can click the "Create pull
-request" button, see image.
-
-.. image:: JPG/tutorial_pull_request2.png
- :align: center
-
-After this you have to specify a short title and a comment with
-details about your pull request. I guess here you write what your
-modifications do and why they should be incorporated upstream. After
-that, click the "Create pull request" button, see image below.
-
-.. image:: JPG/tutorial_pull_request3.png
- :align: center
-
-Now just write some nice comments, click "Comment", and that is it. It
-is now up to the maintainer(s) of the upstream repository to
-incorporate the changes into the repository and to close the pull
-request.
-
-.. image:: JPG/tutorial_pull_request4.png
- :align: center
-
-
-----------
-
-
-Additional changes
-******************
-
-Before the pull request is accepted, any additional changes you push
-into your repository will automatically become part of the pull
-request.
-
-
-----------
-
-
-After a merge
-*************
-
-When everything is fine the feature branch is merged into the LAMMPS
-repositories:
-
-.. image:: JPG/tutorial_merged.png
- :align: center
-
-Now one question remains: What to do with the feature branch that got
-merged into upstream?
-
-It is in principle safe to delete them from your own fork. This helps
-keep it a bit more tidy. Note that you first have to switch to another
-branch!
-
-.. parsed-literal::
-
- $ git checkout lammps-icms
- $ git pull lammps-icms
- $ git branch -d add-user-manifold
-
-If you do not pull first, it is not really a problem but git will warn
-you at the next statement that you are deleting a local branch that
-was not yet fully merged into HEAD. This is because git does not yet
-know your branch just got merged into lammps-icms upstream. If you
-first delete and then pull, everything should still be fine.
-
-Finally, if you delete the branch locally, you might want to push this
-to your remote(s) as well:
-
-.. parsed-literal::
-
- $ git push origin :add-user-manifold
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/uncompute.txt b/doc/_sources/uncompute.txt
deleted file mode 100644
index 88b06b8e7..000000000
--- a/doc/_sources/uncompute.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-.. index:: uncompute
-
-uncompute command
-=================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- uncompute compute-ID
-
-* compute-ID = ID of a previously defined compute
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- uncompute 2
- uncompute lower-boundary
-
-Description
-"""""""""""
-
-Delete a compute that was previously defined with a :doc:`compute <compute>`
-command. This also wipes out any additional changes made to the compute
-via the :doc:`compute_modify <compute_modify>` command.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`compute <compute>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/undump.txt b/doc/_sources/undump.txt
deleted file mode 100644
index 584e2e7a6..000000000
--- a/doc/_sources/undump.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-.. index:: undump
-
-undump command
-==============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- undump dump-ID
-
-* dump-ID = ID of previously defined dump
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- undump mine
- undump 2
-
-Description
-"""""""""""
-
-Turn off a previously defined dump so that it is no longer active.
-This closes the file associated with the dump.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/unfix.txt b/doc/_sources/unfix.txt
deleted file mode 100644
index 23400f454..000000000
--- a/doc/_sources/unfix.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-.. index:: unfix
-
-unfix command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- unfix fix-ID
-
-* fix-ID = ID of a previously defined fix
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- unfix 2
- unfix lower-boundary
-
-Description
-"""""""""""
-
-Delete a fix that was previously defined with a :doc:`fix <fix>`
-command. This also wipes out any additional changes made to the fix
-via the :doc:`fix_modify <fix_modify>` command.
-
-Restrictions
-""""""""""""
- none
-
-Related commands
-""""""""""""""""
-
-:doc:`fix <fix>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/units.txt b/doc/_sources/units.txt
deleted file mode 100644
index f82ab37dd..000000000
--- a/doc/_sources/units.txt
+++ /dev/null
@@ -1,235 +0,0 @@
-.. index:: units
-
-units command
-=============
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- units style
-
-* style = *lj* or *real* or *metal* or *si* or *cgs* or *electron* or *micro* or *nano*
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- units metal
- units lj
-
-Description
-"""""""""""
-
-This command sets the style of units used for a simulation. It
-determines the units of all quantities specified in the input script
-and data file, as well as quantities output to the screen, log file,
-and dump files. Typically, this command is used at the very beginning
-of an input script.
-
-For all units except *lj*, LAMMPS uses physical constants from
-www.physics.nist.gov. For the definition of Kcal in real units,
-LAMMPS uses the thermochemical calorie = 4.184 J.
-
-The choice you make for units simply sets some internal conversion
-factors within LAMMPS. This means that any simulation you perform for
-one choice of units can be duplicated with any other unit setting
-LAMMPS supports. In this context "duplicate" means the particles will
-have identical trajectories and all output generated by the simulation
-will be identical. This will be the case for some number of timesteps
-until round-off effects accumulate, since the conversion factors for
-two different unit systems are not identical to infinite precision.
-
-To perform the same simulation in a different set of units you must
-change all the unit-based input parameters in your input script and
-other input files (data file, potential files, etc) correctly to the
-new units. And you must correctly convert all output from the new
-units to the old units when comparing to the original results. That
-is often not simple to do.
-
-
-----------
-
-
-For style *lj*, all quantities are unitless. Without loss of
-generality, LAMMPS sets the fundamental quantities mass, sigma,
-epsilon, and the Boltzmann constant = 1. The masses, distances,
-energies you specify are multiples of these fundamental values. The
-formulas relating the reduced or unitless quantity (with an asterisk)
-to the same quantity with units is also given. Thus you can use the
-mass & sigma & epsilon values for a specific material and convert the
-results from a unitless LJ simulation into physical quantities.
-
-* mass = mass or m
-* distance = sigma, where x* = x / sigma
-* time = tau, where t* = t (epsilon / m / sigma^2)^1/2
-* energy = epsilon, where E* = E / epsilon
-* velocity = sigma/tau, where v* = v tau / sigma
-* force = epsilon/sigma, where f* = f sigma / epsilon
-* torque = epsilon, where t* = t / epsilon
-* temperature = reduced LJ temperature, where T* = T Kb / epsilon
-* pressure = reduced LJ pressure, where P* = P sigma^3 / epsilon
-* dynamic viscosity = reduced LJ viscosity, where eta* = eta sigma^3 / epsilon / tau
-* charge = reduced LJ charge, where q* = q / (4 pi perm0 sigma epsilon)^1/2
-* dipole = reduced LJ dipole, moment where *mu = mu / (4 pi perm0 sigma^3 epsilon)^1/2
-* electric field = force/charge, where E* = E (4 pi perm0 sigma epsilon)^1/2 sigma / epsilon
-* density = mass/volume, where rho* = rho sigma^dim
-
-Note that for LJ units, the default mode of thermodyamic output via
-the :doc:`thermo_style <thermo_style>` command is to normalize all
-extensive quantities by the number of atoms. E.g. potential energy is
-extensive because it is summed over atoms, so it is output as
-energy/atom. Temperature is intensive since it is already normalized
-by the number of atoms, so it is output as-is. This behavior can be
-changed via the :doc:`thermo_modify norm <thermo_modify>` command.
-
-For style *real*, these are the units:
-
-* mass = grams/mole
-* distance = Angstroms
-* time = femtoseconds
-* energy = Kcal/mole
-* velocity = Angstroms/femtosecond
-* force = Kcal/mole-Angstrom
-* torque = Kcal/mole
-* temperature = Kelvin
-* pressure = atmospheres
-* dynamic viscosity = Poise
-* charge = multiple of electron charge (1.0 is a proton)
-* dipole = charge*Angstroms
-* electric field = volts/Angstrom
-* density = gram/cm^dim
-
-For style *metal*, these are the units:
-
-* mass = grams/mole
-* distance = Angstroms
-* time = picoseconds
-* energy = eV
-* velocity = Angstroms/picosecond
-* force = eV/Angstrom
-* torque = eV
-* temperature = Kelvin
-* pressure = bars
-* dynamic viscosity = Poise
-* charge = multiple of electron charge (1.0 is a proton)
-* dipole = charge*Angstroms
-* electric field = volts/Angstrom
-* density = gram/cm^dim
-
-For style *si*, these are the units:
-
-* mass = kilograms
-* distance = meters
-* time = seconds
-* energy = Joules
-* velocity = meters/second
-* force = Newtons
-* torque = Newton-meters
-* temperature = Kelvin
-* pressure = Pascals
-* dynamic viscosity = Pascal*second
-* charge = Coulombs (1.6021765e-19 is a proton)
-* dipole = Coulombs*meters
-* electric field = volts/meter
-* density = kilograms/meter^dim
-
-For style *cgs*, these are the units:
-
-* mass = grams
-* distance = centimeters
-* time = seconds
-* energy = ergs
-* velocity = centimeters/second
-* force = dynes
-* torque = dyne-centimeters
-* temperature = Kelvin
-* pressure = dyne/cm^2 or barye = 1.0e-6 bars
-* dynamic viscosity = Poise
-* charge = statcoulombs or esu (4.8032044e-10 is a proton)
-* dipole = statcoul-cm = 10^18 debye
-* electric field = statvolt/cm or dyne/esu
-* density = grams/cm^dim
-
-For style *electron*, these are the units:
-
-* mass = atomic mass units
-* distance = Bohr
-* time = femtoseconds
-* energy = Hartrees
-* velocity = Bohr/atomic time units [1.03275e-15 seconds]
-* force = Hartrees/Bohr
-* temperature = Kelvin
-* pressure = Pascals
-* charge = multiple of electron charge (1.0 is a proton)
-* dipole moment = Debye
-* electric field = volts/cm
-
-For style *micro*, these are the units:
-
-* mass = picograms
-* distance = micrometers
-* time = microseconds
-* energy = picogram-micrometer^2/microsecond^2
-* velocity = micrometers/microsecond
-* force = picogram-micrometer/microsecond^2
-* torque = picogram-micrometer^2/microsecond^2
-* temperature = Kelvin
-* pressure = picogram/(micrometer-microsecond^2)
-* dynamic viscosity = picogram/(micrometer-microsecond)
-* charge = picocoulombs (1.6021765e-7 is a proton)
-* dipole = picocoulomb-micrometer
-* electric field = volt/micrometer
-* density = picograms/micrometer^dim
-
-For style *nano*, these are the units:
-
-* mass = attograms
-* distance = nanometers
-* time = nanoseconds
-* energy = attogram-nanometer^2/nanosecond^2
-* velocity = nanometers/nanosecond
-* force = attogram-nanometer/nanosecond^2
-* torque = attogram-nanometer^2/nanosecond^2
-* temperature = Kelvin
-* pressure = attogram/(nanometer-nanosecond^2)
-* dynamic viscosity = attogram/(nanometer-nanosecond)
-* charge = multiple of electron charge (1.0 is a proton)
-* dipole = charge-nanometer
-* electric field = volt/nanometer
-* density = attograms/nanometer^dim
-
-The units command also sets the timestep size and neighbor skin
-distance to default values for each style:
-
-* For style *lj* these are dt = 0.005 tau and skin = 0.3 sigma.
-* For style *real* these are dt = 1.0 fmsec and skin = 2.0 Angstroms.
-* For style *metal* these are dt = 0.001 psec and skin = 2.0 Angstroms.
-* For style *si* these are dt = 1.0e-8 sec and skin = 0.001 meters.
-* For style *cgs* these are dt = 1.0e-8 sec and skin = 0.1 cm.
-* For style *electron* these are dt = 0.001 fmsec and skin = 2.0 Bohr.
-* For style *micro* these are dt = 2.0 microsec and skin = 0.1 micrometers.
-* For style *nano* these are dt = 0.00045 nanosec and skin = 0.1 nanometers.
-
-Restrictions
-""""""""""""
-
-
-This command cannot be used after the simulation box is defined by a
-:doc:`read_data <read_data>` or :doc:`create_box <create_box>` command.
-
-**Related commands:** none
-
-Default
-"""""""
-
-.. parsed-literal::
-
- units lj
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/variable.txt b/doc/_sources/variable.txt
deleted file mode 100644
index 86d55fb52..000000000
--- a/doc/_sources/variable.txt
+++ /dev/null
@@ -1,1403 +0,0 @@
-.. index:: variable
-
-variable command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- variable name style args ...
-
-* name = name of variable to define
-* style = *delete* or *index* or *loop* or *world* or *universe* or *uloop* or *string* or *format* or *getenv* or *file* or *atomfile* or *python* or *equal* or *vector* or *atom*
-.. parsed-literal::
-
- *delete* = no args
- *index* args = one or more strings
- *loop* args = N
- N = integer size of loop, loop from 1 to N inclusive
- *loop* args = N pad
- N = integer size of loop, loop from 1 to N inclusive
- pad = all values will be same length, e.g. 001, 002, ..., 100
- *loop* args = N1 N2
- N1,N2 = loop from N1 to N2 inclusive
- *loop* args = N1 N2 pad
- N1,N2 = loop from N1 to N2 inclusive
- pad = all values will be same length, e.g. 050, 051, ..., 100
- *world* args = one string for each partition of processors
- *universe* args = one or more strings
- *uloop* args = N
- N = integer size of loop
- *uloop* args = N pad
- N = integer size of loop
- pad = all values will be same length, e.g. 001, 002, ..., 100
- *string* arg = one string
- *format* args = vname fstr
- vname = name of equal-style variable to evaluate
- fstr = C-style format string
- *getenv* arg = one string
- *file* arg = filename
- *atomfile* arg = filename
- *python* arg = function
- *equal* or *vector* or *atom* args = one formula containing numbers, thermo keywords, math operations, group functions, atom values and vectors, compute/fix/variable references
- numbers = 0.0, 100, -5.4, 2.8e-4, etc
- constants = PI, version, on, off, true, false, yes, no
- thermo keywords = vol, ke, press, etc from :doc:`thermo_style <thermo_style>`
- math operators = (), -x, x+y, x-y, x*y, x/y, x^y, x%y,
- x == y, x != y, x &lt y, x &lt= y, x &gt y, x &gt= y, x && y, x || y, !x
- math functions = sqrt(x), exp(x), ln(x), log(x), abs(x),
- sin(x), cos(x), tan(x), asin(x), acos(x), atan(x), atan2(y,x),
- random(x,y,z), normal(x,y,z), ceil(x), floor(x), round(x)
- ramp(x,y), stagger(x,y), logfreq(x,y,z), logfreq2(x,y,z),
- stride(x,y,z), stride2(x,y,z,a,b,c),
- vdisplace(x,y), swiggle(x,y,z), cwiggle(x,y,z)
- group functions = count(group), mass(group), charge(group),
- xcm(group,dim), vcm(group,dim), fcm(group,dim),
- bound(group,dir), gyration(group), ke(group),
- angmom(group,dim), torque(group,dim),
- inertia(group,dimdim), omega(group,dim)
- region functions = count(group,region), mass(group,region), charge(group,region),
- xcm(group,dim,region), vcm(group,dim,region), fcm(group,dim,region),
- bound(group,dir,region), gyration(group,region), ke(group,reigon),
- angmom(group,dim,region), torque(group,dim,region),
- inertia(group,dimdim,region), omega(group,dim,region)
- special functions = sum(x), min(x), max(x), ave(x), trap(x), slope(x), gmask(x), rmask(x), grmask(x,y), next(x)
- feature functions = is_active(category,feature,exact), is_defined(category,id,exact)
- atom value = id[i], mass[i], type[i], mol[i], x[i], y[i], z[i], vx[i], vy[i], vz[i], fx[i], fy[i], fz[i], q[i]
- atom vector = id, mass, type, mol, x, y, z, vx, vy, vz, fx, fy, fz, q
- compute references = c_ID, c_ID[i], c_ID[i][j], C_ID, C_ID[i]
- fix references = f_ID, f_ID[i], f_ID[i][j], F_ID, F_ID[i]
- variable references = v_name, v_name[i]
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- variable x index run1 run2 run3 run4 run5 run6 run7 run8
- variable LoopVar loop $n
- variable beta equal temp/3.0
- variable b1 equal x[234]+0.5*vol
- variable b1 equal "x[234] + 0.5*vol"
- variable b equal xcm(mol1,x)/2.0
- variable b equal c_myTemp
- variable b atom x*y/vol
- variable foo string myfile
- variable myPy python increase
- variable f file values.txt
- variable temp world 300.0 310.0 320.0 ${Tfinal}
- variable x universe 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
- variable x uloop 15 pad
- variable str format x %.6g
- variable x delete
-
-Description
-"""""""""""
-
-This command assigns one or more strings to a variable name for
-evaluation later in the input script or during a simulation.
-
-Variables can thus be useful in several contexts. A variable can be
-defined and then referenced elsewhere in an input script to become
-part of a new input command. For variable styles that store multiple
-strings, the :doc:`next <next>` command can be used to increment which
-string is assigned to the variable. Variables of style *equal* store
-a formula which when evaluated produces a single numeric value which
-can be output either directly (see the :doc:`print <print>`, :doc:`fix print <fix_print>`, and :doc:`run every <run>` commands) or as part
-of thermodynamic output (see the :doc:`thermo_style <thermo_style>`
-command), or used as input to an averaging fix (see the :doc:`fix ave/time <fix_ave_time>` command). Variables of style *vector*
-store a formula which produces a vector of such values which can be
-used as input to various averaging fixes, or elements of which can be
-part of thermodynamic output. Variables of style *atom* store a
-formula which when evaluated produces one numeric value per atom which
-can be output to a dump file (see the :doc:`dump custom <dump>` command)
-or used as input to an averaging fix (see the :doc:`fix ave/chunk <fix_ave_chunk>` and :doc:`fix ave/atom <fix_ave_atom>`
-commands). Variables of style *atomfile* can be used anywhere in an
-input script that atom-style variables are used; they get their
-per-atom values from a file rather than from a formula. Variables of
-style *python* can be hooked to Python functions using code you
-provide, so that the variable gets its value from the evaluation of
-the Python code.
-
-.. note::
-
- As discussed in :ref:`Section 3.2 <cmd_2>` of the
- manual, an input script can use "immediate" variables, specified as
- $(formula) with parenthesis, where the formula has the same syntax as
- equal-style variables described on this page. This is a convenient
- way to evaluate a formula immediately without using the variable
- command to define a named variable and then evaluate that
- variable. See below for a more detailed discussion of this feature.
-
-In the discussion that follows, the "name" of the variable is the
-arbitrary string that is the 1st argument in the variable command.
-This name can only contain alphanumeric characters and underscores.
-The "string" is one or more of the subsequent arguments. The "string"
-can be simple text as in the 1st example above, it can contain other
-variables as in the 2nd example, or it can be a formula as in the 3rd
-example. The "value" is the numeric quantity resulting from
-evaluation of the string. Note that the same string can generate
-different values when it is evaluated at different times during a
-simulation.
-
-.. note::
-
- When the input script line is encountered that defines a
- variable of style *equal* or *vector* or *atom* or *python* that
- contains a formula or Python code, the formula is NOT immediately
- evaluated. It will be evaluated every time when the variable is
- **used** instead. If you simply want to evaluate a formula in place you
- can use as so-called. See the section below about "Immediate
- Evaluation of Variables" for more details on the topic. This is also
- true of a *format* style variable since it evaluates another variable
- when it is invoked.
-
-.. note::
-
- Variables of style *equal* and *vector* and *atom* can be used
- as inputs to various other LAMMPS commands which evaluate their
- formulas as needed, e.g. at different timesteps during a
- :doc:`run <run>`. Variables of style *python* can be used in place of
- an equal-style variable so long as the associated Python function, as
- defined by the :doc:`python <python>` command, returns a numeric value.
- Thus any command that states it can use an equal-style variable as an
- argument, can also use such a python-style variable. This means that
- when the LAMMPS command evaluates the variable, the Python function
- will be executed.
-
-.. note::
-
- When a variable command is encountered in the input script and
- the variable name has already been specified, the command is ignored.
- This means variables can NOT be re-defined in an input script (with
- two exceptions, read further). This is to allow an input script to be
- processed multiple times without resetting the variables; see the
- :doc:`jump <jump>` or :doc:`include <include>` commands. It also means
- that using the :ref:`command-line switch <start_7>` -var
- will override a corresponding index variable setting in the input
- script.
-
-There are two exceptions to this rule. First, variables of style
-*string*, *getenv*, *equal*, *vector*, *atom*, and *python* ARE
-redefined each time the command is encountered. This allows these
-style of variables to be redefined multiple times in an input script.
-In a loop, this means the formula associated with an *equal* or *atom*
-style variable can change if it contains a substitution for another
-variable, e.g. $x or v_x.
-
-Second, as described below, if a variable is iterated on to the end of
-its list of strings via the :doc:`next <next>` command, it is removed
-from the list of active variables, and is thus available to be
-re-defined in a subsequent variable command. The *delete* style does
-the same thing.
-
-
-----------
-
-
-:ref:`This section <cmd_2>` of the manual explains how
-occurrences of a variable name in an input script line are replaced by
-the variable's string. The variable name can be referenced as $x if
-the name "x" is a single character, or as ${LoopVar} if the name
-"LoopVar" is one or more characters.
-
-As described below, for variable styles *index*, *loop*, *file*,
-*universe*, and *uloop*, which string is assigned to a variable can be
-incremented via the :doc:`next <next>` command. When there are no more
-strings to assign, the variable is exhausted and a flag is set that
-causes the next :doc:`jump <jump>` command encountered in the input
-script to be skipped. This enables the construction of simple loops
-in the input script that are iterated over and then exited from.
-
-As explained above, an exhausted variable can be re-used in an input
-script. The *delete* style also removes the variable, the same as if
-it were exhausted, allowing it to be redefined later in the input
-script or when the input script is looped over. This can be useful
-when breaking out of a loop via the :doc:`if <if>` and :doc:`jump <jump>`
-commands before the variable would become exhausted. For example,
-
-.. parsed-literal::
-
- label loop
- variable a loop 5
- print "A = $a"
- if "$a > 2" then "jump in.script break"
- next a
- jump in.script loop
- label break
- variable a delete
-
-
-----------
-
-
-This section describes how all the various variable styles are defined
-and what they store. Except for the *equal* and *vector* and *atom*
-styles, which are explained in the next section.
-
-Many of the styles store one or more strings. Note that a single
-string can contain spaces (multiple words), if it is enclosed in
-quotes in the variable command. When the variable is substituted for
-in another input script command, its returned string will then be
-interpreted as multiple arguments in the expanded command.
-
-For the *index* style, one or more strings are specified. Initially,
-the 1st string is assigned to the variable. Each time a
-:doc:`next <next>` command is used with the variable name, the next
-string is assigned. All processors assign the same string to the
-variable.
-
-*Index* style variables with a single string value can also be set by
-using the command-line switch -var; see :ref:`this section <start_7>` for details.
-
-The *loop* style is identical to the *index* style except that the
-strings are the integers from 1 to N inclusive, if only one argument N
-is specified. This allows generation of a long list of runs
-(e.g. 1000) without having to list N strings in the input script.
-Initially, the string "1" is assigned to the variable. Each time a
-:doc:`next <next>` command is used with the variable name, the next
-string ("2", "3", etc) is assigned. All processors assign the same
-string to the variable. The *loop* style can also be specified with
-two arguments N1 and N2. In this case the loop runs from N1 to N2
-inclusive, and the string N1 is initially assigned to the variable.
-N1 <= N2 and N2 >= 0 is required.
-
-For the *world* style, one or more strings are specified. There must
-be one string for each processor partition or "world". See :ref:`this section <start_7>` of the manual for information on
-running LAMMPS with multiple partitions via the "-partition"
-command-line switch. This variable command assigns one string to each
-world. All processors in the world are assigned the same string. The
-next command cannot be used with *equal* style variables, since there
-is only one value per world. This style of variable is useful when
-you wish to run different simulations on different partitions, or when
-performing a parallel tempering simulation (see the
-:doc:`temper <temper>` command), to assign different temperatures to
-different partitions.
-
-For the *universe* style, one or more strings are specified. There
-must be at least as many strings as there are processor partitions or
-"worlds". See :ref:`this page <start_7>` for information
-on running LAMMPS with multiple partitions via the "-partition"
-command-line switch. This variable command initially assigns one
-string to each world. When a :doc:`next <next>` command is encountered
-using this variable, the first processor partition to encounter it, is
-assigned the next available string. This continues until all the
-variable strings are consumed. Thus, this command can be used to run
-50 simulations on 8 processor partitions. The simulations will be run
-one after the other on whatever partition becomes available, until
-they are all finished. *Universe* style variables are incremented
-using the files "tmp.lammps.variable" and "tmp.lammps.variable.lock"
-which you will see in your directory during such a LAMMPS run.
-
-The *uloop* style is identical to the *universe* style except that the
-strings are the integers from 1 to N. This allows generation of long
-list of runs (e.g. 1000) without having to list N strings in the input
-script.
-
-For the *string* style, a single string is assigned to the variable.
-The only difference between this and using the *index* style with a
-single string is that a variable with *string* style can be redefined.
-E.g. by another command later in the input script, or if the script is
-read again in a loop.
-
-For the *format* style, an equal-style variable is specified along
-with a C-style format string, e.g. "%f" or "%.10g", which must be
-appropriate for formatting a double-precision floating-point value.
-This allows an equal-style variable to be formatted specifically for
-output as a string, e.g. by the :doc:`print <print>` command, if the
-default format "%.15g" has too much precision.
-
-For the *getenv* style, a single string is assigned to the variable
-which should be the name of an environment variable. When the
-variable is evaluated, it returns the value of the environment
-variable, or an empty string if it not defined. This style of
-variable can be used to adapt the behavior of LAMMPS input scripts via
-environment variable settings, or to retrieve information that has
-been previously stored with the :doc:`shell putenv <shell>` command.
-Note that because environment variable settings are stored by the
-operating systems, they persist beyond a :doc:`clear <clear>` command.
-
-For the *file* style, a filename is provided which contains a list of
-strings to assign to the variable, one per line. The strings can be
-numeric values if desired. See the discussion of the next() function
-below for equal-style variables, which will convert the string of a
-file-style variable into a numeric value in a formula.
-
-When a file-style variable is defined, the file is opened and the
-string on the first line is read and stored with the variable. This
-means the variable can then be evaluated as many times as desired and
-will return that string. There are two ways to cause the next string
-from the file to be read: use the :doc:`next <next>` command or the
-next() function in an equal- or atom-style variable, as discussed
-below.
-
-The rules for formatting the file are as follows. A comment character
-"#" can be used anywhere on a line; text starting with the comment
-character is stripped. Blank lines are skipped. The first "word" of
-a non-blank line, delimited by white space, is the "string" assigned
-to the variable.
-
-For the *atomfile* style, a filename is provided which contains one or
-more sets of values, to assign on a per-atom basis to the variable.
-The format of the file is described below.
-
-When an atomfile-style variable is defined, the file is opened and the
-first set of per-atom values are read and stored with the variable.
-This means the variable can then be evaluated as many times as desired
-and will return those values. There are two ways to cause the next
-set of per-atom values from the file to be read: use the
-:doc:`next <next>` command or the next() function in an atom-style
-variable, as discussed below.
-
-The rules for formatting the file are as follows. Each time a set of
-per-atom values is read, a non-blank line is searched for in the file.
-A comment character "#" can be used anywhere on a line; text starting
-with the comment character is stripped. Blank lines are skipped. The
-first "word" of a non-blank line, delimited by white space, is read as
-the count N of per-atom lines to immediately follow. N can be be the
-total number of atoms in the system, or only a subset. The next N
-lines have the following format
-
-.. parsed-literal::
-
- ID value
-
-where ID is an atom ID and value is the per-atom numeric value that
-will be assigned to that atom. IDs can be listed in any order.
-
-.. note::
-
- Every time a set of per-atom lines is read, the value for all
- atoms is first set to 0.0. Thus values for atoms whose ID does not
- appear in the set, will remain 0.0.
-
-For the *python* style a Python function name is provided. This needs
-to match a function name specified in a :doc:`python <python>` command
-which returns a value to this variable as defined by its *return*
-keyword. For exampe these two commands would be self-consistent:
-
-.. parsed-literal::
-
- variable foo python myMultiply
- python myMultiply return v_foo format f file funcs.py
-
-The two commands can appear in either order so long as both are
-specified before the Python function is invoked for the first time.
-
-Each time the variable is evaluated, the associated Python function is
-invoked, and the value it returns is also returned by the variable.
-Since the Python function can use other LAMMPS variables as input, or
-query interal LAMMPS quantities to perform its computation, this means
-the variable can return a different value each time it is evaluated.
-
-The type of value stored in the variable is determined by the *format*
-keyword of the :doc:`python <python>` command. It can be an integer
-(i), floating point (f), or string (s) value. As mentioned above, if
-it is a numeric value (integer or floating point), then the
-python-style variable can be used in place of an equal-style variable
-anywhere in an input script, e.g. as an argument to another command
-that allows for equal-style variables.
-
-
-----------
-
-
-For the *equal* and *vector* and *atom* styles, a single string is
-specified which represents a formula that will be evaluated afresh
-each time the variable is used. If you want spaces in the string,
-enclose it in double quotes so the parser will treat it as a single
-argument. For *equal*-style variables the formula computes a scalar
-quantity, which becomes the value of the variable whenever it is
-evaluated. For *vector*-style variables the formula must compute a
-vector of quantities, which becomes the value of the variable whenever
-it is evaluated. The calculated vector can be on length one, but it
-cannot be a simple scalar value like that produced by an equal-style
-compute. I.e. the formula for a vector-style variable must have at
-least one quantity in it that refers to a global vector produced by a
-compute, fix, or other vector-style variable. For *atom*-style
-variables the formula computes one quantity for each atom whenever it
-is evaluated.
-
-Note that *equal*, *vector*, and *atom* variables can produce
-different values at different stages of the input script or at
-different times during a run. For example, if an *equal* variable is
-used in a :doc:`fix print <fix_print>` command, different values could
-be printed each timestep it was invoked. If you want a variable to be
-evaluated immediately, so that the result is stored by the variable
-instead of the string, see the section below on "Immediate Evaluation
-of Variables".
-
-The next command cannot be used with *equal* or *vector* or *atom*
-style variables, since there is only one string.
-
-The formula for an *equal*, *vector*, or *atom* variable can contain a
-variety of quantities. The syntax for each kind of quantity is
-simple, but multiple quantities can be nested and combined in various
-ways to build up formulas of arbitrary complexity. For example, this
-is a valid (though strange) variable formula:
-
-.. parsed-literal::
-
- variable x equal "pe + c_MyTemp / vol^(1/3)"
-
-Specifically, a formula can contain numbers, constants, thermo
-keywords, math operators, math functions, group functions, region
-functions, atom values, atom vectors, compute references, fix
-references, and references to other variables.
-
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Number | 0.2, 100, 1.0e20, -15.4, etc |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Constant | PI, version, on, off, true, false, yes, no |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Thermo keywords | vol, pe, ebond, etc |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Math operators | (), -x, x+y, x-y, x*y, x/y, x^y, x%y, |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Math operators | (), -x, x+y, x-y, x*y, x/y, x^y, x%y, x == y, x != y, x &lt y, x &lt= y, x &gt y, x &gt= y, x && y, x || y, !x |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Math functions | sqrt(x), exp(x), ln(x), log(x), abs(x), sin(x), cos(x), tan(x), asin(x), acos(x), atan(x), atan2(y,x), random(x,y,z), normal(x,y,z), ceil(x), floor(x), round(x), ramp(x,y), stagger(x,y), logfreq(x,y,z), logfreq2(x,y,z), stride(x,y,z), stride2(x,y,z,a,b,c), vdisplace(x,y), swiggle(x,y,z), cwiggle(x,y,z) |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Group functions | count(ID), mass(ID), charge(ID), xcm(ID,dim), vcm(ID,dim), fcm(ID,dim), bound(ID,dir), gyration(ID), ke(ID), angmom(ID,dim), torque(ID,dim), inertia(ID,dimdim), omega(ID,dim) |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Region functions | count(ID,IDR), mass(ID,IDR), charge(ID,IDR), xcm(ID,dim,IDR), vcm(ID,dim,IDR), fcm(ID,dim,IDR), bound(ID,dir,IDR), gyration(ID,IDR), ke(ID,IDR), angmom(ID,dim,IDR), torque(ID,dim,IDR), inertia(ID,dimdim,IDR), omega(ID,dim,IDR) |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Special functions | sum(x), min(x), max(x), ave(x), trap(x), slope(x), gmask(x), rmask(x), grmask(x,y), next(x) |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Atom values | id[i], mass[i], type[i], mol[i], x[i], y[i], z[i], vx[i], vy[i], vz[i], fx[i], fy[i], fz[i], q[i] |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Atom vectors | id, mass, type, mol, x, y, z, vx, vy, vz, fx, fy, fz, q |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Compute references | c_ID, c_ID[i], c_ID[i][j], C_ID, C_ID[i] |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Fix references | f_ID, f_ID[i], f_ID[i][j], F_ID, F_ID[i] |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-| Other variables | v_name, v_name[i] |
-+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-
-Most of the formula elements produce a scalar value. Some produce a
-global or per-atom vector of values. Global vectors can be produced
-by computes or fixes or by other vector-style variables. Per-atom
-vectors are produced by atom vectors, compute references that
-represent a per-atom vector, fix references that represent a per-atom
-vector, and variables that are atom-style variables. Math functions
-that operate on scalar values produce a scalar value; math function
-that operate on global or per-atom vectors do so element-by-element
-and produce a global or per-atom vector.
-
-A formula for equal-style variables cannot use any formula element
-that produces a global or per-atom vector. A formula for a
-vector-style variable can use formula elements that produce either a
-scalar value or a global vector value, but cannot use a formula
-element that produces a per-atom vector. A formula for an atom-style
-variable can use formula elements that produce either a scalar value
-or a per-atom vector, but not one that produces a global vector.
-Atom-style variables are evaluated by other commands that define a
-:doc:`group <group>` on which they operate, e.g. a :doc:`dump <dump>` or
-:doc:`compute <compute>` or :doc:`fix <fix>` command. When they invoke
-the atom-style variable, only atoms in the group are included in the
-formula evaluation. The variable evaluates to 0.0 for atoms not in
-the group.
-
-
-----------
-
-
-Numers, constants, and thermo keywords
---------------------------------------
-
-Numbers can contain digits, scientific notation
-(3.0e20,3.0e-20,3.0E20,3.0E-20), and leading minus signs.
-
-Constants are set at compile time and cannot be changed. *PI* will
-return the number 3.14159265358979323846; *on*, *true* or *yes* will
-return 1.0; *off*, *false* or *no* will return 0.0; *version* will
-return a numeric version code of the current LAMMPS version (e.g.
-version 2 Sep 2015 will return the number 20150902). The corresponding
-value for newer versions of LAMMPS will be larger, for older versions
-of LAMMPS will be smaller. This can be used to have input scripts
-adapt automatically to LAMMPS versions, when non-backwards compatible
-syntax changes are introduced. Here is an illustrative example (which
-will not work, since the *version* has been introduced more recently):
-
-.. parsed-literal::
-
- if $(version<20140513) then "communicate vel yes" else "comm_modify vel yes"
-
-The thermo keywords allowed in a formula are those defined by the
-:doc:`thermo_style custom <thermo_style>` command. Thermo keywords that
-require a :doc:`compute <compute>` to calculate their values such as
-"temp" or "press", use computes stored and invoked by the
-:doc:`thermo_style <thermo_style>` command. This means that you can
-only use those keywords in a variable if the style you are using with
-the thermo_style command (and the thermo keywords associated with that
-style) also define and use the needed compute. Note that some thermo
-keywords use a compute indirectly to calculate their value (e.g. the
-enthalpy keyword uses temp, pe, and pressure). If a variable is
-evaluated directly in an input script (not during a run), then the
-values accessed by the thermo keyword must be current. See the
-discussion below about "Variable Accuracy".
-
-
-----------
-
-
-Math Operators
---------------
-
-Math operators are written in the usual way, where the "x" and "y" in
-the examples can themselves be arbitrarily complex formulas, as in the
-examples above. In this syntax, "x" and "y" can be scalar values or
-per-atom vectors. For example, "ke/natoms" is the division of two
-scalars, where "vy+vz" is the element-by-element sum of two per-atom
-vectors of y and z velocities.
-
-Operators are evaluated left to right and have the usual C-style
-precedence: unary minus and unary logical NOT operator "!" have the
-highest precedence, exponentiation "^" is next; multiplication and
-division and the modulo operator "%" are next; addition and
-subtraction are next; the 4 relational operators "<", "<=", ">", and
-">=" are next; the two remaining relational operators "==" and "!="
-are next; then the logical AND operator "&&"; and finally the logical
-OR operator "||" has the lowest precedence. Parenthesis can be used
-to group one or more portions of a formula and/or enforce a different
-order of evaluation than what would occur with the default precedence.
-
-.. note::
-
- Because a unary minus is higher precedence than exponentiation,
- the formula "-2^2" will evaluate to 4, not -4. This convention is
- compatible with some programming languages, but not others. As
- mentioned, this behavior can be easily overridden with parenthesis;
- the formula "-(2^2)" will evaluate to -4.
-
-The 6 relational operators return either a 1.0 or 0.0 depending on
-whether the relationship between x and y is TRUE or FALSE. For
-example the expression x<10.0 in an atom-style variable formula will
-return 1.0 for all atoms whose x-coordinate is less than 10.0, and 0.0
-for the others. The logical AND operator will return 1.0 if both its
-arguments are non-zero, else it returns 0.0. The logical OR operator
-will return 1.0 if either of its arguments is non-zero, else it
-returns 0.0. The logical NOT operator returns 1.0 if its argument is
-0.0, else it returns 0.0.
-
-These relational and logical operators can be used as a masking or
-selection operation in a formula. For example, the number of atoms
-whose properties satifsy one or more criteria could be calculated by
-taking the returned per-atom vector of ones and zeroes and passing it
-to the :doc:`compute reduce <compute_reduce>` command.
-
-
-----------
-
-
-Math Functions
---------------
-
-Math functions are specified as keywords followed by one or more
-parenthesized arguments "x", "y", "z", each of which can themselves be
-arbitrarily complex formulas. In this syntax, the arguments can
-represent scalar values or global vectors or per-atom vectors. In the
-latter case, the math operation is performed on each element of the
-vector. For example, "sqrt(natoms)" is the sqrt() of a scalar, where
-"sqrt(y*z)" yields a per-atom vector with each element being the
-sqrt() of the product of one atom's y and z coordinates.
-
-Most of the math functions perform obvious operations. The ln() is
-the natural log; log() is the base 10 log.
-
-The random(x,y,z) function takes 3 arguments: x = lo, y = hi, and z =
-seed. It generates a uniform random number between lo and hi. The
-normal(x,y,z) function also takes 3 arguments: x = mu, y = sigma, and
-z = seed. It generates a Gaussian variate centered on mu with
-variance sigma^2. In both cases the seed is used the first time the
-internal random number generator is invoked, to initialize it. For
-equal-style and vector-style variables, every processor uses the same
-seed so that they each generate the same sequence of random numbers.
-For atom-style variables, a unique seed is created for each processor,
-based on the specified seed. This effectively generates a different
-random number for each atom being looped over in the atom-style
-variable.
-
-.. note::
-
- Internally, there is just one random number generator for all
- equal-style and vector-style variables and another one for all
- atom-style variables. If you define multiple variables (of each
- style) which use the random() or normal() math functions, then the
- internal random number generators will only be initialized once, which
- means only one of the specified seeds will determine the sequence of
- generated random numbers.
-
-The ceil(), floor(), and round() functions are those in the C math
-library. Ceil() is the smallest integer not less than its argument.
-Floor() if the largest integer not greater than its argument. Round()
-is the nearest integer to its argument.
-
-The ramp(x,y) function uses the current timestep to generate a value
-linearly intepolated between the specified x,y values over the course
-of a run, according to this formula:
-
-.. parsed-literal::
-
- value = x + (y-x) * (timestep-startstep) / (stopstep-startstep)
-
-The run begins on startstep and ends on stopstep. Startstep and
-stopstep can span multiple runs, using the *start* and *stop* keywords
-of the :doc:`run <run>` command. See the :doc:`run <run>` command for
-details of how to do this.
-
-The stagger(x,y) function uses the current timestep to generate a new
-timestep. X,y > 0 and x > y are required. The generated timesteps
-increase in a staggered fashion, as the sequence
-x,x+y,2x,2x+y,3x,3x+y,etc. For any current timestep, the next
-timestep in the sequence is returned. Thus if stagger(1000,100) is
-used in a variable by the :doc:`dump_modify every <dump_modify>`
-command, it will generate the sequence of output timesteps:
-
-.. parsed-literal::
-
- 100,1000,1100,2000,2100,3000,etc
-
-The logfreq(x,y,z) function uses the current timestep to generate a
-new timestep. X,y,z > 0 and y < z are required. The generated
-timesteps are on a base-z logarithmic scale, starting with x, and the
-y value is how many of the z-1 possible timesteps within one
-logarithmic interval are generated. I.e. the timesteps follow the
-sequence x,2x,3x,...y*x,x*z,2x*z,3x*z,...y*x*z,x*z^2,2x*z^2,etc. For
-any current timestep, the next timestep in the sequence is returned.
-Thus if logfreq(100,4,10) is used in a variable by the :doc:`dump_modify every <dump_modify>` command, it will generate this sequence of
-output timesteps:
-
-.. parsed-literal::
-
- 100,200,300,400,1000,2000,3000,4000,10000,20000,etc
-
-The logfreq2(x,y,z) function is similar to logfreq, except a single
-logarithmic interval is divided into y equally-spaced timesteps and
-all of them are output. Y < z is not required. Thus, if
-logfreq2(100,18,10) is used in a variable by the :doc:`dump_modify every <dump_modify>` command, then the interval between 100 and
-1000 is divided as 900/18 = 50 steps, and it will generate the
-sequence of output timesteps:
-
-.. parsed-literal::
-
- 100,150,200,...950,1000,1500,2000,...9500,10000,15000,etc
-
-The stride(x,y,z) function uses the current timestep to generate a new
-timestep. X,y >= 0 and z > 0 and x <= y are required. The generated
-timesteps increase in increments of z, from x to y, i.e. it generates
-the sequece x,x+z,x+2z,...,y. If y-x is not a multiple of z, then
-similar to the way a for loop operates, the last value will be one
-that does not exceed y. For any current timestep, the next timestep
-in the sequence is returned. Thus if stride(1000,2000,100) is used
-in a variable by the :doc:`dump_modify every <dump_modify>` command, it
-will generate the sequence of output timesteps:
-
-.. parsed-literal::
-
- 1000,1100,1200, ... ,1900,2000
-
-The stride2(x,y,z,a,b,c) function is similar to the stride() function
-except it generates two sets of strided timesteps, one at a coarser
-level and one at a finer level. Thus it is useful for debugging,
-e.g. to produce output every timestep at the point in simulation when
-a problem occurs. X,y >= 0 and z > 0 and x <= y are required, as are
-a,b >= 0 and c > 0 and a < b. Also, a >= x and b <= y are required so
-that the second stride is inside the first. The generated timesteps
-increase in increments of z, starting at x, until a is reached. At
-that point the timestep increases in increments of c, from a to b,
-then after b, increments by z are resumed until y is reached. For any
-current timestep, the next timestep in the sequence is returned. Thus
-if stride(1000,2000,100,1350,1360,1) is used in a variable by the
-:doc:`dump_modify every <dump_modify>` command, it will generate the
-sequence of output timesteps:
-
-.. parsed-literal::
-
- 1000,1100,1200,1300,1350,1351,1352, ... 1359,1360,1400,1500, ... ,2000
-
-The vdisplace(x,y) function takes 2 arguments: x = value0 and y =
-velocity, and uses the elapsed time to change the value by a linear
-displacement due to the applied velocity over the course of a run,
-according to this formula:
-
-.. parsed-literal::
-
- value = value0 + velocity*(timestep-startstep)*dt
-
-where dt = the timestep size.
-
-The run begins on startstep. Startstep can span multiple runs, using
-the *start* keyword of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this. Note that the
-:doc:`thermo_style <thermo_style>` keyword elaplong =
-timestep-startstep.
-
-The swiggle(x,y,z) and cwiggle(x,y,z) functions each take 3 arguments:
-x = value0, y = amplitude, z = period. They use the elapsed time to
-oscillate the value by a sin() or cos() function over the course of a
-run, according to one of these formulas, where omega = 2 PI / period:
-
-.. parsed-literal::
-
- value = value0 + Amplitude * sin(omega*(timestep-startstep)*dt)
- value = value0 + Amplitude * (1 - cos(omega*(timestep-startstep)*dt))
-
-where dt = the timestep size.
-
-The run begins on startstep. Startstep can span multiple runs, using
-the *start* keyword of the :doc:`run <run>` command. See the
-:doc:`run <run>` command for details of how to do this. Note that the
-:doc:`thermo_style <thermo_style>` keyword elaplong =
-timestep-startstep.
-
-
-----------
-
-
-Group and Region Functions
---------------------------
-
-Group functions are specified as keywords followed by one or two
-parenthesized arguments. The first argument *ID* is the group-ID.
-The *dim* argument, if it exists, is *x* or *y* or *z*. The *dir*
-argument, if it exists, is *xmin*, *xmax*, *ymin*, *ymax*, *zmin*, or
-*zmax*. The *dimdim* argument, if it exists, is *xx* or *yy* or *zz*
-or *xy* or *yz* or *xz*.
-
-The group function count() is the number of atoms in the group. The
-group functions mass() and charge() are the total mass and charge of
-the group. Xcm() and vcm() return components of the position and
-velocity of the center of mass of the group. Fcm() returns a
-component of the total force on the group of atoms. Bound() returns
-the min/max of a particular coordinate for all atoms in the group.
-Gyration() computes the radius-of-gyration of the group of atoms. See
-the :doc:`compute gyration <compute_gyration>` command for a definition
-of the formula. Angmom() returns components of the angular momentum
-of the group of atoms around its center of mass. Torque() returns
-components of the torque on the group of atoms around its center of
-mass, based on current forces on the atoms. Inertia() returns one of
-6 components of the symmetric inertia tensor of the group of atoms
-around its center of mass, ordered as Ixx,Iyy,Izz,Ixy,Iyz,Ixz.
-Omega() returns components of the angular velocity of the group of
-atoms around its center of mass.
-
-Region functions are specified exactly the same way as group functions
-except they take an extra final argument *IDR* which is the region ID.
-The function is computed for all atoms that are in both the group and
-the region. If the group is "all", then the only criteria for atom
-inclusion is that it be in the region.
-
-
-----------
-
-
-Special Functions
------------------
-
-Special functions take specific kinds of arguments, meaning their
-arguments cannot be formulas themselves.
-
-The sum(x), min(x), max(x), ave(x), trap(x), and slope(x) functions
-each take 1 argument which is of the form "c_ID" or "c_ID[N]" or
-"f_ID" or "f_ID[N]" or "v_name". The first two are computes and the
-second two are fixes; the ID in the reference should be replaced by
-the ID of a compute or fix defined elsewhere in the input script. The
-compute or fix must produce either a global vector or array. If it
-produces a global vector, then the notation without "[N]" should be
-used. If it produces a global array, then the notation with "[N]"
-should be used, when N is an integer, to specify which column of the
-global array is being referenced. The last form of argument "v_name"
-is for a vector-style variable where "name" is replaced by the name of
-the variable.
-
-These functions operate on a global vector of inputs and reduce it to
-a single scalar value. This is analagous to the operation of the
-:doc:`compute reduce <compute_reduce>` command, which performs similar
-operations on per-atom and local vectors.
-
-The sum() function calculates the sum of all the vector elements. The
-min() and max() functions find the minimum and maximum element
-respectively. The ave() function is the same as sum() except that it
-divides the result by the length of the vector.
-
-The trap() function is the same as sum() except the first and last
-elements are multiplied by a weighting factor of 1/2 when performing
-the sum. This effectively implements an integration via the
-trapezoidal rule on the global vector of data. I.e. consider a set of
-points, equally spaced by 1 in their x coordinate: (1,V1), (2,V2),
-..., (N,VN), where the Vi are the values in the global vector of
-length N. The integral from 1 to N of these points is trap(). When
-appropriately normalized by the timestep size, this function is useful
-for calculating integrals of time-series data, like that generated by
-the :doc:`fix ave/correlate <fix_ave_correlate>` command.
-
-The slope() function uses linear regression to fit a line to the set
-of points, equally spaced by 1 in their x coordinate: (1,V1), (2,V2),
-..., (N,VN), where the Vi are the values in the global vector of
-length N. The returned value is the slope of the line. If the line
-has a single point or is vertical, it returns 1.0e20.
-
-The gmask(x) function takes 1 argument which is a group ID. It
-can only be used in atom-style variables. It returns a 1 for
-atoms that are in the group, and a 0 for atoms that are not.
-
-The rmask(x) function takes 1 argument which is a region ID. It can
-only be used in atom-style variables. It returns a 1 for atoms that
-are in the geometric region, and a 0 for atoms that are not.
-
-The grmask(x,y) function takes 2 arguments. The first is a group ID,
-and the second is a region ID. It can only be used in atom-style
-variables. It returns a 1 for atoms that are in both the group and
-region, and a 0 for atoms that are not in both.
-
-The next(x) function takes 1 argument which is a variable ID (not
-"v_foo", just "foo"). It must be for a file-style or atomfile-style
-variable. Each time the next() function is invoked (i.e. each time
-the equal-style or atom-style variable is evaluated), the following
-steps occur.
-
-For file-style variables, the current string value stored by the
-file-style variable is converted to a numeric value and returned by
-the function. And the next string value in the file is read and
-stored. Note that if the line previously read from the file was not a
-numeric string, then it will typically evaluate to 0.0, which is
-likely not what you want.
-
-For atomfile-style variables, the current per-atom values stored by
-the atomfile-style variable are returned by the function. And the
-next set of per-atom values in the file is read and stored.
-
-Since file-style and atomfile-style variables read and store the first
-line of the file or first set of per-atoms values when they are
-defined in the input script, these are the value(s) that will be
-returned the first time the next() function is invoked. If next() is
-invoked more times than there are lines or sets of lines in the file,
-the variable is deleted, similar to how the :doc:`next <next>` command
-operates.
-
-
-----------
-
-
-Feature Functions
------------------
-
-Feature functions allow to probe the running LAMMPS executable for
-whether specific features are either active, defined, or available.
-The functions take two arguments, a *category* and a corresponding
-*argument*. The arguments are strings thus cannot be formulas
-themselves (only $-style immediate variable expansion is possible).
-Return value is either 1.0 or 0.0 depending on whether the function
-evaluates to true or false, respectively.
-
-The *is_active()* function allows to query for active settings which
-are grouped by categories. Currently supported categories and
-arguments are:
-
-* *package* (argument = *cuda* or *gpu* or *intel* or *kokkos* or *omp*)
-* *newton* (argument = *pair* or *bond* or *any*)
-* *pair* (argument = *single* or *respa* or *manybody* or *tail* or *shift*)
-* *comm_style* (argument = *brick* or *tiled*)
-* *min_style* (argument = any of the compiled in minimizer styles)
-* *run_style* (argument = any of the compiled in run styles)
-* *atom_style* (argument = any of the compiled in atom styles)
-* *pair_style* (argument = any of the compiled in pair styles)
-* *bond_style* (argument = any of the compiled in bond styles)
-* *angle_style* (argument = any of the compiled in angle styles)
-* *dihedral_style* (argument = any of the compiled in dihedral styles)
-* *improper_style* (argument = any of the compiled in improper styles)
-* *kspace_style* (argument = any of the compiled in kspace styles)
-
-Most of the settings are self-explanatory, the *single* argument in the
-*pair* category allows to check whether a pair style supports a
-Pair::single() function as needed by compute group/group and others
-features or LAMMPS, *respa* allows to check whether the inner/middle/outer
-mode of r-RESPA is supported. In the various style categories,
-the checking is also done using suffix flags, if available and enabled.
-
-Example 1: disable use of suffix for pppm when using GPU package (i.e. run it on the CPU concurrently to running the pair style on the GPU), but do use the suffix otherwise (e.g. with USER-OMP).
-
-.. parsed-literal::
-
- pair_style lj/cut/coul/long 14.0
- if $(is_active(package,gpu)) then "suffix off"
- kspace_style pppm
-
-Example 2: use r-RESPA with inner/outer cutoff, if supported by pair style, otherwise fall back to using pair and reducing the outer time step
-
-.. parsed-literal::
-
- timestep $(2.0*(1.0+*is_active(pair,respa))
- if $(is_active(pair,respa)) then "run_style respa 4 3 2 2 improper 1 inner 2 5.5 7.0 outer 3 kspace 4" else "run_style respa 3 3 2 improper 1 pair 2 kspace 3"
-
-The *is_defined()* function allows to query categories like *compute*,
-*dump*, *fix*, *group*, *region*, and *variable* whether an entry
-with the provided name or id is defined.
-
-The *is_available()* function allows to query whether a specific
-optional feature is available, i.e. compiled in. This currently
-works for the following categories: *command*, *compute*, *fix*,
-and *pair_style*. For all categories except *command* also appending
-active suffixes is tried before reporting failure.
-
-
-----------
-
-
-Atom Values and Vectors
------------------------
-
-Atom values take an integer argument I from 1 to N, where I is the
-atom-ID, e.g. x[243], which means use the x coordinate of the atom
-with ID = 243. Or they can take a variable name, specified as v_name,
-where name is the name of the variable, like x[v_myIndex]. The
-variable can be of any style except *vector* or *atom* or *atomfile*
-variables. The variable is evaluated and the result is expected to be
-numeric and is cast to an integer (i.e. 3.4 becomes 3), to use an an
-index, which must be a value from 1 to N. Note that a "formula"
-cannot be used as the argument between the brackets, e.g. x[243+10]
-or x[v_myIndex+1] are not allowed. To do this a single variable can
-be defined that contains the needed formula.
-
-Note that the 0 < atom-ID <= N, where N is the largest atom ID
-in the system. If an ID is specified for an atom that does not
-currently exist, then the generated value is 0.0.
-
-Atom vectors generate one value per atom, so that a reference like
-"vx" means the x-component of each atom's velocity will be used when
-evaluating the variable.
-
-The meaning of the different atom values and vectors is mostly
-self-explanatory. *Mol* refers to the molecule ID of an atom, and is
-only defined if an :doc:`atom_style <atom_style>` is being used that
-defines molecule IDs.
-
-Note that many other atom attributes can be used as inputs to a
-variable by using the :doc:`compute property/atom <compute_property_atom>` command and then specifying
-a quantity from that compute.
-
-
-----------
-
-
-Compute References
-------------------
-
-Compute references access quantities calculated by a
-:doc:`compute <compute>`. The ID in the reference should be replaced by
-the ID of a compute defined elsewhere in the input script. As
-discussed in the doc page for the :doc:`compute <compute>` command,
-computes can produce global, per-atom, or local values. Only global
-and per-atom values can be used in a variable. Computes can also
-produce a scalar, vector, or array.
-
-An equal-style variable can only use scalar values, which means a
-global scalar, or an element of a global or per-atom vector or array.
-A vector-style variable can use scalar values or a global vector of
-values, or a column of a global array of values. Atom-style variables
-can use global scalar values. They can also use per-atom vector
-values, or a column of a per-atom array. See the doc pages for
-individual computes to see what kind of values they produce.
-
-Examples of different kinds of compute references are as follows.
-There is typically no ambiguity (see exception below) as to what a
-reference means, since computes only produce either global or per-atom
-quantities, never both.
-
-+------------+-------------------------------------------------------------------------------------------------------+
-| c_ID | global scalar, or per-atom vector |
-+------------+-------------------------------------------------------------------------------------------------------+
-| c_ID[I] | Ith element of global vector, or atom I's value in per-atom vector, or Ith column from per-atom array |
-+------------+-------------------------------------------------------------------------------------------------------+
-| c_ID[I][J] | I,J element of global array, or atom I's Jth value in per-atom array |
-+------------+-------------------------------------------------------------------------------------------------------+
-
-For I and J indices, integers can be specified or a variable name,
-specified as v_name, where name is the name of the variable. The
-rules for this syntax are the same as for the "Atom Values and
-Vectors" discussion above.
-
-One source of ambiguity for compute references is when a vector-style
-variable refers to a compute that produces both a global scalar and a
-global vector. Consider a compute with ID "foo" that does this,
-referenced as follows by variable "a", where "myVec" is another
-vector-style variable:
-
-.. parsed-literal::
-
- variable a vector c_foo*v_myVec
-
-The reference "c_foo" could refer to either the global scalar or
-global vector produced by compute "foo". In this case, "c_foo" will
-always refer to the global scalar, and "C_foo" can be used to
-reference the global vector. Similarly if the compute produces both a
-global vector and global array, then "c_foo[I]" will always refer to
-an element of the global vector, and "C_foo[I]" can be used to
-reference the Ith column of the global array.
-
-Note that if a variable containing a compute is evaluated directly in
-an input script (not during a run), then the values accessed by the
-compute must be current. See the discussion below about "Variable
-Accuracy".
-
-
-----------
-
-
-Fix References
---------------
-
-Fix references access quantities calculated by a :doc:`fix <compute>`.
-The ID in the reference should be replaced by the ID of a fix defined
-elsewhere in the input script. As discussed in the doc page for the
-:doc:`fix <fix>` command, fixes can produce global, per-atom, or local
-values. Only global and per-atom values can be used in a variable.
-Fixes can also produce a scalar, vector, or array. An equal-style
-variable can only use scalar values, which means a global scalar, or
-an element of a global or per-atom vector or array. Atom-style
-variables can use the same scalar values. They can also use per-atom
-vector values. A vector value can be a per-atom vector itself, or a
-column of an per-atom array. See the doc pages for individual fixes
-to see what kind of values they produce.
-
-The different kinds of fix references are exactly the same as the
-compute references listed in the above table, where "c_" is replaced
-by "f_". Again, there is typically no ambiguity (see exception below)
-as to what a reference means, since fixes only produce either global
-or per-atom quantities, never both.
-
-+------------+-------------------------------------------------------------------------------------------------------+
-| f_ID | global scalar, or per-atom vector |
-+------------+-------------------------------------------------------------------------------------------------------+
-| f_ID[I] | Ith element of global vector, or atom I's value in per-atom vector, or Ith column from per-atom array |
-+------------+-------------------------------------------------------------------------------------------------------+
-| f_ID[I][J] | I,J element of global array, or atom I's Jth value in per-atom array |
-+------------+-------------------------------------------------------------------------------------------------------+
-
-For I and J indices, integers can be specified or a variable name,
-specified as v_name, where name is the name of the variable. The
-rules for this syntax are the same as for the "Atom Values and
-Vectors" discussion above.
-
-One source of ambiguity for fix references is the same ambiguity
-discussed for compute references above. Namely when a vector-style
-variable refers to a fix that produces both a global scalar and a
-global vector. The solution is the same as for compute references.
-For a fix with ID "foo", "f_foo" will always refer to the global
-scalar, and "F_foo" can be used to reference the global vector. And
-similarly for distinguishing between a fix's global vector versus
-global array with "f_foo[I]" versus "F_foo[I]".
-
-Note that if a variable containing a fix is evaluated directly in an
-input script (not during a run), then the values accessed by the fix
-should be current. See the discussion below about "Variable
-Accuracy".
-
-Note that some fixes only generate quantities on certain timesteps.
-If a variable attempts to access the fix on non-allowed timesteps, an
-error is generated. For example, the :doc:`fix ave/time <fix_ave_time>`
-command may only generate averaged quantities every 100 steps. See
-the doc pages for individual fix commands for details.
-
-
-----------
-
-
-Variable References
--------------------
-
-Variable references access quantities stored or calculated by other
-variables, which will cause those variables to be evaluated. The name
-in the reference should be replaced by the name of a variable defined
-elsewhere in the input script.
-
-As discussed on this doc page, equal-style variables generate a single
-global numeric value, vector-style variables gerarate a vector of
-global numeric values, and atom-style and atomfile-style variables
-generate a per-atom vector of numeric values. All other variables
-store one or more strings.
-
-The formula for an equal-style variable can use any style of variable
-including a vector_style or atom-style or atomfile-style. For these
-3 styles, a subscript must be used to access a single value from
-the vector-, atom-, or atomfile-style variable. If a string-storing
-variable is used, the string is converted to a numeric value. Note
-that this will typically produce a 0.0 if the string is not a numeric
-string, which is likely not what you want.
-
-The formula for a vector-style variable can use any style of variable,
-including atom-style or atomfile-style variables. For these 2 styles,
-a subscript must be used to access a single value from the atom-, or
-atomfile-style variable.
-
-The formula for an atom-style variable can use any style of variable,
-including other atom-style or atomfile-style variables. If it uses a
-vector-style variable, a subscript must be used to access a single
-value from the vector-style variable.
-
-Examples of different kinds of variable references are as follows.
-There is no ambiguity as to what a reference means, since variables
-produce only a global scalar or global vector or per-atom vector.
-
-+-----------+----------------------------------------------------------------------+
-| v_name | global scalar from equal-style variable |
-+-----------+----------------------------------------------------------------------+
-| v_name | global vector from vector-style variable |
-+-----------+----------------------------------------------------------------------+
-| v_name | per-atom vector from atom-style or atomfile-style variable |
-+-----------+----------------------------------------------------------------------+
-| v_name[I] | Ith element of a global vector from vector-style variable |
-+-----------+----------------------------------------------------------------------+
-| v_name[I] | value of atom with ID = I from atom-style or atomfile-style variable |
-+-----------+----------------------------------------------------------------------+
-
-For the I index, an integer can be specified or a variable name,
-specified as v_name, where name is the name of the variable. The
-rules for this syntax are the same as for the "Atom Values and
-Vectors" discussion above.
-
-
-----------
-
-
-**Immediate Evaluation of Variables:**
-
-If you want an equal-style variable to be evaluated immediately, it
-may be the case that you do not need to define a variable at all. See
-:ref:`Section 3.2 <cmd_2>` of the manual, which
-describes the use of "immediate" variables in an input script,
-specified as $(formula) with parenthesis, where the formula has the
-same syntax as equal-style variables described on this page. This
-effectively evaluates a formula immediately without using the variable
-command to define a named variable.
-
-More generally, there is a difference between referencing a variable
-with a leading $ sign (e.g. $x or ${abc}) versus with a leading "v_"
-(e.g. v_x or v_abc). The former can be used in any input script
-command, including a variable command. The input script parser
-evaluates the reference variable immediately and substitutes its value
-into the command. As explained in :ref:`Section commands 3.2 <3_2>` for "Parsing rules", you can also use
-un-named "immediate" variables for this purpose. For example, a
-string like this $((xlo+xhi)/2+sqrt(v_area)) in an input script
-command evaluates the string between the parenthesis as an equal-style
-variable formula.
-
-Referencing a variable with a leading "v_" is an optional or required
-kind of argument for some commands (e.g. the :doc:`fix ave/spatial <fix_ave_spatial>` or :doc:`dump custom <dump>` or
-:doc:`thermo_style <thermo_style>` commands) if you wish it to evaluate
-a variable periodically during a run. It can also be used in a
-variable formula if you wish to reference a second variable. The
-second variable will be evaluated whenever the first variable is
-evaluated.
-
-As an example, suppose you use this command in your input script to
-define the variable "v" as
-
-.. parsed-literal::
-
- variable v equal vol
-
-before a run where the simulation box size changes. You might think
-this will assign the initial volume to the variable "v". That is not
-the case. Rather it assigns a formula which evaluates the volume
-(using the thermo_style keyword "vol") to the variable "v". If you
-use the variable "v" in some other command like :doc:`fix ave/time <fix_ave_time>` then the current volume of the box will be
-evaluated continuously during the run.
-
-If you want to store the initial volume of the system, you can do it
-this way:
-
-.. parsed-literal::
-
- variable v equal vol
- variable v0 equal $v
-
-The second command will force "v" to be evaluated (yielding the
-initial volume) and assign that value to the variable "v0". Thus the
-command
-
-.. parsed-literal::
-
- thermo_style custom step v_v v_v0
-
-would print out both the current and initial volume periodically
-during the run.
-
-Note that it is a mistake to enclose a variable formula in double
-quotes if it contains variables preceeded by $ signs. For example,
-
-.. parsed-literal::
-
- variable vratio equal "${vfinal}/${v0}"
-
-This is because the quotes prevent variable substitution (see :ref:`this section <cmd_2>` on parsing input script
-commands), and thus an error will occur when the formula for "vratio"
-is evaluated later.
-
-
-----------
-
-
-**Variable Accuracy:**
-
-Obviously, LAMMPS attempts to evaluate variables containing formulas
-(*equal* and *atom* style variables) accurately whenever the
-evaluation is performed. Depending on what is included in the
-formula, this may require invoking a :doc:`compute <compute>`, either
-directly or indirectly via a thermo keyword, or accessing a value
-previously calculated by a compute, or accessing a value calculated
-and stored by a :doc:`fix <fix>`. If the compute is one that calculates
-the pressure or energy of the system, then these quantities need to be
-tallied during the evaluation of the interatomic potentials (pair,
-bond, etc) on timesteps that the variable will need the values.
-
-LAMMPS keeps track of all of this during a :doc:`run <run>` or :doc:`energy minimization <minimize>`. An error will be generated if you
-attempt to evaluate a variable on timesteps when it cannot produce
-accurate values. For example, if a :doc:`thermo_style custom <thermo_style>` command prints a variable which accesses
-values stored by a :doc:`fix ave/time <fix_ave_time>` command and the
-timesteps on which thermo output is generated are not multiples of the
-averaging frequency used in the fix command, then an error will occur.
-
-An input script can also request variables be evaluated before or
-after or in between runs, e.g. by including them in a
-:doc:`print <print>` command. In this case, if a compute is needed to
-evaluate a variable (either directly or indirectly), LAMMPS will not
-invoke the compute, but it will use a value previously calculated by
-the compute, and can do this only if it was invoked on the current
-timestep. Fixes will always provide a quantity needed by a variable,
-but the quantity may or may not be current. This leads to one of
-three kinds of behavior:
-
-(1) The variable may be evaluated accurately. If it contains
-references to a compute or fix, and these values were calculated on
-the last timestep of a preceeding run, then they will be accessed and
-used by the variable and the result will be accurate.
-
-(2) LAMMPS may not be able to evaluate the variable and will generate
-an error message stating so. For example, if the variable requires a
-quantity from a :doc:`compute <compute>` that has not been invoked on
-the current timestep, LAMMPS will generate an error. This means, for
-example, that such a variable cannot be evaluated before the first run
-has occurred. Likewise, in between runs, a variable containing a
-compute cannot be evaluated unless the compute was invoked on the last
-timestep of the preceding run, e.g. by thermodynamic output.
-
-One way to get around this problem is to perform a 0-timestep run
-before using the variable. For example, these commands
-
-.. parsed-literal::
-
- variable t equal temp
- print "Initial temperature = $t"
- run 1000
-
-will generate an error if the run is the first run specified in the
-input script, because generating a value for the "t" variable requires
-a compute for calculating the temperature to be invoked.
-
-However, this sequence of commands would be fine:
-
-.. parsed-literal::
-
- run 0
- variable t equal temp
- print "Initial temperature = $t"
- run 1000
-
-The 0-timestep run initializes and invokes various computes, including
-the one for temperature, so that the value it stores is current and
-can be accessed by the variable "t" after the run has completed. Note
-that a 0-timestep run does not alter the state of the system, so it
-does not change the input state for the 1000-timestep run that
-follows. Also note that the 0-timestep run must actually use and
-invoke the compute in question (e.g. via :doc:`thermo <thermo_style>` or
-:doc:`dump <dump>` output) in order for it to enable the compute to be
-used in a variable after the run. Thus if you are trying to print a
-variable that uses a compute you have defined, you can insure it is
-invoked on the last timestep of the preceding run by including it in
-thermodynamic output.
-
-Unlike computes, :doc:`fixes <fix>` will never generate an error if
-their values are accessed by a variable in between runs. They always
-return some value to the variable. However, the value may not be what
-you expect if the fix has not yet calculated the quantity of interest
-or it is not current. For example, the :doc:`fix indent <fix_indent>`
-command stores the force on the indenter. But this is not computed
-until a run is performed. Thus if a variable attempts to print this
-value before the first run, zeroes will be output. Again, performing
-a 0-timestep run before printing the variable has the desired effect.
-
-(3) The variable may be evaluated incorrectly and LAMMPS may have no
-way to detect this has occurred. Consider the following sequence of
-commands:
-
-.. parsed-literal::
-
- pair_coeff 1 1 1.0 1.0
- run 1000
- pair_coeff 1 1 1.5 1.0
- variable e equal pe
- print "Final potential energy = $e"
-
-The first run is performed using one setting for the pairwise
-potential defined by the :doc:`pair_style <pair_style>` and
-:doc:`pair_coeff <pair_coeff>` commands. The potential energy is
-evaluated on the final timestep and stored by the :doc:`compute pe <compute_pe>` compute (this is done by the
-:doc:`thermo_style <thermo_style>` command). Then a pair coefficient is
-changed, altering the potential energy of the system. When the
-potential energy is printed via the "e" variable, LAMMPS will use the
-potential energy value stored by the :doc:`compute pe <compute_pe>`
-compute, thinking it is current. There are many other commands which
-could alter the state of the system between runs, causing a variable
-to evaluate incorrectly.
-
-The solution to this issue is the same as for case (2) above, namely
-perform a 0-timestep run before the variable is evaluated to insure
-the system is up-to-date. For example, this sequence of commands
-would print a potential energy that reflected the changed pairwise
-coefficient:
-
-.. parsed-literal::
-
- pair_coeff 1 1 1.0 1.0
- run 1000
- pair_coeff 1 1 1.5 1.0
- run 0
- variable e equal pe
- print "Final potential energy = $e"
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Indexing any formula element by global atom ID, such as an atom value,
-requires the :doc:`atom style <atom_style>` to use a global mapping in
-order to look up the vector indices. By default, only atom styles
-with molecular information create global maps. The :doc:`atom_modify map <atom_modify>` command can override the default, e.g. for
-atomic-style atom styles.
-
-All *universe*- and *uloop*-style variables defined in an input script
-must have the same number of values.
-
-Related commands
-""""""""""""""""
-
-:doc:`next <next>`, :doc:`jump <jump>`, :doc:`include <include>`,
-:doc:`temper <temper>`, :doc:`fix print <fix_print>`, :doc:`print <print>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/velocity.txt b/doc/_sources/velocity.txt
deleted file mode 100644
index 180145e92..000000000
--- a/doc/_sources/velocity.txt
+++ /dev/null
@@ -1,281 +0,0 @@
-.. index:: velocity
-
-velocity command
-================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- velocity group-ID style args keyword value ...
-
-* group-ID = ID of group of atoms whose velocity will be changed
-* style = *create* or *set* or *scale* or *ramp* or *zero*
-.. parsed-literal::
-
- *create* args = temp seed
- temp = temperature value (temperature units)
- seed = random # seed (positive integer)
- *set* args = vx vy vz
- vx,vy,vz = velocity value or NULL (velocity units)
- any of vx,vy,vz van be a variable (see below)
- *scale* arg = temp
- temp = temperature value (temperature units)
- *ramp* args = vdim vlo vhi dim clo chi
- vdim = *vx* or *vy* or *vz*
- vlo,vhi = lower and upper velocity value (velocity units)
- dim = *x* or *y* or *z*
- clo,chi = lower and upper coordinate bound (distance units)
- *zero* arg = *linear* or *angular*
- *linear* = zero the linear momentum
- *angular* = zero the angular momentum
-
-* zero or more keyword/value pairs may be appended
-* keyword = *dist* or *sum* or *mom* or *rot* or *temp* or *bias* or *loop* or *units*
-.. parsed-literal::
-
- *dist* value = *uniform* or *gaussian*
- *sum* value = *no* or *yes*
- *mom* value = *no* or *yes*
- *rot* value = *no* or *yes*
- *temp* value = temperature compute ID
- *bias* value = *no* or *yes*
- *loop* value = *all* or *local* or *geom*
- *rigid* value = fix-ID
- fix-ID = ID of rigid body fix
- *units* value = *box* or *lattice*
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- velocity all create 300.0 4928459 rot yes dist gaussian
- velocity border set NULL 4.0 v_vz sum yes units box
- velocity flow scale 300.0
- velocity flow ramp vx 0.0 5.0 y 5 25 temp mytemp
- velocity all zero linear
-
-Description
-"""""""""""
-
-Set or change the velocities of a group of atoms in one of several
-styles. For each style, there are required arguments and optional
-keyword/value parameters. Not all options are used by each style.
-Each option has a default as listed below.
-
-The *create* style generates an ensemble of velocities using a random
-number generator with the specified seed as the specified temperature.
-
-The *set* style sets the velocities of all atoms in the group to the
-specified values. If any component is specified as NULL, then it is
-not set. Any of the vx,vy,vz velocity components can be specified as
-an equal-style or atom-style :doc:`variable <variable>`. If the value
-is a variable, it should be specified as v_name, where name is the
-variable name. In this case, the variable will be evaluated, and its
-value used to determine the velocity component. Note that if a
-variable is used, the velocity it calculates must be in box units, not
-lattice units; see the discussion of the *units* keyword below.
-
-Equal-style variables can specify formulas with various mathematical
-functions, and include :doc:`thermo_style <thermo_style>` command
-keywords for the simulation box parameters or other parameters.
-
-Atom-style variables can specify the same formulas as equal-style
-variables but can also include per-atom values, such as atom
-coordinates. Thus it is easy to specify a spatially-dependent
-velocity field.
-
-The *scale* style computes the current temperature of the group of
-atoms and then rescales the velocities to the specified temperature.
-
-The *ramp* style is similar to that used by the :doc:`compute temp/ramp <compute_temp_ramp>` command. Velocities ramped
-uniformly from vlo to vhi are applied to dimension vx, or vy, or vz.
-The value assigned to a particular atom depends on its relative
-coordinate value (in dim) from clo to chi. For the example above, an
-atom with y-coordinate of 10 (1/4 of the way from 5 to 25), would be
-assigned a x-velocity of 1.25 (1/4 of the way from 0.0 to 5.0). Atoms
-outside the coordinate bounds (less than 5 or greater than 25 in this
-case), are assigned velocities equal to vlo or vhi (0.0 or 5.0 in this
-case).
-
-The *zero* style adjusts the velocities of the group of atoms so that
-the aggregate linear or angular momentum is zero. No other changes
-are made to the velocities of the atoms. If the *rigid* option is
-specified (see below), then the zeroing is performed on individual
-rigid bodies, as defined by the :doc:`fix rigid or fix rigid/small <fix_rigid>` commands. In other words, zero linear
-will set the linear momentum of each rigid body to zero, and zero
-angular will set the angular momentum of each rigid body to zero.
-This is done by adjusting the velocities of the atoms in each rigid
-body.
-
-All temperatures specified in the velocity command are in temperature
-units; see the :doc:`units <units>` command. The units of velocities and
-coordinates depend on whether the *units* keyword is set to *box* or
-*lattice*, as discussed below.
-
-For all styles, no atoms are assigned z-component velocities if the
-simulation is 2d; see the :doc:`dimension <dimension>` command.
-
-
-----------
-
-
-The keyword/value options are used in the following ways by the
-various styles.
-
-The *dist* keyword is used by *create*. The ensemble of generated
-velocities can be a *uniform* distribution from some minimum to
-maximum value, scaled to produce the requested temperature. Or it can
-be a *gaussian* distribution with a mean of 0.0 and a sigma scaled to
-produce the requested temperature.
-
-The *sum* keyword is used by all styles, except *zero*. The new
-velocities will be added to the existing ones if sum = yes, or will
-replace them if sum = no.
-
-The *mom* and *rot* keywords are used by *create*. If mom = yes, the
-linear momentum of the newly created ensemble of velocities is zeroed;
-if rot = yes, the angular momentum is zeroed.
-
-*line
-
-If specified, the *temp* keyword is used by *create* and *scale* to
-specify a :doc:`compute <compute>` that calculates temperature in a
-desired way, e.g. by first subtracting out a velocity bias, as
-discussed in :ref:`Section howto 16 <howto_15>` of the doc
-pages. If this keyword is not specified, *create* and *scale*
-calculate temperature using a compute that is defined internally as
-follows:
-
-.. parsed-literal::
-
- compute velocity_temp group-ID temp
-
-where group-ID is the same ID used in the velocity command. i.e. the
-group of atoms whose velocity is being altered. This compute is
-deleted when the velocity command is finished. See the :doc:`compute temp <compute_temp>` command for details. If the calculated
-temperature should have degrees-of-freedom removed due to fix
-constraints (e.g. SHAKE or rigid-body constraints), then the
-appropriate fix command must be specified before the velocity command
-is issued.
-
-The *bias* keyword with a *yes* setting is used by *create* and
-*scale*, but only if the *temp* keyword is also used to specify a
-:doc:`compute <compute>` that calculates temperature in a desired way.
-If the temperature compute also calculates a velocity bias, the the
-bias is subtracted from atom velocities before the *create* and
-*scale* operations are performed. After the operations, the bias is
-added back to the atom velocities. See :ref:`Section howto 16 <howto_15>` of the doc pages for more discussion
-of temperature computes with biases. Note that the velocity bias is
-only applied to atoms in the temperature compute specified with the
-*temp* keyword.
-
-As an example, assume atoms are currently streaming in a flow
-direction (which could be separately initialized with the *ramp*
-style), and you wish to initialize their thermal velocity to a desired
-temperature. In this context thermal velocity means the per-particle
-velocity that remains when the streaming velocity is subtracted. This
-can be done using the *create* style with the *temp* keyword
-specifying the ID of a :doc:`compute temp/ramp <compute_temp_ramp>` or
-:doc:`compute temp/profile <compute_temp_profile>` command, and the
-*bias* keyword set to a *yes* value.
-
-
-----------
-
-
-The *loop* keyword is used by *create* in the following ways.
-
-If loop = all, then each processor loops over all atoms in the
-simulation to create velocities, but only stores velocities for atoms
-it owns. This can be a slow loop for a large simulation. If atoms
-were read from a data file, the velocity assigned to a particular atom
-will be the same, independent of how many processors are being used.
-This will not be the case if atoms were created using the
-:doc:`create_atoms <create_atoms>` command, since atom IDs will likely
-be assigned to atoms differently.
-
-If loop = local, then each processor loops over only its atoms to
-produce velocities. The random number seed is adjusted to give a
-different set of velocities on each processor. This is a fast loop,
-but the velocity assigned to a particular atom will depend on which
-processor owns it. Thus the results will always be different when a
-simulation is run on a different number of processors.
-
-If loop = geom, then each processor loops over only its atoms. For
-each atom a unique random number seed is created, based on the atom's
-xyz coordinates. A velocity is generated using that seed. This is a
-fast loop and the velocity assigned to a particular atom will be the
-same, independent of how many processors are used. However, the set
-of generated velocities may be more correlated than if the *all* or
-*local* keywords are used.
-
-Note that the *loop geom* keyword will not necessarily assign
-identical velocities for two simulations run on different machines.
-This is because the computations based on xyz coordinates are
-sensitive to tiny differences in the double-precision value for a
-coordinate as stored on a particular machine.
-
-
-----------
-
-
-The *rigid* keyword only has meaning when used with the *zero* style.
-It allows specification of a fix-ID for one of the :doc:`rigid-body fix <fix_rigid>` variants which defines a set of rigid bodies. The
-zeroing of linear or angular momentum is then performed for each rigid
-body defined by the fix, as described above.
-
-The *units* keyword is used by *set* and *ramp*. If units = box,
-the velocities and coordinates specified in the velocity command are
-in the standard units described by the :doc:`units <units>` command
-(e.g. Angstroms/fmsec for real units). If units = lattice, velocities
-are in units of lattice spacings per time (e.g. spacings/fmsec) and
-coordinates are in lattice spacings. The :doc:`lattice <lattice>`
-command must have been previously used to define the lattice spacing.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-Assigning a temperature via the *create* style to a system with :doc:`rigid bodies <fix_rigid>` or :doc:`SHAKE constraints <fix_shake>` may not
-have the desired outcome for two reasons. First, the velocity command
-can be invoked before all of the relevant fixes are created and
-initialized and the number of adjusted degrees of freedom (DOFs) is
-known. Thus it is not possible to compute the target temperature
-correctly. Second, the assigned velocities may be partially canceled
-when constraints are first enforced, leading to a different
-temperature than desired. A workaround for this is to perform a :doc:`run 0 <run>` command, which insures all DOFs are accounted for
-properly, and then rescale the temperature to the desired value before
-performing a simulation. For example:
-
-.. parsed-literal::
-
- velocity all create 300.0 12345
- run 0 # temperature may not be 300K
- velocity all scale 300.0 # now it should be
-
-Related commands
-""""""""""""""""
-
-:doc:`fix rigid <fix_rigid>`, :doc:`fix shake <fix_shake>`,
-:doc:`lattice <lattice>`
-
-Default
-"""""""
-
-The keyword defaults are dist = uniform, sum = no, mom = yes, rot =
-no, bias = no, loop = all, and units = lattice. The temp and rigid
-keywords are not defined by default.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/write_coeff.txt b/doc/_sources/write_coeff.txt
deleted file mode 100644
index 5de40196b..000000000
--- a/doc/_sources/write_coeff.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-.. index:: write_coeff
-
-write_coeff command
-===================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- write_coeff file
-
-.. parsed-literal::
-
- file = name of data file to write out
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- write_coeff polymer.coeff
-
-Description
-"""""""""""
-
-Write a text format file with the currently defined force field
-coefficients in a way, that it can be read by LAMMPS with the
-:doc:`include <include>` command. In combination with the nocoeff
-option of :doc:`write_data <write_data>` this can be used to move
-the Coeffs sections from a data file into a separate file.
-
-.. note::
-
- The write_coeff command is not yet fully implemented in two
- respects. First, some pair styles do not yet write their coefficient
- information into the coeff file. This means you will need to specify
- that information in your input script that reads the data file, via
- the :doc:`pair_coeff <pair_coeff>` command.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-none
-
-Related commands
-""""""""""""""""
-
-:doc:`read_data <read_data>`, :doc:`write_restart <write_restart>`,
-:doc:`write_data <write_data>`
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/write_data.txt b/doc/_sources/write_data.txt
deleted file mode 100644
index 0eb42c944..000000000
--- a/doc/_sources/write_data.txt
+++ /dev/null
@@ -1,142 +0,0 @@
-.. index:: write_data
-
-write_data command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- write_data file keyword value ...
-
-* file = name of data file to write out
-* zero or more keyword/value pairs may be appended
-* keyword = *pair* or *nocoeff*
-.. parsed-literal::
-
- *nocoeff* = do not write out force field info
- *pair* value = *ii* or *ij*
- *ii* = write one line of pair coefficient info per atom type
- *ij* = write one line of pair coefficient info per IJ atom type pair
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- write_data data.polymer
- write_data data.*
-
-Description
-"""""""""""
-
-Write a data file in text format of the current state of the
-simulation. Data files can be read by the :doc:`read data <read_data>`
-command to begin a simulation. The :doc:`read_data <read_data>` command
-also describes their format.
-
-Similar to :doc:`dump <dump>` files, the data filename can contain a "*"
-wild-card character. The "*" is replaced with the current timestep
-value.
-
-.. note::
-
- The write-data command is not yet fully implemented in two
- respects. First, most pair styles do not yet write their coefficient
- information into the data file. This means you will need to specify
- that information in your input script that reads the data file, via
- the :doc:`pair_coeff <pair_coeff>` command. Second, a few of the :doc:`atom styles <atom_style>` (body, ellipsoid, line, tri) that store
- auxiliary "bonus" information about aspherical particles, do not yet
- write the bonus info into the data file. Both these functionalities
- will be added to the write_data command later.
-
-Because a data file is in text format, if you use a data file written
-out by this command to restart a simulation, the initial state of the
-new run will be slightly different than the final state of the old run
-(when the file was written) which was represented internally by LAMMPS
-in binary format. A new simulation which reads the data file will
-thus typically diverge from a simulation that continued in the
-original input script.
-
-If you want to do more exact restarts, using binary files, see the
-:doc:`restart <restart>`, :doc:`write_restart <write_restart>`, and
-:doc:`read_restart <read_restart>` commands. You can also convert
-binary restart files to text data files, after a simulation has run,
-using the :ref:`-r command-line switch <start_7>`.
-
-.. note::
-
- Only limited information about a simulation is stored in a data
- file. For example, no information about atom :doc:`groups <group>` and
- :doc:`fixes <fix>` are stored. :doc:`Binary restart files <read_restart>`
- store more information.
-
-Bond interactions (angle, etc) that have been turned off by the :doc:`fix shake <fix_shake>` or :doc:`delete_bonds <delete_bonds>` command will
-be written to a data file as if they are turned on. This means they
-will need to be turned off again in a new run after the data file is
-read.
-
-Bonds that are broken (e.g. by a bond-breaking potential) are not
-written to the data file. Thus these bonds will not exist when the
-data file is read.
-
-
-----------
-
-
-The *nocoeff* keyword requests that no force field parameters should
-be written to the data file. This can be very helpful, if one wants
-to make significant changes to the force field or if the parameters
-are read in separately anyway, e.g. from an include file.
-
-The *pair* keyword lets you specify in what format the pair
-coefficient information is written into the data file. If the value
-is specified as *ii*, then one line per atom type is written, to
-specify the coefficients for each of the I=J interactions. This means
-that no cross-interactions for I != J will be specified in the data
-file and the pair style will apply its mixing rule, as documented on
-individual :doc:`pair_style <pair_style>` doc pages. Of course this
-behavior can be overridden in the input script after reading the data
-file, by specifying additional :doc:`pair_coeff <pair_coeff>` commands
-for any desired I,J pairs.
-
-If the value is specified as *ij*, then one line of coefficients is
-written for all I,J pairs where I <= J. These coefficients will
-include any specific settings made in the input script up to that
-point. The presence of these I != J coefficients in the data file
-will effectively turn off the default mixing rule for the pair style.
-Again, the coefficient values in the data file can can be overridden
-in the input script after reading the data file, by specifying
-additional :doc:`pair_coeff <pair_coeff>` commands for any desired I,J
-pairs.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command requires inter-processor communication to migrate atoms
-before the data file is written. This means that your system must be
-ready to perform a simulation before using this command (force fields
-setup, atom masses initialized, etc).
-
-Related commands
-""""""""""""""""
-
-:doc:`read_data <read_data>`, :doc:`write_restart <write_restart>`
-
-Default
-"""""""
-
-The option defaults are pair = ii.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/write_dump.txt b/doc/_sources/write_dump.txt
deleted file mode 100644
index 418405d3a..000000000
--- a/doc/_sources/write_dump.txt
+++ /dev/null
@@ -1,101 +0,0 @@
-.. index:: write_dump
-
-write_dump command
-==================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- write_dump group-ID style file dump-args modify dump_modify-args
-
-* group-ID = ID of the group of atoms to be dumped
-* style = any of the supported :doc:`dump styles <dump>`
-* file = name of file to write dump info to
-* dump-args = any additional args needed for a particular :doc:`dump style <dump>`
-* modify = all args after this keyword are passed to :doc:`dump_modify <dump_modify>` (optional)
-* dump-modify-args = args for :doc:`dump_modify <dump_modify>` (optional)
-Examples
-""""""""
-
-.. parsed-literal::
-
- write_dump all atom dump.atom
- write_dump subgroup atom dump.run.bin
- write_dump all custom dump.myforce.* id type x y vx fx
- write_dump flow custom dump.%.myforce id type c_myF[3] v_ke modify sort id
- write_dump all xyz system.xyz modify sort id elements O H
- write_dump all image snap*.jpg type type size 960 960 modify backcolor white
- write_dump all image snap*.jpg element element &
- bond atom 0.3 shiny 0.1 ssao yes 6345 0.2 size 1600 1600 &
- modify backcolor white element C C O H N C C C O H H S O H
-
-Description
-"""""""""""
-
-Dump a single snapshot of atom quantities to one or more files for the
-current state of the system. This is a one-time immediate operation,
-in contrast to the :doc:`dump <dump>` command which will will set up a
-dump style to write out snapshots periodically during a running
-simulation.
-
-The syntax for this command is mostly identical to that of the
-:doc:`dump <dump>` and :doc:`dump_modify <dump_modify>` commands as if
-they were concatenated together, with the following exceptions: There
-is no need for a dump ID or dump frequency and the keyword *modify* is
-added. The latter is so that the full range of
-:doc:`dump_modify <dump_modify>` options can be specified for the single
-snapshot, just as they can be for multiple snapshots. The *modify*
-keyword separates the arguments that would normally be passed to the
-*dump* command from those that would be given the *dump_modify*. Both
-support optional arguments and thus LAMMPS needs to be able to cleanly
-separate the two sets of args.
-
-Note that if the specified filename uses wildcard characters "*" or
-"%", as supported by the :doc:`dump <dump>` commmand, they will operate
-in the same fashion to create the new filename(s). Normally, :doc:`dump image <dump_image>` files require a filename with a "*" character
-for the timestep. That is not the case for the write_dump command; no
-wildcard "*" character is necessary.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-All restrictions for the :doc:`dump <dump>` and
-:doc:`dump_modify <dump_modify>` commands apply to this command as well,
-with the exception of the :doc:`dump image <dump_image>` filename not
-requiring a wildcard "*" character, as noted above.
-
-Since dumps are normally written during a :doc:`run <run>` or :doc:`energy minimization <minimize>`, the simulation has to be ready to run
-before this command can be used. Similarly, if the dump requires
-information from a compute, fix, or variable, the information needs to
-have been calculated for the current timestep (e.g. by a prior run),
-else LAMMPS will generate an error message.
-
-For example, it is not possible to dump per-atom energy with this
-command before a run has been performed, since no energies and forces
-have yet been calculated. See the :doc:`variable <variable>` doc page
-sectinn on Variable Accuracy for more information on this topic.
-
-Related commands
-""""""""""""""""
-
-:doc:`dump <dump>`, :doc:`dump image <dump_image>`,
-:doc:`dump_modify <dump_modify>`
-
-Default
-"""""""
-
-The defaults are listed on the doc pages for the :doc:`dump <dump>` and
-:doc:`dump image <dump_image>` and :doc:`dump_modify <dump_modify>`
-commands.
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_sources/write_restart.txt b/doc/_sources/write_restart.txt
deleted file mode 100644
index 33b0548f9..000000000
--- a/doc/_sources/write_restart.txt
+++ /dev/null
@@ -1,141 +0,0 @@
-.. index:: write_restart
-
-write_restart command
-=====================
-
-Syntax
-""""""
-
-.. parsed-literal::
-
- write_restart file keyword value ...
-
-* file = name of file to write restart information to
-* zero or more keyword/value pairs may be appended
-* keyword = *fileper* or *nfile*
-.. parsed-literal::
-
- *fileper* arg = Np
- Np = write one file for every this many processors
- *nfile* arg = Nf
- Nf = write this many files, one from each of Nf processors
-
-
-
-Examples
-""""""""
-
-.. parsed-literal::
-
- write_restart restart.equil
- write_restart restart.equil.mpiio
- write_restart poly.%.* nfile 10
-
-Description
-"""""""""""
-
-Write a binary restart file of the current state of the simulation.
-
-During a long simulation, the :doc:`restart <restart>` command is
-typically used to output restart files periodically. The
-write_restart command is useful after a minimization or whenever you
-wish to write out a single current restart file.
-
-Similar to :doc:`dump <dump>` files, the restart filename can contain
-two wild-card characters. If a "*" appears in the filename, it is
-replaced with the current timestep value. If a "%" character appears
-in the filename, then one file is written by each processor and the
-"%" character is replaced with the processor ID from 0 to P-1. An
-additional file with the "%" replaced by "base" is also written, which
-contains global information. For example, the files written for
-filename restart.% would be restart.base, restart.0, restart.1, ...
-restart.P-1. This creates smaller files and can be a fast mode of
-output and subsequent input on parallel machines that support parallel
-I/O. The optional *fileper* and *nfile* keywords discussed below can
-alter the number of files written.
-
-The restart file can also be written in parallel as one large binary
-file via the MPI-IO library, which is part of the MPI standard for
-versions 2.0 and above. Using MPI-IO requires two steps. First,
-build LAMMPS with its MPIIO package installed, e.g.
-
-.. parsed-literal::
-
- make yes-mpiio # installs the MPIIO package
- make g++ # build LAMMPS for your platform
-
-Second, use a restart filename which contains ".mpiio". Note that it
-does not have to end in ".mpiio", just contain those characters.
-Unlike MPI-IO dump files, a particular restart file must be both
-written and read using MPI-IO.
-
-Restart files can be read by a :doc:`read_restart <read_restart>`
-command to restart a simulation from a particular state. Because the
-file is binary (to enable exact restarts), it may not be readable on
-another machine. In this case, you can use the :ref:`-r command-line switch <start_7>` to convert a restart file to a data
-file.
-
-.. note::
-
- Although the purpose of restart files is to enable restarting a
- simulation from where it left off, not all information about a
- simulation is stored in the file. For example, the list of fixes that
- were specified during the initial run is not stored, which means the
- new input script must specify any fixes you want to use. Even when
- restart information is stored in the file, as it is for some fixes,
- commands may need to be re-specified in the new input script, in order
- to re-use that information. Details are usually given in the
- documentation of the respective command. Also, see the
- :doc:`read_restart <read_restart>` command for general information about
- what is stored in a restart file.
-
-
-----------
-
-
-The optional *nfile* or *fileper* keywords can be used in conjunction
-with the "%" wildcard character in the specified restart file name.
-As explained above, the "%" character causes the restart file to be
-written in pieces, one piece for each of P processors. By default P =
-the number of processors the simulation is running on. The *nfile* or
-*fileper* keyword can be used to set P to a smaller value, which can
-be more efficient when running on a large number of processors.
-
-The *nfile* keyword sets P to the specified Nf value. For example, if
-Nf = 4, and the simulation is running on 100 processors, 4 files will
-be written, by processors 0,25,50,75. Each will collect information
-from itself and the next 24 processors and write it to a restart file.
-
-For the *fileper* keyword, the specified value of Np means write one
-file for every Np processors. For example, if Np = 4, every 4th
-processor (0,4,8,12,etc) will collect information from itself and the
-next 3 processors and write it to a restart file.
-
-
-----------
-
-
-Restrictions
-""""""""""""
-
-
-This command requires inter-processor communication to migrate atoms
-before the restart file is written. This means that your system must
-be ready to perform a simulation before using this command (force
-fields setup, atom masses initialized, etc).
-
-To write and read restart files in parallel with MPI-IO, the MPIIO
-package must be installed.
-
-Related commands
-""""""""""""""""
-
-:doc:`restart <restart>`, :doc:`read_restart <read_restart>`,
-:doc:`write_data <write_data>`
-
-**Default:** none
-
-
-.. _lws: http://lammps.sandia.gov
-.. _ld: Manual.html
-.. _lc: Section_commands.html#comm
diff --git a/doc/_static/ajax-loader.gif b/doc/_static/ajax-loader.gif
deleted file mode 100644
index 61faf8cab..000000000
Binary files a/doc/_static/ajax-loader.gif and /dev/null differ
diff --git a/doc/_static/basic.css b/doc/_static/basic.css
deleted file mode 100644
index 9fa77d886..000000000
--- a/doc/_static/basic.css
+++ /dev/null
@@ -1,599 +0,0 @@
-/*
- * basic.css
- * ~~~~~~~~~
- *
- * Sphinx stylesheet -- basic theme.
- *
- * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
- */
-
-/* -- main layout ----------------------------------------------------------- */
-
-div.clearer {
- clear: both;
-}
-
-/* -- relbar ---------------------------------------------------------------- */
-
-div.related {
- width: 100%;
- font-size: 90%;
-}
-
-div.related h3 {
- display: none;
-}
-
-div.related ul {
- margin: 0;
- padding: 0 0 0 10px;
- list-style: none;
-}
-
-div.related li {
- display: inline;
-}
-
-div.related li.right {
- float: right;
- margin-right: 5px;
-}
-
-/* -- sidebar --------------------------------------------------------------- */
-
-div.sphinxsidebarwrapper {
- padding: 10px 5px 0 10px;
-}
-
-div.sphinxsidebar {
- float: left;
- width: 230px;
- margin-left: -100%;
- font-size: 90%;
-}
-
-div.sphinxsidebar ul {
- list-style: none;
-}
-
-div.sphinxsidebar ul ul,
-div.sphinxsidebar ul.want-points {
- margin-left: 20px;
- list-style: square;
-}
-
-div.sphinxsidebar ul ul {
- margin-top: 0;
- margin-bottom: 0;
-}
-
-div.sphinxsidebar form {
- margin-top: 10px;
-}
-
-div.sphinxsidebar input {
- border: 1px solid #98dbcc;
- font-family: sans-serif;
- font-size: 1em;
-}
-
-div.sphinxsidebar #searchbox input[type="text"] {
- width: 170px;
-}
-
-div.sphinxsidebar #searchbox input[type="submit"] {
- width: 30px;
-}
-
-img {
- border: 0;
- max-width: 100%;
-}
-
-/* -- search page ----------------------------------------------------------- */
-
-ul.search {
- margin: 10px 0 0 20px;
- padding: 0;
-}
-
-ul.search li {
- padding: 5px 0 5px 20px;
- background-image: url(file.png);
- background-repeat: no-repeat;
- background-position: 0 7px;
-}
-
-ul.search li a {
- font-weight: bold;
-}
-
-ul.search li div.context {
- color: #888;
- margin: 2px 0 0 30px;
- text-align: left;
-}
-
-ul.keywordmatches li.goodmatch a {
- font-weight: bold;
-}
-
-/* -- index page ------------------------------------------------------------ */
-
-table.contentstable {
- width: 90%;
-}
-
-table.contentstable p.biglink {
- line-height: 150%;
-}
-
-a.biglink {
- font-size: 1.3em;
-}
-
-span.linkdescr {
- font-style: italic;
- padding-top: 5px;
- font-size: 90%;
-}
-
-/* -- general index --------------------------------------------------------- */
-
-table.indextable {
- width: 100%;
-}
-
-table.indextable td {
- text-align: left;
- vertical-align: top;
-}
-
-table.indextable dl, table.indextable dd {
- margin-top: 0;
- margin-bottom: 0;
-}
-
-table.indextable tr.pcap {
- height: 10px;
-}
-
-table.indextable tr.cap {
- margin-top: 10px;
- background-color: #f2f2f2;
-}
-
-img.toggler {
- margin-right: 3px;
- margin-top: 3px;
- cursor: pointer;
-}
-
-div.modindex-jumpbox {
- border-top: 1px solid #ddd;
- border-bottom: 1px solid #ddd;
- margin: 1em 0 1em 0;
- padding: 0.4em;
-}
-
-div.genindex-jumpbox {
- border-top: 1px solid #ddd;
- border-bottom: 1px solid #ddd;
- margin: 1em 0 1em 0;
- padding: 0.4em;
-}
-
-/* -- general body styles --------------------------------------------------- */
-
-a.headerlink {
- visibility: hidden;
-}
-
-h1:hover > a.headerlink,
-h2:hover > a.headerlink,
-h3:hover > a.headerlink,
-h4:hover > a.headerlink,
-h5:hover > a.headerlink,
-h6:hover > a.headerlink,
-dt:hover > a.headerlink,
-caption:hover > a.headerlink,
-p.caption:hover > a.headerlink,
-div.code-block-caption:hover > a.headerlink {
- visibility: visible;
-}
-
-div.body p.caption {
- text-align: inherit;
-}
-
-div.body td {
- text-align: left;
-}
-
-.field-list ul {
- padding-left: 1em;
-}
-
-.first {
- margin-top: 0 !important;
-}
-
-p.rubric {
- margin-top: 30px;
- font-weight: bold;
-}
-
-img.align-left, .figure.align-left, object.align-left {
- clear: left;
- float: left;
- margin-right: 1em;
-}
-
-img.align-right, .figure.align-right, object.align-right {
- clear: right;
- float: right;
- margin-left: 1em;
-}
-
-img.align-center, .figure.align-center, object.align-center {
- display: block;
- margin-left: auto;
- margin-right: auto;
-}
-
-.align-left {
- text-align: left;
-}
-
-.align-center {
- text-align: center;
-}
-
-.align-right {
- text-align: right;
-}
-
-/* -- sidebars -------------------------------------------------------------- */
-
-div.sidebar {
- margin: 0 0 0.5em 1em;
- border: 1px solid #ddb;
- padding: 7px 7px 0 7px;
- background-color: #ffe;
- width: 40%;
- float: right;
-}
-
-p.sidebar-title {
- font-weight: bold;
-}
-
-/* -- topics ---------------------------------------------------------------- */
-
-div.topic {
- border: 1px solid #ccc;
- padding: 7px 7px 0 7px;
- margin: 10px 0 10px 0;
-}
-
-p.topic-title {
- font-size: 1.1em;
- font-weight: bold;
- margin-top: 10px;
-}
-
-/* -- admonitions ----------------------------------------------------------- */
-
-div.admonition {
- margin-top: 10px;
- margin-bottom: 10px;
- padding: 7px;
-}
-
-div.admonition dt {
- font-weight: bold;
-}
-
-div.admonition dl {
- margin-bottom: 0;
-}
-
-p.admonition-title {
- margin: 0px 10px 5px 0px;
- font-weight: bold;
-}
-
-div.body p.centered {
- text-align: center;
- margin-top: 25px;
-}
-
-/* -- tables ---------------------------------------------------------------- */
-
-table.docutils {
- border: 0;
- border-collapse: collapse;
-}
-
-table caption span.caption-number {
- font-style: italic;
-}
-
-table caption span.caption-text {
-}
-
-table.docutils td, table.docutils th {
- padding: 1px 8px 1px 5px;
- border-top: 0;
- border-left: 0;
- border-right: 0;
- border-bottom: 1px solid #aaa;
-}
-
-table.field-list td, table.field-list th {
- border: 0 !important;
-}
-
-table.footnote td, table.footnote th {
- border: 0 !important;
-}
-
-th {
- text-align: left;
- padding-right: 5px;
-}
-
-table.citation {
- border-left: solid 1px gray;
- margin-left: 1px;
-}
-
-table.citation td {
- border-bottom: none;
-}
-
-/* -- figures --------------------------------------------------------------- */
-
-div.figure {
- margin: 0.5em;
- padding: 0.5em;
-}
-
-div.figure p.caption {
- padding: 0.3em;
-}
-
-div.figure p.caption span.caption-number {
- font-style: italic;
-}
-
-div.figure p.caption span.caption-text {
-}
-
-
-/* -- other body styles ----------------------------------------------------- */
-
-ol.arabic {
- list-style: decimal;
-}
-
-ol.loweralpha {
- list-style: lower-alpha;
-}
-
-ol.upperalpha {
- list-style: upper-alpha;
-}
-
-ol.lowerroman {
- list-style: lower-roman;
-}
-
-ol.upperroman {
- list-style: upper-roman;
-}
-
-dl {
- margin-bottom: 15px;
-}
-
-dd p {
- margin-top: 0px;
-}
-
-dd ul, dd table {
- margin-bottom: 10px;
-}
-
-dd {
- margin-top: 3px;
- margin-bottom: 10px;
- margin-left: 30px;
-}
-
-dt:target, .highlighted {
- background-color: #fbe54e;
-}
-
-dl.glossary dt {
- font-weight: bold;
- font-size: 1.1em;
-}
-
-.field-list ul {
- margin: 0;
- padding-left: 1em;
-}
-
-.field-list p {
- margin: 0;
-}
-
-.optional {
- font-size: 1.3em;
-}
-
-.sig-paren {
- font-size: larger;
-}
-
-.versionmodified {
- font-style: italic;
-}
-
-.system-message {
- background-color: #fda;
- padding: 5px;
- border: 3px solid red;
-}
-
-.footnote:target {
- background-color: #ffa;
-}
-
-.line-block {
- display: block;
- margin-top: 1em;
- margin-bottom: 1em;
-}
-
-.line-block .line-block {
- margin-top: 0;
- margin-bottom: 0;
- margin-left: 1.5em;
-}
-
-.guilabel, .menuselection {
- font-family: sans-serif;
-}
-
-.accelerator {
- text-decoration: underline;
-}
-
-.classifier {
- font-style: oblique;
-}
-
-abbr, acronym {
- border-bottom: dotted 1px;
- cursor: help;
-}
-
-/* -- code displays --------------------------------------------------------- */
-
-pre {
- overflow: auto;
- overflow-y: hidden; /* fixes display issues on Chrome browsers */
-}
-
-td.linenos pre {
- padding: 5px 0px;
- border: 0;
- background-color: transparent;
- color: #aaa;
-}
-
-table.highlighttable {
- margin-left: 0.5em;
-}
-
-table.highlighttable td {
- padding: 0 0.5em 0 0.5em;
-}
-
-div.code-block-caption {
- padding: 2px 5px;
- font-size: small;
-}
-
-div.code-block-caption code {
- background-color: transparent;
-}
-
-div.code-block-caption + div > div.highlight > pre {
- margin-top: 0;
-}
-
-div.code-block-caption span.caption-number {
- padding: 0.1em 0.3em;
- font-style: italic;
-}
-
-div.code-block-caption span.caption-text {
-}
-
-div.literal-block-wrapper {
- padding: 1em 1em 0;
-}
-
-div.literal-block-wrapper div.highlight {
- margin: 0;
-}
-
-code.descname {
- background-color: transparent;
- font-weight: bold;
- font-size: 1.2em;
-}
-
-code.descclassname {
- background-color: transparent;
-}
-
-code.xref, a code {
- background-color: transparent;
- font-weight: bold;
-}
-
-h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
- background-color: transparent;
-}
-
-.viewcode-link {
- float: right;
-}
-
-.viewcode-back {
- float: right;
- font-family: sans-serif;
-}
-
-div.viewcode-block:target {
- margin: -1px -10px;
- padding: 0 10px;
-}
-
-/* -- math display ---------------------------------------------------------- */
-
-img.math {
- vertical-align: middle;
-}
-
-div.body div.math p {
- text-align: center;
-}
-
-span.eqno {
- float: right;
-}
-
-/* -- printout stylesheet --------------------------------------------------- */
-
-@media print {
- div.document,
- div.documentwrapper,
- div.bodywrapper {
- margin: 0 !important;
- width: 100%;
- }
-
- div.sphinxsidebar,
- div.related,
- div.footer,
- #top-link {
- display: none;
- }
-}
\ No newline at end of file
diff --git a/doc/_static/comment-bright.png b/doc/_static/comment-bright.png
deleted file mode 100644
index 551517b8c..000000000
Binary files a/doc/_static/comment-bright.png and /dev/null differ
diff --git a/doc/_static/comment-close.png b/doc/_static/comment-close.png
deleted file mode 100644
index 09b54be46..000000000
Binary files a/doc/_static/comment-close.png and /dev/null differ
diff --git a/doc/_static/comment.png b/doc/_static/comment.png
deleted file mode 100644
index 92feb52b8..000000000
Binary files a/doc/_static/comment.png and /dev/null differ
diff --git a/doc/_static/css/badge_only.css b/doc/_static/css/badge_only.css
deleted file mode 100644
index 51d180e4e..000000000
--- a/doc/_static/css/badge_only.css
+++ /dev/null
@@ -1,226 +0,0 @@
-@charset "UTF-8";
-.fa:before {
- -webkit-font-smoothing: antialiased;
-}
-
-.clearfix {
- *zoom: 1;
-}
-.clearfix:before, .clearfix:after {
- display: table;
- content: "";
-}
-.clearfix:after {
- clear: both;
-}
-
-@font-face {
- font-family: FontAwesome;
- font-weight: normal;
- font-style: normal;
- src: url("../font/fontawesome_webfont.eot");
- src: url("../font/fontawesome_webfont.eot?#iefix") format("embedded-opentype"), url("../font/fontawesome_webfont.woff") format("woff"), url("../font/fontawesome_webfont.ttf") format("truetype"), url("../font/fontawesome_webfont.svg#FontAwesome") format("svg");
-}
-.fa:before {
- display: inline-block;
- font-family: FontAwesome;
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- text-decoration: inherit;
-}
-
-a .fa {
- display: inline-block;
- text-decoration: inherit;
-}
-
-li .fa {
- display: inline-block;
-}
-li .fa-large:before,
-li .fa-large:before {
- /* 1.5 increased font size for fa-large * 1.25 width */
- width: 1.875em;
-}
-
-ul.fas {
- list-style-type: none;
- margin-left: 2em;
- text-indent: -0.8em;
-}
-ul.fas li .fa {
- width: 0.8em;
-}
-ul.fas li .fa-large:before,
-ul.fas li .fa-large:before {
- /* 1.5 increased font size for fa-large * 1.25 width */
- vertical-align: baseline;
-}
-
-.fa-book:before {
- content: "";
-}
-
-.icon-book:before {
- content: "";
-}
-
-.fa-caret-down:before {
- content: "";
-}
-
-.icon-caret-down:before {
- content: "";
-}
-
-.fa-caret-up:before {
- content: "";
-}
-
-.icon-caret-up:before {
- content: "";
-}
-
-.fa-caret-left:before {
- content: "";
-}
-
-.icon-caret-left:before {
- content: "";
-}
-
-.fa-caret-right:before {
- content: "";
-}
-
-.icon-caret-right:before {
- content: "";
-}
-
-.rst-versions {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 300px;
- color: #fcfcfc;
- background: #1f1d1d;
- border-top: solid 10px #343131;
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
- z-index: 400;
-}
-.rst-versions a {
- color: #2980B9;
- text-decoration: none;
-}
-.rst-versions .rst-badge-small {
- display: none;
-}
-.rst-versions .rst-current-version {
- padding: 12px;
- background-color: #272525;
- display: block;
- text-align: right;
- font-size: 90%;
- cursor: pointer;
- color: #27AE60;
- *zoom: 1;
-}
-.rst-versions .rst-current-version:before, .rst-versions .rst-current-version:after {
- display: table;
- content: "";
-}
-.rst-versions .rst-current-version:after {
- clear: both;
-}
-.rst-versions .rst-current-version .fa {
- color: #fcfcfc;
-}
-.rst-versions .rst-current-version .fa-book {
- float: left;
-}
-.rst-versions .rst-current-version .icon-book {
- float: left;
-}
-.rst-versions .rst-current-version.rst-out-of-date {
- background-color: #E74C3C;
- color: #fff;
-}
-.rst-versions .rst-current-version.rst-active-old-version {
- background-color: #F1C40F;
- color: #000;
-}
-.rst-versions.shift-up .rst-other-versions {
- display: block;
-}
-.rst-versions .rst-other-versions {
- font-size: 90%;
- padding: 12px;
- color: gray;
- display: none;
-}
-.rst-versions .rst-other-versions hr {
- display: block;
- height: 1px;
- border: 0;
- margin: 20px 0;
- padding: 0;
- border-top: solid 1px #413d3d;
-}
-.rst-versions .rst-other-versions dd {
- display: inline-block;
- margin: 0;
-}
-.rst-versions .rst-other-versions dd a {
- display: inline-block;
- padding: 6px;
- color: #fcfcfc;
-}
-.rst-versions.rst-badge {
- width: auto;
- bottom: 20px;
- right: 20px;
- left: auto;
- border: none;
- max-width: 300px;
-}
-.rst-versions.rst-badge .icon-book {
- float: none;
-}
-.rst-versions.rst-badge .fa-book {
- float: none;
-}
-.rst-versions.rst-badge.shift-up .rst-current-version {
- text-align: right;
-}
-.rst-versions.rst-badge.shift-up .rst-current-version .fa-book {
- float: left;
-}
-.rst-versions.rst-badge.shift-up .rst-current-version .icon-book {
- float: left;
-}
-.rst-versions.rst-badge .rst-current-version {
- width: auto;
- height: 30px;
- line-height: 30px;
- padding: 0 6px;
- display: block;
- text-align: center;
-}
-
-@media screen and (max-width: 768px) {
- .rst-versions {
- width: 85%;
- display: none;
- }
- .rst-versions.shift {
- display: block;
- }
-
- img {
- width: 100%;
- height: auto;
- }
-}
-
-/*# sourceMappingURL=badge_only.css.map */
diff --git a/doc/_static/css/badge_only.css.map b/doc/_static/css/badge_only.css.map
deleted file mode 100644
index aeb56ddb0..000000000
--- a/doc/_static/css/badge_only.css.map
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-"version": 3,
-"mappings": ";AAyDA,UAAY;EACV,sBAAsB,EAAE,WAAW;;;AAqDrC,SAAS;EARP,KAAK,EAAE,CAAC;;AACR,iCAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,eAAO;EACL,KAAK,EAAE,IAAI;;;AC1Gb,UAkBC;EAjBC,WAAW,ECFJ,WAAW;EDGlB,WAAW,EAHqC,MAAM;EAItD,UAAU,EAJsD,MAAM;EAapE,GAAG,EAAE,sCAAwB;EAC7B,GAAG,EAAE,8PAAyE;;ACZpF,UAAU;EACR,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,WAAW;EACxB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,CAAC;EACd,eAAe,EAAE,OAAO;;;AAG1B,KAAK;EACH,OAAO,EAAE,YAAY;EACrB,eAAe,EAAE,OAAO;;;AAIxB,MAAG;EACD,OAAO,EAAE,YAAY;;AACvB;mBAAiB;;EAGf,KAAK,EAAE,OAAY;;;AAEvB,MAAM;EACJ,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,MAAM;;AAEjB,aAAG;EACD,KAAK,EAAE,KAAI;;AACb;0BAAiB;;EAGf,cAAc,EAAE,QAAQ;;;AAG9B,eAAe;EACb,OAAO,EAAE,GAAO;;;AAElB,iBAAiB;EACf,OAAO,EAAE,GAAO;;;AAElB,qBAAqB;EACnB,OAAO,EAAE,GAAO;;;AAElB,uBAAuB;EACrB,OAAO,EAAE,GAAO;;;AAElB,mBAAmB;EACjB,OAAO,EAAE,GAAO;;;AAElB,qBAAqB;EACnB,OAAO,EAAE,GAAO;;;AAElB,qBAAqB;EACnB,OAAO,EAAE,GAAO;;;AAElB,uBAAuB;EACrB,OAAO,EAAE,GAAO;;;AAElB,sBAAsB;EACpB,OAAO,EAAE,GAAO;;;AAElB,wBAAwB;EACtB,OAAO,EAAE,GAAO;;;ACnElB,aAAa;EACX,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EC6E+B,KAAK;ED5EzC,KAAK,ECE+B,OAAyB;EDD7D,UAAU,EAAE,OAAkC;EAC9C,UAAU,EAAE,kBAAiC;EAC7C,WAAW,EEAyB,2DAAM;EFC1C,OAAO,EC+E6B,GAAG;;AD9EvC,eAAC;EACC,KAAK,ECqE6B,OAAW;EDpE7C,eAAe,EAAE,IAAI;;AACvB,8BAAgB;EACd,OAAO,EAAE,IAAI;;AACf,kCAAoB;EAClB,OAAO,EAAE,IAAqB;EAC9B,gBAAgB,EAAE,OAAkC;EACpD,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,KAAK;EACjB,SAAS,EAAE,GAAG;EACd,MAAM,EAAE,OAAO;EACf,KAAK,ECiD6B,OAAM;EJgC1C,KAAK,EAAE,CAAC;;AACR,mFAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,wCAAO;EACL,KAAK,EAAE,IAAI;;AGrFX,sCAAG;EACD,KAAK,EClB2B,OAAyB;;ADmB3D,2CAAQ;EACN,KAAK,EAAE,IAAI;;AACb,6CAAU;EACR,KAAK,EAAE,IAAI;;AACb,kDAAiB;EACf,gBAAgB,ECQgB,OAAI;EDPpC,KAAK,EC0B2B,IAAM;;ADzBxC,yDAAwB;EACtB,gBAAgB,ECXgB,OAAO;EDYvC,KAAK,ECzB2B,IAAI;;AD0BxC,0CAA8B;EAC5B,OAAO,EAAE,KAAK;;AAChB,iCAAmB;EACjB,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,IAAqB;EAC9B,KAAK,ECE6B,IAAwB;EDD1D,OAAO,EAAE,IAAI;;AACb,oCAAE;EACA,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,GAAG;EACX,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,MAAM;EACd,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,iBAA6C;;AAC3D,oCAAE;EACA,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,CAAC;;AACT,sCAAC;EACC,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,GAAqB;EAC9B,KAAK,ECjDyB,OAAyB;;ADkD7D,uBAAW;EACT,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,IAAI;EACV,MAAM,EAAE,IAAI;EACZ,SAAS,ECkByB,KAAK;;ADjBvC,kCAAU;EACR,KAAK,EAAE,IAAI;;AACb,gCAAQ;EACN,KAAK,EAAE,IAAI;;AACb,qDAA+B;EAC7B,UAAU,EAAE,KAAK;;AACjB,8DAAQ;EACN,KAAK,EAAE,IAAI;;AACb,gEAAU;EACR,KAAK,EAAE,IAAI;;AACf,4CAAoB;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAuB;EAChC,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,MAAM;;;AGhDpB,oCAAsB;EHmDxB,aAAa;IACX,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,IAAI;;EACb,mBAAO;IACL,OAAO,EAAE,KAAK;;;EAClB,GAAG;IACD,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI",
-"sources": ["../../../bower_components/wyrm/sass/wyrm_core/_mixin.sass","../../../bower_components/bourbon/dist/css3/_font-face.scss","../../../sass/_theme_badge_fa.sass","../../../sass/_theme_badge.sass","../../../bower_components/wyrm/sass/wyrm_core/_wy_variables.sass","../../../sass/_theme_variables.sass","../../../bower_components/neat/app/assets/stylesheets/grid/_media.scss"],
-"names": [],
-"file": "badge_only.css"
-}
diff --git a/doc/_static/css/theme.css b/doc/_static/css/theme.css
deleted file mode 100644
index 58c5bec69..000000000
--- a/doc/_static/css/theme.css
+++ /dev/null
@@ -1,5095 +0,0 @@
-@charset "UTF-8";
-* {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
- display: block;
-}
-
-audio, canvas, video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
-}
-
-audio:not([controls]) {
- display: none;
-}
-
-[hidden] {
- display: none;
-}
-
-* {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-html {
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-
-body {
- margin: 0;
-}
-
-a:hover, a:active {
- outline: 0;
-}
-
-abbr[title] {
- border-bottom: 1px dotted;
-}
-
-b, strong {
- font-weight: bold;
-}
-
-blockquote {
- margin: 0;
-}
-
-dfn {
- font-style: italic;
-}
-
-ins {
- background: #ff9;
- color: #000;
- text-decoration: none;
-}
-
-mark {
- background: #ff0;
- color: #000;
- font-style: italic;
- font-weight: bold;
-}
-
-pre, code, .rst-content tt, .rst-content code, kbd, samp {
- font-family: monospace, serif;
- _font-family: "courier new", monospace;
- font-size: 1em;
-}
-
-pre {
- white-space: pre;
-}
-
-q {
- quotes: none;
-}
-
-q:before, q:after {
- content: "";
- content: none;
-}
-
-small {
- font-size: 85%;
-}
-
-sub, sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-
-sup {
- top: -0.5em;
-}
-
-sub {
- bottom: -0.25em;
-}
-
-ul, ol, dl {
- margin: 0;
- padding: 0;
- list-style: none;
- list-style-image: none;
-}
-
-li {
- list-style: none;
-}
-
-dd {
- margin: 0;
-}
-
-img {
- border: 0;
- -ms-interpolation-mode: bicubic;
- vertical-align: middle;
- max-width: 100%;
-}
-
-svg:not(:root) {
- overflow: hidden;
-}
-
-figure {
- margin: 0;
-}
-
-form {
- margin: 0;
-}
-
-fieldset {
- border: 0;
- margin: 0;
- padding: 0;
-}
-
-label {
- cursor: pointer;
-}
-
-legend {
- border: 0;
- *margin-left: -7px;
- padding: 0;
- white-space: normal;
-}
-
-button, input, select, textarea {
- font-size: 100%;
- margin: 0;
- vertical-align: baseline;
- *vertical-align: middle;
-}
-
-button, input {
- line-height: normal;
-}
-
-button, input[type="button"], input[type="reset"], input[type="submit"] {
- cursor: pointer;
- -webkit-appearance: button;
- *overflow: visible;
-}
-
-button[disabled], input[disabled] {
- cursor: default;
-}
-
-input[type="checkbox"], input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
- *width: 13px;
- *height: 13px;
-}
-
-input[type="search"] {
- -webkit-appearance: textfield;
- -moz-box-sizing: content-box;
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
-}
-
-input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
- -webkit-appearance: none;
-}
-
-button::-moz-focus-inner, input::-moz-focus-inner {
- border: 0;
- padding: 0;
-}
-
-textarea {
- overflow: auto;
- vertical-align: top;
- resize: vertical;
-}
-
-table {
- border-collapse: collapse;
- border-spacing: 0;
-}
-
-td {
- vertical-align: top;
-}
-
-.chromeframe {
- margin: 0.2em 0;
- background: #ccc;
- color: black;
- padding: 0.2em 0;
-}
-
-.ir {
- display: block;
- border: 0;
- text-indent: -999em;
- overflow: hidden;
- background-color: transparent;
- background-repeat: no-repeat;
- text-align: left;
- direction: ltr;
- *line-height: 0;
-}
-
-.ir br {
- display: none;
-}
-
-.hidden {
- display: none !important;
- visibility: hidden;
-}
-
-.visuallyhidden {
- border: 0;
- clip: rect(0 0 0 0);
- height: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: 1px;
-}
-
-.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
- clip: auto;
- height: auto;
- margin: 0;
- overflow: visible;
- position: static;
- width: auto;
-}
-
-.invisible {
- visibility: hidden;
-}
-
-.relative {
- position: relative;
-}
-
-big, small {
- font-size: 100%;
-}
-
-@media print {
- html, body, section {
- background: none !important;
- }
-
- * {
- box-shadow: none !important;
- text-shadow: none !important;
- filter: none !important;
- -ms-filter: none !important;
- }
-
- a, a:visited {
- text-decoration: underline;
- }
-
- .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
- content: "";
- }
-
- pre, blockquote {
- page-break-inside: avoid;
- }
-
- thead {
- display: table-header-group;
- }
-
- tr, img {
- page-break-inside: avoid;
- }
-
- img {
- max-width: 100% !important;
- }
-
- @page {
- margin: 0.5cm;
- }
- p, h2, .rst-content .toctree-wrapper p.caption, h3 {
- orphans: 3;
- widows: 3;
- }
-
- h2, .rst-content .toctree-wrapper p.caption, h3 {
- page-break-after: avoid;
- }
-}
-.fa:before, .wy-menu-vertical li span.toctree-expand:before, .wy-menu-vertical li.on a span.toctree-expand:before, .wy-menu-vertical li.current > a span.toctree-expand:before, .rst-content .admonition-title:before, .rst-content h1 .headerlink:before, .rst-content h2 .headerlink:before, .rst-content h3 .headerlink:before, .rst-content h4 .headerlink:before, .rst-content h5 .headerlink:before, .rst-content h6 .headerlink:before, .rst-content dl dt .headerlink:before, .rst-content p.caption .headerlink:before, .rst-content tt.download span:first-child:before, .rst-content code.download span:first-child:before, .icon:before, .wy-dropdown .caret:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, .wy-alert, .rst-content .note, .rst-content .attention, .rst-content .caution, .rst-content .danger, .rst-content .error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .warning, .rst-content .seealso, .rst-content .admonition-todo, .btn, input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .wy-menu-vertical li.on a, .wy-menu-vertical li.current > a, .wy-side-nav-search > a, .wy-side-nav-search .wy-dropdown > a, .wy-nav-top a {
- -webkit-font-smoothing: antialiased;
-}
-
-.clearfix {
- *zoom: 1;
-}
-.clearfix:before, .clearfix:after {
- display: table;
- content: "";
-}
-.clearfix:after {
- clear: both;
-}
-
-/*!
- * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */
-/* FONT PATH
- * -------------------------- */
-@font-face {
- font-family: 'FontAwesome';
- src: url("../fonts/fontawesome-webfont.eot?v=4.2.0");
- src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.2.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.2.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");
- font-weight: normal;
- font-style: normal;
-}
-.fa, .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand, .rst-content .admonition-title, .rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink, .rst-content p.caption .headerlink, .rst-content tt.download span:first-child, .rst-content code.download span:first-child, .icon {
- display: inline-block;
- font: normal normal normal 14px/1 FontAwesome;
- font-size: inherit;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-
-/* makes the font 33% larger relative to the icon container */
-.fa-lg {
- font-size: 1.33333em;
- line-height: 0.75em;
- vertical-align: -15%;
-}
-
-.fa-2x {
- font-size: 2em;
-}
-
-.fa-3x {
- font-size: 3em;
-}
-
-.fa-4x {
- font-size: 4em;
-}
-
-.fa-5x {
- font-size: 5em;
-}
-
-.fa-fw {
- width: 1.28571em;
- text-align: center;
-}
-
-.fa-ul {
- padding-left: 0;
- margin-left: 2.14286em;
- list-style-type: none;
-}
-.fa-ul > li {
- position: relative;
-}
-
-.fa-li {
- position: absolute;
- left: -2.14286em;
- width: 2.14286em;
- top: 0.14286em;
- text-align: center;
-}
-.fa-li.fa-lg {
- left: -1.85714em;
-}
-
-.fa-border {
- padding: .2em .25em .15em;
- border: solid 0.08em #eee;
- border-radius: .1em;
-}
-
-.pull-right {
- float: right;
-}
-
-.pull-left {
- float: left;
-}
-
-.fa.pull-left, .wy-menu-vertical li span.pull-left.toctree-expand, .wy-menu-vertical li.on a span.pull-left.toctree-expand, .wy-menu-vertical li.current > a span.pull-left.toctree-expand, .rst-content .pull-left.admonition-title, .rst-content h1 .pull-left.headerlink, .rst-content h2 .pull-left.headerlink, .rst-content h3 .pull-left.headerlink, .rst-content h4 .pull-left.headerlink, .rst-content h5 .pull-left.headerlink, .rst-content h6 .pull-left.headerlink, .rst-content dl dt .pull-left.headerlink, .rst-content p.caption .pull-left.headerlink, .rst-content tt.download span.pull-left:first-child, .rst-content code.download span.pull-left:first-child, .pull-left.icon {
- margin-right: .3em;
-}
-.fa.pull-right, .wy-menu-vertical li span.pull-right.toctree-expand, .wy-menu-vertical li.on a span.pull-right.toctree-expand, .wy-menu-vertical li.current > a span.pull-right.toctree-expand, .rst-content .pull-right.admonition-title, .rst-content h1 .pull-right.headerlink, .rst-content h2 .pull-right.headerlink, .rst-content h3 .pull-right.headerlink, .rst-content h4 .pull-right.headerlink, .rst-content h5 .pull-right.headerlink, .rst-content h6 .pull-right.headerlink, .rst-content dl dt .pull-right.headerlink, .rst-content p.caption .pull-right.headerlink, .rst-content tt.download span.pull-right:first-child, .rst-content code.download span.pull-right:first-child, .pull-right.icon {
- margin-left: .3em;
-}
-
-.fa-spin {
- -webkit-animation: fa-spin 2s infinite linear;
- animation: fa-spin 2s infinite linear;
-}
-
-@-webkit-keyframes fa-spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg);
- }
-}
-@keyframes fa-spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg);
- }
-}
-.fa-rotate-90 {
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
- -webkit-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-
-.fa-rotate-180 {
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-
-.fa-rotate-270 {
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
- -webkit-transform: rotate(270deg);
- -ms-transform: rotate(270deg);
- transform: rotate(270deg);
-}
-
-.fa-flip-horizontal {
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
- -webkit-transform: scale(-1, 1);
- -ms-transform: scale(-1, 1);
- transform: scale(-1, 1);
-}
-
-.fa-flip-vertical {
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
- -webkit-transform: scale(1, -1);
- -ms-transform: scale(1, -1);
- transform: scale(1, -1);
-}
-
-:root .fa-rotate-90,
-:root .fa-rotate-180,
-:root .fa-rotate-270,
-:root .fa-flip-horizontal,
-:root .fa-flip-vertical {
- filter: none;
-}
-
-.fa-stack {
- position: relative;
- display: inline-block;
- width: 2em;
- height: 2em;
- line-height: 2em;
- vertical-align: middle;
-}
-
-.fa-stack-1x, .fa-stack-2x {
- position: absolute;
- left: 0;
- width: 100%;
- text-align: center;
-}
-
-.fa-stack-1x {
- line-height: inherit;
-}
-
-.fa-stack-2x {
- font-size: 2em;
-}
-
-.fa-inverse {
- color: #fff;
-}
-
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
- readers do not read off random characters that represent icons */
-.fa-glass:before {
- content: "";
-}
-
-.fa-music:before {
- content: "";
-}
-
-.fa-search:before, .icon-search:before {
- content: "";
-}
-
-.fa-envelope-o:before {
- content: "";
-}
-
-.fa-heart:before {
- content: "";
-}
-
-.fa-star:before {
- content: "";
-}
-
-.fa-star-o:before {
- content: "";
-}
-
-.fa-user:before {
- content: "";
-}
-
-.fa-film:before {
- content: "";
-}
-
-.fa-th-large:before {
- content: "";
-}
-
-.fa-th:before {
- content: "";
-}
-
-.fa-th-list:before {
- content: "";
-}
-
-.fa-check:before {
- content: "";
-}
-
-.fa-remove:before,
-.fa-close:before,
-.fa-times:before {
- content: "";
-}
-
-.fa-search-plus:before {
- content: "";
-}
-
-.fa-search-minus:before {
- content: "";
-}
-
-.fa-power-off:before {
- content: "";
-}
-
-.fa-signal:before {
- content: "";
-}
-
-.fa-gear:before,
-.fa-cog:before {
- content: "";
-}
-
-.fa-trash-o:before {
- content: "";
-}
-
-.fa-home:before, .icon-home:before {
- content: "";
-}
-
-.fa-file-o:before {
- content: "";
-}
-
-.fa-clock-o:before {
- content: "";
-}
-
-.fa-road:before {
- content: "";
-}
-
-.fa-download:before, .rst-content tt.download span:first-child:before, .rst-content code.download span:first-child:before {
- content: "";
-}
-
-.fa-arrow-circle-o-down:before {
- content: "";
-}
-
-.fa-arrow-circle-o-up:before {
- content: "";
-}
-
-.fa-inbox:before {
- content: "";
-}
-
-.fa-play-circle-o:before {
- content: "";
-}
-
-.fa-rotate-right:before,
-.fa-repeat:before {
- content: "";
-}
-
-.fa-refresh:before {
- content: "";
-}
-
-.fa-list-alt:before {
- content: "";
-}
-
-.fa-lock:before {
- content: "";
-}
-
-.fa-flag:before {
- content: "";
-}
-
-.fa-headphones:before {
- content: "";
-}
-
-.fa-volume-off:before {
- content: "";
-}
-
-.fa-volume-down:before {
- content: "";
-}
-
-.fa-volume-up:before {
- content: "";
-}
-
-.fa-qrcode:before {
- content: "";
-}
-
-.fa-barcode:before {
- content: "";
-}
-
-.fa-tag:before {
- content: "";
-}
-
-.fa-tags:before {
- content: "";
-}
-
-.fa-book:before, .icon-book:before {
- content: "";
-}
-
-.fa-bookmark:before {
- content: "";
-}
-
-.fa-print:before {
- content: "";
-}
-
-.fa-camera:before {
- content: "";
-}
-
-.fa-font:before {
- content: "";
-}
-
-.fa-bold:before {
- content: "";
-}
-
-.fa-italic:before {
- content: "";
-}
-
-.fa-text-height:before {
- content: "";
-}
-
-.fa-text-width:before {
- content: "";
-}
-
-.fa-align-left:before {
- content: "";
-}
-
-.fa-align-center:before {
- content: "";
-}
-
-.fa-align-right:before {
- content: "";
-}
-
-.fa-align-justify:before {
- content: "";
-}
-
-.fa-list:before {
- content: "";
-}
-
-.fa-dedent:before,
-.fa-outdent:before {
- content: "";
-}
-
-.fa-indent:before {
- content: "";
-}
-
-.fa-video-camera:before {
- content: "";
-}
-
-.fa-photo:before,
-.fa-image:before,
-.fa-picture-o:before {
- content: "";
-}
-
-.fa-pencil:before {
- content: "";
-}
-
-.fa-map-marker:before {
- content: "";
-}
-
-.fa-adjust:before {
- content: "";
-}
-
-.fa-tint:before {
- content: "";
-}
-
-.fa-edit:before,
-.fa-pencil-square-o:before {
- content: "";
-}
-
-.fa-share-square-o:before {
- content: "";
-}
-
-.fa-check-square-o:before {
- content: "";
-}
-
-.fa-arrows:before {
- content: "";
-}
-
-.fa-step-backward:before {
- content: "";
-}
-
-.fa-fast-backward:before {
- content: "";
-}
-
-.fa-backward:before {
- content: "";
-}
-
-.fa-play:before {
- content: "";
-}
-
-.fa-pause:before {
- content: "";
-}
-
-.fa-stop:before {
- content: "";
-}
-
-.fa-forward:before {
- content: "";
-}
-
-.fa-fast-forward:before {
- content: "";
-}
-
-.fa-step-forward:before {
- content: "";
-}
-
-.fa-eject:before {
- content: "";
-}
-
-.fa-chevron-left:before {
- content: "";
-}
-
-.fa-chevron-right:before {
- content: "";
-}
-
-.fa-plus-circle:before {
- content: "";
-}
-
-.fa-minus-circle:before {
- content: "";
-}
-
-.fa-times-circle:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before {
- content: "";
-}
-
-.fa-check-circle:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before {
- content: "";
-}
-
-.fa-question-circle:before {
- content: "";
-}
-
-.fa-info-circle:before {
- content: "";
-}
-
-.fa-crosshairs:before {
- content: "";
-}
-
-.fa-times-circle-o:before {
- content: "";
-}
-
-.fa-check-circle-o:before {
- content: "";
-}
-
-.fa-ban:before {
- content: "";
-}
-
-.fa-arrow-left:before {
- content: "";
-}
-
-.fa-arrow-right:before {
- content: "";
-}
-
-.fa-arrow-up:before {
- content: "";
-}
-
-.fa-arrow-down:before {
- content: "";
-}
-
-.fa-mail-forward:before,
-.fa-share:before {
- content: "";
-}
-
-.fa-expand:before {
- content: "";
-}
-
-.fa-compress:before {
- content: "";
-}
-
-.fa-plus:before {
- content: "";
-}
-
-.fa-minus:before {
- content: "";
-}
-
-.fa-asterisk:before {
- content: "";
-}
-
-.fa-exclamation-circle:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, .rst-content .admonition-title:before {
- content: "";
-}
-
-.fa-gift:before {
- content: "";
-}
-
-.fa-leaf:before {
- content: "";
-}
-
-.fa-fire:before, .icon-fire:before {
- content: "";
-}
-
-.fa-eye:before {
- content: "";
-}
-
-.fa-eye-slash:before {
- content: "";
-}
-
-.fa-warning:before,
-.fa-exclamation-triangle:before {
- content: "";
-}
-
-.fa-plane:before {
- content: "";
-}
-
-.fa-calendar:before {
- content: "";
-}
-
-.fa-random:before {
- content: "";
-}
-
-.fa-comment:before {
- content: "";
-}
-
-.fa-magnet:before {
- content: "";
-}
-
-.fa-chevron-up:before {
- content: "";
-}
-
-.fa-chevron-down:before {
- content: "";
-}
-
-.fa-retweet:before {
- content: "";
-}
-
-.fa-shopping-cart:before {
- content: "";
-}
-
-.fa-folder:before {
- content: "";
-}
-
-.fa-folder-open:before {
- content: "";
-}
-
-.fa-arrows-v:before {
- content: "";
-}
-
-.fa-arrows-h:before {
- content: "";
-}
-
-.fa-bar-chart-o:before,
-.fa-bar-chart:before {
- content: "";
-}
-
-.fa-twitter-square:before {
- content: "";
-}
-
-.fa-facebook-square:before {
- content: "";
-}
-
-.fa-camera-retro:before {
- content: "";
-}
-
-.fa-key:before {
- content: "";
-}
-
-.fa-gears:before,
-.fa-cogs:before {
- content: "";
-}
-
-.fa-comments:before {
- content: "";
-}
-
-.fa-thumbs-o-up:before {
- content: "";
-}
-
-.fa-thumbs-o-down:before {
- content: "";
-}
-
-.fa-star-half:before {
- content: "";
-}
-
-.fa-heart-o:before {
- content: "";
-}
-
-.fa-sign-out:before {
- content: "";
-}
-
-.fa-linkedin-square:before {
- content: "";
-}
-
-.fa-thumb-tack:before {
- content: "";
-}
-
-.fa-external-link:before {
- content: "";
-}
-
-.fa-sign-in:before {
- content: "";
-}
-
-.fa-trophy:before {
- content: "";
-}
-
-.fa-github-square:before {
- content: "";
-}
-
-.fa-upload:before {
- content: "";
-}
-
-.fa-lemon-o:before {
- content: "";
-}
-
-.fa-phone:before {
- content: "";
-}
-
-.fa-square-o:before {
- content: "";
-}
-
-.fa-bookmark-o:before {
- content: "";
-}
-
-.fa-phone-square:before {
- content: "";
-}
-
-.fa-twitter:before {
- content: "";
-}
-
-.fa-facebook:before {
- content: "";
-}
-
-.fa-github:before, .icon-github:before {
- content: "";
-}
-
-.fa-unlock:before {
- content: "";
-}
-
-.fa-credit-card:before {
- content: "";
-}
-
-.fa-rss:before {
- content: "";
-}
-
-.fa-hdd-o:before {
- content: "";
-}
-
-.fa-bullhorn:before {
- content: "";
-}
-
-.fa-bell:before {
- content: "";
-}
-
-.fa-certificate:before {
- content: "";
-}
-
-.fa-hand-o-right:before {
- content: "";
-}
-
-.fa-hand-o-left:before {
- content: "";
-}
-
-.fa-hand-o-up:before {
- content: "";
-}
-
-.fa-hand-o-down:before {
- content: "";
-}
-
-.fa-arrow-circle-left:before, .icon-circle-arrow-left:before {
- content: "";
-}
-
-.fa-arrow-circle-right:before, .icon-circle-arrow-right:before {
- content: "";
-}
-
-.fa-arrow-circle-up:before {
- content: "";
-}
-
-.fa-arrow-circle-down:before {
- content: "";
-}
-
-.fa-globe:before {
- content: "";
-}
-
-.fa-wrench:before {
- content: "";
-}
-
-.fa-tasks:before {
- content: "";
-}
-
-.fa-filter:before {
- content: "";
-}
-
-.fa-briefcase:before {
- content: "";
-}
-
-.fa-arrows-alt:before {
- content: "";
-}
-
-.fa-group:before,
-.fa-users:before {
- content: "";
-}
-
-.fa-chain:before,
-.fa-link:before,
-.icon-link:before {
- content: "";
-}
-
-.fa-cloud:before {
- content: "";
-}
-
-.fa-flask:before {
- content: "";
-}
-
-.fa-cut:before,
-.fa-scissors:before {
- content: "";
-}
-
-.fa-copy:before,
-.fa-files-o:before {
- content: "";
-}
-
-.fa-paperclip:before {
- content: "";
-}
-
-.fa-save:before,
-.fa-floppy-o:before {
- content: "";
-}
-
-.fa-square:before {
- content: "";
-}
-
-.fa-navicon:before,
-.fa-reorder:before,
-.fa-bars:before {
- content: "";
-}
-
-.fa-list-ul:before {
- content: "";
-}
-
-.fa-list-ol:before {
- content: "";
-}
-
-.fa-strikethrough:before {
- content: "";
-}
-
-.fa-underline:before {
- content: "";
-}
-
-.fa-table:before {
- content: "";
-}
-
-.fa-magic:before {
- content: "";
-}
-
-.fa-truck:before {
- content: "";
-}
-
-.fa-pinterest:before {
- content: "";
-}
-
-.fa-pinterest-square:before {
- content: "";
-}
-
-.fa-google-plus-square:before {
- content: "";
-}
-
-.fa-google-plus:before {
- content: "";
-}
-
-.fa-money:before {
- content: "";
-}
-
-.fa-caret-down:before, .wy-dropdown .caret:before, .icon-caret-down:before {
- content: "";
-}
-
-.fa-caret-up:before {
- content: "";
-}
-
-.fa-caret-left:before {
- content: "";
-}
-
-.fa-caret-right:before {
- content: "";
-}
-
-.fa-columns:before {
- content: "";
-}
-
-.fa-unsorted:before,
-.fa-sort:before {
- content: "";
-}
-
-.fa-sort-down:before,
-.fa-sort-desc:before {
- content: "";
-}
-
-.fa-sort-up:before,
-.fa-sort-asc:before {
- content: "";
-}
-
-.fa-envelope:before {
- content: "";
-}
-
-.fa-linkedin:before {
- content: "";
-}
-
-.fa-rotate-left:before,
-.fa-undo:before {
- content: "";
-}
-
-.fa-legal:before,
-.fa-gavel:before {
- content: "";
-}
-
-.fa-dashboard:before,
-.fa-tachometer:before {
- content: "";
-}
-
-.fa-comment-o:before {
- content: "";
-}
-
-.fa-comments-o:before {
- content: "";
-}
-
-.fa-flash:before,
-.fa-bolt:before {
- content: "";
-}
-
-.fa-sitemap:before {
- content: "";
-}
-
-.fa-umbrella:before {
- content: "";
-}
-
-.fa-paste:before,
-.fa-clipboard:before {
- content: "";
-}
-
-.fa-lightbulb-o:before {
- content: "";
-}
-
-.fa-exchange:before {
- content: "";
-}
-
-.fa-cloud-download:before {
- content: "";
-}
-
-.fa-cloud-upload:before {
- content: "";
-}
-
-.fa-user-md:before {
- content: "";
-}
-
-.fa-stethoscope:before {
- content: "";
-}
-
-.fa-suitcase:before {
- content: "";
-}
-
-.fa-bell-o:before {
- content: "";
-}
-
-.fa-coffee:before {
- content: "";
-}
-
-.fa-cutlery:before {
- content: "";
-}
-
-.fa-file-text-o:before {
- content: "";
-}
-
-.fa-building-o:before {
- content: "";
-}
-
-.fa-hospital-o:before {
- content: "";
-}
-
-.fa-ambulance:before {
- content: "";
-}
-
-.fa-medkit:before {
- content: "";
-}
-
-.fa-fighter-jet:before {
- content: "";
-}
-
-.fa-beer:before {
- content: "";
-}
-
-.fa-h-square:before {
- content: "";
-}
-
-.fa-plus-square:before {
- content: "";
-}
-
-.fa-angle-double-left:before {
- content: "";
-}
-
-.fa-angle-double-right:before {
- content: "";
-}
-
-.fa-angle-double-up:before {
- content: "";
-}
-
-.fa-angle-double-down:before {
- content: "";
-}
-
-.fa-angle-left:before {
- content: "";
-}
-
-.fa-angle-right:before {
- content: "";
-}
-
-.fa-angle-up:before {
- content: "";
-}
-
-.fa-angle-down:before {
- content: "";
-}
-
-.fa-desktop:before {
- content: "";
-}
-
-.fa-laptop:before {
- content: "";
-}
-
-.fa-tablet:before {
- content: "";
-}
-
-.fa-mobile-phone:before,
-.fa-mobile:before {
- content: "";
-}
-
-.fa-circle-o:before {
- content: "";
-}
-
-.fa-quote-left:before {
- content: "";
-}
-
-.fa-quote-right:before {
- content: "";
-}
-
-.fa-spinner:before {
- content: "";
-}
-
-.fa-circle:before {
- content: "";
-}
-
-.fa-mail-reply:before,
-.fa-reply:before {
- content: "";
-}
-
-.fa-github-alt:before {
- content: "";
-}
-
-.fa-folder-o:before {
- content: "";
-}
-
-.fa-folder-open-o:before {
- content: "";
-}
-
-.fa-smile-o:before {
- content: "";
-}
-
-.fa-frown-o:before {
- content: "";
-}
-
-.fa-meh-o:before {
- content: "";
-}
-
-.fa-gamepad:before {
- content: "";
-}
-
-.fa-keyboard-o:before {
- content: "";
-}
-
-.fa-flag-o:before {
- content: "";
-}
-
-.fa-flag-checkered:before {
- content: "";
-}
-
-.fa-terminal:before {
- content: "";
-}
-
-.fa-code:before {
- content: "";
-}
-
-.fa-mail-reply-all:before,
-.fa-reply-all:before {
- content: "";
-}
-
-.fa-star-half-empty:before,
-.fa-star-half-full:before,
-.fa-star-half-o:before {
- content: "";
-}
-
-.fa-location-arrow:before {
- content: "";
-}
-
-.fa-crop:before {
- content: "";
-}
-
-.fa-code-fork:before {
- content: "";
-}
-
-.fa-unlink:before,
-.fa-chain-broken:before {
- content: "";
-}
-
-.fa-question:before {
- content: "";
-}
-
-.fa-info:before {
- content: "";
-}
-
-.fa-exclamation:before {
- content: "";
-}
-
-.fa-superscript:before {
- content: "";
-}
-
-.fa-subscript:before {
- content: "";
-}
-
-.fa-eraser:before {
- content: "";
-}
-
-.fa-puzzle-piece:before {
- content: "";
-}
-
-.fa-microphone:before {
- content: "";
-}
-
-.fa-microphone-slash:before {
- content: "";
-}
-
-.fa-shield:before {
- content: "";
-}
-
-.fa-calendar-o:before {
- content: "";
-}
-
-.fa-fire-extinguisher:before {
- content: "";
-}
-
-.fa-rocket:before {
- content: "";
-}
-
-.fa-maxcdn:before {
- content: "";
-}
-
-.fa-chevron-circle-left:before {
- content: "";
-}
-
-.fa-chevron-circle-right:before {
- content: "";
-}
-
-.fa-chevron-circle-up:before {
- content: "";
-}
-
-.fa-chevron-circle-down:before {
- content: "";
-}
-
-.fa-html5:before {
- content: "";
-}
-
-.fa-css3:before {
- content: "";
-}
-
-.fa-anchor:before {
- content: "";
-}
-
-.fa-unlock-alt:before {
- content: "";
-}
-
-.fa-bullseye:before {
- content: "";
-}
-
-.fa-ellipsis-h:before {
- content: "";
-}
-
-.fa-ellipsis-v:before {
- content: "";
-}
-
-.fa-rss-square:before {
- content: "";
-}
-
-.fa-play-circle:before {
- content: "";
-}
-
-.fa-ticket:before {
- content: "";
-}
-
-.fa-minus-square:before {
- content: "";
-}
-
-.fa-minus-square-o:before, .wy-menu-vertical li.on a span.toctree-expand:before, .wy-menu-vertical li.current > a span.toctree-expand:before {
- content: "";
-}
-
-.fa-level-up:before {
- content: "";
-}
-
-.fa-level-down:before {
- content: "";
-}
-
-.fa-check-square:before {
- content: "";
-}
-
-.fa-pencil-square:before {
- content: "";
-}
-
-.fa-external-link-square:before {
- content: "";
-}
-
-.fa-share-square:before {
- content: "";
-}
-
-.fa-compass:before {
- content: "";
-}
-
-.fa-toggle-down:before,
-.fa-caret-square-o-down:before {
- content: "";
-}
-
-.fa-toggle-up:before,
-.fa-caret-square-o-up:before {
- content: "";
-}
-
-.fa-toggle-right:before,
-.fa-caret-square-o-right:before {
- content: "";
-}
-
-.fa-euro:before,
-.fa-eur:before {
- content: "";
-}
-
-.fa-gbp:before {
- content: "";
-}
-
-.fa-dollar:before,
-.fa-usd:before {
- content: "";
-}
-
-.fa-rupee:before,
-.fa-inr:before {
- content: "";
-}
-
-.fa-cny:before,
-.fa-rmb:before,
-.fa-yen:before,
-.fa-jpy:before {
- content: "";
-}
-
-.fa-ruble:before,
-.fa-rouble:before,
-.fa-rub:before {
- content: "";
-}
-
-.fa-won:before,
-.fa-krw:before {
- content: "";
-}
-
-.fa-bitcoin:before,
-.fa-btc:before {
- content: "";
-}
-
-.fa-file:before {
- content: "";
-}
-
-.fa-file-text:before {
- content: "";
-}
-
-.fa-sort-alpha-asc:before {
- content: "";
-}
-
-.fa-sort-alpha-desc:before {
- content: "";
-}
-
-.fa-sort-amount-asc:before {
- content: "";
-}
-
-.fa-sort-amount-desc:before {
- content: "";
-}
-
-.fa-sort-numeric-asc:before {
- content: "";
-}
-
-.fa-sort-numeric-desc:before {
- content: "";
-}
-
-.fa-thumbs-up:before {
- content: "";
-}
-
-.fa-thumbs-down:before {
- content: "";
-}
-
-.fa-youtube-square:before {
- content: "";
-}
-
-.fa-youtube:before {
- content: "";
-}
-
-.fa-xing:before {
- content: "";
-}
-
-.fa-xing-square:before {
- content: "";
-}
-
-.fa-youtube-play:before {
- content: "";
-}
-
-.fa-dropbox:before {
- content: "";
-}
-
-.fa-stack-overflow:before {
- content: "";
-}
-
-.fa-instagram:before {
- content: "";
-}
-
-.fa-flickr:before {
- content: "";
-}
-
-.fa-adn:before {
- content: "";
-}
-
-.fa-bitbucket:before, .icon-bitbucket:before {
- content: "";
-}
-
-.fa-bitbucket-square:before {
- content: "";
-}
-
-.fa-tumblr:before {
- content: "";
-}
-
-.fa-tumblr-square:before {
- content: "";
-}
-
-.fa-long-arrow-down:before {
- content: "";
-}
-
-.fa-long-arrow-up:before {
- content: "";
-}
-
-.fa-long-arrow-left:before {
- content: "";
-}
-
-.fa-long-arrow-right:before {
- content: "";
-}
-
-.fa-apple:before {
- content: "";
-}
-
-.fa-windows:before {
- content: "";
-}
-
-.fa-android:before {
- content: "";
-}
-
-.fa-linux:before {
- content: "";
-}
-
-.fa-dribbble:before {
- content: "";
-}
-
-.fa-skype:before {
- content: "";
-}
-
-.fa-foursquare:before {
- content: "";
-}
-
-.fa-trello:before {
- content: "";
-}
-
-.fa-female:before {
- content: "";
-}
-
-.fa-male:before {
- content: "";
-}
-
-.fa-gittip:before {
- content: "";
-}
-
-.fa-sun-o:before {
- content: "";
-}
-
-.fa-moon-o:before {
- content: "";
-}
-
-.fa-archive:before {
- content: "";
-}
-
-.fa-bug:before {
- content: "";
-}
-
-.fa-vk:before {
- content: "";
-}
-
-.fa-weibo:before {
- content: "";
-}
-
-.fa-renren:before {
- content: "";
-}
-
-.fa-pagelines:before {
- content: "";
-}
-
-.fa-stack-exchange:before {
- content: "";
-}
-
-.fa-arrow-circle-o-right:before {
- content: "";
-}
-
-.fa-arrow-circle-o-left:before {
- content: "";
-}
-
-.fa-toggle-left:before,
-.fa-caret-square-o-left:before {
- content: "";
-}
-
-.fa-dot-circle-o:before {
- content: "";
-}
-
-.fa-wheelchair:before {
- content: "";
-}
-
-.fa-vimeo-square:before {
- content: "";
-}
-
-.fa-turkish-lira:before,
-.fa-try:before {
- content: "";
-}
-
-.fa-plus-square-o:before, .wy-menu-vertical li span.toctree-expand:before {
- content: "";
-}
-
-.fa-space-shuttle:before {
- content: "";
-}
-
-.fa-slack:before {
- content: "";
-}
-
-.fa-envelope-square:before {
- content: "";
-}
-
-.fa-wordpress:before {
- content: "";
-}
-
-.fa-openid:before {
- content: "";
-}
-
-.fa-institution:before,
-.fa-bank:before,
-.fa-university:before {
- content: "";
-}
-
-.fa-mortar-board:before,
-.fa-graduation-cap:before {
- content: "";
-}
-
-.fa-yahoo:before {
- content: "";
-}
-
-.fa-google:before {
- content: "";
-}
-
-.fa-reddit:before {
- content: "";
-}
-
-.fa-reddit-square:before {
- content: "";
-}
-
-.fa-stumbleupon-circle:before {
- content: "";
-}
-
-.fa-stumbleupon:before {
- content: "";
-}
-
-.fa-delicious:before {
- content: "";
-}
-
-.fa-digg:before {
- content: "";
-}
-
-.fa-pied-piper:before {
- content: "";
-}
-
-.fa-pied-piper-alt:before {
- content: "";
-}
-
-.fa-drupal:before {
- content: "";
-}
-
-.fa-joomla:before {
- content: "";
-}
-
-.fa-language:before {
- content: "";
-}
-
-.fa-fax:before {
- content: "";
-}
-
-.fa-building:before {
- content: "";
-}
-
-.fa-child:before {
- content: "";
-}
-
-.fa-paw:before {
- content: "";
-}
-
-.fa-spoon:before {
- content: "";
-}
-
-.fa-cube:before {
- content: "";
-}
-
-.fa-cubes:before {
- content: "";
-}
-
-.fa-behance:before {
- content: "";
-}
-
-.fa-behance-square:before {
- content: "";
-}
-
-.fa-steam:before {
- content: "";
-}
-
-.fa-steam-square:before {
- content: "";
-}
-
-.fa-recycle:before {
- content: "";
-}
-
-.fa-automobile:before,
-.fa-car:before {
- content: "";
-}
-
-.fa-cab:before,
-.fa-taxi:before {
- content: "";
-}
-
-.fa-tree:before {
- content: "";
-}
-
-.fa-spotify:before {
- content: "";
-}
-
-.fa-deviantart:before {
- content: "";
-}
-
-.fa-soundcloud:before {
- content: "";
-}
-
-.fa-database:before {
- content: "";
-}
-
-.fa-file-pdf-o:before {
- content: "";
-}
-
-.fa-file-word-o:before {
- content: "";
-}
-
-.fa-file-excel-o:before {
- content: "";
-}
-
-.fa-file-powerpoint-o:before {
- content: "";
-}
-
-.fa-file-photo-o:before,
-.fa-file-picture-o:before,
-.fa-file-image-o:before {
- content: "";
-}
-
-.fa-file-zip-o:before,
-.fa-file-archive-o:before {
- content: "";
-}
-
-.fa-file-sound-o:before,
-.fa-file-audio-o:before {
- content: "";
-}
-
-.fa-file-movie-o:before,
-.fa-file-video-o:before {
- content: "";
-}
-
-.fa-file-code-o:before {
- content: "";
-}
-
-.fa-vine:before {
- content: "";
-}
-
-.fa-codepen:before {
- content: "";
-}
-
-.fa-jsfiddle:before {
- content: "";
-}
-
-.fa-life-bouy:before,
-.fa-life-buoy:before,
-.fa-life-saver:before,
-.fa-support:before,
-.fa-life-ring:before {
- content: "";
-}
-
-.fa-circle-o-notch:before {
- content: "";
-}
-
-.fa-ra:before,
-.fa-rebel:before {
- content: "";
-}
-
-.fa-ge:before,
-.fa-empire:before {
- content: "";
-}
-
-.fa-git-square:before {
- content: "";
-}
-
-.fa-git:before {
- content: "";
-}
-
-.fa-hacker-news:before {
- content: "";
-}
-
-.fa-tencent-weibo:before {
- content: "";
-}
-
-.fa-qq:before {
- content: "";
-}
-
-.fa-wechat:before,
-.fa-weixin:before {
- content: "";
-}
-
-.fa-send:before,
-.fa-paper-plane:before {
- content: "";
-}
-
-.fa-send-o:before,
-.fa-paper-plane-o:before {
- content: "";
-}
-
-.fa-history:before {
- content: "";
-}
-
-.fa-circle-thin:before {
- content: "";
-}
-
-.fa-header:before {
- content: "";
-}
-
-.fa-paragraph:before {
- content: "";
-}
-
-.fa-sliders:before {
- content: "";
-}
-
-.fa-share-alt:before {
- content: "";
-}
-
-.fa-share-alt-square:before {
- content: "";
-}
-
-.fa-bomb:before {
- content: "";
-}
-
-.fa-soccer-ball-o:before,
-.fa-futbol-o:before {
- content: "";
-}
-
-.fa-tty:before {
- content: "";
-}
-
-.fa-binoculars:before {
- content: "";
-}
-
-.fa-plug:before {
- content: "";
-}
-
-.fa-slideshare:before {
- content: "";
-}
-
-.fa-twitch:before {
- content: "";
-}
-
-.fa-yelp:before {
- content: "";
-}
-
-.fa-newspaper-o:before {
- content: "";
-}
-
-.fa-wifi:before {
- content: "";
-}
-
-.fa-calculator:before {
- content: "";
-}
-
-.fa-paypal:before {
- content: "";
-}
-
-.fa-google-wallet:before {
- content: "";
-}
-
-.fa-cc-visa:before {
- content: "";
-}
-
-.fa-cc-mastercard:before {
- content: "";
-}
-
-.fa-cc-discover:before {
- content: "";
-}
-
-.fa-cc-amex:before {
- content: "";
-}
-
-.fa-cc-paypal:before {
- content: "";
-}
-
-.fa-cc-stripe:before {
- content: "";
-}
-
-.fa-bell-slash:before {
- content: "";
-}
-
-.fa-bell-slash-o:before {
- content: "";
-}
-
-.fa-trash:before {
- content: "";
-}
-
-.fa-copyright:before {
- content: "";
-}
-
-.fa-at:before {
- content: "";
-}
-
-.fa-eyedropper:before {
- content: "";
-}
-
-.fa-paint-brush:before {
- content: "";
-}
-
-.fa-birthday-cake:before {
- content: "";
-}
-
-.fa-area-chart:before {
- content: "";
-}
-
-.fa-pie-chart:before {
- content: "";
-}
-
-.fa-line-chart:before {
- content: "";
-}
-
-.fa-lastfm:before {
- content: "";
-}
-
-.fa-lastfm-square:before {
- content: "";
-}
-
-.fa-toggle-off:before {
- content: "";
-}
-
-.fa-toggle-on:before {
- content: "";
-}
-
-.fa-bicycle:before {
- content: "";
-}
-
-.fa-bus:before {
- content: "";
-}
-
-.fa-ioxhost:before {
- content: "";
-}
-
-.fa-angellist:before {
- content: "";
-}
-
-.fa-cc:before {
- content: "";
-}
-
-.fa-shekel:before,
-.fa-sheqel:before,
-.fa-ils:before {
- content: "";
-}
-
-.fa-meanpath:before {
- content: "";
-}
-
-.fa, .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand, .rst-content .admonition-title, .rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink, .rst-content p.caption .headerlink, .rst-content tt.download span:first-child, .rst-content code.download span:first-child, .icon, .wy-dropdown .caret, .wy-inline-validate.wy-inline-validate-success .wy-input-context, .wy-inline-validate.wy-inline-validate-danger .wy-input-context, .wy-inline-validate.wy-inline-validate-warning .wy-input-context, .wy-inline-validate.wy-inline-validate-info .wy-input-context {
- font-family: inherit;
-}
-.fa:before, .wy-menu-vertical li span.toctree-expand:before, .wy-menu-vertical li.on a span.toctree-expand:before, .wy-menu-vertical li.current > a span.toctree-expand:before, .rst-content .admonition-title:before, .rst-content h1 .headerlink:before, .rst-content h2 .headerlink:before, .rst-content h3 .headerlink:before, .rst-content h4 .headerlink:before, .rst-content h5 .headerlink:before, .rst-content h6 .headerlink:before, .rst-content dl dt .headerlink:before, .rst-content p.caption .headerlink:before, .rst-content tt.download span:first-child:before, .rst-content code.download span:first-child:before, .icon:before, .wy-dropdown .caret:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before {
- font-family: "FontAwesome";
- display: inline-block;
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- text-decoration: inherit;
-}
-
-a .fa, a .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li a span.toctree-expand, .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand, a .rst-content .admonition-title, .rst-content a .admonition-title, a .rst-content h1 .headerlink, .rst-content h1 a .headerlink, a .rst-content h2 .headerlink, .rst-content h2 a .headerlink, a .rst-content h3 .headerlink, .rst-content h3 a .headerlink, a .rst-content h4 .headerlink, .rst-content h4 a .headerlink, a .rst-content h5 .headerlink, .rst-content h5 a .headerlink, a .rst-content h6 .headerlink, .rst-content h6 a .headerlink, a .rst-content dl dt .headerlink, .rst-content dl dt a .headerlink, a .rst-content p.caption .headerlink, .rst-content p.caption a .headerlink, a .rst-content tt.download span:first-child, .rst-content tt.download a span:first-child, a .rst-content code.download span:first-child, .rst-content code.download a span:first-child, a .icon {
- display: inline-block;
- text-decoration: inherit;
-}
-
-.btn .fa, .btn .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li .btn span.toctree-expand, .btn .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.on a .btn span.toctree-expand, .btn .wy-menu-vertical li.current > a span.toctree-expand, .wy-menu-vertical li.current > a .btn span.toctree-expand, .btn .rst-content .admonition-title, .rst-content .btn .admonition-title, .btn .rst-content h1 .headerlink, .rst-content h1 .btn .headerlink, .btn .rst-content h2 .headerlink, .rst-content h2 .btn .headerlink, .btn .rst-content h3 .headerlink, .rst-content h3 .btn .headerlink, .btn .rst-content h4 .headerlink, .rst-content h4 .btn .headerlink, .btn .rst-content h5 .headerlink, .rst-content h5 .btn .headerlink, .btn .rst-content h6 .headerlink, .rst-content h6 .btn .headerlink, .btn .rst-content dl dt .headerlink, .rst-content dl dt .btn .headerlink, .btn .rst-content p.caption .headerlink, .rst-content p.caption .btn .headerlink, .btn .rst-content tt.download span:first-child, .rst-content tt.download .btn span:first-child, .btn .rst-content code.download span:first-child, .rst-content code.download .btn span:first-child, .btn .icon, .nav .fa, .nav .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li .nav span.toctree-expand, .nav .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.on a .nav span.toctree-expand, .nav .wy-menu-vertical li.current > a span.toctree-expand, .wy-menu-vertical li.current > a .nav span.toctree-expand, .nav .rst-content .admonition-title, .rst-content .nav .admonition-title, .nav .rst-content h1 .headerlink, .rst-content h1 .nav .headerlink, .nav .rst-content h2 .headerlink, .rst-content h2 .nav .headerlink, .nav .rst-content h3 .headerlink, .rst-content h3 .nav .headerlink, .nav .rst-content h4 .headerlink, .rst-content h4 .nav .headerlink, .nav .rst-content h5 .headerlink, .rst-content h5 .nav .headerlink, .nav .rst-content h6 .headerlink, .rst-content h6 .nav .headerlink, .nav .rst-content dl dt .headerlink, .rst-content dl dt .nav .headerlink, .nav .rst-content p.caption .headerlink, .rst-content p.caption .nav .headerlink, .nav .rst-content tt.download span:first-child, .rst-content tt.download .nav span:first-child, .nav .rst-content code.download span:first-child, .rst-content code.download .nav span:first-child, .nav .icon {
- display: inline;
-}
-.btn .fa.fa-large, .btn .wy-menu-vertical li span.fa-large.toctree-expand, .wy-menu-vertical li .btn span.fa-large.toctree-expand, .btn .rst-content .fa-large.admonition-title, .rst-content .btn .fa-large.admonition-title, .btn .rst-content h1 .fa-large.headerlink, .rst-content h1 .btn .fa-large.headerlink, .btn .rst-content h2 .fa-large.headerlink, .rst-content h2 .btn .fa-large.headerlink, .btn .rst-content h3 .fa-large.headerlink, .rst-content h3 .btn .fa-large.headerlink, .btn .rst-content h4 .fa-large.headerlink, .rst-content h4 .btn .fa-large.headerlink, .btn .rst-content h5 .fa-large.headerlink, .rst-content h5 .btn .fa-large.headerlink, .btn .rst-content h6 .fa-large.headerlink, .rst-content h6 .btn .fa-large.headerlink, .btn .rst-content dl dt .fa-large.headerlink, .rst-content dl dt .btn .fa-large.headerlink, .btn .rst-content p.caption .fa-large.headerlink, .rst-content p.caption .btn .fa-large.headerlink, .btn .rst-content tt.download span.fa-large:first-child, .rst-content tt.download .btn span.fa-large:first-child, .btn .rst-content code.download span.fa-large:first-child, .rst-content code.download .btn span.fa-large:first-child, .btn .fa-large.icon, .nav .fa.fa-large, .nav .wy-menu-vertical li span.fa-large.toctree-expand, .wy-menu-vertical li .nav span.fa-large.toctree-expand, .nav .rst-content .fa-large.admonition-title, .rst-content .nav .fa-large.admonition-title, .nav .rst-content h1 .fa-large.headerlink, .rst-content h1 .nav .fa-large.headerlink, .nav .rst-content h2 .fa-large.headerlink, .rst-content h2 .nav .fa-large.headerlink, .nav .rst-content h3 .fa-large.headerlink, .rst-content h3 .nav .fa-large.headerlink, .nav .rst-content h4 .fa-large.headerlink, .rst-content h4 .nav .fa-large.headerlink, .nav .rst-content h5 .fa-large.headerlink, .rst-content h5 .nav .fa-large.headerlink, .nav .rst-content h6 .fa-large.headerlink, .rst-content h6 .nav .fa-large.headerlink, .nav .rst-content dl dt .fa-large.headerlink, .rst-content dl dt .nav .fa-large.headerlink, .nav .rst-content p.caption .fa-large.headerlink, .rst-content p.caption .nav .fa-large.headerlink, .nav .rst-content tt.download span.fa-large:first-child, .rst-content tt.download .nav span.fa-large:first-child, .nav .rst-content code.download span.fa-large:first-child, .rst-content code.download .nav span.fa-large:first-child, .nav .fa-large.icon {
- line-height: 0.9em;
-}
-.btn .fa.fa-spin, .btn .wy-menu-vertical li span.fa-spin.toctree-expand, .wy-menu-vertical li .btn span.fa-spin.toctree-expand, .btn .rst-content .fa-spin.admonition-title, .rst-content .btn .fa-spin.admonition-title, .btn .rst-content h1 .fa-spin.headerlink, .rst-content h1 .btn .fa-spin.headerlink, .btn .rst-content h2 .fa-spin.headerlink, .rst-content h2 .btn .fa-spin.headerlink, .btn .rst-content h3 .fa-spin.headerlink, .rst-content h3 .btn .fa-spin.headerlink, .btn .rst-content h4 .fa-spin.headerlink, .rst-content h4 .btn .fa-spin.headerlink, .btn .rst-content h5 .fa-spin.headerlink, .rst-content h5 .btn .fa-spin.headerlink, .btn .rst-content h6 .fa-spin.headerlink, .rst-content h6 .btn .fa-spin.headerlink, .btn .rst-content dl dt .fa-spin.headerlink, .rst-content dl dt .btn .fa-spin.headerlink, .btn .rst-content p.caption .fa-spin.headerlink, .rst-content p.caption .btn .fa-spin.headerlink, .btn .rst-content tt.download span.fa-spin:first-child, .rst-content tt.download .btn span.fa-spin:first-child, .btn .rst-content code.download span.fa-spin:first-child, .rst-content code.download .btn span.fa-spin:first-child, .btn .fa-spin.icon, .nav .fa.fa-spin, .nav .wy-menu-vertical li span.fa-spin.toctree-expand, .wy-menu-vertical li .nav span.fa-spin.toctree-expand, .nav .rst-content .fa-spin.admonition-title, .rst-content .nav .fa-spin.admonition-title, .nav .rst-content h1 .fa-spin.headerlink, .rst-content h1 .nav .fa-spin.headerlink, .nav .rst-content h2 .fa-spin.headerlink, .rst-content h2 .nav .fa-spin.headerlink, .nav .rst-content h3 .fa-spin.headerlink, .rst-content h3 .nav .fa-spin.headerlink, .nav .rst-content h4 .fa-spin.headerlink, .rst-content h4 .nav .fa-spin.headerlink, .nav .rst-content h5 .fa-spin.headerlink, .rst-content h5 .nav .fa-spin.headerlink, .nav .rst-content h6 .fa-spin.headerlink, .rst-content h6 .nav .fa-spin.headerlink, .nav .rst-content dl dt .fa-spin.headerlink, .rst-content dl dt .nav .fa-spin.headerlink, .nav .rst-content p.caption .fa-spin.headerlink, .rst-content p.caption .nav .fa-spin.headerlink, .nav .rst-content tt.download span.fa-spin:first-child, .rst-content tt.download .nav span.fa-spin:first-child, .nav .rst-content code.download span.fa-spin:first-child, .rst-content code.download .nav span.fa-spin:first-child, .nav .fa-spin.icon {
- display: inline-block;
-}
-
-.btn.fa:before, .wy-menu-vertical li span.btn.toctree-expand:before, .rst-content .btn.admonition-title:before, .rst-content h1 .btn.headerlink:before, .rst-content h2 .btn.headerlink:before, .rst-content h3 .btn.headerlink:before, .rst-content h4 .btn.headerlink:before, .rst-content h5 .btn.headerlink:before, .rst-content h6 .btn.headerlink:before, .rst-content dl dt .btn.headerlink:before, .rst-content p.caption .btn.headerlink:before, .rst-content tt.download span.btn:first-child:before, .rst-content code.download span.btn:first-child:before, .btn.icon:before {
- opacity: 0.5;
- -webkit-transition: opacity 0.05s ease-in;
- -moz-transition: opacity 0.05s ease-in;
- transition: opacity 0.05s ease-in;
-}
-
-.btn.fa:hover:before, .wy-menu-vertical li span.btn.toctree-expand:hover:before, .rst-content .btn.admonition-title:hover:before, .rst-content h1 .btn.headerlink:hover:before, .rst-content h2 .btn.headerlink:hover:before, .rst-content h3 .btn.headerlink:hover:before, .rst-content h4 .btn.headerlink:hover:before, .rst-content h5 .btn.headerlink:hover:before, .rst-content h6 .btn.headerlink:hover:before, .rst-content dl dt .btn.headerlink:hover:before, .rst-content p.caption .btn.headerlink:hover:before, .rst-content tt.download span.btn:first-child:hover:before, .rst-content code.download span.btn:first-child:hover:before, .btn.icon:hover:before {
- opacity: 1;
-}
-
-.btn-mini .fa:before, .btn-mini .wy-menu-vertical li span.toctree-expand:before, .wy-menu-vertical li .btn-mini span.toctree-expand:before, .btn-mini .rst-content .admonition-title:before, .rst-content .btn-mini .admonition-title:before, .btn-mini .rst-content h1 .headerlink:before, .rst-content h1 .btn-mini .headerlink:before, .btn-mini .rst-content h2 .headerlink:before, .rst-content h2 .btn-mini .headerlink:before, .btn-mini .rst-content h3 .headerlink:before, .rst-content h3 .btn-mini .headerlink:before, .btn-mini .rst-content h4 .headerlink:before, .rst-content h4 .btn-mini .headerlink:before, .btn-mini .rst-content h5 .headerlink:before, .rst-content h5 .btn-mini .headerlink:before, .btn-mini .rst-content h6 .headerlink:before, .rst-content h6 .btn-mini .headerlink:before, .btn-mini .rst-content dl dt .headerlink:before, .rst-content dl dt .btn-mini .headerlink:before, .btn-mini .rst-content p.caption .headerlink:before, .rst-content p.caption .btn-mini .headerlink:before, .btn-mini .rst-content tt.download span:first-child:before, .rst-content tt.download .btn-mini span:first-child:before, .btn-mini .rst-content code.download span:first-child:before, .rst-content code.download .btn-mini span:first-child:before, .btn-mini .icon:before {
- font-size: 14px;
- vertical-align: -15%;
-}
-
-.wy-alert, .rst-content .note, .rst-content .attention, .rst-content .caution, .rst-content .danger, .rst-content .error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .warning, .rst-content .seealso, .rst-content .admonition-todo {
- padding: 12px;
- line-height: 24px;
- margin-bottom: 24px;
- background: #e7f2fa;
-}
-
-.wy-alert-title, .rst-content .admonition-title {
- color: #fff;
- font-weight: bold;
- display: block;
- color: #fff;
- background: #6ab0de;
- margin: -12px;
- padding: 6px 12px;
- margin-bottom: 12px;
-}
-
-.wy-alert.wy-alert-danger, .rst-content .wy-alert-danger.note, .rst-content .wy-alert-danger.attention, .rst-content .wy-alert-danger.caution, .rst-content .danger, .rst-content .error, .rst-content .wy-alert-danger.hint, .rst-content .wy-alert-danger.important, .rst-content .wy-alert-danger.tip, .rst-content .wy-alert-danger.warning, .rst-content .wy-alert-danger.seealso, .rst-content .wy-alert-danger.admonition-todo {
- background: #fdf3f2;
-}
-.wy-alert.wy-alert-danger .wy-alert-title, .rst-content .wy-alert-danger.note .wy-alert-title, .rst-content .wy-alert-danger.attention .wy-alert-title, .rst-content .wy-alert-danger.caution .wy-alert-title, .rst-content .danger .wy-alert-title, .rst-content .error .wy-alert-title, .rst-content .wy-alert-danger.hint .wy-alert-title, .rst-content .wy-alert-danger.important .wy-alert-title, .rst-content .wy-alert-danger.tip .wy-alert-title, .rst-content .wy-alert-danger.warning .wy-alert-title, .rst-content .wy-alert-danger.seealso .wy-alert-title, .rst-content .wy-alert-danger.admonition-todo .wy-alert-title, .wy-alert.wy-alert-danger .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-danger .admonition-title, .rst-content .wy-alert-danger.note .admonition-title, .rst-content .wy-alert-danger.attention .admonition-title, .rst-content .wy-alert-danger.caution .admonition-title, .rst-content .danger .admonition-title, .rst-content .error .admonition-title, .rst-content .wy-alert-danger.hint .admonition-title, .rst-content .wy-alert-danger.important .admonition-title, .rst-content .wy-alert-danger.tip .admonition-title, .rst-content .wy-alert-danger.warning .admonition-title, .rst-content .wy-alert-danger.seealso .admonition-title, .rst-content .wy-alert-danger.admonition-todo .admonition-title {
- background: #f29f97;
-}
-
-.wy-alert.wy-alert-warning, .rst-content .wy-alert-warning.note, .rst-content .attention, .rst-content .caution, .rst-content .wy-alert-warning.danger, .rst-content .wy-alert-warning.error, .rst-content .wy-alert-warning.hint, .rst-content .wy-alert-warning.important, .rst-content .wy-alert-warning.tip, .rst-content .warning, .rst-content .wy-alert-warning.seealso, .rst-content .admonition-todo {
- background: #ffedcc;
-}
-.wy-alert.wy-alert-warning .wy-alert-title, .rst-content .wy-alert-warning.note .wy-alert-title, .rst-content .attention .wy-alert-title, .rst-content .caution .wy-alert-title, .rst-content .wy-alert-warning.danger .wy-alert-title, .rst-content .wy-alert-warning.error .wy-alert-title, .rst-content .wy-alert-warning.hint .wy-alert-title, .rst-content .wy-alert-warning.important .wy-alert-title, .rst-content .wy-alert-warning.tip .wy-alert-title, .rst-content .warning .wy-alert-title, .rst-content .wy-alert-warning.seealso .wy-alert-title, .rst-content .admonition-todo .wy-alert-title, .wy-alert.wy-alert-warning .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-warning .admonition-title, .rst-content .wy-alert-warning.note .admonition-title, .rst-content .attention .admonition-title, .rst-content .caution .admonition-title, .rst-content .wy-alert-warning.danger .admonition-title, .rst-content .wy-alert-warning.error .admonition-title, .rst-content .wy-alert-warning.hint .admonition-title, .rst-content .wy-alert-warning.important .admonition-title, .rst-content .wy-alert-warning.tip .admonition-title, .rst-content .warning .admonition-title, .rst-content .wy-alert-warning.seealso .admonition-title, .rst-content .admonition-todo .admonition-title {
- background: #f0b37e;
-}
-
-.wy-alert.wy-alert-info, .rst-content .note, .rst-content .wy-alert-info.attention, .rst-content .wy-alert-info.caution, .rst-content .wy-alert-info.danger, .rst-content .wy-alert-info.error, .rst-content .wy-alert-info.hint, .rst-content .wy-alert-info.important, .rst-content .wy-alert-info.tip, .rst-content .wy-alert-info.warning, .rst-content .seealso, .rst-content .wy-alert-info.admonition-todo {
- background: #e7f2fa;
-}
-.wy-alert.wy-alert-info .wy-alert-title, .rst-content .note .wy-alert-title, .rst-content .wy-alert-info.attention .wy-alert-title, .rst-content .wy-alert-info.caution .wy-alert-title, .rst-content .wy-alert-info.danger .wy-alert-title, .rst-content .wy-alert-info.error .wy-alert-title, .rst-content .wy-alert-info.hint .wy-alert-title, .rst-content .wy-alert-info.important .wy-alert-title, .rst-content .wy-alert-info.tip .wy-alert-title, .rst-content .wy-alert-info.warning .wy-alert-title, .rst-content .seealso .wy-alert-title, .rst-content .wy-alert-info.admonition-todo .wy-alert-title, .wy-alert.wy-alert-info .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-info .admonition-title, .rst-content .note .admonition-title, .rst-content .wy-alert-info.attention .admonition-title, .rst-content .wy-alert-info.caution .admonition-title, .rst-content .wy-alert-info.danger .admonition-title, .rst-content .wy-alert-info.error .admonition-title, .rst-content .wy-alert-info.hint .admonition-title, .rst-content .wy-alert-info.important .admonition-title, .rst-content .wy-alert-info.tip .admonition-title, .rst-content .wy-alert-info.warning .admonition-title, .rst-content .seealso .admonition-title, .rst-content .wy-alert-info.admonition-todo .admonition-title {
- background: #6ab0de;
-}
-
-.wy-alert.wy-alert-success, .rst-content .wy-alert-success.note, .rst-content .wy-alert-success.attention, .rst-content .wy-alert-success.caution, .rst-content .wy-alert-success.danger, .rst-content .wy-alert-success.error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .wy-alert-success.warning, .rst-content .wy-alert-success.seealso, .rst-content .wy-alert-success.admonition-todo {
- background: #dbfaf4;
-}
-.wy-alert.wy-alert-success .wy-alert-title, .rst-content .wy-alert-success.note .wy-alert-title, .rst-content .wy-alert-success.attention .wy-alert-title, .rst-content .wy-alert-success.caution .wy-alert-title, .rst-content .wy-alert-success.danger .wy-alert-title, .rst-content .wy-alert-success.error .wy-alert-title, .rst-content .hint .wy-alert-title, .rst-content .important .wy-alert-title, .rst-content .tip .wy-alert-title, .rst-content .wy-alert-success.warning .wy-alert-title, .rst-content .wy-alert-success.seealso .wy-alert-title, .rst-content .wy-alert-success.admonition-todo .wy-alert-title, .wy-alert.wy-alert-success .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-success .admonition-title, .rst-content .wy-alert-success.note .admonition-title, .rst-content .wy-alert-success.attention .admonition-title, .rst-content .wy-alert-success.caution .admonition-title, .rst-content .wy-alert-success.danger .admonition-title, .rst-content .wy-alert-success.error .admonition-title, .rst-content .hint .admonition-title, .rst-content .important .admonition-title, .rst-content .tip .admonition-title, .rst-content .wy-alert-success.warning .admonition-title, .rst-content .wy-alert-success.seealso .admonition-title, .rst-content .wy-alert-success.admonition-todo .admonition-title {
- background: #1abc9c;
-}
-
-.wy-alert.wy-alert-neutral, .rst-content .wy-alert-neutral.note, .rst-content .wy-alert-neutral.attention, .rst-content .wy-alert-neutral.caution, .rst-content .wy-alert-neutral.danger, .rst-content .wy-alert-neutral.error, .rst-content .wy-alert-neutral.hint, .rst-content .wy-alert-neutral.important, .rst-content .wy-alert-neutral.tip, .rst-content .wy-alert-neutral.warning, .rst-content .wy-alert-neutral.seealso, .rst-content .wy-alert-neutral.admonition-todo {
- background: #f3f6f6;
-}
-.wy-alert.wy-alert-neutral .wy-alert-title, .rst-content .wy-alert-neutral.note .wy-alert-title, .rst-content .wy-alert-neutral.attention .wy-alert-title, .rst-content .wy-alert-neutral.caution .wy-alert-title, .rst-content .wy-alert-neutral.danger .wy-alert-title, .rst-content .wy-alert-neutral.error .wy-alert-title, .rst-content .wy-alert-neutral.hint .wy-alert-title, .rst-content .wy-alert-neutral.important .wy-alert-title, .rst-content .wy-alert-neutral.tip .wy-alert-title, .rst-content .wy-alert-neutral.warning .wy-alert-title, .rst-content .wy-alert-neutral.seealso .wy-alert-title, .rst-content .wy-alert-neutral.admonition-todo .wy-alert-title, .wy-alert.wy-alert-neutral .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-neutral .admonition-title, .rst-content .wy-alert-neutral.note .admonition-title, .rst-content .wy-alert-neutral.attention .admonition-title, .rst-content .wy-alert-neutral.caution .admonition-title, .rst-content .wy-alert-neutral.danger .admonition-title, .rst-content .wy-alert-neutral.error .admonition-title, .rst-content .wy-alert-neutral.hint .admonition-title, .rst-content .wy-alert-neutral.important .admonition-title, .rst-content .wy-alert-neutral.tip .admonition-title, .rst-content .wy-alert-neutral.warning .admonition-title, .rst-content .wy-alert-neutral.seealso .admonition-title, .rst-content .wy-alert-neutral.admonition-todo .admonition-title {
- color: #404040;
- background: #e1e4e5;
-}
-.wy-alert.wy-alert-neutral a, .rst-content .wy-alert-neutral.note a, .rst-content .wy-alert-neutral.attention a, .rst-content .wy-alert-neutral.caution a, .rst-content .wy-alert-neutral.danger a, .rst-content .wy-alert-neutral.error a, .rst-content .wy-alert-neutral.hint a, .rst-content .wy-alert-neutral.important a, .rst-content .wy-alert-neutral.tip a, .rst-content .wy-alert-neutral.warning a, .rst-content .wy-alert-neutral.seealso a, .rst-content .wy-alert-neutral.admonition-todo a {
- color: #2980B9;
-}
-
-.wy-alert p:last-child, .rst-content .note p:last-child, .rst-content .attention p:last-child, .rst-content .caution p:last-child, .rst-content .danger p:last-child, .rst-content .error p:last-child, .rst-content .hint p:last-child, .rst-content .important p:last-child, .rst-content .tip p:last-child, .rst-content .warning p:last-child, .rst-content .seealso p:last-child, .rst-content .admonition-todo p:last-child {
- margin-bottom: 0;
-}
-
-.wy-tray-container {
- position: fixed;
- bottom: 0px;
- left: 0;
- z-index: 600;
-}
-.wy-tray-container li {
- display: block;
- width: 300px;
- background: transparent;
- color: #fff;
- text-align: center;
- box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
- padding: 0 24px;
- min-width: 20%;
- opacity: 0;
- height: 0;
- line-height: 56px;
- overflow: hidden;
- -webkit-transition: all 0.3s ease-in;
- -moz-transition: all 0.3s ease-in;
- transition: all 0.3s ease-in;
-}
-.wy-tray-container li.wy-tray-item-success {
- background: #27AE60;
-}
-.wy-tray-container li.wy-tray-item-info {
- background: #2980B9;
-}
-.wy-tray-container li.wy-tray-item-warning {
- background: #E67E22;
-}
-.wy-tray-container li.wy-tray-item-danger {
- background: #E74C3C;
-}
-.wy-tray-container li.on {
- opacity: 1;
- height: 56px;
-}
-
-@media screen and (max-width: 768px) {
- .wy-tray-container {
- bottom: auto;
- top: 0;
- width: 100%;
- }
- .wy-tray-container li {
- width: 100%;
- }
-}
-button {
- font-size: 100%;
- margin: 0;
- vertical-align: baseline;
- *vertical-align: middle;
- cursor: pointer;
- line-height: normal;
- -webkit-appearance: button;
- *overflow: visible;
-}
-
-button::-moz-focus-inner, input::-moz-focus-inner {
- border: 0;
- padding: 0;
-}
-
-button[disabled] {
- cursor: default;
-}
-
-.btn {
- /* Structure */
- display: inline-block;
- border-radius: 2px;
- line-height: normal;
- white-space: nowrap;
- text-align: center;
- cursor: pointer;
- font-size: 100%;
- padding: 6px 12px 8px 12px;
- color: #fff;
- border: 1px solid rgba(0, 0, 0, 0.1);
- background-color: #27AE60;
- text-decoration: none;
- font-weight: normal;
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
- box-shadow: 0px 1px 2px -1px rgba(255, 255, 255, 0.5) inset, 0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset;
- outline-none: false;
- vertical-align: middle;
- *display: inline;
- zoom: 1;
- -webkit-user-drag: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-transition: all 0.1s linear;
- -moz-transition: all 0.1s linear;
- transition: all 0.1s linear;
-}
-
-.btn-hover {
- background: #2e8ece;
- color: #fff;
-}
-
-.btn:hover {
- background: #2cc36b;
- color: #fff;
-}
-.btn:focus {
- background: #2cc36b;
- outline: 0;
-}
-.btn:active {
- box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.05) inset, 0px 2px 0px 0px rgba(0, 0, 0, 0.1) inset;
- padding: 8px 12px 6px 12px;
-}
-.btn:visited {
- color: #fff;
-}
-.btn:disabled {
- background-image: none;
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- filter: alpha(opacity=40);
- opacity: 0.4;
- cursor: not-allowed;
- box-shadow: none;
-}
-
-.btn-disabled {
- background-image: none;
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- filter: alpha(opacity=40);
- opacity: 0.4;
- cursor: not-allowed;
- box-shadow: none;
-}
-.btn-disabled:hover, .btn-disabled:focus, .btn-disabled:active {
- background-image: none;
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- filter: alpha(opacity=40);
- opacity: 0.4;
- cursor: not-allowed;
- box-shadow: none;
-}
-
-.btn::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-
-.btn-small {
- font-size: 80%;
-}
-
-.btn-info {
- background-color: #2980B9 !important;
-}
-.btn-info:hover {
- background-color: #2e8ece !important;
-}
-
-.btn-neutral {
- background-color: #f3f6f6 !important;
- color: #404040 !important;
-}
-.btn-neutral:hover {
- background-color: #e5ebeb !important;
- color: #404040;
-}
-.btn-neutral:visited {
- color: #404040 !important;
-}
-
-.btn-success {
- background-color: #27AE60 !important;
-}
-.btn-success:hover {
- background-color: #229955 !important;
-}
-
-.btn-danger {
- background-color: #E74C3C !important;
-}
-.btn-danger:hover {
- background-color: #ea6153 !important;
-}
-
-.btn-warning {
- background-color: #E67E22 !important;
-}
-.btn-warning:hover {
- background-color: #e98b39 !important;
-}
-
-.btn-invert {
- background-color: #222;
-}
-.btn-invert:hover {
- background-color: #2f2f2f !important;
-}
-
-.btn-link {
- background-color: transparent !important;
- color: #2980B9;
- box-shadow: none;
- border-color: transparent !important;
-}
-.btn-link:hover {
- background-color: transparent !important;
- color: #409ad5 !important;
- box-shadow: none;
-}
-.btn-link:active {
- background-color: transparent !important;
- color: #409ad5 !important;
- box-shadow: none;
-}
-.btn-link:visited {
- color: #9B59B6;
-}
-
-.wy-btn-group .btn, .wy-control .btn {
- vertical-align: middle;
-}
-
-.wy-btn-group {
- margin-bottom: 24px;
- *zoom: 1;
-}
-.wy-btn-group:before, .wy-btn-group:after {
- display: table;
- content: "";
-}
-.wy-btn-group:after {
- clear: both;
-}
-
-.wy-dropdown {
- position: relative;
- display: inline-block;
-}
-
-.wy-dropdown-active .wy-dropdown-menu {
- display: block;
-}
-
-.wy-dropdown-menu {
- position: absolute;
- left: 0;
- display: none;
- float: left;
- top: 100%;
- min-width: 100%;
- background: #fcfcfc;
- z-index: 100;
- border: solid 1px #cfd7dd;
- box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
- padding: 12px;
-}
-.wy-dropdown-menu > dd > a {
- display: block;
- clear: both;
- color: #404040;
- white-space: nowrap;
- font-size: 90%;
- padding: 0 12px;
- cursor: pointer;
-}
-.wy-dropdown-menu > dd > a:hover {
- background: #2980B9;
- color: #fff;
-}
-.wy-dropdown-menu > dd.divider {
- border-top: solid 1px #cfd7dd;
- margin: 6px 0;
-}
-.wy-dropdown-menu > dd.search {
- padding-bottom: 12px;
-}
-.wy-dropdown-menu > dd.search input[type="search"] {
- width: 100%;
-}
-.wy-dropdown-menu > dd.call-to-action {
- background: #e3e3e3;
- text-transform: uppercase;
- font-weight: 500;
- font-size: 80%;
-}
-.wy-dropdown-menu > dd.call-to-action:hover {
- background: #e3e3e3;
-}
-.wy-dropdown-menu > dd.call-to-action .btn {
- color: #fff;
-}
-
-.wy-dropdown.wy-dropdown-up .wy-dropdown-menu {
- bottom: 100%;
- top: auto;
- left: auto;
- right: 0;
-}
-
-.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu {
- background: #fcfcfc;
- margin-top: 2px;
-}
-.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a {
- padding: 6px 12px;
-}
-.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover {
- background: #2980B9;
- color: #fff;
-}
-
-.wy-dropdown.wy-dropdown-left .wy-dropdown-menu {
- right: 0;
- left: auto;
- text-align: right;
-}
-
-.wy-dropdown-arrow:before {
- content: " ";
- border-bottom: 5px solid whitesmoke;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- position: absolute;
- display: block;
- top: -4px;
- left: 50%;
- margin-left: -3px;
-}
-.wy-dropdown-arrow.wy-dropdown-arrow-left:before {
- left: 11px;
-}
-
-.wy-form-stacked select {
- display: block;
-}
-
-.wy-form-aligned input, .wy-form-aligned textarea, .wy-form-aligned select, .wy-form-aligned .wy-help-inline, .wy-form-aligned label {
- display: inline-block;
- *display: inline;
- *zoom: 1;
- vertical-align: middle;
-}
-
-.wy-form-aligned .wy-control-group > label {
- display: inline-block;
- vertical-align: middle;
- width: 10em;
- margin: 6px 12px 0 0;
- float: left;
-}
-.wy-form-aligned .wy-control {
- float: left;
-}
-.wy-form-aligned .wy-control label {
- display: block;
-}
-.wy-form-aligned .wy-control select {
- margin-top: 6px;
-}
-
-fieldset {
- border: 0;
- margin: 0;
- padding: 0;
-}
-
-legend {
- display: block;
- width: 100%;
- border: 0;
- padding: 0;
- white-space: normal;
- margin-bottom: 24px;
- font-size: 150%;
- *margin-left: -7px;
-}
-
-label {
- display: block;
- margin: 0 0 0.3125em 0;
- color: #333;
- font-size: 90%;
-}
-
-input, select, textarea {
- font-size: 100%;
- margin: 0;
- vertical-align: baseline;
- *vertical-align: middle;
-}
-
-.wy-control-group {
- margin-bottom: 24px;
- *zoom: 1;
- max-width: 68em;
- margin-left: auto;
- margin-right: auto;
- *zoom: 1;
-}
-.wy-control-group:before, .wy-control-group:after {
- display: table;
- content: "";
-}
-.wy-control-group:after {
- clear: both;
-}
-.wy-control-group:before, .wy-control-group:after {
- display: table;
- content: "";
-}
-.wy-control-group:after {
- clear: both;
-}
-
-.wy-control-group.wy-control-group-required > label:after {
- content: " *";
- color: #E74C3C;
-}
-
-.wy-control-group .wy-form-full, .wy-control-group .wy-form-halves, .wy-control-group .wy-form-thirds {
- padding-bottom: 12px;
-}
-.wy-control-group .wy-form-full select, .wy-control-group .wy-form-halves select, .wy-control-group .wy-form-thirds select {
- width: 100%;
-}
-.wy-control-group .wy-form-full input[type="text"], .wy-control-group .wy-form-full input[type="password"], .wy-control-group .wy-form-full input[type="email"], .wy-control-group .wy-form-full input[type="url"], .wy-control-group .wy-form-full input[type="date"], .wy-control-group .wy-form-full input[type="month"], .wy-control-group .wy-form-full input[type="time"], .wy-control-group .wy-form-full input[type="datetime"], .wy-control-group .wy-form-full input[type="datetime-local"], .wy-control-group .wy-form-full input[type="week"], .wy-control-group .wy-form-full input[type="number"], .wy-control-group .wy-form-full input[type="search"], .wy-control-group .wy-form-full input[type="tel"], .wy-control-group .wy-form-full input[type="color"], .wy-control-group .wy-form-halves input[type="text"], .wy-control-group .wy-form-halves input[type="password"], .wy-control-group .wy-form-halves input[type="email"], .wy-control-group .wy-form-halves input[type="url"], .wy-control-group .wy-form-halves input[type="date"], .wy-control-group .wy-form-halves input[type="month"], .wy-control-group .wy-form-halves input[type="time"], .wy-control-group .wy-form-halves input[type="datetime"], .wy-control-group .wy-form-halves input[type="datetime-local"], .wy-control-group .wy-form-halves input[type="week"], .wy-control-group .wy-form-halves input[type="number"], .wy-control-group .wy-form-halves input[type="search"], .wy-control-group .wy-form-halves input[type="tel"], .wy-control-group .wy-form-halves input[type="color"], .wy-control-group .wy-form-thirds input[type="text"], .wy-control-group .wy-form-thirds input[type="password"], .wy-control-group .wy-form-thirds input[type="email"], .wy-control-group .wy-form-thirds input[type="url"], .wy-control-group .wy-form-thirds input[type="date"], .wy-control-group .wy-form-thirds input[type="month"], .wy-control-group .wy-form-thirds input[type="time"], .wy-control-group .wy-form-thirds input[type="datetime"], .wy-control-group .wy-form-thirds input[type="datetime-local"], .wy-control-group .wy-form-thirds input[type="week"], .wy-control-group .wy-form-thirds input[type="number"], .wy-control-group .wy-form-thirds input[type="search"], .wy-control-group .wy-form-thirds input[type="tel"], .wy-control-group .wy-form-thirds input[type="color"] {
- width: 100%;
-}
-
-.wy-control-group .wy-form-full {
- float: left;
- display: block;
- margin-right: 2.35765%;
- width: 100%;
- margin-right: 0;
-}
-.wy-control-group .wy-form-full:last-child {
- margin-right: 0;
-}
-
-.wy-control-group .wy-form-halves {
- float: left;
- display: block;
- margin-right: 2.35765%;
- width: 48.82117%;
-}
-.wy-control-group .wy-form-halves:last-child {
- margin-right: 0;
-}
-.wy-control-group .wy-form-halves:nth-of-type(2n) {
- margin-right: 0;
-}
-.wy-control-group .wy-form-halves:nth-of-type(2n+1) {
- clear: left;
-}
-
-.wy-control-group .wy-form-thirds {
- float: left;
- display: block;
- margin-right: 2.35765%;
- width: 31.76157%;
-}
-.wy-control-group .wy-form-thirds:last-child {
- margin-right: 0;
-}
-.wy-control-group .wy-form-thirds:nth-of-type(3n) {
- margin-right: 0;
-}
-.wy-control-group .wy-form-thirds:nth-of-type(3n+1) {
- clear: left;
-}
-
-.wy-control-group.wy-control-group-no-input .wy-control {
- margin: 6px 0 0 0;
- font-size: 90%;
-}
-
-.wy-control-no-input {
- display: inline-block;
- margin: 6px 0 0 0;
- font-size: 90%;
-}
-
-.wy-control-group.fluid-input input[type="text"], .wy-control-group.fluid-input input[type="password"], .wy-control-group.fluid-input input[type="email"], .wy-control-group.fluid-input input[type="url"], .wy-control-group.fluid-input input[type="date"], .wy-control-group.fluid-input input[type="month"], .wy-control-group.fluid-input input[type="time"], .wy-control-group.fluid-input input[type="datetime"], .wy-control-group.fluid-input input[type="datetime-local"], .wy-control-group.fluid-input input[type="week"], .wy-control-group.fluid-input input[type="number"], .wy-control-group.fluid-input input[type="search"], .wy-control-group.fluid-input input[type="tel"], .wy-control-group.fluid-input input[type="color"] {
- width: 100%;
-}
-
-.wy-form-message-inline {
- display: inline-block;
- padding-left: 0.3em;
- color: #666;
- vertical-align: middle;
- font-size: 90%;
-}
-
-.wy-form-message {
- display: block;
- color: #999;
- font-size: 70%;
- margin-top: 0.3125em;
- font-style: italic;
-}
-.wy-form-message p {
- font-size: inherit;
- font-style: italic;
- margin-bottom: 6px;
-}
-.wy-form-message p:last-child {
- margin-bottom: 0;
-}
-
-input {
- line-height: normal;
-}
-
-input[type="button"], input[type="reset"], input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
- *overflow: visible;
-}
-input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"] {
- -webkit-appearance: none;
- padding: 6px;
- display: inline-block;
- border: 1px solid #ccc;
- font-size: 80%;
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
- box-shadow: inset 0 1px 3px #ddd;
- border-radius: 0;
- -webkit-transition: border 0.3s linear;
- -moz-transition: border 0.3s linear;
- transition: border 0.3s linear;
-}
-input[type="datetime-local"] {
- padding: 0.34375em 0.625em;
-}
-input[disabled] {
- cursor: default;
-}
-input[type="checkbox"], input[type="radio"] {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- padding: 0;
- margin-right: 0.3125em;
- *height: 13px;
- *width: 13px;
-}
-input[type="search"] {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
- outline: 0;
- outline: thin dotted \9;
- border-color: #333;
-}
-input.no-focus:focus {
- border-color: #ccc !important;
-}
-input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
- outline: thin dotted #333;
- outline: 1px auto #129FEA;
-}
-input[type="text"][disabled], input[type="password"][disabled], input[type="email"][disabled], input[type="url"][disabled], input[type="date"][disabled], input[type="month"][disabled], input[type="time"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled], input[type="week"][disabled], input[type="number"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="color"][disabled] {
- cursor: not-allowed;
- background-color: #fafafa;
-}
-
-input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
- color: #E74C3C;
- border: 1px solid #E74C3C;
-}
-
-input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus {
- border-color: #E74C3C;
-}
-
-input[type="file"]:focus:invalid:focus, input[type="radio"]:focus:invalid:focus, input[type="checkbox"]:focus:invalid:focus {
- outline-color: #E74C3C;
-}
-
-input.wy-input-large {
- padding: 12px;
- font-size: 100%;
-}
-
-textarea {
- overflow: auto;
- vertical-align: top;
- width: 100%;
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
-}
-
-select, textarea {
- padding: 0.5em 0.625em;
- display: inline-block;
- border: 1px solid #ccc;
- font-size: 80%;
- box-shadow: inset 0 1px 3px #ddd;
- -webkit-transition: border 0.3s linear;
- -moz-transition: border 0.3s linear;
- transition: border 0.3s linear;
-}
-
-select {
- border: 1px solid #ccc;
- background-color: #fff;
-}
-select[multiple] {
- height: auto;
-}
-
-select:focus, textarea:focus {
- outline: 0;
-}
-
-select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
- cursor: not-allowed;
- background-color: #fafafa;
-}
-
-input[type="radio"][disabled], input[type="checkbox"][disabled] {
- cursor: not-allowed;
-}
-
-.wy-checkbox, .wy-radio {
- margin: 6px 0;
- color: #404040;
- display: block;
-}
-.wy-checkbox input, .wy-radio input {
- vertical-align: baseline;
-}
-
-.wy-form-message-inline {
- display: inline-block;
- *display: inline;
- *zoom: 1;
- vertical-align: middle;
-}
-
-.wy-input-prefix, .wy-input-suffix {
- white-space: nowrap;
- padding: 6px;
-}
-.wy-input-prefix .wy-input-context, .wy-input-suffix .wy-input-context {
- line-height: 27px;
- padding: 0 8px;
- display: inline-block;
- font-size: 80%;
- background-color: #f3f6f6;
- border: solid 1px #ccc;
- color: #999;
-}
-
-.wy-input-suffix .wy-input-context {
- border-left: 0;
-}
-
-.wy-input-prefix .wy-input-context {
- border-right: 0;
-}
-
-.wy-switch {
- width: 36px;
- height: 12px;
- margin: 12px 0;
- position: relative;
- border-radius: 4px;
- background: #ccc;
- cursor: pointer;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wy-switch:before {
- position: absolute;
- content: "";
- display: block;
- width: 18px;
- height: 18px;
- border-radius: 4px;
- background: #999;
- left: -3px;
- top: -3px;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wy-switch:after {
- content: "false";
- position: absolute;
- left: 48px;
- display: block;
- font-size: 12px;
- color: #ccc;
-}
-
-.wy-switch.active {
- background: #1e8449;
-}
-.wy-switch.active:before {
- left: 24px;
- background: #27AE60;
-}
-.wy-switch.active:after {
- content: "true";
-}
-
-.wy-switch.disabled, .wy-switch.active.disabled {
- cursor: not-allowed;
-}
-
-.wy-control-group.wy-control-group-error .wy-form-message, .wy-control-group.wy-control-group-error > label {
- color: #E74C3C;
-}
-.wy-control-group.wy-control-group-error input[type="text"], .wy-control-group.wy-control-group-error input[type="password"], .wy-control-group.wy-control-group-error input[type="email"], .wy-control-group.wy-control-group-error input[type="url"], .wy-control-group.wy-control-group-error input[type="date"], .wy-control-group.wy-control-group-error input[type="month"], .wy-control-group.wy-control-group-error input[type="time"], .wy-control-group.wy-control-group-error input[type="datetime"], .wy-control-group.wy-control-group-error input[type="datetime-local"], .wy-control-group.wy-control-group-error input[type="week"], .wy-control-group.wy-control-group-error input[type="number"], .wy-control-group.wy-control-group-error input[type="search"], .wy-control-group.wy-control-group-error input[type="tel"], .wy-control-group.wy-control-group-error input[type="color"] {
- border: solid 1px #E74C3C;
-}
-.wy-control-group.wy-control-group-error textarea {
- border: solid 1px #E74C3C;
-}
-
-.wy-inline-validate {
- white-space: nowrap;
-}
-.wy-inline-validate .wy-input-context {
- padding: 0.5em 0.625em;
- display: inline-block;
- font-size: 80%;
-}
-
-.wy-inline-validate.wy-inline-validate-success .wy-input-context {
- color: #27AE60;
-}
-
-.wy-inline-validate.wy-inline-validate-danger .wy-input-context {
- color: #E74C3C;
-}
-
-.wy-inline-validate.wy-inline-validate-warning .wy-input-context {
- color: #E67E22;
-}
-
-.wy-inline-validate.wy-inline-validate-info .wy-input-context {
- color: #2980B9;
-}
-
-.rotate-90 {
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-
-.rotate-180 {
- -webkit-transform: rotate(180deg);
- -moz-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-
-.rotate-270 {
- -webkit-transform: rotate(270deg);
- -moz-transform: rotate(270deg);
- -ms-transform: rotate(270deg);
- -o-transform: rotate(270deg);
- transform: rotate(270deg);
-}
-
-.mirror {
- -webkit-transform: scaleX(-1);
- -moz-transform: scaleX(-1);
- -ms-transform: scaleX(-1);
- -o-transform: scaleX(-1);
- transform: scaleX(-1);
-}
-.mirror.rotate-90 {
- -webkit-transform: scaleX(-1) rotate(90deg);
- -moz-transform: scaleX(-1) rotate(90deg);
- -ms-transform: scaleX(-1) rotate(90deg);
- -o-transform: scaleX(-1) rotate(90deg);
- transform: scaleX(-1) rotate(90deg);
-}
-.mirror.rotate-180 {
- -webkit-transform: scaleX(-1) rotate(180deg);
- -moz-transform: scaleX(-1) rotate(180deg);
- -ms-transform: scaleX(-1) rotate(180deg);
- -o-transform: scaleX(-1) rotate(180deg);
- transform: scaleX(-1) rotate(180deg);
-}
-.mirror.rotate-270 {
- -webkit-transform: scaleX(-1) rotate(270deg);
- -moz-transform: scaleX(-1) rotate(270deg);
- -ms-transform: scaleX(-1) rotate(270deg);
- -o-transform: scaleX(-1) rotate(270deg);
- transform: scaleX(-1) rotate(270deg);
-}
-
-@media only screen and (max-width: 480px) {
- .wy-form button[type="submit"] {
- margin: 0.7em 0 0;
- }
- .wy-form input[type="text"], .wy-form input[type="password"], .wy-form input[type="email"], .wy-form input[type="url"], .wy-form input[type="date"], .wy-form input[type="month"], .wy-form input[type="time"], .wy-form input[type="datetime"], .wy-form input[type="datetime-local"], .wy-form input[type="week"], .wy-form input[type="number"], .wy-form input[type="search"], .wy-form input[type="tel"], .wy-form input[type="color"] {
- margin-bottom: 0.3em;
- display: block;
- }
- .wy-form label {
- margin-bottom: 0.3em;
- display: block;
- }
-
- .wy-form input[type="password"], .wy-form input[type="email"], .wy-form input[type="url"], .wy-form input[type="date"], .wy-form input[type="month"], .wy-form input[type="time"], .wy-form input[type="datetime"], .wy-form input[type="datetime-local"], .wy-form input[type="week"], .wy-form input[type="number"], .wy-form input[type="search"], .wy-form input[type="tel"], .wy-form input[type="color"] {
- margin-bottom: 0;
- }
-
- .wy-form-aligned .wy-control-group label {
- margin-bottom: 0.3em;
- text-align: left;
- display: block;
- width: 100%;
- }
- .wy-form-aligned .wy-control {
- margin: 1.5em 0 0 0;
- }
-
- .wy-form .wy-help-inline, .wy-form-message-inline, .wy-form-message {
- display: block;
- font-size: 80%;
- padding: 6px 0;
- }
-}
-@media screen and (max-width: 768px) {
- .tablet-hide {
- display: none;
- }
-}
-
-@media screen and (max-width: 480px) {
- .mobile-hide {
- display: none;
- }
-}
-
-.float-left {
- float: left;
-}
-
-.float-right {
- float: right;
-}
-
-.full-width {
- width: 100%;
-}
-
-.wy-table, .rst-content table.docutils, .rst-content table.field-list {
- border-collapse: collapse;
- border-spacing: 0;
- empty-cells: show;
- margin-bottom: 24px;
-}
-.wy-table caption, .rst-content table.docutils caption, .rst-content table.field-list caption {
- color: #000;
- font: italic 85%/1 arial, sans-serif;
- padding: 1em 0;
- text-align: center;
-}
-.wy-table td, .rst-content table.docutils td, .rst-content table.field-list td, .wy-table th, .rst-content table.docutils th, .rst-content table.field-list th {
- font-size: 90%;
- margin: 0;
- overflow: visible;
- padding: 4px;
-}
-.wy-table td:first-child, .rst-content table.docutils td:first-child, .rst-content table.field-list td:first-child, .wy-table th:first-child, .rst-content table.docutils th:first-child, .rst-content table.field-list th:first-child {
- border-left-width: 0;
-}
-.wy-table thead, .rst-content table.docutils thead, .rst-content table.field-list thead {
- color: #000;
- text-align: left;
- vertical-align: bottom;
- white-space: nowrap;
-}
-.wy-table thead th, .rst-content table.docutils thead th, .rst-content table.field-list thead th {
- font-weight: bold;
- border-bottom: solid 2px #e1e4e5;
-}
-.wy-table td, .rst-content table.docutils td, .rst-content table.field-list td {
- background-color: transparent;
- vertical-align: middle;
-}
-
-.wy-table td p, .rst-content table.docutils td p, .rst-content table.field-list td p {
- line-height: 18px;
-}
-.wy-table td p:last-child, .rst-content table.docutils td p:last-child, .rst-content table.field-list td p:last-child {
- margin-bottom: 0;
-}
-
-.wy-table .wy-table-cell-min, .rst-content table.docutils .wy-table-cell-min, .rst-content table.field-list .wy-table-cell-min {
- width: 1%;
- padding-right: 0;
-}
-.wy-table .wy-table-cell-min input[type=checkbox], .rst-content table.docutils .wy-table-cell-min input[type=checkbox], .rst-content table.field-list .wy-table-cell-min input[type=checkbox], .wy-table .wy-table-cell-min input[type=checkbox], .rst-content table.docutils .wy-table-cell-min input[type=checkbox], .rst-content table.field-list .wy-table-cell-min input[type=checkbox] {
- margin: 0;
-}
-
-.wy-table-secondary {
- color: gray;
- font-size: 90%;
-}
-
-.wy-table-tertiary {
- color: gray;
- font-size: 80%;
-}
-
-.wy-table-odd td, .wy-table-striped tr:nth-child(2n-1) td, .rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td {
- background-color: #f3f6f6;
-}
-
-.wy-table-backed {
- background-color: #f3f6f6;
-}
-
-/* BORDERED TABLES */
-.wy-table-bordered-all, .rst-content table.docutils {
- border: 1px solid #black;
-}
-.wy-table-bordered-all td, .rst-content table.docutils td {
- border-bottom: 1px solid black;
- border-left: 1px solid black;
-}
-.wy-table-bordered-all tbody > tr:last-child td, .rst-content table.docutils tbody > tr:last-child td {
- border-bottom-width: 0;
-}
-
-.wy-table-bordered {
- border: 1px solid #e1e4e5;
-}
-
-.wy-table-bordered-rows td {
- border-bottom: 1px solid #e1e4e5;
-}
-.wy-table-bordered-rows tbody > tr:last-child td {
- border-bottom-width: 0;
-}
-
-.wy-table-horizontal tbody > tr:last-child td {
- border-bottom-width: 0;
-}
-.wy-table-horizontal td, .wy-table-horizontal th {
- border-width: 0 0 1px 0;
- border-bottom: 1px solid #e1e4e5;
-}
-.wy-table-horizontal tbody > tr:last-child td {
- border-bottom-width: 0;
-}
-
-/* RESPONSIVE TABLES */
-.wy-table-responsive {
- margin-bottom: 24px;
- max-width: 100%;
- overflow: auto;
-}
-.wy-table-responsive table {
- margin-bottom: 0 !important;
-}
-.wy-table-responsive table td, .wy-table-responsive table th {
- white-space: nowrap;
-}
-
-a {
- color: #2980B9;
- text-decoration: none;
- cursor: pointer;
-}
-a:hover {
- color: #3091d1;
-}
-a:visited {
- color: #9B59B6;
-}
-
-html {
- height: 100%;
- overflow-x: hidden;
-}
-
-body {
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
- font-weight: normal;
- color: #404040;
- min-height: 100%;
- overflow-x: hidden;
- background: #edf0f2;
-}
-
-.wy-text-left {
- text-align: left;
-}
-
-.wy-text-center {
- text-align: center;
-}
-
-.wy-text-right {
- text-align: right;
-}
-
-.wy-text-large {
- font-size: 120%;
-}
-
-.wy-text-normal {
- font-size: 100%;
-}
-
-.wy-text-small, small {
- font-size: 80%;
-}
-
-.wy-text-strike {
- text-decoration: line-through;
-}
-
-.wy-text-warning {
- color: #E67E22 !important;
-}
-
-a.wy-text-warning:hover {
- color: #eb9950 !important;
-}
-
-.wy-text-info {
- color: #2980B9 !important;
-}
-
-a.wy-text-info:hover {
- color: #409ad5 !important;
-}
-
-.wy-text-success {
- color: #27AE60 !important;
-}
-
-a.wy-text-success:hover {
- color: #36d278 !important;
-}
-
-.wy-text-danger {
- color: #E74C3C !important;
-}
-
-a.wy-text-danger:hover {
- color: #ed7669 !important;
-}
-
-.wy-text-neutral {
- color: #404040 !important;
-}
-
-a.wy-text-neutral:hover {
- color: #595959 !important;
-}
-
-h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend {
- margin-top: 0;
- font-weight: 700;
- font-family: "Roboto Slab", "ff-tisa-web-pro", "Georgia", Arial, sans-serif;
-}
-
-p {
- line-height: 24px;
- margin: 0;
- font-size: 16px;
- margin-bottom: 24px;
-}
-
-h1 {
- font-size: 175%;
-}
-
-h2, .rst-content .toctree-wrapper p.caption {
- font-size: 150%;
-}
-
-h3 {
- font-size: 125%;
-}
-
-h4 {
- font-size: 115%;
-}
-
-h5 {
- font-size: 110%;
-}
-
-h6 {
- font-size: 100%;
-}
-
-hr {
- display: block;
- border-top: 2px solid #8c8b8b;
- border-bottom: 2px solid #fff;
- margin: 24px 0;
- padding: 0;
-}
-
-code, .rst-content tt, .rst-content code {
- white-space: nowrap;
- max-width: 100%;
- background: #fff;
- border: solid 1px #e1e4e5;
- font-size: 75%;
- padding: 0 5px;
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
- color: #E74C3C;
- overflow-x: auto;
-}
-code.code-large, .rst-content tt.code-large {
- font-size: 90%;
-}
-
-.wy-plain-list-disc, .rst-content .section ul, .rst-content .toctree-wrapper ul, article ul {
- list-style: disc;
- line-height: 24px;
- margin-bottom: 24px;
-}
-.wy-plain-list-disc li, .rst-content .section ul li, .rst-content .toctree-wrapper ul li, article ul li {
- list-style: disc;
- margin-left: 24px;
-}
-.wy-plain-list-disc li p:last-child, .rst-content .section ul li p:last-child, .rst-content .toctree-wrapper ul li p:last-child, article ul li p:last-child {
- margin-bottom: 0;
-}
-.wy-plain-list-disc li ul, .rst-content .section ul li ul, .rst-content .toctree-wrapper ul li ul, article ul li ul {
- margin-bottom: 0;
-}
-.wy-plain-list-disc li li, .rst-content .section ul li li, .rst-content .toctree-wrapper ul li li, article ul li li {
- list-style: circle;
-}
-.wy-plain-list-disc li li li, .rst-content .section ul li li li, .rst-content .toctree-wrapper ul li li li, article ul li li li {
- list-style: square;
-}
-.wy-plain-list-disc li ol li, .rst-content .section ul li ol li, .rst-content .toctree-wrapper ul li ol li, article ul li ol li {
- list-style: decimal;
-}
-
-.wy-plain-list-decimal, .rst-content .section ol, .rst-content ol.arabic, article ol {
- list-style: decimal;
- line-height: 24px;
- margin-bottom: 24px;
-}
-.wy-plain-list-decimal li, .rst-content .section ol li, .rst-content ol.arabic li, article ol li {
- list-style: decimal;
- margin-left: 24px;
-}
-.wy-plain-list-decimal li p:last-child, .rst-content .section ol li p:last-child, .rst-content ol.arabic li p:last-child, article ol li p:last-child {
- margin-bottom: 0;
-}
-.wy-plain-list-decimal li ul, .rst-content .section ol li ul, .rst-content ol.arabic li ul, article ol li ul {
- margin-bottom: 0;
-}
-.wy-plain-list-decimal li ul li, .rst-content .section ol li ul li, .rst-content ol.arabic li ul li, article ol li ul li {
- list-style: disc;
-}
-
-.codeblock-example {
- border: 1px solid #e1e4e5;
- border-bottom: none;
- padding: 24px;
- padding-top: 48px;
- font-weight: 500;
- background: #fff;
- position: relative;
-}
-.codeblock-example:after {
- content: "Example";
- position: absolute;
- top: 0px;
- left: 0px;
- background: #9B59B6;
- color: white;
- padding: 6px 12px;
-}
-.codeblock-example.prettyprint-example-only {
- border: 1px solid #e1e4e5;
- margin-bottom: 24px;
-}
-
-.codeblock, pre.literal-block, .rst-content .literal-block, .rst-content pre.literal-block, div[class^='highlight'] {
- border: 1px solid #e1e4e5;
- padding: 0px;
- overflow-x: auto;
- background: #fff;
- margin: 1px 0 24px 0;
-}
-.codeblock div[class^='highlight'], pre.literal-block div[class^='highlight'], .rst-content .literal-block div[class^='highlight'], div[class^='highlight'] div[class^='highlight'] {
- border: none;
- background: none;
- margin: 0;
-}
-
-div[class^='highlight'] td.code {
- width: 100%;
-}
-
-.linenodiv pre {
- border-right: solid 1px #e6e9ea;
- margin: 0;
- padding: 12px 12px;
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
- font-size: 12px;
- line-height: 1.5;
- color: #d9d9d9;
-}
-
-div[class^='highlight'] pre {
- white-space: pre;
- margin: 0;
- padding: 12px 12px;
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
- font-size: 12px;
- line-height: 1.5;
- display: block;
- overflow: auto;
- color: #404040;
-}
-
-@media print {
- .codeblock, pre.literal-block, .rst-content .literal-block, .rst-content pre.literal-block, div[class^='highlight'], div[class^='highlight'] pre {
- white-space: pre-wrap;
- }
-}
-.hll {
- background-color: #ffffcc;
- margin: 0 -12px;
- padding: 0 12px;
- display: block;
-}
-
-.c {
- color: #999988;
- font-style: italic;
-}
-
-.err {
- color: #a61717;
- background-color: #e3d2d2;
-}
-
-.k {
- font-weight: bold;
-}
-
-.o {
- font-weight: bold;
-}
-
-.cm {
- color: #999988;
- font-style: italic;
-}
-
-.cp {
- color: #999999;
- font-weight: bold;
-}
-
-.c1 {
- color: #999988;
- font-style: italic;
-}
-
-.cs {
- color: #999999;
- font-weight: bold;
- font-style: italic;
-}
-
-.gd {
- color: #000000;
- background-color: #ffdddd;
-}
-
-.gd .x {
- color: #000000;
- background-color: #ffaaaa;
-}
-
-.ge {
- font-style: italic;
-}
-
-.gr {
- color: #aa0000;
-}
-
-.gh {
- color: #999999;
-}
-
-.gi {
- color: #000000;
- background-color: #ddffdd;
-}
-
-.gi .x {
- color: #000000;
- background-color: #aaffaa;
-}
-
-.go {
- color: #888888;
-}
-
-.gp {
- color: #555555;
-}
-
-.gs {
- font-weight: bold;
-}
-
-.gu {
- color: #800080;
- font-weight: bold;
-}
-
-.gt {
- color: #aa0000;
-}
-
-.kc {
- font-weight: bold;
-}
-
-.kd {
- font-weight: bold;
-}
-
-.kn {
- font-weight: bold;
-}
-
-.kp {
- font-weight: bold;
-}
-
-.kr {
- font-weight: bold;
-}
-
-.kt {
- color: #445588;
- font-weight: bold;
-}
-
-.m {
- color: #009999;
-}
-
-.s {
- color: #dd1144;
-}
-
-.n {
- color: #333333;
-}
-
-.na {
- color: teal;
-}
-
-.nb {
- color: #0086b3;
-}
-
-.nc {
- color: #445588;
- font-weight: bold;
-}
-
-.no {
- color: teal;
-}
-
-.ni {
- color: purple;
-}
-
-.ne {
- color: #990000;
- font-weight: bold;
-}
-
-.nf {
- color: #990000;
- font-weight: bold;
-}
-
-.nn {
- color: #555555;
-}
-
-.nt {
- color: navy;
-}
-
-.nv {
- color: teal;
-}
-
-.ow {
- font-weight: bold;
-}
-
-.w {
- color: #bbbbbb;
-}
-
-.mf {
- color: #009999;
-}
-
-.mh {
- color: #009999;
-}
-
-.mi {
- color: #009999;
-}
-
-.mo {
- color: #009999;
-}
-
-.sb {
- color: #dd1144;
-}
-
-.sc {
- color: #dd1144;
-}
-
-.sd {
- color: #dd1144;
-}
-
-.s2 {
- color: #dd1144;
-}
-
-.se {
- color: #dd1144;
-}
-
-.sh {
- color: #dd1144;
-}
-
-.si {
- color: #dd1144;
-}
-
-.sx {
- color: #dd1144;
-}
-
-.sr {
- color: #009926;
-}
-
-.s1 {
- color: #dd1144;
-}
-
-.ss {
- color: #990073;
-}
-
-.bp {
- color: #999999;
-}
-
-.vc {
- color: teal;
-}
-
-.vg {
- color: teal;
-}
-
-.vi {
- color: teal;
-}
-
-.il {
- color: #009999;
-}
-
-.gc {
- color: #999;
- background-color: #EAF2F5;
-}
-
-.wy-breadcrumbs li {
- display: inline-block;
-}
-.wy-breadcrumbs li.wy-breadcrumbs-aside {
- float: right;
-}
-.wy-breadcrumbs li a {
- display: inline-block;
- padding: 5px;
-}
-.wy-breadcrumbs li a:first-child {
- padding-left: 0;
-}
-.wy-breadcrumbs li code, .wy-breadcrumbs li .rst-content tt, .rst-content .wy-breadcrumbs li tt {
- padding: 5px;
- border: none;
- background: none;
-}
-.wy-breadcrumbs li code.literal, .wy-breadcrumbs li .rst-content tt.literal, .rst-content .wy-breadcrumbs li tt.literal {
- color: #404040;
-}
-
-.wy-breadcrumbs-extra {
- margin-bottom: 0;
- color: #b3b3b3;
- font-size: 80%;
- display: inline-block;
-}
-
-@media screen and (max-width: 480px) {
- .wy-breadcrumbs-extra {
- display: none;
- }
-
- .wy-breadcrumbs li.wy-breadcrumbs-aside {
- display: none;
- }
-}
-@media print {
- .wy-breadcrumbs li.wy-breadcrumbs-aside {
- display: none;
- }
-}
-.wy-affix {
- position: fixed;
- top: 1.618em;
-}
-
-.wy-menu a:hover {
- text-decoration: none;
-}
-
-.wy-menu-horiz {
- *zoom: 1;
-}
-.wy-menu-horiz:before, .wy-menu-horiz:after {
- display: table;
- content: "";
-}
-.wy-menu-horiz:after {
- clear: both;
-}
-.wy-menu-horiz ul, .wy-menu-horiz li {
- display: inline-block;
-}
-.wy-menu-horiz li:hover {
- background: rgba(255, 255, 255, 0.1);
-}
-.wy-menu-horiz li.divide-left {
- border-left: solid 1px #404040;
-}
-.wy-menu-horiz li.divide-right {
- border-right: solid 1px #404040;
-}
-.wy-menu-horiz a {
- height: 32px;
- display: inline-block;
- line-height: 32px;
- padding: 0 16px;
-}
-
-.wy-menu-vertical header, .wy-menu-vertical p.caption {
- height: 32px;
- display: inline-block;
- line-height: 32px;
- padding: 0 1.618em;
- margin-bottom: 0;
- display: block;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 80%;
- color: #555;
- white-space: nowrap;
-}
-.wy-menu-vertical ul {
- margin-bottom: 0;
-}
-.wy-menu-vertical li.divide-top {
- border-top: solid 1px #404040;
-}
-.wy-menu-vertical li.divide-bottom {
- border-bottom: solid 1px #404040;
-}
-.wy-menu-vertical li.current {
- background: #e3e3e3;
-}
-.wy-menu-vertical li.current a {
- color: gray;
- border-right: solid 1px #c9c9c9;
- padding: 0.4045em 2.427em;
-}
-.wy-menu-vertical li.current a:hover {
- background: #d6d6d6;
-}
-.wy-menu-vertical li code, .wy-menu-vertical li .rst-content tt, .rst-content .wy-menu-vertical li tt {
- border: none;
- background: inherit;
- color: inherit;
- padding-left: 0;
- padding-right: 0;
-}
-.wy-menu-vertical li span.toctree-expand {
- display: block;
- float: left;
- margin-left: -1.2em;
- font-size: 0.8em;
- line-height: 1.6em;
- color: #4d4d4d;
-}
-.wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {
- color: #404040;
- padding: 0.4045em 1.618em;
- font-weight: bold;
- position: relative;
- background: #fcfcfc;
- border: none;
- border-bottom: solid 1px #c9c9c9;
- border-top: solid 1px #c9c9c9;
- padding-left: 1.618em -4px;
-}
-.wy-menu-vertical li.on a:hover, .wy-menu-vertical li.current > a:hover {
- background: #fcfcfc;
-}
-.wy-menu-vertical li.on a:hover span.toctree-expand, .wy-menu-vertical li.current > a:hover span.toctree-expand {
- color: gray;
-}
-.wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand {
- display: block;
- font-size: 0.8em;
- line-height: 1.6em;
- color: #333333;
-}
-.wy-menu-vertical li.toctree-l1.current li.toctree-l2 > ul, .wy-menu-vertical li.toctree-l2.current li.toctree-l3 > ul {
- display: none;
-}
-.wy-menu-vertical li.toctree-l1.current li.toctree-l2.current > ul, .wy-menu-vertical li.toctree-l2.current li.toctree-l3.current > ul {
- display: block;
-}
-.wy-menu-vertical li.toctree-l2.current > a {
- background: #c9c9c9;
- padding: 0.4045em 2.427em;
-}
-.wy-menu-vertical li.toctree-l2.current li.toctree-l3 > a {
- display: block;
- background: #c9c9c9;
- padding: 0.4045em 4.045em;
-}
-.wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand {
- color: gray;
-}
-.wy-menu-vertical li.toctree-l2 span.toctree-expand {
- color: #a3a3a3;
-}
-.wy-menu-vertical li.toctree-l3 {
- font-size: 0.9em;
-}
-.wy-menu-vertical li.toctree-l3.current > a {
- background: #bdbdbd;
- padding: 0.4045em 4.045em;
-}
-.wy-menu-vertical li.toctree-l3.current li.toctree-l4 > a {
- display: block;
- background: #bdbdbd;
- padding: 0.4045em 5.663em;
- border-top: none;
- border-bottom: none;
-}
-.wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand {
- color: gray;
-}
-.wy-menu-vertical li.toctree-l3 span.toctree-expand {
- color: #969696;
-}
-.wy-menu-vertical li.toctree-l4 {
- font-size: 0.9em;
-}
-.wy-menu-vertical li.current ul {
- display: block;
-}
-.wy-menu-vertical li ul {
- margin-bottom: 0;
- display: none;
-}
-.wy-menu-vertical .local-toc li ul {
- display: block;
-}
-.wy-menu-vertical li ul li a {
- margin-bottom: 0;
- color: #b3b3b3;
- font-weight: normal;
-}
-.wy-menu-vertical a {
- display: inline-block;
- line-height: 18px;
- padding: 0.4045em 1.618em;
- display: block;
- position: relative;
- font-size: 90%;
- color: #b3b3b3;
-}
-.wy-menu-vertical a:hover {
- background-color: #4e4a4a;
- cursor: pointer;
-}
-.wy-menu-vertical a:hover span.toctree-expand {
- color: #b3b3b3;
-}
-.wy-menu-vertical a:active {
- background-color: #2980B9;
- cursor: pointer;
- color: #fff;
-}
-.wy-menu-vertical a:active span.toctree-expand {
- color: #fff;
-}
-
-.wy-side-nav-search {
- z-index: 200;
- background-color: #2980B9;
- text-align: center;
- padding: 0.809em;
- display: block;
- color: #fcfcfc;
- margin-bottom: 0.809em;
-}
-.wy-side-nav-search input[type=text] {
- width: 100%;
- border-radius: 50px;
- padding: 6px 12px;
- border-color: #2472a4;
-}
-.wy-side-nav-search img {
- display: block;
- margin: auto auto 0.809em auto;
- height: 45px;
- width: 45px;
- background-color: #2980B9;
- padding: 5px;
- border-radius: 100%;
-}
-.wy-side-nav-search > a, .wy-side-nav-search .wy-dropdown > a {
- color: #fcfcfc;
- font-size: 100%;
- font-weight: bold;
- display: inline-block;
- padding: 4px 6px;
- margin-bottom: 0.809em;
-}
-.wy-side-nav-search > a:hover, .wy-side-nav-search .wy-dropdown > a:hover {
- background: rgba(255, 255, 255, 0.1);
-}
-.wy-side-nav-search > a img.logo, .wy-side-nav-search .wy-dropdown > a img.logo {
- display: block;
- margin: 0 auto;
- height: auto;
- width: auto;
- border-radius: 0;
- max-width: 100%;
- background: transparent;
-}
-.wy-side-nav-search > a.icon img.logo, .wy-side-nav-search .wy-dropdown > a.icon img.logo {
- margin-top: 0.85em;
-}
-.wy-side-nav-search > div.version {
- margin-top: -0.4045em;
- margin-bottom: 0.809em;
- font-weight: normal;
- color: rgba(255, 255, 255, 0.3);
-}
-
-.wy-nav .wy-menu-vertical header {
- color: #2980B9;
-}
-.wy-nav .wy-menu-vertical a {
- color: #b3b3b3;
-}
-.wy-nav .wy-menu-vertical a:hover {
- background-color: #2980B9;
- color: #fff;
-}
-
-[data-menu-wrap] {
- -webkit-transition: all 0.2s ease-in;
- -moz-transition: all 0.2s ease-in;
- transition: all 0.2s ease-in;
- position: absolute;
- opacity: 1;
- width: 100%;
- opacity: 0;
-}
-[data-menu-wrap].move-center {
- left: 0;
- right: auto;
- opacity: 1;
-}
-[data-menu-wrap].move-left {
- right: auto;
- left: -100%;
- opacity: 0;
-}
-[data-menu-wrap].move-right {
- right: -100%;
- left: auto;
- opacity: 0;
-}
-
-.wy-body-for-nav {
- background: left repeat-y #fcfcfc;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC);
- background-size: 300px 1px;
-}
-
-.wy-grid-for-nav {
- position: absolute;
- width: 100%;
- height: 100%;
-}
-
-.wy-nav-side {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- padding-bottom: 2em;
- width: 300px;
- overflow-x: hidden;
- overflow-y: scroll;
- min-height: 100%;
- background: #343131;
- z-index: 200;
-}
-
-.wy-nav-top {
- display: none;
- background: #2980B9;
- color: #fff;
- padding: 0.4045em 0.809em;
- position: relative;
- line-height: 50px;
- text-align: center;
- font-size: 100%;
- *zoom: 1;
-}
-.wy-nav-top:before, .wy-nav-top:after {
- display: table;
- content: "";
-}
-.wy-nav-top:after {
- clear: both;
-}
-.wy-nav-top a {
- color: #fff;
- font-weight: bold;
-}
-.wy-nav-top img {
- margin-right: 12px;
- height: 45px;
- width: 45px;
- background-color: #2980B9;
- padding: 5px;
- border-radius: 100%;
-}
-.wy-nav-top i {
- font-size: 30px;
- float: left;
- cursor: pointer;
-}
-
-.wy-nav-content-wrap {
- margin-left: 300px;
- background: #fcfcfc;
- min-height: 100%;
-}
-
-.wy-nav-content {
- padding: 1.618em 3.236em;
- height: 100%;
- margin: auto;
-}
-
-.wy-body-mask {
- position: fixed;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.2);
- display: none;
- z-index: 499;
-}
-.wy-body-mask.on {
- display: block;
-}
-
-footer {
- color: #999;
-}
-footer p {
- margin-bottom: 12px;
-}
-footer span.commit code, footer span.commit .rst-content tt, .rst-content footer span.commit tt {
- padding: 0px;
- font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
- font-size: 1em;
- background: none;
- border: none;
- color: #999;
-}
-
-.rst-footer-buttons {
- *zoom: 1;
-}
-.rst-footer-buttons:before, .rst-footer-buttons:after {
- display: table;
- content: "";
-}
-.rst-footer-buttons:after {
- clear: both;
-}
-
-#search-results .search li {
- margin-bottom: 24px;
- border-bottom: solid 1px #e1e4e5;
- padding-bottom: 24px;
-}
-#search-results .search li:first-child {
- border-top: solid 1px #e1e4e5;
- padding-top: 24px;
-}
-#search-results .search li a {
- font-size: 120%;
- margin-bottom: 12px;
- display: inline-block;
-}
-#search-results .context {
- color: gray;
- font-size: 90%;
-}
-
-@media screen and (max-width: 768px) {
- .wy-body-for-nav {
- background: #fcfcfc;
- }
-
- .wy-nav-top {
- display: block;
- }
-
- .wy-nav-side {
- left: -300px;
- }
- .wy-nav-side.shift {
- width: 85%;
- left: 0;
- }
-
- .wy-nav-content-wrap {
- margin-left: 0;
- }
- .wy-nav-content-wrap .wy-nav-content {
- padding: 1.618em;
- }
- .wy-nav-content-wrap.shift {
- position: fixed;
- min-width: 100%;
- left: 85%;
- top: 0;
- height: 100%;
- overflow: hidden;
- }
-}
-@media screen and (min-width: 1400px) {
- .wy-nav-content-wrap {
- background: rgba(0, 0, 0, 0.05);
- }
-
- .wy-nav-content {
- margin: 0;
- background: #fcfcfc;
- }
-}
-@media print {
- .rst-versions, footer, .wy-nav-side {
- display: none;
- }
-
- .wy-nav-content-wrap {
- margin-left: 0;
- }
-}
-.rst-versions {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 300px;
- color: #fcfcfc;
- background: #1f1d1d;
- border-top: solid 10px #343131;
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
- z-index: 400;
-}
-.rst-versions a {
- color: #2980B9;
- text-decoration: none;
-}
-.rst-versions .rst-badge-small {
- display: none;
-}
-.rst-versions .rst-current-version {
- padding: 12px;
- background-color: #272525;
- display: block;
- text-align: right;
- font-size: 90%;
- cursor: pointer;
- color: #27AE60;
- *zoom: 1;
-}
-.rst-versions .rst-current-version:before, .rst-versions .rst-current-version:after {
- display: table;
- content: "";
-}
-.rst-versions .rst-current-version:after {
- clear: both;
-}
-.rst-versions .rst-current-version .fa, .rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand, .rst-versions .rst-current-version .rst-content .admonition-title, .rst-content .rst-versions .rst-current-version .admonition-title, .rst-versions .rst-current-version .rst-content h1 .headerlink, .rst-content h1 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h2 .headerlink, .rst-content h2 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h3 .headerlink, .rst-content h3 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h4 .headerlink, .rst-content h4 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h5 .headerlink, .rst-content h5 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h6 .headerlink, .rst-content h6 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content dl dt .headerlink, .rst-content dl dt .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content p.caption .headerlink, .rst-content p.caption .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content tt.download span:first-child, .rst-content tt.download .rst-versions .rst-current-version span:first-child, .rst-versions .rst-current-version .rst-content code.download span:first-child, .rst-content code.download .rst-versions .rst-current-version span:first-child, .rst-versions .rst-current-version .icon {
- color: #fcfcfc;
-}
-.rst-versions .rst-current-version .fa-book, .rst-versions .rst-current-version .icon-book {
- float: left;
-}
-.rst-versions .rst-current-version .icon-book {
- float: left;
-}
-.rst-versions .rst-current-version.rst-out-of-date {
- background-color: #E74C3C;
- color: #fff;
-}
-.rst-versions .rst-current-version.rst-active-old-version {
- background-color: #F1C40F;
- color: #000;
-}
-.rst-versions.shift-up .rst-other-versions {
- display: block;
-}
-.rst-versions .rst-other-versions {
- font-size: 90%;
- padding: 12px;
- color: gray;
- display: none;
-}
-.rst-versions .rst-other-versions hr {
- display: block;
- height: 1px;
- border: 0;
- margin: 20px 0;
- padding: 0;
- border-top: solid 1px #413d3d;
-}
-.rst-versions .rst-other-versions dd {
- display: inline-block;
- margin: 0;
-}
-.rst-versions .rst-other-versions dd a {
- display: inline-block;
- padding: 6px;
- color: #fcfcfc;
-}
-.rst-versions.rst-badge {
- width: auto;
- bottom: 20px;
- right: 20px;
- left: auto;
- border: none;
- max-width: 300px;
-}
-.rst-versions.rst-badge .icon-book {
- float: none;
-}
-.rst-versions.rst-badge .fa-book, .rst-versions.rst-badge .icon-book {
- float: none;
-}
-.rst-versions.rst-badge.shift-up .rst-current-version {
- text-align: right;
-}
-.rst-versions.rst-badge.shift-up .rst-current-version .fa-book, .rst-versions.rst-badge.shift-up .rst-current-version .icon-book {
- float: left;
-}
-.rst-versions.rst-badge.shift-up .rst-current-version .icon-book {
- float: left;
-}
-.rst-versions.rst-badge .rst-current-version {
- width: auto;
- height: 30px;
- line-height: 30px;
- padding: 0 6px;
- display: block;
- text-align: center;
-}
-
-@media screen and (max-width: 768px) {
- .rst-versions {
- width: 85%;
- display: none;
- }
- .rst-versions.shift {
- display: block;
- }
-
- img {
- width: 100%;
- height: auto;
- }
-}
-.rst-content img {
- max-width: 100%;
- height: auto !important;
-}
-.rst-content div.figure {
- margin-bottom: 24px;
-}
-.rst-content div.figure p.caption {
- font-style: italic;
-}
-.rst-content div.figure.align-center {
- text-align: center;
-}
-.rst-content .section > img, .rst-content .section > a > img {
- margin-bottom: 24px;
-}
-.rst-content blockquote {
- margin-left: 24px;
- line-height: 24px;
- margin-bottom: 24px;
-}
-.rst-content .note .last, .rst-content .attention .last, .rst-content .caution .last, .rst-content .danger .last, .rst-content .error .last, .rst-content .hint .last, .rst-content .important .last, .rst-content .tip .last, .rst-content .warning .last, .rst-content .seealso .last, .rst-content .admonition-todo .last {
- margin-bottom: 0;
-}
-.rst-content .admonition-title:before {
- margin-right: 4px;
-}
-.rst-content .admonition table {
- border-color: rgba(0, 0, 0, 0.1);
-}
-.rst-content .admonition table td, .rst-content .admonition table th {
- background: transparent !important;
- border-color: rgba(0, 0, 0, 0.1) !important;
-}
-.rst-content .section ol.loweralpha, .rst-content .section ol.loweralpha li {
- list-style: lower-alpha;
-}
-.rst-content .section ol.upperalpha, .rst-content .section ol.upperalpha li {
- list-style: upper-alpha;
-}
-.rst-content .section ol p, .rst-content .section ul p {
- margin-bottom: 12px;
-}
-.rst-content .line-block {
- margin-left: 24px;
-}
-.rst-content .topic-title {
- font-weight: bold;
- margin-bottom: 12px;
-}
-.rst-content .toc-backref {
- color: #404040;
-}
-.rst-content .align-right {
- float: right;
- margin: 0px 0px 24px 24px;
-}
-.rst-content .align-left {
- float: left;
- margin: 0px 24px 24px 0px;
-}
-.rst-content .align-center {
- margin: auto;
- display: block;
-}
-.rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content .toctree-wrapper p.caption .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink, .rst-content p.caption .headerlink {
- display: none;
- visibility: hidden;
- font-size: 14px;
-}
-.rst-content h1 .headerlink:after, .rst-content h2 .headerlink:after, .rst-content .toctree-wrapper p.caption .headerlink:after, .rst-content h3 .headerlink:after, .rst-content h4 .headerlink:after, .rst-content h5 .headerlink:after, .rst-content h6 .headerlink:after, .rst-content dl dt .headerlink:after, .rst-content p.caption .headerlink:after {
- visibility: visible;
- content: "";
- font-family: FontAwesome;
- display: inline-block;
-}
-.rst-content h1:hover .headerlink, .rst-content h2:hover .headerlink, .rst-content .toctree-wrapper p.caption:hover .headerlink, .rst-content h3:hover .headerlink, .rst-content h4:hover .headerlink, .rst-content h5:hover .headerlink, .rst-content h6:hover .headerlink, .rst-content dl dt:hover .headerlink, .rst-content p.caption:hover .headerlink {
- display: inline-block;
-}
-.rst-content .sidebar {
- float: right;
- width: 40%;
- display: block;
- margin: 0 0 24px 24px;
- padding: 24px;
- background: #f3f6f6;
- border: solid 1px #e1e4e5;
-}
-.rst-content .sidebar p, .rst-content .sidebar ul, .rst-content .sidebar dl {
- font-size: 90%;
-}
-.rst-content .sidebar .last {
- margin-bottom: 0;
-}
-.rst-content .sidebar .sidebar-title {
- display: block;
- font-family: "Roboto Slab", "ff-tisa-web-pro", "Georgia", Arial, sans-serif;
- font-weight: bold;
- background: #e1e4e5;
- padding: 6px 12px;
- margin: -24px;
- margin-bottom: 24px;
- font-size: 100%;
-}
-.rst-content .highlighted {
- background: #F1C40F;
- display: inline-block;
- font-weight: bold;
- padding: 0 6px;
-}
-.rst-content .footnote-reference, .rst-content .citation-reference {
- vertical-align: super;
- font-size: 90%;
-}
-.rst-content table.docutils.citation, .rst-content table.docutils.footnote {
- background: none;
- border: none;
- color: #999;
-}
-.rst-content table.docutils.citation td, .rst-content table.docutils.citation tr, .rst-content table.docutils.footnote td, .rst-content table.docutils.footnote tr {
- border: none;
- background-color: transparent !important;
- white-space: normal;
-}
-.rst-content table.docutils.citation td.label, .rst-content table.docutils.footnote td.label {
- padding-left: 0;
- padding-right: 0;
- vertical-align: top;
-}
-.rst-content table.docutils.citation tt, .rst-content table.docutils.citation code, .rst-content table.docutils.footnote tt, .rst-content table.docutils.footnote code {
- color: #555;
-}
-.rst-content table.field-list {
- border: none;
-}
-.rst-content table.field-list td {
- border: none;
- padding-top: 5px;
-}
-.rst-content table.field-list td > strong {
- display: inline-block;
- margin-top: 3px;
-}
-.rst-content table.field-list .field-name {
- padding-right: 10px;
- text-align: left;
- white-space: nowrap;
-}
-.rst-content table.field-list .field-body {
- text-align: left;
- padding-left: 0;
-}
-.rst-content tt, .rst-content tt, .rst-content code {
- color: #000;
-}
-.rst-content tt big, .rst-content tt em, .rst-content tt big, .rst-content code big, .rst-content tt em, .rst-content code em {
- font-size: 100% !important;
- line-height: normal;
-}
-.rst-content tt.literal, .rst-content tt.literal, .rst-content code.literal {
- color: #E74C3C;
-}
-.rst-content tt.xref, a .rst-content tt, .rst-content tt.xref, .rst-content code.xref, a .rst-content tt, a .rst-content code {
- font-weight: bold;
- color: #404040;
-}
-.rst-content a tt, .rst-content a tt, .rst-content a code {
- color: #2980B9;
-}
-.rst-content dl {
- margin-bottom: 24px;
-}
-.rst-content dl dt {
- font-weight: bold;
-}
-.rst-content dl p, .rst-content dl table, .rst-content dl ul, .rst-content dl ol {
- margin-bottom: 12px !important;
-}
-.rst-content dl dd {
- margin: 0 0 12px 24px;
-}
-.rst-content dl:not(.docutils) {
- margin-bottom: 24px;
-}
-.rst-content dl:not(.docutils) dt {
- display: inline-block;
- margin: 6px 0;
- font-size: 90%;
- line-height: normal;
- background: #e7f2fa;
- color: #2980B9;
- border-top: solid 3px #6ab0de;
- padding: 6px;
- position: relative;
-}
-.rst-content dl:not(.docutils) dt:before {
- color: #6ab0de;
-}
-.rst-content dl:not(.docutils) dt .headerlink {
- color: #404040;
- font-size: 100% !important;
-}
-.rst-content dl:not(.docutils) dl dt {
- margin-bottom: 6px;
- border: none;
- border-left: solid 3px #cccccc;
- background: #f0f0f0;
- color: gray;
-}
-.rst-content dl:not(.docutils) dl dt .headerlink {
- color: #404040;
- font-size: 100% !important;
-}
-.rst-content dl:not(.docutils) dt:first-child {
- margin-top: 0;
-}
-.rst-content dl:not(.docutils) tt, .rst-content dl:not(.docutils) tt, .rst-content dl:not(.docutils) code {
- font-weight: bold;
-}
-.rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) tt.descclassname, .rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) code.descname, .rst-content dl:not(.docutils) tt.descclassname, .rst-content dl:not(.docutils) code.descclassname {
- background-color: transparent;
- border: none;
- padding: 0;
- font-size: 100% !important;
-}
-.rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) code.descname {
- font-weight: bold;
-}
-.rst-content dl:not(.docutils) .optional {
- display: inline-block;
- padding: 0 4px;
- color: #000;
- font-weight: bold;
-}
-.rst-content dl:not(.docutils) .property {
- display: inline-block;
- padding-right: 8px;
-}
-.rst-content .viewcode-link, .rst-content .viewcode-back {
- display: inline-block;
- color: #27AE60;
- font-size: 80%;
- padding-left: 24px;
-}
-.rst-content .viewcode-back {
- display: block;
- float: right;
-}
-.rst-content p.rubric {
- margin-bottom: 12px;
- font-weight: bold;
-}
-.rst-content tt.download, .rst-content code.download {
- background: inherit;
- padding: inherit;
- font-family: inherit;
- font-size: inherit;
- color: inherit;
- border: inherit;
- white-space: inherit;
-}
-.rst-content tt.download span:first-child:before, .rst-content code.download span:first-child:before {
- margin-right: 4px;
-}
-
-@media screen and (max-width: 480px) {
- .rst-content .sidebar {
- width: 100%;
- }
-}
-span[id*='MathJax-Span'] {
- color: #404040;
-}
-
-.math {
- text-align: center;
-}
-
-@font-face {
- font-family: "Inconsolata";
- font-style: normal;
- font-weight: 400;
- src: local("Inconsolata"), url(../fonts/Inconsolata.ttf) format("truetype");
-}
-@font-face {
- font-family: "Inconsolata";
- font-style: normal;
- font-weight: 700;
- src: local("Inconsolata Bold"), local("Inconsolata-Bold"), url(../fonts/Inconsolata-Bold.ttf) format("truetype");
-}
-@font-face {
- font-family: "Lato";
- font-style: normal;
- font-weight: 400;
- src: local("Lato Regular"), local("Lato-Regular"), url(../fonts/Lato-Regular.ttf) format("truetype");
-}
-@font-face {
- font-family: "Lato";
- font-style: normal;
- font-weight: 700;
- src: local("Lato Bold"), local("Lato-Bold"), url(../fonts/Lato-Bold.ttf) format("truetype");
-}
-@font-face {
- font-family: "Roboto Slab";
- font-style: normal;
- font-weight: 400;
- src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url(../fonts/RobotoSlab-Regular.ttf) format("truetype");
-}
-@font-face {
- font-family: "Roboto Slab";
- font-style: normal;
- font-weight: 700;
- src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url(../fonts/RobotoSlab-Bold.ttf) format("truetype");
-}
-
-/*# sourceMappingURL=theme.css.map */
diff --git a/doc/_static/css/theme.css.map b/doc/_static/css/theme.css.map
deleted file mode 100644
index 7e94d0244..000000000
--- a/doc/_static/css/theme.css.map
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-"version": 3,
-"mappings": ";AACE,CAAE;ECQI,kBAAoB,EDPJ,UAAU;ECY1B,eAAiB,EDZD,UAAU;EC2B1B,UAAY,ED3BI,UAAU;;;AEFlC,iFAAiF;EAC/E,OAAO,EAAE,KAAK;;;AAEhB,oBAAoB;EAClB,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,MAAM;EAChB,KAAK,EAAE,CAAC;;;AAEV,qBAAqB;EACnB,OAAO,EAAE,IAAI;;;AAEf,QAAQ;EACN,OAAO,EAAE,IAAI;;;AAEf,CAAC;EDLO,kBAAoB,ECMd,UAAU;EDDhB,eAAiB,ECCX,UAAU;EDchB,UAAY,ECdN,UAAU;;;AAExB,IAAI;EACF,SAAS,EAAE,IAAI;EACf,wBAAwB,EAAE,IAAI;EAC9B,oBAAoB,EAAE,IAAI;;;AAE5B,IAAI;EACF,MAAM,EAAE,CAAC;;;AAEX,iBAAiB;EACf,OAAO,EAAE,CAAC;;;AAEZ,WAAW;EACT,aAAa,EAAE,UAAU;;;AAE3B,SAAS;EACP,WAAW,EAAE,IAAI;;;AAEnB,UAAU;EACR,MAAM,EAAE,CAAC;;;AAEX,GAAG;EACD,UAAU,EAAE,MAAM;;;AAGpB,GAAG;EACD,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI;EACX,eAAe,EAAE,IAAI;;;AAEvB,IAAI;EACF,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,IAAI;;;AAEnB,wDAAoB;EAClB,WAAW,EAAE,gBAAS;EACtB,YAAY,EAAE,wBAAa;EAC3B,SAAS,EAAE,GAAG;;;AAEhB,GAAG;EACD,WAAW,EAAE,GAAG;;;AAElB,CAAC;EACC,MAAM,EAAE,IAAI;;;AAEd,iBAAiB;EACf,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,IAAI;;;AAEf,KAAK;EACH,SAAS,EAAE,GAAG;;;AAEhB,QAAQ;EACN,SAAS,EAAE,GAAG;EACd,WAAW,EAAE,CAAC;EACd,QAAQ,EAAE,QAAQ;EAClB,cAAc,EAAE,QAAQ;;;AAE1B,GAAG;EACD,GAAG,EAAE,MAAM;;;AAEb,GAAG;EACD,MAAM,EAAE,OAAO;;;AAEjB,UAAU;EACR,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;EAChB,gBAAgB,EAAE,IAAI;;;AAExB,EAAE;EACA,UAAU,EAAE,IAAI;;;AAElB,EAAE;EACA,MAAM,EAAE,CAAC;;;AAEX,GAAG;EACD,MAAM,EAAE,CAAC;EACT,sBAAsB,EAAE,OAAO;EAC/B,cAAc,EAAE,MAAM;EACtB,SAAS,EAAE,IAAI;;;AAEjB,cAAc;EACZ,QAAQ,EAAE,MAAM;;;AAElB,MAAM;EACJ,MAAM,EAAE,CAAC;;;AAEX,IAAI;EACF,MAAM,EAAE,CAAC;;;AAEX,QAAQ;EACN,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;;;AAEZ,KAAK;EACH,MAAM,EAAE,OAAO;;;AAEjB,MAAM;EACJ,MAAM,EAAE,CAAC;EACT,YAAY,EAAE,IAAI;EAClB,OAAO,EAAE,CAAC;EACV,WAAW,EAAE,MAAM;;;AAErB,+BAA+B;EAC7B,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,CAAC;EACT,cAAc,EAAE,QAAQ;EACxB,eAAe,EAAE,MAAM;;;AAEzB,aAAa;EACX,WAAW,EAAE,MAAM;;;AAErB,uEAAuE;EACrE,MAAM,EAAE,OAAO;EACf,kBAAkB,EAAE,MAAM;EAC1B,SAAS,EAAE,OAAO;;;AAEpB,iCAAiC;EAC/B,MAAM,EAAE,OAAO;;;AAEjB,2CAA2C;EACzC,UAAU,EAAE,UAAU;EACtB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;;;AAEf,oBAAoB;EAClB,kBAAkB,EAAE,SAAS;EAC7B,eAAe,EAAE,WAAW;EAC5B,kBAAkB,EAAE,WAAW;EAC/B,UAAU,EAAE,WAAW;;;AAEzB,mGAAmG;EACjG,kBAAkB,EAAE,IAAI;;;AAE1B,iDAAiD;EAC/C,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;;;AAEZ,QAAQ;EACN,QAAQ,EAAE,IAAI;EACd,cAAc,EAAE,GAAG;EACnB,MAAM,EAAE,QAAQ;;;AAElB,KAAK;EACH,eAAe,EAAE,QAAQ;EACzB,cAAc,EAAE,CAAC;;;AAEnB,EAAE;EACA,cAAc,EAAE,GAAG;;;AAErB,YAAY;EACV,MAAM,EAAE,OAAO;EACf,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,KAAK;EACZ,OAAO,EAAE,OAAO;;;AAElB,GAAG;EACD,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,MAAM;EACnB,QAAQ,EAAE,MAAM;EAChB,gBAAgB,EAAE,WAAW;EAC7B,iBAAiB,EAAE,SAAS;EAC5B,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,GAAG;EACd,YAAY,EAAE,CAAC;;;AAEjB,MAAM;EACJ,OAAO,EAAE,IAAI;;;AAEf,OAAO;EACL,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,MAAM;;;AAEpB,eAAe;EACb,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,aAAa;EACnB,MAAM,EAAE,GAAG;EACX,MAAM,EAAE,IAAI;EACZ,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,CAAC;EACV,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,GAAG;;;AAEZ,iEAAiE;EAC/D,IAAI,EAAE,IAAI;EACV,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,CAAC;EACT,QAAQ,EAAE,OAAO;EACjB,QAAQ,EAAE,MAAM;EAChB,KAAK,EAAE,IAAI;;;AAEb,UAAU;EACR,UAAU,EAAE,MAAM;;;AAEpB,SAAS;EACP,QAAQ,EAAE,QAAQ;;;AAEpB,UAAU;EACR,SAAS,EAAE,IAAI;;;AAEjB,YAAY;EACV,mBAAmB;IACjB,UAAU,EAAE,eAAe;;;EAC7B,CAAC;IACC,UAAU,EAAE,eAAe;IAC3B,WAAW,EAAE,eAAe;IAC5B,MAAM,EAAE,eAAe;IACvB,UAAU,EAAE,eAAe;;;EAC7B,YAAY;IACV,eAAe,EAAE,SAAS;;;EAC5B,6DAA6D;IAC3D,OAAO,EAAE,EAAE;;;EACb,eAAe;IACb,iBAAiB,EAAE,KAAK;;;EAC1B,KAAK;IACH,OAAO,EAAE,kBAAkB;;;EAC7B,OAAO;IACL,iBAAiB,EAAE,KAAK;;;EAC1B,GAAG;IACD,SAAS,EAAE,eAAe;;;;IAE1B,MAAM,EAAE,KAAK;;EAEf,kDAAS;IACP,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;;;EACX,+CAAM;IACJ,gBAAgB,EAAE,KAAK;;;AChM3B,woDAAY;EACV,sBAAsB,EAAE,WAAW;;;AAqDrC,SAAS;EARP,KAAK,EAAE,CAAC;;AACR,iCAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,eAAO;EACL,KAAK,EAAE,IAAI;;;;;;;;;AC1Gf,UAUC;EATC,WAAW,EAAE,aAAa;EAC1B,GAAG,EAAE,+CAAgE;EACrE,GAAG,EAAE,ySAAmG;EAKxG,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;;ACTpB,mgBAAmB;EACjB,OAAO,EAAE,YAAY;EACrB,IAAI,EAAE,uCAAuC;EAC7C,SAAS,EAAE,OAAO;EAClB,cAAc,EAAE,IAAI;EACpB,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;;;;ACLpC,MAAsB;EACpB,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,MAAS;EACtB,cAAc,EAAE,IAAI;;;AAEtB,MAAsB;EAAE,SAAS,EAAE,GAAG;;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;;ACVtC,MAAsB;EACpB,KAAK,EAAE,SAAW;EAClB,UAAU,EAAE,MAAM;;;ACDpB,MAAsB;EACpB,YAAY,EAAE,CAAC;EACf,WAAW,ECIU,SAAS;EDH9B,eAAe,EAAE,IAAI;;AACrB,WAAK;EAAE,QAAQ,EAAE,QAAQ;;;AAE3B,MAAsB;EACpB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,UAAa;EACnB,KAAK,ECHgB,SAAS;EDI9B,GAAG,EAAE,SAAU;EACf,UAAU,EAAE,MAAM;;AAClB,YAAuB;EACrB,IAAI,EAAE,UAA0B;;;AEbpC,UAA0B;EACxB,OAAO,EAAE,gBAAgB;EACzB,MAAM,EAAE,iBAA4B;EACpC,aAAa,EAAE,IAAI;;;AAGrB,WAAY;EAAE,KAAK,EAAE,KAAK;;;AAC1B,UAAW;EAAE,KAAK,EAAE,IAAI;;;AAGtB,mqBAAY;EAAE,YAAY,EAAE,IAAI;;AAChC,mrBAAa;EAAE,WAAW,EAAE,IAAI;;;ACXlC,QAAwB;EACtB,iBAAiB,EAAE,0BAA0B;EACrC,SAAS,EAAE,0BAA0B;;;AAG/C,0BASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;;;AAIrC,kBASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;;;ACvBrC,aAA8B;ECU5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,aAAgB;EAC/B,aAAa,EAAE,aAAgB;EAC3B,SAAS,EAAE,aAAgB;;;ADZrC,cAA8B;ECS5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;;ADXrC,cAA8B;ECQ5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;;ADTrC,mBAAmC;ECajC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;;ADfzC,iBAAmC;ECYjC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;;ADVzC;;;;uBAIuC;EACrC,MAAM,EAAE,IAAI;;;AEfd,SAAyB;EACvB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,MAAM;;;AAExB,0BAAyD;EACvD,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;;;AAEpB,YAA4B;EAAE,WAAW,EAAE,OAAO;;;AAClD,YAA4B;EAAE,SAAS,EAAE,GAAG;;;AAC5C,WAA2B;EAAE,KAAK,ELXZ,IAAI;;;;;AML1B,gBAAgC;EAAE,OAAO,ENwP1B,GAAO;;;AMvPtB,gBAAgC;EAAE,OAAO,ENkV1B,GAAO;;;AMjVtB,sCAAiC;EAAE,OAAO,ENyZ1B,GAAO;;;AMxZvB,qBAAqC;EAAE,OAAO,EN2K1B,GAAO;;;AM1K3B,gBAAgC;EAAE,OAAO,ENqQ1B,GAAO;;;AMpQtB,eAA+B;EAAE,OAAO,ENkc1B,GAAO;;;AMjcrB,iBAAiC;EAAE,OAAO,ENsc1B,GAAO;;;AMrcvB,eAA+B;EAAE,OAAO,EN0gB1B,GAAO;;;AMzgBrB,eAA+B;EAAE,OAAO,EN+M1B,GAAO;;;AM9MrB,mBAAmC;EAAE,OAAO,EN8d1B,GAAO;;;AM7dzB,aAA6B;EAAE,OAAO,EN4d1B,GAAO;;;AM3dnB,kBAAkC;EAAE,OAAO,EN6d1B,GAAO;;;AM5dxB,gBAAgC;EAAE,OAAO,EN+F1B,GAAO;;;AM9FtB;;gBAEgC;EAAE,OAAO,ENge1B,GAAO;;;AM/dtB,sBAAsC;EAAE,OAAO,EN6Y1B,GAAO;;;AM5Y5B,uBAAuC;EAAE,OAAO,EN2Y1B,GAAO;;;AM1Y7B,oBAAoC;EAAE,OAAO,ENqW1B,GAAO;;;AMpW1B,iBAAiC;EAAE,OAAO,ENwZ1B,GAAO;;;AMvZvB;cAC8B;EAAE,OAAO,ENmH1B,GAAO;;;AMlHpB,kBAAkC;EAAE,OAAO,ENoe1B,GAAO;;;AMnexB,kCAA+B;EAAE,OAAO,ENqP1B,GAAO;;;AMpPrB,iBAAiC;EAAE,OAAO,ENmL1B,GAAO;;;AMlLvB,kBAAkC;EAAE,OAAO,ENqG1B,GAAO;;;AMpGxB,eAA+B;EAAE,OAAO,ENqX1B,GAAO;;;AMpXrB,yHAAmC;EAAE,OAAO,ENyI1B,GAAO;;;AMxIzB,8BAA8C;EAAE,OAAO,ENG1B,GAAO;;;AMFpC,4BAA4C;EAAE,OAAO,ENK1B,GAAO;;;AMJlC,gBAAgC;EAAE,OAAO,ENmP1B,GAAO;;;AMlPtB,wBAAwC;EAAE,OAAO,ENkV1B,GAAO;;;AMjV9B;iBACiC;EAAE,OAAO,ENyW1B,GAAO;;;AMxWvB,kBAAkC;EAAE,OAAO,ENoW1B,GAAO;;;AMnWxB,mBAAmC;EAAE,OAAO,ENiR1B,GAAO;;;AMhRzB,eAA+B;EAAE,OAAO,ENoR1B,GAAO;;;AMnRrB,eAA+B;EAAE,OAAO,ENsL1B,GAAO;;;AMrLrB,qBAAqC;EAAE,OAAO,ENkO1B,GAAO;;;AMjO3B,qBAAqC;EAAE,OAAO,ENkf1B,GAAO;;;AMjf3B,sBAAsC;EAAE,OAAO,ENgf1B,GAAO;;;AM/e5B,oBAAoC;EAAE,OAAO,ENif1B,GAAO;;;AMhf1B,iBAAiC;EAAE,OAAO,ENiV1B,GAAO;;;AMhVvB,kBAAkC;EAAE,OAAO,ENU1B,GAAO;;;AMTxB,cAA8B;EAAE,OAAO,ENkb1B,GAAO;;;AMjbpB,eAA+B;EAAE,OAAO,ENkb1B,GAAO;;;AMjbrB,kCAA+B;EAAE,OAAO,ENyB1B,GAAO;;;AMxBrB,mBAAmC;EAAE,OAAO,ENyB1B,GAAO;;;AMxBzB,gBAAgC;EAAE,OAAO,ENwU1B,GAAO;;;AMvUtB,iBAAiC;EAAE,OAAO,ENqC1B,GAAO;;;AMpCvB,eAA+B;EAAE,OAAO,ENoL1B,GAAO;;;AMnLrB,eAA+B;EAAE,OAAO,ENiB1B,GAAO;;;AMhBrB,iBAAiC;EAAE,OAAO,ENqO1B,GAAO;;;AMpOvB,sBAAsC;EAAE,OAAO,EN+a1B,GAAO;;;AM9a5B,qBAAqC;EAAE,OAAO,EN+a1B,GAAO;;;AM9a3B,qBAAqC;EAAE,OAAO,EN3C1B,GAAO;;;AM4C3B,uBAAuC;EAAE,OAAO,EN9C1B,GAAO;;;AM+C7B,sBAAsC;EAAE,OAAO,EN5C1B,GAAO;;;AM6C5B,wBAAwC;EAAE,OAAO,EN/C1B,GAAO;;;AMgD9B,eAA+B;EAAE,OAAO,ENwP1B,GAAO;;;AMvPrB;kBACkC;EAAE,OAAO,EN0R1B,GAAO;;;AMzRxB,iBAAiC;EAAE,OAAO,ENoN1B,GAAO;;;AMnNvB,uBAAuC;EAAE,OAAO,ENqd1B,GAAO;;;AMpd7B;;oBAEoC;EAAE,OAAO,ENsS1B,GAAO;;;AMrS1B,iBAAiC;EAAE,OAAO,EN+R1B,GAAO;;;AM9RvB,qBAAqC;EAAE,OAAO,EN+P1B,GAAO;;;AM9P3B,iBAAiC;EAAE,OAAO,EN7D1B,GAAO;;;AM8DvB,eAA+B;EAAE,OAAO,EN4a1B,GAAO;;;AM3arB;0BAC0C;EAAE,OAAO,EN4R1B,GAAO;;;AM3RhC,yBAAyC;EAAE,OAAO,EN2V1B,GAAO;;;AM1V/B,yBAAyC;EAAE,OAAO,ENqC1B,GAAO;;;AMpC/B,iBAAiC;EAAE,OAAO,ENlC1B,GAAO;;;AMmCvB,wBAAwC;EAAE,OAAO,ENmY1B,GAAO;;;AMlY9B,wBAAwC;EAAE,OAAO,ENkH1B,GAAO;;;AMjH9B,mBAAmC;EAAE,OAAO,EN9B1B,GAAO;;;AM+BzB,eAA+B;EAAE,OAAO,ENgS1B,GAAO;;;AM/RrB,gBAAgC;EAAE,OAAO,EN+Q1B,GAAO;;;AM9QtB,eAA+B;EAAE,OAAO,ENiY1B,GAAO;;;AMhYrB,kBAAkC;EAAE,OAAO,ENqJ1B,GAAO;;;AMpJxB,uBAAuC;EAAE,OAAO,EN6G1B,GAAO;;;AM5G7B,uBAAuC;EAAE,OAAO,EN4X1B,GAAO;;;AM3X7B,gBAAgC;EAAE,OAAO,ENoF1B,GAAO;;;AMnFtB,uBAAuC;EAAE,OAAO,EN+B1B,GAAO;;;AM9B7B,wBAAwC;EAAE,OAAO,EN+B1B,GAAO;;;AM9B9B,sBAAsC;EAAE,OAAO,EN4R1B,GAAO;;;AM3R5B,uBAAuC;EAAE,OAAO,ENkP1B,GAAO;;;AMjP7B,+FAAuC;EAAE,OAAO,ENsZ1B,GAAO;;;AMrZ7B,gGAAuC;EAAE,OAAO,ENiB1B,GAAO;;;AMhB7B,0BAA0C;EAAE,OAAO,ENiS1B,GAAO;;;AMhShC,sBAAsC;EAAE,OAAO,ENuL1B,GAAO;;;AMtL5B,qBAAqC;EAAE,OAAO,ENuD1B,GAAO;;;AMtD3B,yBAAyC;EAAE,OAAO,ENkZ1B,GAAO;;;AMjZ/B,yBAAyC;EAAE,OAAO,ENa1B,GAAO;;;AMZ/B,cAA8B;EAAE,OAAO,ENhD1B,GAAO;;;AMiDpB,qBAAqC;EAAE,OAAO,EN5D1B,GAAO;;;AM6D3B,sBAAsC;EAAE,OAAO,EN5D1B,GAAO;;;AM6D5B,mBAAmC;EAAE,OAAO,EN5D1B,GAAO;;;AM6DzB,qBAAqC;EAAE,OAAO,ENhE1B,GAAO;;;AMiE3B;gBACgC;EAAE,OAAO,ENyT1B,GAAO;;;AMxTtB,iBAAiC;EAAE,OAAO,EN+E1B,GAAO;;;AM9EvB,mBAAmC;EAAE,OAAO,ENuC1B,GAAO;;;AMtCzB,eAA+B;EAAE,OAAO,ENyQ1B,GAAO;;;AMxQrB,gBAAgC;EAAE,OAAO,EN+N1B,GAAO;;;AM9NtB,mBAAmC;EAAE,OAAO,EN/D1B,GAAO;;;AMgEzB,mNAA6C;EAAE,OAAO,ENwE1B,GAAO;;;AMvEnC,eAA+B;EAAE,OAAO,ENmI1B,GAAO;;;AMlIrB,eAA+B;EAAE,OAAO,ENqL1B,GAAO;;;AMpLrB,kCAA+B;EAAE,OAAO,ENyG1B,GAAO;;;AMxGrB,cAA8B;EAAE,OAAO,ENyE1B,GAAO;;;AMxEpB,oBAAoC;EAAE,OAAO,ENyE1B,GAAO;;;AMxE1B;+BAC+C;EAAE,OAAO,ENkE1B,GAAO;;;AMjErC,gBAAgC;EAAE,OAAO,ENyP1B,GAAO;;;AMxPtB,mBAAmC;EAAE,OAAO,ENlC1B,GAAO;;;AMmCzB,iBAAiC;EAAE,OAAO,EN0Q1B,GAAO;;;AMzQvB,kBAAkC;EAAE,OAAO,ENmB1B,GAAO;;;AMlBxB,iBAAiC;EAAE,OAAO,ENqM1B,GAAO;;;AMpMvB,qBAAqC;EAAE,OAAO,ENH1B,GAAO;;;AMI3B,uBAAuC;EAAE,OAAO,ENP1B,GAAO;;;AMQ7B,kBAAkC;EAAE,OAAO,ENiR1B,GAAO;;;AMhRxB,wBAAwC;EAAE,OAAO,EN2S1B,GAAO;;;AM1S9B,iBAAiC;EAAE,OAAO,ENoG1B,GAAO;;;AMnGvB,sBAAsC;EAAE,OAAO,ENqG1B,GAAO;;;AMpG5B,mBAAmC;EAAE,OAAO,ENpF1B,GAAO;;;AMqFzB,mBAAmC;EAAE,OAAO,ENtF1B,GAAO;;;AMuFzB;oBACoC;EAAE,OAAO,ENhF1B,GAAO;;;AMiF1B,yBAAyC;EAAE,OAAO,ENkY1B,GAAO;;;AMjY/B,0BAA0C;EAAE,OAAO,ENyD1B,GAAO;;;AMxDhC,uBAAuC;EAAE,OAAO,EN/C1B,GAAO;;;AMgD7B,cAA8B;EAAE,OAAO,ENsJ1B,GAAO;;;AMrJpB;eAC+B;EAAE,OAAO,ENA1B,GAAO;;;AMCrB,mBAAmC;EAAE,OAAO,ENG1B,GAAO;;;AMFzB,sBAAsC;EAAE,OAAO,ENiW1B,GAAO;;;AMhW5B,wBAAwC;EAAE,OAAO,EN+V1B,GAAO;;;AM9V9B,oBAAoC;EAAE,OAAO,EN2T1B,GAAO;;;AM1T1B,kBAAkC;EAAE,OAAO,EN4H1B,GAAO;;;AM3HxB,mBAAmC;EAAE,OAAO,EN2R1B,GAAO;;;AM1RzB,0BAA0C;EAAE,OAAO,ENiK1B,GAAO;;;AMhKhC,qBAAqC;EAAE,OAAO,ENwV1B,GAAO;;;AMvV3B,wBAAwC;EAAE,OAAO,ENsC1B,GAAO;;;AMrC9B,kBAAkC;EAAE,OAAO,ENsR1B,GAAO;;;AMrRxB,iBAAiC;EAAE,OAAO,ENyW1B,GAAO;;;AMxWvB,wBAAwC;EAAE,OAAO,ENiG1B,GAAO;;;AMhG9B,iBAAiC;EAAE,OAAO,ENyX1B,GAAO;;;AMxXvB,kBAAkC;EAAE,OAAO,EN+I1B,GAAO;;;AM9IxB,gBAAgC;EAAE,OAAO,EN6M1B,GAAO;;;AM5MtB,mBAAmC;EAAE,OAAO,EN2S1B,GAAO;;;AM1SzB,qBAAqC;EAAE,OAAO,ENjF1B,GAAO;;;AMkF3B,uBAAuC;EAAE,OAAO,EN2M1B,GAAO;;;AM1M7B,kBAAkC;EAAE,OAAO,ENyW1B,GAAO;;;AMxWxB,mBAAmC;EAAE,OAAO,ENgC1B,GAAO;;;AM/BzB,sCAAiC;EAAE,OAAO,ENsF1B,GAAO;;;AMrFvB,iBAAiC;EAAE,OAAO,EN6W1B,GAAO;;;AM5WvB,sBAAsC;EAAE,OAAO,ENb1B,GAAO;;;AMc5B,cAA8B;EAAE,OAAO,ENmP1B,GAAO;;;AMlPpB,gBAAgC;EAAE,OAAO,ENoG1B,GAAO;;;AMnGtB,mBAAmC;EAAE,OAAO,ENpF1B,GAAO;;;AMqFzB,eAA+B;EAAE,OAAO,EN1G1B,GAAO;;;AM2GrB,sBAAsC;EAAE,OAAO,EN7D1B,GAAO;;;AM8D5B,uBAAuC;EAAE,OAAO,EN8F1B,GAAO;;;AM7F7B,sBAAsC;EAAE,OAAO,EN4F1B,GAAO;;;AM3F5B,oBAAoC;EAAE,OAAO,EN6F1B,GAAO;;;AM5F1B,sBAAsC;EAAE,OAAO,ENyF1B,GAAO;;;AMxF5B,4DAA4C;EAAE,OAAO,EN5I1B,GAAO;;;AM6IlC,8DAA6C;EAAE,OAAO,ENxI1B,GAAO;;;AMyInC,0BAA0C;EAAE,OAAO,ENxI1B,GAAO;;;AMyIhC,4BAA4C;EAAE,OAAO,ENhJ1B,GAAO;;;AMiJlC,gBAAgC;EAAE,OAAO,EN2E1B,GAAO;;;AM1EtB,iBAAiC;EAAE,OAAO,ENqX1B,GAAO;;;AMpXvB,gBAAgC;EAAE,OAAO,ENgT1B,GAAO;;;AM/StB,iBAAiC;EAAE,OAAO,ENuC1B,GAAO;;;AMtCvB,oBAAoC;EAAE,OAAO,ENxG1B,GAAO;;;AMyG1B,qBAAqC;EAAE,OAAO,ENzI1B,GAAO;;;AM0I3B;gBACgC;EAAE,OAAO,EN8V1B,GAAO;;;AM7VtB;;iBAC+B;EAAE,OAAO,ENwH1B,GAAO;;;AMvHrB,gBAAgC;EAAE,OAAO,ENxD1B,GAAO;;;AMyDtB,gBAAgC;EAAE,OAAO,ENsC1B,GAAO;;;AMrCtB;mBACmC;EAAE,OAAO,EN+N1B,GAAO;;;AM9NzB;kBACkC;EAAE,OAAO,ENyB1B,GAAO;;;AMxBxB,oBAAoC;EAAE,OAAO,EN8J1B,GAAO;;;AM7J1B;mBACmC;EAAE,OAAO,ENiC1B,GAAO;;;AMhCzB,iBAAiC;EAAE,OAAO,ENkQ1B,GAAO;;;AMjQvB;;eAE+B;EAAE,OAAO,EN9I1B,GAAO;;;AM+IrB,kBAAkC;EAAE,OAAO,ENiH1B,GAAO;;;AMhHxB,kBAAkC;EAAE,OAAO,EN+G1B,GAAO;;;AM9GxB,wBAAwC;EAAE,OAAO,EN4Q1B,GAAO;;;AM3Q9B,oBAAoC;EAAE,OAAO,ENgU1B,GAAO;;;AM/T1B,gBAAgC;EAAE,OAAO,ENkR1B,GAAO;;;AMjRtB,gBAAgC;EAAE,OAAO,ENmH1B,GAAO;;;AMlHtB,gBAAgC;EAAE,OAAO,ENmT1B,GAAO;;;AMlTtB,oBAAoC;EAAE,OAAO,ENgK1B,GAAO;;;AM/J1B,2BAA2C;EAAE,OAAO,ENgK1B,GAAO;;;AM/JjC,6BAA6C;EAAE,OAAO,EN8C1B,GAAO;;;AM7CnC,sBAAsC;EAAE,OAAO,EN4C1B,GAAO;;;AM3C5B,gBAAgC;EAAE,OAAO,ENgI1B,GAAO;;;AM/HtB,0EAAqC;EAAE,OAAO,ENxH1B,GAAO;;;AMyH3B,mBAAmC;EAAE,OAAO,ENlH1B,GAAO;;;AMmHzB,qBAAqC;EAAE,OAAO,ENzH1B,GAAO;;;AM0H3B,sBAAsC;EAAE,OAAO,ENzH1B,GAAO;;;AM0H5B,kBAAkC;EAAE,OAAO,EN3E1B,GAAO;;;AM4ExB;eAC+B;EAAE,OAAO,EN4N1B,GAAO;;;AM3NrB;oBACoC;EAAE,OAAO,ENgO1B,GAAO;;;AM/N1B;mBACmC;EAAE,OAAO,EN6N1B,GAAO;;;AM5NzB,mBAAmC;EAAE,OAAO,EN/C1B,GAAO;;;AMgDzB,mBAAmC;EAAE,OAAO,ENmF1B,GAAO;;;AMlFzB;eAC+B;EAAE,OAAO,EN0S1B,GAAO;;;AMzSrB;gBACgC;EAAE,OAAO,ENW1B,GAAO;;;AMVtB;qBACqC;EAAE,OAAO,EN0P1B,GAAO;;;AMzP3B,oBAAoC;EAAE,OAAO,ENxF1B,GAAO;;;AMyF1B,qBAAqC;EAAE,OAAO,ENvF1B,GAAO;;;AMwF3B;eAC+B;EAAE,OAAO,ENlK1B,GAAO;;;AMmKrB,kBAAkC;EAAE,OAAO,ENoM1B,GAAO;;;AMnMxB,mBAAmC;EAAE,OAAO,EN8R1B,GAAO;;;AM7RzB;oBACoC;EAAE,OAAO,EN9G1B,GAAO;;;AM+G1B,sBAAsC;EAAE,OAAO,ENiE1B,GAAO;;;AMhE5B,mBAAmC;EAAE,OAAO,EN1D1B,GAAO;;;AM2DzB,yBAAyC;EAAE,OAAO,EN7G1B,GAAO;;;AM8G/B,uBAAuC;EAAE,OAAO,EN7G1B,GAAO;;;AM8G7B,kBAAkC;EAAE,OAAO,ENkS1B,GAAO;;;AMjSxB,sBAAsC;EAAE,OAAO,ENgO1B,GAAO;;;AM/N5B,mBAAmC;EAAE,OAAO,ENqO1B,GAAO;;;AMpOzB,iBAAiC;EAAE,OAAO,ENxL1B,GAAO;;;AMyLvB,iBAAiC;EAAE,OAAO,EN7G1B,GAAO;;;AM8GvB,kBAAkC;EAAE,OAAO,EN3F1B,GAAO;;;AM4FxB,sBAAsC;EAAE,OAAO,ENpC1B,GAAO;;;AMqC5B,qBAAqC;EAAE,OAAO,ENzK1B,GAAO;;;AM0K3B,qBAAqC;EAAE,OAAO,ENqB1B,GAAO;;;AMpB3B,oBAAoC;EAAE,OAAO,EN3O1B,GAAO;;;AM4O1B,iBAAiC;EAAE,OAAO,EN4E1B,GAAO;;;AM3EvB,sBAAsC;EAAE,OAAO,ENxD1B,GAAO;;;AMyD5B,eAA+B;EAAE,OAAO,ENrM1B,GAAO;;;AMsMrB,mBAAmC;EAAE,OAAO,ENG1B,GAAO;;;AMFzB,sBAAsC;EAAE,OAAO,ENuH1B,GAAO;;;AMtH5B,4BAA4C;EAAE,OAAO,EN5O1B,GAAO;;;AM6OlC,6BAA6C;EAAE,OAAO,EN5O1B,GAAO;;;AM6OnC,0BAA0C;EAAE,OAAO,EN5O1B,GAAO;;;AM6OhC,4BAA4C;EAAE,OAAO,ENhP1B,GAAO;;;AMiPlC,qBAAqC;EAAE,OAAO,EN5O1B,GAAO;;;AM6O3B,sBAAsC;EAAE,OAAO,EN5O1B,GAAO;;;AM6O5B,mBAAmC;EAAE,OAAO,EN5O1B,GAAO;;;AM6OzB,qBAAqC;EAAE,OAAO,ENhP1B,GAAO;;;AMiP3B,kBAAkC;EAAE,OAAO,ENxG1B,GAAO;;;AMyGxB,iBAAiC;EAAE,OAAO,ENyB1B,GAAO;;;AMxBvB,iBAAiC;EAAE,OAAO,ENmN1B,GAAO;;;AMlNvB;iBACiC;EAAE,OAAO,ENmE1B,GAAO;;;AMlEvB,mBAAmC;EAAE,OAAO,ENlJ1B,GAAO;;;AMmJzB,qBAAqC;EAAE,OAAO,ENiH1B,GAAO;;;AMhH3B,sBAAsC;EAAE,OAAO,ENiH1B,GAAO;;;AMhH5B,kBAAkC;EAAE,OAAO,ENiL1B,GAAO;;;AMhLxB,iBAAiC;EAAE,OAAO,ENvJ1B,GAAO;;;AMwJvB;gBACgC;EAAE,OAAO,ENyH1B,GAAO;;;AMxHtB,qBAAqC;EAAE,OAAO,EN9B1B,GAAO;;;AM+B3B,mBAAmC;EAAE,OAAO,ENjD1B,GAAO;;;AMkDzB,wBAAwC;EAAE,OAAO,ENhD1B,GAAO;;;AMiD9B,kBAAkC;EAAE,OAAO,EN2J1B,GAAO;;;AM1JxB,kBAAkC;EAAE,OAAO,EN9C1B,GAAO;;;AM+CxB,gBAAgC;EAAE,OAAO,EN+C1B,GAAO;;;AM9CtB,kBAAkC;EAAE,OAAO,EN9C1B,GAAO;;;AM+CxB,qBAAqC;EAAE,OAAO,ENI1B,GAAO;;;AMH3B,iBAAiC;EAAE,OAAO,EN9D1B,GAAO;;;AM+DvB,yBAAyC;EAAE,OAAO,ENhE1B,GAAO;;;AMiE/B,mBAAmC;EAAE,OAAO,ENsM1B,GAAO;;;AMrMzB,eAA+B;EAAE,OAAO,EN1J1B,GAAO;;;AM2JrB;oBACoC;EAAE,OAAO,EN4G1B,GAAO;;;AM3G1B;;sBAEsC;EAAE,OAAO,ENwK1B,GAAO;;;AMvK5B,yBAAyC;EAAE,OAAO,ENmB1B,GAAO;;;AMlB/B,eAA+B;EAAE,OAAO,ENjJ1B,GAAO;;;AMkJrB,oBAAoC;EAAE,OAAO,ENjK1B,GAAO;;;AMkK1B;uBACuC;EAAE,OAAO,EN9L1B,GAAO;;;AM+L7B,mBAAmC;EAAE,OAAO,ENmF1B,GAAO;;;AMlFzB,eAA+B;EAAE,OAAO,ENvB1B,GAAO;;;AMwBrB,sBAAsC;EAAE,OAAO,ENvH1B,GAAO;;;AMwH5B,sBAAsC;EAAE,OAAO,EN6K1B,GAAO;;;AM5K5B,oBAAoC;EAAE,OAAO,ENyK1B,GAAO;;;AMxK1B,iBAAiC;EAAE,OAAO,EN9H1B,GAAO;;;AM+HvB,uBAAuC;EAAE,OAAO,EN0E1B,GAAO;;;AMzE7B,qBAAqC;EAAE,OAAO,ENwB1B,GAAO;;;AMvB3B,2BAA2C;EAAE,OAAO,ENwB1B,GAAO;;;AMvBjC,iBAAiC;EAAE,OAAO,ENqH1B,GAAO;;;AMpHvB,qBAAqC;EAAE,OAAO,EN9N1B,GAAO;;;AM+N3B,4BAA4C;EAAE,OAAO,EN1F1B,GAAO;;;AM2FlC,iBAAiC;EAAE,OAAO,EN2F1B,GAAO;;;AM1FvB,iBAAiC;EAAE,OAAO,ENc1B,GAAO;;;AMbvB,8BAA8C;EAAE,OAAO,ENtM1B,GAAO;;;AMuMpC,+BAA+C;EAAE,OAAO,ENtM1B,GAAO;;;AMuMrC,4BAA4C;EAAE,OAAO,ENtM1B,GAAO;;;AMuMlC,8BAA8C;EAAE,OAAO,EN1M1B,GAAO;;;AM2MpC,gBAAgC;EAAE,OAAO,EN7C1B,GAAO;;;AM8CtB,eAA+B;EAAE,OAAO,ENtK1B,GAAO;;;AMuKrB,iBAAiC;EAAE,OAAO,EN9S1B,GAAO;;;AM+SvB,qBAAqC;EAAE,OAAO,EN+M1B,GAAO;;;AM9M3B,mBAAmC;EAAE,OAAO,EN/O1B,GAAO;;;AMgPzB,qBAAqC;EAAE,OAAO,ENtJ1B,GAAO;;;AMuJ3B,qBAAqC;EAAE,OAAO,ENtJ1B,GAAO;;;AMuJ3B,qBAAqC;EAAE,OAAO,ENmF1B,GAAO;;;AMlF3B,sBAAsC;EAAE,OAAO,EN6C1B,GAAO;;;AM5C5B,iBAAiC;EAAE,OAAO,EN0K1B,GAAO;;;AMzKvB,uBAAuC;EAAE,OAAO,ENO1B,GAAO;;;AMN7B,4IAAyC;EAAE,OAAO,ENO1B,GAAO;;;AMN/B,mBAAmC;EAAE,OAAO,EN/B1B,GAAO;;;AMgCzB,qBAAqC;EAAE,OAAO,ENjC1B,GAAO;;;AMkC3B,uBAAuC;EAAE,OAAO,EN3N1B,GAAO;;;AM4N7B,wBAAwC;EAAE,OAAO,ENyB1B,GAAO;;;AMxB9B,+BAA+C;EAAE,OAAO,ENlJ1B,GAAO;;;AMmJrC,uBAAuC;EAAE,OAAO,ENuF1B,GAAO;;;AMtF7B,kBAAkC;EAAE,OAAO,EN9L1B,GAAO;;;AM+LxB;8BAC8C;EAAE,OAAO,ENnP1B,GAAO;;;AMoPpC;4BAC4C;EAAE,OAAO,ENlP1B,GAAO;;;AMmPlC;+BAC+C;EAAE,OAAO,ENrP1B,GAAO;;;AMsPrC;cAC8B;EAAE,OAAO,ENpK1B,GAAO;;;AMqKpB,cAA8B;EAAE,OAAO,ENzG1B,GAAO;;;AM0GpB;cAC8B;EAAE,OAAO,ENwL1B,GAAO;;;AMvLpB;cAC8B;EAAE,OAAO,ENrE1B,GAAO;;;AMsEpB;;;cAG8B;EAAE,OAAO,ENnE1B,GAAO;;;AMoEpB;;cAE8B;EAAE,OAAO,ENqD1B,GAAO;;;AMpDpB;cAC8B;EAAE,OAAO,ENpE1B,GAAO;;;AMqEpB;cAC8B;EAAE,OAAO,EN1R1B,GAAO;;;AM2RpB,eAA+B;EAAE,OAAO,ENlK1B,GAAO;;;AMmKrB,oBAAoC;EAAE,OAAO,ENtJ1B,GAAO;;;AMuJ1B,yBAAyC;EAAE,OAAO,EN4E1B,GAAO;;;AM3E/B,0BAA0C;EAAE,OAAO,EN4E1B,GAAO;;;AM3EhC,0BAA0C;EAAE,OAAO,EN4E1B,GAAO;;;AM3EhC,2BAA2C;EAAE,OAAO,EN4E1B,GAAO;;;AM3EjC,2BAA2C;EAAE,OAAO,EN+E1B,GAAO;;;AM9EjC,4BAA4C;EAAE,OAAO,EN+E1B,GAAO;;;AM9ElC,oBAAoC;EAAE,OAAO,EN+H1B,GAAO;;;AM9H1B,sBAAsC;EAAE,OAAO,EN2H1B,GAAO;;;AM1H5B,yBAAyC;EAAE,OAAO,EN4L1B,GAAO;;;AM3L/B,kBAAkC;EAAE,OAAO,ENyL1B,GAAO;;;AMxLxB,eAA+B;EAAE,OAAO,ENmL1B,GAAO;;;AMlLrB,sBAAsC;EAAE,OAAO,ENmL1B,GAAO;;;AMlL5B,uBAAuC;EAAE,OAAO,ENuL1B,GAAO;;;AMtL7B,kBAAkC;EAAE,OAAO,EN/M1B,GAAO;;;AMgNxB,yBAAyC;EAAE,OAAO,ENgF1B,GAAO;;;AM/E/B,oBAAoC;EAAE,OAAO,ENjG1B,GAAO;;;AMkG1B,iBAAiC;EAAE,OAAO,ENxJ1B,GAAO;;;AMyJvB,cAA8B;EAAE,OAAO,ENhX1B,GAAO;;;AMiXpB,4CAAoC;EAAE,OAAO,ENzT1B,GAAO;;;AM0T1B,2BAA2C;EAAE,OAAO,ENzT1B,GAAO;;;AM0TjC,iBAAiC;EAAE,OAAO,ENqI1B,GAAO;;;AMpIvB,wBAAwC;EAAE,OAAO,ENqI1B,GAAO;;;AMpI9B,0BAA0C;EAAE,OAAO,ENrE1B,GAAO;;;AMsEhC,wBAAwC;EAAE,OAAO,ENnE1B,GAAO;;;AMoE9B,0BAA0C;EAAE,OAAO,ENtE1B,GAAO;;;AMuEhC,2BAA2C;EAAE,OAAO,ENtE1B,GAAO;;;AMuEjC,gBAAgC;EAAE,OAAO,ENxW1B,GAAO;;;AMyWtB,kBAAkC;EAAE,OAAO,EN8J1B,GAAO;;;AM7JxB,kBAAkC;EAAE,OAAO,ENpX1B,GAAO;;;AMqXxB,gBAAgC;EAAE,OAAO,ENnF1B,GAAO;;;AMoFtB,mBAAmC;EAAE,OAAO,ENjO1B,GAAO;;;AMkOzB,gBAAgC;EAAE,OAAO,ENsC1B,GAAO;;;AMrCtB,qBAAqC;EAAE,OAAO,ENhK1B,GAAO;;;AMiK3B,iBAAiC;EAAE,OAAO,ENmH1B,GAAO;;;AMlHvB,iBAAiC;EAAE,OAAO,ENxM1B,GAAO;;;AMyMvB,eAA+B;EAAE,OAAO,ENzE1B,GAAO;;;AM0ErB,iBAAiC;EAAE,OAAO,ENrJ1B,GAAO;;;AMsJvB,gBAAgC;EAAE,OAAO,EN2E1B,GAAO;;;AM1EtB,iBAAiC;EAAE,OAAO,EN7D1B,GAAO;;;AM8DvB,kBAAkC;EAAE,OAAO,ENpX1B,GAAO;;;AMqXxB,cAA8B;EAAE,OAAO,ENpU1B,GAAO;;;AMqUpB,aAA6B;EAAE,OAAO,ENsI1B,GAAO;;;AMrInB,gBAAgC;EAAE,OAAO,EN2I1B,GAAO;;;AM1ItB,iBAAiC;EAAE,OAAO,ENX1B,GAAO;;;AMYvB,oBAAoC;EAAE,OAAO,EN5D1B,GAAO;;;AM6D1B,yBAAyC;EAAE,OAAO,ENgD1B,GAAO;;;AM/C/B,+BAA+C;EAAE,OAAO,ENrX1B,GAAO;;;AMsXrC,8BAA8C;EAAE,OAAO,ENvX1B,GAAO;;;AMwXpC;8BAC8C;EAAE,OAAO,EN5T1B,GAAO;;;AM6TpC,uBAAuC;EAAE,OAAO,ENvP1B,GAAO;;;AMwP7B,qBAAqC;EAAE,OAAO,ENoI1B,GAAO;;;AMnI3B,uBAAuC;EAAE,OAAO,ENyH1B,GAAO;;;AMxH7B;cAC8B;EAAE,OAAO,ENiG1B,GAAO;;;AMhGpB,yEAAwC;EAAE,OAAO,ENzC1B,GAAO;;;AM0C9B,wBAAwC;EAAE,OAAO,EN+B1B,GAAO;;;AM9B9B,gBAAgC;EAAE,OAAO,ENa1B,GAAO;;;AMZtB,0BAA0C;EAAE,OAAO,ENnP1B,GAAO;;;AMoPhC,oBAAoC;EAAE,OAAO,ENgI1B,GAAO;;;AM/H1B,iBAAiC;EAAE,OAAO,EN9E1B,GAAO;;;AM+EvB;;qBAEqC;EAAE,OAAO,ENmG1B,GAAO;;;AMlG3B;yBACyC;EAAE,OAAO,EN3K1B,GAAO;;;AM4K/B,gBAAgC;EAAE,OAAO,EN6H1B,GAAO;;;AM5HtB,iBAAiC;EAAE,OAAO,ENjL1B,GAAO;;;AMkLvB,iBAAiC;EAAE,OAAO,ENxC1B,GAAO;;;AMyCvB,wBAAwC;EAAE,OAAO,ENxC1B,GAAO;;;AMyC9B,6BAA6C;EAAE,OAAO,ENuC1B,GAAO;;;AMtCnC,sBAAsC;EAAE,OAAO,ENqC1B,GAAO;;;AMpC5B,oBAAoC;EAAE,OAAO,ENlR1B,GAAO;;;AMmR1B,eAA+B;EAAE,OAAO,ENhR1B,GAAO;;;AMiRrB,qBAAqC;EAAE,OAAO,ENxE1B,GAAO;;;AMyE3B,yBAAyC;EAAE,OAAO,ENxE1B,GAAO;;;AMyE/B,iBAAiC;EAAE,OAAO,EN7Q1B,GAAO;;;AM8QvB,iBAAiC;EAAE,OAAO,EN3J1B,GAAO;;;AM4JvB,mBAAmC;EAAE,OAAO,ENtJ1B,GAAO;;;AMuJzB,cAA8B;EAAE,OAAO,ENtP1B,GAAO;;;AMuPpB,mBAAmC;EAAE,OAAO,EN3W1B,GAAO;;;AM4WzB,gBAAgC;EAAE,OAAO,ENjU1B,GAAO;;;AMkUtB,cAA8B;EAAE,OAAO,EN1F1B,GAAO;;;AM2FpB,gBAAgC;EAAE,OAAO,ENM1B,GAAO;;;AMLtB,eAA+B;EAAE,OAAO,ENrS1B,GAAO;;;AMsSrB,gBAAgC;EAAE,OAAO,ENrS1B,GAAO;;;AMsStB,kBAAkC;EAAE,OAAO,ENtY1B,GAAO;;;AMuYxB,yBAAyC;EAAE,OAAO,ENtY1B,GAAO;;;AMuY/B,gBAAgC;EAAE,OAAO,ENa1B,GAAO;;;AMZtB,uBAAuC;EAAE,OAAO,ENa1B,GAAO;;;AMZ7B,kBAAkC;EAAE,OAAO,EN/D1B,GAAO;;;AMgExB;cAC8B;EAAE,OAAO,EN5W1B,GAAO;;;AM6WpB;eAC+B;EAAE,OAAO,EN2B1B,GAAO;;;AM1BrB,eAA+B;EAAE,OAAO,ENoD1B,GAAO;;;AMnDrB,kBAAkC;EAAE,OAAO,ENN1B,GAAO;;;AMOxB,qBAAqC;EAAE,OAAO,ENzS1B,GAAO;;;AM0S3B,qBAAqC;EAAE,OAAO,ENZ1B,GAAO;;;AMa3B,mBAAmC;EAAE,OAAO,EN/S1B,GAAO;;;AMgTzB,qBAAqC;EAAE,OAAO,ENhQ1B,GAAO;;;AMiQ3B,sBAAsC;EAAE,OAAO,ENzP1B,GAAO;;;AM0P5B,uBAAuC;EAAE,OAAO,ENtQ1B,GAAO;;;AMuQ7B,4BAA4C;EAAE,OAAO,ENhQ1B,GAAO;;;AMiQlC;;uBAEuC;EAAE,OAAO,ENzQ1B,GAAO;;;AM0Q7B;yBACyC;EAAE,OAAO,EN/Q1B,GAAO;;;AMgR/B;uBACuC;EAAE,OAAO,ENhR1B,GAAO;;;AMiR7B;uBACuC;EAAE,OAAO,ENrQ1B,GAAO;;;AMsQ7B,sBAAsC;EAAE,OAAO,ENlR1B,GAAO;;;AMmR5B,eAA+B;EAAE,OAAO,EN4D1B,GAAO;;;AM3DrB,kBAAkC;EAAE,OAAO,ENrV1B,GAAO;;;AMsVxB,mBAAmC;EAAE,OAAO,ENhM1B,GAAO;;;AMiMzB;;;;oBAIoC;EAAE,OAAO,ENtL1B,GAAO;;;AMuL1B,yBAAyC;EAAE,OAAO,ENvW1B,GAAO;;;AMwW/B;gBACgC;EAAE,OAAO,ENlG1B,GAAO;;;AMmGtB;iBACiC;EAAE,OAAO,EN1T1B,GAAO;;;AM2TvB,qBAAqC;EAAE,OAAO,ENpP1B,GAAO;;;AMqP3B,cAA8B;EAAE,OAAO,ENtP1B,GAAO;;;AMuPpB,sBAAsC;EAAE,OAAO,ENxO1B,GAAO;;;AMyO5B,wBAAwC;EAAE,OAAO,ENR1B,GAAO;;;AMS9B,aAA6B;EAAE,OAAO,ENjH1B,GAAO;;;AMkHnB;iBACiC;EAAE,OAAO,ENiD1B,GAAO;;;AMhDvB;sBACsC;EAAE,OAAO,ENrJ1B,GAAO;;;AMsJ5B;wBACwC;EAAE,OAAO,ENtJ1B,GAAO;;;AMuJ9B,kBAAkC;EAAE,OAAO,ENvO1B,GAAO;;;AMwOxB,sBAAsC;EAAE,OAAO,ENvX1B,GAAO;;;AMwX5B,iBAAiC;EAAE,OAAO,EN7O1B,GAAO;;;AM8OvB,oBAAoC;EAAE,OAAO,ENxJ1B,GAAO;;;AMyJ1B,kBAAkC;EAAE,OAAO,ENvE1B,GAAO;;;AMwExB,oBAAoC;EAAE,OAAO,ENtF1B,GAAO;;;AMuF1B,2BAA2C;EAAE,OAAO,ENtF1B,GAAO;;;AMuFjC,eAA+B;EAAE,OAAO,ENnb1B,GAAO;;;AMobrB;mBACmC;EAAE,OAAO,ENjR1B,GAAO;;;AMkRzB,cAA8B;EAAE,OAAO,ENI1B,GAAO;;;AMHpB,qBAAqC;EAAE,OAAO,EN9b1B,GAAO;;;AM+b3B,eAA+B;EAAE,OAAO,EN5I1B,GAAO;;;AM6IrB,qBAAqC;EAAE,OAAO,EN/E1B,GAAO;;;AMgF3B,iBAAiC;EAAE,OAAO,ENI1B,GAAO;;;AMHvB,eAA+B;EAAE,OAAO,ENuC1B,GAAO;;;AMtCrB,sBAAsC;EAAE,OAAO,EN7K1B,GAAO;;;AM8K5B,eAA+B;EAAE,OAAO,EN6B1B,GAAO;;;AM5BrB,qBAAqC;EAAE,OAAO,ENjb1B,GAAO;;;AMkb3B,iBAAiC;EAAE,OAAO,ENpK1B,GAAO;;;AMqKvB,wBAAwC;EAAE,OAAO,ENzQ1B,GAAO;;;AM0Q9B,kBAAkC;EAAE,OAAO,ENha1B,GAAO;;;AMiaxB,wBAAwC;EAAE,OAAO,ENpa1B,GAAO;;;AMqa9B,sBAAsC;EAAE,OAAO,ENta1B,GAAO;;;AMua5B,kBAAkC;EAAE,OAAO,ENxa1B,GAAO;;;AMyaxB,oBAAoC;EAAE,OAAO,ENta1B,GAAO;;;AMua1B,oBAAoC;EAAE,OAAO,ENta1B,GAAO;;;AMua1B,qBAAqC;EAAE,OAAO,ENjd1B,GAAO;;;AMkd3B,uBAAuC;EAAE,OAAO,ENjd1B,GAAO;;;AMkd7B,gBAAgC;EAAE,OAAO,ENtB1B,GAAO;;;AMuBtB,oBAAoC;EAAE,OAAO,EN9X1B,GAAO;;;AM+X1B,aAA6B;EAAE,OAAO,ENne1B,GAAO;;;AMoenB,qBAAqC;EAAE,OAAO,ENtV1B,GAAO;;;AMuV3B,sBAAsC;EAAE,OAAO,EN1L1B,GAAO;;;AM2L5B,wBAAwC;EAAE,OAAO,ENpd1B,GAAO;;;AMqd9B,qBAAqC;EAAE,OAAO,ENzf1B,GAAO;;;AM0f3B,oBAAoC;EAAE,OAAO,EN7K1B,GAAO;;;AM8K1B,qBAAqC;EAAE,OAAO,ENzO1B,GAAO;;;AM0O3B,iBAAiC;EAAE,OAAO,ENtP1B,GAAO;;;AMuPvB,wBAAwC;EAAE,OAAO,ENtP1B,GAAO;;;AMuP9B,qBAAqC;EAAE,OAAO,ENrC1B,GAAO;;;AMsC3B,oBAAoC;EAAE,OAAO,ENrC1B,GAAO;;;AMsC1B,kBAAkC;EAAE,OAAO,EN9d1B,GAAO;;;AM+dxB,cAA8B;EAAE,OAAO,EN5c1B,GAAO;;;AM6cpB,kBAAkC;EAAE,OAAO,ENtQ1B,GAAO;;;AMuQxB,oBAAoC;EAAE,OAAO,EN9gB1B,GAAO;;;AM+gB1B,aAA6B;EAAE,OAAO,EN/b1B,GAAO;;;AMgcnB;;cAE8B;EAAE,OAAO,ENpR1B,GAAO;;;AMqRpB,mBAAmC;EAAE,OAAO,EN/N1B,GAAO;;;AOtUzB,4xBAAK;EACH,WAAW,EAAE,OAAO;;AACpB,+6BAAQ;EACN,WAAW,EC+BuB,aAAa;ED9B/C,OAAO,EAAE,YAAY;EACrB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,CAAC;EACd,eAAe,EAAE,OAAO;;;AAM5B,28BAAkB;EAChB,OAAO,EAAE,YAAY;EACrB,eAAe,EAAE,OAAO;;;AAGxB,syEAAgB;EACd,OAAO,EAAE,MAAM;;AACf,8zEAAuB;EACrB,WAAW,EAAE,KAAI;;AACnB,0wEAAsB;EACpB,OAAO,EAAE,YAAY;;;AAE3B,wjBAA2B;EACzB,OAAO,EAAE,GAAE;EfpBL,kBAAoB,EAAE,qBAAM;EAK5B,eAAiB,EAAE,qBAAM;EAezB,UAAY,EAAE,qBAAM;;;AeE5B,4oBAAiC;EAC/B,OAAO,EAAE,CAAC;;;AAGV,4uCAAuB;EACrB,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,IAAI;;;AEpBxB,qQAAS;EACP,OAAO,EAAE,IAAqB;EAC9B,WAAW,EDayB,IAAI;ECZxC,aAAa,EDYuB,IAAI;ECXxC,UAAU,EAAE,OAAmB;;;AAEjC,+CAAe;EACb,KAAK,EDkC+B,IAAM;ECjC1C,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,KAAK,ED+B+B,IAAM;EC9B1C,UAAU,EAAE,OAAkB;EAC9B,MAAM,EAAE,KAAsB;EAC9B,OAAO,EAAE,QAA2C;EACpD,aAAa,EAAE,IAAqB;;;AAEtC,qaAAyB;EACvB,UAAU,EAAE,OAAkB;;AAC9B,2yCAAe;EACb,UAAU,EAAE,OAAiB;;;AACjC,6YAA0B;EACxB,UAAU,EAAE,OAAmB;;AAC/B,4vCAAe;EACb,UAAU,EAAE,OAAoB;;;AAEpC,iZAAuB;EACrB,UAAU,EAAE,OAAmB;;AAC/B,iwCAAe;EACb,UAAU,EAAE,OAAkB;;;AAElC,8ZAA0B;EACxB,UAAU,EAAE,OAAuB;;AACnC,8xCAAe;EACb,UAAU,EAAE,OAAqB;;;AAErC,idAA0B;EACxB,UAAU,EDmB0B,OAAmB;;AClBvD,o4CAAe;EACb,KAAK,ECjD6B,OAAW;EDkD7C,UAAU,EDJwB,OAAmB;;ACKvD,yeAAC;EACC,KAAK,EDsB6B,OAAW;;;ACpBjD,iaAAsB;EACpB,aAAa,EAAE,CAAC;;;AAsBlB,kBAAkB;EAChB,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,GAAG;EACX,IAAI,EAAE,CAAC;EACP,OAAO,EDG6B,GAAG;;ACFvC,qBAAE;EACA,OAAO,EAAE,KAAK;EACd,KAAK,EDT6B,KAAK;ECUvC,UAAU,EAAE,WAAW;EACvB,KAAK,EDlC6B,IAAM;ECmCxC,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,8BAA0B;EACtC,OAAO,EAAE,MAAmB;EAC5B,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,MAAM;EjB3FZ,kBAAoB,EAAE,gBAAM;EAK5B,eAAiB,EAAE,gBAAM;EAezB,UAAY,EAAE,gBAAM;;AiByExB,0CAAsB;EACpB,UAAU,EDhCsB,OAAM;;ACiCxC,uCAAmB;EACjB,UAAU,EDzBsB,OAAW;;AC0B7C,0CAAsB;EACpB,UAAU,EDnFsB,OAAO;;ACoFzC,yCAAqB;EACnB,UAAU,EDtEsB,OAAI;;ACuEtC,wBAAI;EACF,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,IAAI;;;AEhFd,oCAAsB;EFmFxB,kBAAkB;IAChB,MAAM,EAAE,IAAI;IACZ,GAAG,EAAE,CAAC;IACN,KAAK,EAAE,IAAI;;EACX,qBAAE;IACA,KAAK,EAAE,IAAI;;;AG3FjB,MAAM;EACJ,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,CAAC;EACT,cAAc,EAAE,QAAQ;EACxB,eAAe,EAAE,MAAM;EACvB,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,MAAM;EACnB,kBAAkB,EAAE,MAAM;EAC1B,SAAS,EAAE,OAAO;;;AACpB,iDAAiD;EAC/C,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;;;AACZ,gBAAgB;EACd,MAAM,EAAE,OAAO;;;AAEjB,IAAI;;EAEF,OAAO,EAAE,YAAY;EACrB,aAAa,EAAE,GAAG;EAClB,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,OAAO;EACf,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,iBAA6F;EACtG,KAAK,EJI+B,IAAM;EIH1C,MAAM,EAAE,4BAAyB;EACjC,gBAAgB,EJeoB,OAAM;EId1C,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,MAAM;EACnB,WAAW,EFnDyB,2DAAM;EEoD1C,UAAU,EAAE,0FAA8C;EAC1D,YAAY,EAAE,KAAK;EACnB,cAAc,EAAE,MAAM;EACtB,QAAQ,EAAE,MAAM;EAChB,IAAI,EAAE,CAAC;EACP,iBAAiB,EAAE,IAAI;EpBxDjB,mBAAoB,EoByDb,IAAI;EpBpDX,gBAAiB,EoBoDV,IAAI;EpB/CX,eAAgB,EoB+CT,IAAI;EpBrCX,WAAY,EoBqCL,IAAI;EpBzDX,kBAAoB,EAAE,eAAM;EAK5B,eAAiB,EAAE,eAAM;EAezB,UAAY,EAAE,eAAM;;;AoByC5B,UAAU;EACR,UAAU,EAAE,OAAwB;EACpC,KAAK,EJd+B,IAAM;;;AIiB1C,UAAO;EACL,UAAU,EAAE,OAAqC;EACjD,KAAK,EJnB6B,IAAM;;AIoB1C,UAAO;EACL,UAAU,EAAE,OAAqC;EACjD,OAAO,EAAE,CAAC;;AACZ,WAAQ;EACN,UAAU,EAAE,oFAAyC;EACrD,OAAO,EAAE,iBAA6F;;AACxG,YAAS;EACP,KAAK,EJ3B6B,IAAM;;AI4B1C,aAAU;EACR,gBAAgB,EAAE,IAAI;EACtB,MAAM,EAAE,2DAA2D;EACnE,MAAM,EAAE,iBAAmB;EAC3B,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,WAAW;EACnB,UAAU,EAAE,IAAI;;;AAEpB,aAAa;EACX,gBAAgB,EAAE,IAAI;EACtB,MAAM,EAAE,2DAA2D;EACnE,MAAM,EAAE,iBAAmB;EAC3B,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,WAAW;EACnB,UAAU,EAAE,IAAI;;AAChB,8DAA0B;EACxB,gBAAgB,EAAE,IAAI;EACtB,MAAM,EAAE,2DAA2D;EACnE,MAAM,EAAE,iBAAmB;EAC3B,OAAO,EAAE,GAAI;EACb,MAAM,EAAE,WAAW;EACnB,UAAU,EAAE,IAAI;;;AAGpB,sBAAsB;EACpB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;;;AAEX,UAAU;EACR,SAAS,EAAE,GAAG;;;AAEhB,SAAS;EACP,gBAAgB,EAAE,kBAAgB;;AAClC,eAAO;EACL,gBAAgB,EAAE,kBAA6B;;;AAEnD,YAAY;EACV,gBAAgB,EAAE,kBAA2C;EAC7D,KAAK,EAAE,kBAAsB;;AAC7B,kBAAO;EACL,gBAAgB,EAAE,kBAAuD;EACzE,KAAK,EFzH6B,OAAW;;AE0H/C,oBAAS;EACP,KAAK,EAAE,kBAAsB;;;AAEjC,YAAY;EACV,gBAAgB,EAAE,kBAAiB;;AACnC,kBAAO;EACL,gBAAgB,EAAE,kBAA6B;;;AAEnD,WAAW;EACT,gBAAgB,EAAE,kBAAe;;AACjC,iBAAO;EACL,gBAAgB,EAAE,kBAA4B;;;AAElD,YAAY;EACV,gBAAgB,EAAE,kBAAkB;;AACpC,kBAAO;EACL,gBAAgB,EAAE,kBAA+B;;;AACrD,WAAW;EACT,gBAAgB,EJvIoB,IAAI;;AIwIxC,iBAAO;EACL,gBAAgB,EAAE,kBAAoC;;;AAE1D,SAAS;EACP,gBAAgB,EAAE,sBAAsB;EACxC,KAAK,EJxE+B,OAAW;EIyE/C,UAAU,EAAE,IAAI;EAChB,YAAY,EAAE,sBAAsB;;AACpC,eAAO;EACL,gBAAgB,EAAE,sBAAsB;EACxC,KAAK,EAAE,kBAAoC;EAC3C,UAAU,EAAE,IAAI;;AAClB,gBAAQ;EACN,gBAAgB,EAAE,sBAAsB;EACxC,KAAK,EAAE,kBAAoC;EAC3C,UAAU,EAAE,IAAI;;AAClB,iBAAS;EACP,KAAK,EJnG6B,OAAO;;;AIqG7C,oCAAoC;EAClC,cAAc,EAAE,MAAM;;;AAExB,aAAa;EACX,aAAa,EJ1IuB,IAAI;EduExC,KAAK,EAAE,CAAC;;AACR,yCAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,mBAAO;EACL,KAAK,EAAE,IAAI;;;AmB3Ff,YAAY;EACV,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;;;AAIvB,qCAAqC;EACnC,OAAO,EAAE,KAAK;;;AAChB,iBAAiB;EACf,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI;EACX,GAAG,EAAE,IAAI;EACT,SAAS,EAAE,IAAI;EACf,UAAU,EL1B0B,OAAyB;EK2B7D,OAAO,ELmD6B,GAAG;EKlDvC,MAAM,EAAE,iBAAgC;EACxC,UAAU,EAAE,8BAA0B;EACtC,OAAO,EAAE,IAAqB;;AAC9B,0BAAQ;EACN,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,KAAK,EHnC6B,OAAW;EGoC7C,WAAW,EAAE,MAAM;EACnB,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,MAAuB;EAChC,MAAM,EAAE,OAAO;;AACf,gCAAO;EACL,UAAU,ELiCsB,OAAW;EKhC3C,KAAK,ELU2B,IAAM;;AKT1C,8BAAY;EACV,UAAU,EAAE,iBAAgC;EAC5C,MAAM,EAAE,KAAuB;;AACjC,6BAAW;EACT,cAAc,EAAE,IAAqB;;AACrC,kDAAoB;EAClB,KAAK,EAAE,IAAI;;AACf,qCAAmB;EACjB,UAAU,EAAE,OAA4B;EACxC,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,GAAG;;AACd,2CAAO;EACL,UAAU,EAAE,OAA4B;;AAC1C,0CAAI;EACF,KAAK,ELN2B,IAAM;;;AKQ5C,6CAA6C;EAC3C,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,IAAI;EACV,KAAK,EAAE,CAAC;;;AAGR,iDAAiB;EACf,UAAU,ELnEwB,OAAyB;EKoE3D,UAAU,EAAE,GAAG;;AACjB,mDAAmB;EACjB,OAAO,EAAE,QAA2C;;AACpD,yDAAO;EACL,UAAU,ELCsB,OAAW;EKA3C,KAAK,ELtB2B,IAAM;;;AKwB5C,+CAA+C;EAC7C,KAAK,EAAE,CAAC;EACR,IAAI,EAAE,IAAI;EACV,UAAU,EAAE,KAAK;;;AAGjB,yBAAQ;EACN,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,oBAA0B;EACzC,WAAW,EAAE,qBAAqB;EAClC,YAAY,EAAE,qBAAqB;EACnC,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,GAAG;EACT,WAAW,EAAE,IAAI;;AACnB,gDAA+B;EAC7B,IAAI,EAAE,IAAI;;;ACtEZ,uBAAM;EACJ,OAAO,EAAE,KAAK;;;AAEhB,oIAA+C;EAC7C,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,MAAM;EAChB,KAAK,EAAE,CAAC;EACR,cAAc,EAAE,MAAM;;;AAItB,0CAAO;EACL,OAAO,EAAE,YAAY;EACrB,cAAc,EAAE,MAAM;EACtB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,YAA+C;EACvD,KAAK,EAAE,IAAI;;AACf,4BAAW;EACT,KAAK,EAAE,IAAI;;AACX,kCAAK;EACH,OAAO,EAAE,KAAK;;AAChB,mCAAM;EACJ,UAAU,EAAE,GAAqB;;;AAEvC,QAAQ;EACN,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;;;AACZ,MAAM;EACJ,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,WAAW,EAAE,MAAM;EACnB,aAAa,EN/BuB,IAAI;EMgCxC,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,IAAI;;;AACpB,KAAK;EACH,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,cAAa;EACrB,KAAK,ENR+B,IAAU;EMS9C,SAAS,EAAE,GAAG;;;AAEhB,uBAAuB;EACrB,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,CAAC;EACT,cAAc,EAAE,QAAQ;EACxB,eAAe,EAAE,MAAM;;;AAGzB,iBAAiB;EACf,aAAa,ENhDuB,IAAI;EduExC,KAAK,EAAE,CAAC;EqBrGR,SAAS,ECCC,IAAQ;EDChB,WAAI,EAAE,IAAI;EACV,YAAK,EAAE,IAAI;ErBkGb,KAAK,EAAE,CAAC;;AACR,iDAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,uBAAO;EACL,KAAK,EAAE,IAAI;;AALb,iDAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,uBAAO;EACL,KAAK,EAAE,IAAI;;;AoBzBf,yDAAyD;EACvD,OAAO,EAAE,IAAI;EACb,KAAK,EN/C+B,OAAI;;;AMoDxC,qGAA+C;EAC7C,cAAc,EAAE,IAAqB;;AACrC,0HAAM;EACJ,KAAK,EAAE,IAAI;;AAEX,mwEAAqP;EACnP,KAAK,EAAE,IAAI;;;AACnB,+BAA+B;EGlF3B,KAAK,EAAE,IAAsB;EAG3B,OAAO,EAAE,KAAK;EAed,YAAoB,EAAE,QAA+B;EACrD,KAAK,EAAE,IAAuC;ECnB5C,YAAoB,EAAE,CAAC;;ADqBzB,0CAAa;EACX,YAAoB,EAAE,CAAC;;;AHgE/B,iCAAiC;EGtF7B,KAAK,EAAE,IAAsB;EAG3B,OAAO,EAAE,KAAK;EAed,YAAoB,EAAE,QAA+B;EACrD,KAAK,EAAE,SAAuC;;AAE9C,4CAAa;EACX,YAAoB,EAAE,CAAC;;ACA7B,iDAAwB;EACtB,YAAoB,EAAE,CAAC;;AAEvB,mDAA0B;EACxB,KAAK,EALY,IAAkC;;;AJqEzD,iCAAiC;EG1F7B,KAAK,EAAE,IAAsB;EAG3B,OAAO,EAAE,KAAK;EAed,YAAoB,EAAE,QAA+B;EACrD,KAAK,EAAE,SAAuC;;AAE9C,4CAAa;EACX,YAAoB,EAAE,CAAC;;ACA7B,iDAAwB;EACtB,YAAoB,EAAE,CAAC;;AAEvB,mDAA0B;EACxB,KAAK,EALY,IAAkC;;;AJ0EzD,uDAAuD;EACrD,MAAM,EAAE,SAA2B;EACnC,SAAS,EAAE,GAAG;;;AAEhB,oBAAoB;EAClB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,SAA2B;EACnC,SAAS,EAAE,GAAG;;;AAOZ,itBAAqP;EACnP,KAAK,EAAE,IAAI;;;AAIjB,uBAAuB;EACrB,OAAO,EAAE,YAAY;EACrB,YAAY,EAAE,KAAK;EACnB,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,MAAM;EACtB,SAAS,EAAE,GAAG;;;AAEhB,gBAAgB;EACd,OAAO,EAAE,KAAK;EACd,KAAK,EN7H+B,IAAI;EM8HxC,SAAS,EAAE,GAAG;EACd,UAAU,EAAE,QAAO;EACnB,UAAU,EAAE,MAAM;;AAClB,kBAAC;EACC,SAAS,EAAE,OAAO;EAClB,UAAU,EAAE,MAAM;EAClB,aAAa,EAAE,GAAqB;;AACtC,6BAAY;EACV,aAAa,EAAE,CAAC;;;AA4DpB,KAAK;EACH,WAAW,EAAE,MAAM;;;AAGnB,+DAAmD;EACjD,kBAAkB,EAAE,MAAM;EAC1B,MAAM,EAAE,OAAO;EACf,WAAW,EJ/MuB,2DAAM;EIgNxC,SAAS,EAAE,OAAO;;AACpB,6SAAqP;EACnP,kBAAkB,EAAE,IAAI;EACxB,OAAO,EAAE,GAAqB;EAC9B,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,cAA6B;EACrC,SAAS,EAAE,GAAG;EACd,WAAW,EJvNuB,2DAAM;EIwNxC,UAAU,EAAE,oBAAmC;EAC/C,aAAa,EAAE,CAAC;EtBxNZ,kBAAoB,EAAE,kBAAM;EAK5B,eAAiB,EAAE,kBAAM;EAezB,UAAY,EAAE,kBAAM;;AsBuM1B,4BAAwB;EACtB,OAAO,EAAE,iBAAkB;;AAC7B,eAAW;EACT,MAAM,EAAE,OAAO;;AACjB,2CAAmC;EtB/N7B,kBAAoB,EsBgOZ,UAAU;EtB3NlB,eAAiB,EsB2NT,UAAU;EtB5MlB,UAAY,EsB4MJ,UAAU;EACtB,OAAO,EAAE,CAAC;EACV,YAAY,EAAE,QAAO;EACrB,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,IAAI;;AACd,oBAAgB;EtBrOV,kBAAoB,EsBsOZ,UAAU;EtBjOlB,eAAiB,EsBiOT,UAAU;EtBlNlB,UAAY,EsBkNJ,UAAU;;AACtB,mGAA6D;EAC3D,kBAAkB,EAAE,IAAI;;AAC5B,iYAAyU;EACvU,OAAO,EAAE,CAAC;EACV,OAAO,EAAE,cAAc;EACvB,YAAY,ENxLsB,IAAU;;AMyL9C,oBAAgB;EACd,YAAY,EAAE,eAA8B;;AAC9C,iFAAqE;EACnE,OAAO,EAAE,gBAAsB;EAC/B,OAAO,EAAE,gBAAgB;;AAC3B,ybAAiY;EAC/X,MAAM,EAAE,WAAW;EACnB,gBAAgB,EAAE,OAAmC;;;AAEzD,iEAAiE;EAC/D,KAAK,ENzN+B,OAAI;EM0NxC,MAAM,EAAE,iBAAc;;;AACxB,mFAAmF;EACjF,YAAY,EN5NwB,OAAI;;;AM8NxC,2HAA+G;EAC7G,aAAa,EN/NqB,OAAI;;;AMiO1C,oBAAoB;EAClB,OAAO,EAAE,IAAqB;EAC9B,SAAS,EAAE,IAAI;;;AAKjB,QAAQ;EACN,QAAQ,EAAE,IAAI;EACd,cAAc,EAAE,GAAG;EACnB,KAAK,EAAE,IAAI;EACX,WAAW,EJ3QyB,2DAAM;;;AI4Q5C,gBAAgB;EACd,OAAO,EAAE,aAAgB;EACzB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,cAA6B;EACrC,SAAS,EAAE,GAAG;EACd,UAAU,EAAE,oBAAmC;EtBhRzC,kBAAoB,EAAE,kBAAM;EAK5B,eAAiB,EAAE,kBAAM;EAezB,UAAY,EAAE,kBAAM;;;AsB+P5B,MAAM;EACJ,MAAM,EAAE,cAA6B;EACrC,gBAAgB,ENpOoB,IAAM;;AMqO1C,gBAAW;EACT,MAAM,EAAE,IAAI;;;AAChB,4BAA4B;EAC1B,OAAO,EAAE,CAAC;;;AACZ,2FAA2F;EACzF,MAAM,EAAE,WAAW;EACnB,gBAAgB,EAAE,OAAmC;;;AAKrD,+DAAuD;EACrD,MAAM,EAAE,WAAW;;;AACvB,uBAAuB;EACrB,MAAM,EAAE,KAAuB;EAE/B,KAAK,EJzS+B,OAAW;EI0S/C,OAAO,EAAE,KAAK;;AACd,mCAAK;EACH,cAAc,EAAE,QAAQ;;;AAI5B,uBAAuB;EACrB,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,MAAM;EAChB,KAAK,EAAE,CAAC;EACR,cAAc,EAAE,MAAM;;;AAuBxB,kCAAkC;EAChC,WAAW,EAAE,MAAM;EACnB,OAAO,EAAE,GAAqB;;AAC9B,sEAAiB;EACf,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,YAAY;EACrB,SAAS,EAAE,GAAG;EACd,gBAAgB,ENjRkB,OAAmB;EMkRrD,MAAM,EAAE,cAA6B;EACrC,KAAK,EN7U6B,IAAI;;;AM+U1C,kCAAkC;EAChC,WAAW,EAAE,CAAC;;;AAChB,kCAAkC;EAChC,YAAY,EAAE,CAAC;;;AAcjB,UAAU;EACR,KAAK,EAAE,IAAuB;EAC9B,MAAM,EAAE,IAAqB;EAC7B,MAAM,EAAE,MAAwB;EAChC,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,GAAG;EAClB,UAAU,ENrW0B,IAAI;EMsWxC,MAAM,EAAE,OAAO;EtB5WT,kBAAoB,EAAE,oBAAM;EAK5B,eAAiB,EAAE,oBAAM;EAezB,UAAY,EAAE,oBAAM;;AsB0V1B,iBAAQ;EACN,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,GAAG;EAClB,UAAU,ENhXwB,IAAI;EMiXtC,IAAI,EAAE,IAAI;EACV,GAAG,EAAE,IAAI;EtBvXL,kBAAoB,EAAE,oBAAM;EAK5B,eAAiB,EAAE,oBAAM;EAezB,UAAY,EAAE,oBAAM;;AsBqW1B,gBAAO;EACL,OAAO,EAAE,OAAO;EAChB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,IAAqB;EAC3B,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,IAAI;EACf,KAAK,ENzX6B,IAAI;;;AM0X1C,iBAAiB;EACf,UAAU,EAAE,OAAmB;;AAC/B,wBAAQ;EACN,IAAI,EN5W8B,IAAI;EM6WtC,UAAU,ENtUwB,OAAM;;AMuU1C,uBAAO;EACL,OAAO,EAAE,MAAM;;;AAEnB,+CAA+C;EAC7C,MAAM,EAAE,WAAW;;;AAiDnB,2GAAyB;EACvB,KAAK,EN7Z6B,OAAI;;AM+ZtC,22BAAqP;EACnP,MAAM,EAAE,iBAAc;;AAC1B,iDAAQ;EACN,MAAM,EAAE,iBAAc;;;AAE1B,mBAAmB;EACjB,WAAW,EAAE,MAAM;;AACnB,qCAAiB;EACf,OAAO,EAAE,aAAgB;EACzB,OAAO,EAAE,YAAY;EACrB,SAAS,EAAE,GAAG;;;AAClB,gEAAgE;EAC9D,KAAK,EN3Y+B,OAAM;;;AM8Y5C,+DAA+D;EAC7D,KAAK,EN/a+B,OAAI;;;AMkb1C,gEAAgE;EAC9D,KAAK,ENlc+B,OAAO;;;AMqc7C,6DAA6D;EAC3D,KAAK,EN9Y+B,OAAW;;;AMoZjD,UAAU;EtB3dF,iBAAoB,EAAE,aAAM;EAK5B,cAAiB,EAAE,aAAM;EAKzB,aAAgB,EAAE,aAAM;EAKxB,YAAe,EAAE,aAAM;EAKvB,SAAY,EAAE,aAAM;;;AsByc5B,WAAW;EtB7dH,iBAAoB,EAAE,cAAM;EAK5B,cAAiB,EAAE,cAAM;EAKzB,aAAgB,EAAE,cAAM;EAKxB,YAAe,EAAE,cAAM;EAKvB,SAAY,EAAE,cAAM;;;AsB2c5B,WAAW;EtB/dH,iBAAoB,EAAE,cAAM;EAK5B,cAAiB,EAAE,cAAM;EAKzB,aAAgB,EAAE,cAAM;EAKxB,YAAe,EAAE,cAAM;EAKvB,SAAY,EAAE,cAAM;;;AsB6c5B,OAAO;EtBjeC,iBAAoB,EAAE,UAAM;EAK5B,cAAiB,EAAE,UAAM;EAKzB,aAAgB,EAAE,UAAM;EAKxB,YAAe,EAAE,UAAM;EAKvB,SAAY,EAAE,UAAM;;AsB+c1B,iBAAW;EtBneL,iBAAoB,EsBoeL,wBAAwB;EtB/dvC,cAAiB,EsB+dF,wBAAwB;EtB1dvC,aAAgB,EsB0dD,wBAAwB;EtBrdvC,YAAe,EsBqdA,wBAAwB;EtBhdvC,SAAY,EsBgdG,wBAAwB;;AAC7C,kBAAY;EtBreN,iBAAoB,EsBseL,yBAAyB;EtBjexC,cAAiB,EsBieF,yBAAyB;EtB5dxC,aAAgB,EsB4dD,yBAAyB;EtBvdxC,YAAe,EsBudA,yBAAyB;EtBldxC,SAAY,EsBkdG,yBAAyB;;AAC9C,kBAAY;EtBveN,iBAAoB,EsBweL,yBAAyB;EtBnexC,cAAiB,EsBmeF,yBAAyB;EtB9dxC,aAAgB,EsB8dD,yBAAyB;EtBzdxC,YAAe,EsBydA,yBAAyB;EtBpdxC,SAAY,EsBodG,yBAAyB;;;AAEhD,yCAAyC;EAErC,8BAAqB;IACnB,MAAM,EAAE,SAAS;;EAEjB,2aAAqP;IACnP,aAAa,EAAE,KAAK;IACpB,OAAO,EAAE,KAAK;;EAClB,cAAK;IACH,aAAa,EAAE,KAAK;IACpB,OAAO,EAAE,KAAK;;;EAEhB,8YAAqO;IACnO,aAAa,EAAE,CAAC;;;EAElB,wCAAuB;IACrB,aAAa,EAAE,KAAK;IACpB,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE,KAAK;IACd,KAAK,EAAE,IAAI;;EACb,4BAAW;IACT,MAAM,EAAE,WAAW;;;EACvB,mEAAmE;IACjE,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,GAAG;IACd,OAAO,EAAE,KAAuB;;;AH5ehC,oCAAsB;EQhC1B,YAAY;IAER,OAAO,EAAE,IAAI;;;;AR8Bb,oCAAsB;EQ5B1B,YAAY;IAER,OAAO,EAAE,IAAI;;;;AAEjB,WAAW;EACT,KAAK,EAAE,IAAI;;;AAEb,YAAY;EACV,KAAK,EAAE,KAAK;;;AAEd,WAAW;EACT,KAAK,EAAE,IAAI;;;AC4Cb,qEAAS;EACP,eAAe,EAAE,QAAQ;EACzB,cAAc,EAAE,CAAC;EACjB,WAAW,EAAE,IAAI;EACjB,aAAa,EZ/BuB,IAAI;;AYgCxC,6FAAO;EACL,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,8BAAkB;EACxB,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,MAAM;;AACpB,8JAAM;EACJ,SAAS,EZjByB,GAAG;EYkBrC,MAAM,EAAE,CAAC;EACT,QAAQ,EAAE,OAAO;EACjB,OAAO,EZnB2B,QAAmC;;AYoBvE,sOAA8B;EAC5B,iBAAiB,EAAE,CAAC;;AACtB,uFAAK;EACH,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,IAAI;EAChB,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,MAAM;;AACnB,gGAAE;EACA,WAAW,EZnDqB,IAAI;EYoDpC,aAAa,EAAE,iBAA6B;;AAChD,8EAAE;EACA,gBAAgB,EAAE,WAAW;EAC7B,cAAc,EAAE,MAAM;;;AAE1B,oFAAc;EACZ,WAAW,EAAE,IAAuB;;AACpC,qHAAY;EACV,aAAa,EAAE,CAAC;;;AACpB,8HAA4B;EAC1B,KAAK,EAAE,EAAE;EACT,aAAa,EAAE,CAAC;;AAChB,4XAA0C;EACxC,MAAM,EAAE,CAAC;;;AAEb,mBAAmB;EACjB,KAAK,EZxD+B,IAAwB;EYyD5D,SAAS,EAAE,GAAG;;;AAChB,kBAAkB;EAChB,KAAK,EZ3D+B,IAAwB;EY4D5D,SAAS,EAAE,GAAG;;;AAIhB,6HAAyD;EACvD,gBAAgB,EZpCoB,OAAmB;;;AYsCzD,gBAAgB;EACd,gBAAgB,EZvCoB,OAAmB;;;;AY4CzD,mDAAsB;EACpB,MAAM,EAAE,iBAA6B;;AACrC,yDAAE;EACA,aAAa,EAAE,iBAA6B;EAC5C,WAAW,EAAE,iBAA6B;;AAC5C,qGAAwB;EACtB,mBAAmB,EAAE,CAAC;;;AAE1B,kBAAkB;EAChB,MAAM,EAAE,iBAA6B;;;AAGrC,0BAAE;EACA,aAAa,EAAE,iBAA6B;;AAC9C,gDAAwB;EACtB,mBAAmB,EAAE,CAAC;;;AAGxB,6CAAwB;EACtB,mBAAmB,EAAE,CAAC;;AACxB,gDAAM;EACJ,YAAY,EAAE,SAAS;EACvB,aAAa,EAAE,iBAA6B;;AAC9C,6CAAwB;EACtB,mBAAmB,EAAE,CAAC;;;;AAG1B,oBAAoB;EAClB,aAAa,EZhHuB,IAAI;EYiHxC,SAAS,EAAE,IAAI;EACf,QAAQ,EAAE,IAAI;;AACd,0BAAK;EACH,aAAa,EAAE,YAAY;;AAC3B,4DAAM;EACJ,WAAW,EAAE,MAAM;;;ACzIzB,CAAC;EACC,KAAK,EbkE+B,OAAW;EajE/C,eAAe,EAAE,IAAI;EACrB,MAAM,EAAE,OAAO;;AACf,OAAO;EACL,KAAK,EbgD6B,OAAwB;;Aa/C5D,SAAS;EACP,KAAK,Eb6C6B,OAAO;;;AanB7C,IAAI;EACF,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,MAAM;;;AAEpB,IAAI;EACF,WAAW,EX3CyB,2DAAM;EW4C1C,WAAW,EAAE,MAAM;EACnB,KAAK,EX/C+B,OAAW;EWgD/C,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,MAAM;EAClB,UAAU,EbnD0B,OAAO;;;AaqD7C,aAAa;EACX,UAAU,EAAE,IAAI;;;AAElB,eAAe;EACb,UAAU,EAAE,MAAM;;;AAEpB,cAAc;EACZ,UAAU,EAAE,KAAK;;;AAEnB,cAAc;EACZ,SAAS,EAAE,IAAI;;;AAEjB,eAAe;EACb,SAAS,EAAE,IAAI;;;AAEjB,qBAAqB;EACnB,SAAS,EAAE,GAAG;;;AAEhB,eAAe;EACb,eAAe,EAAE,YAAY;;;AAE/B,gBAAgB;EACd,KAAK,EAAE,kBAAkB;;;AAC3B,uBAAuB;EACrB,KAAK,EAAE,kBAAgC;;;AACzC,aAAa;EACX,KAAK,EAAE,kBAAgB;;;AACzB,oBAAoB;EAClB,KAAK,EAAE,kBAA8B;;;AACvC,gBAAgB;EACd,KAAK,EAAE,kBAAiB;;;AAC1B,uBAAuB;EACrB,KAAK,EAAE,kBAA+B;;;AACxC,eAAe;EACb,KAAK,EAAE,kBAAe;;;AACxB,sBAAsB;EACpB,KAAK,EAAE,kBAA6B;;;AACtC,gBAAgB;EACd,KAAK,EAAE,kBAAsB;;;AAC/B,uBAAuB;EACrB,KAAK,EAAE,kBAAoC;;;AAkB7C,uEAAyB;EACvB,UAAU,EAAE,CAAC;EACb,WAAW,EAAE,GAAG;EAChB,WAAW,EX9GyB,8DAAa;;;AWgHnD,CAAC;EACC,WAAW,Eb1FyB,IAAI;Ea2FxC,MAAM,EAAE,CAAC;EACT,SAAS,Eb/F2B,IAAI;EagGxC,aAAa,Eb7FuB,IAAI;;;Aa+F1C,EAAE;EACA,SAAS,EAAE,IAAI;;;AAEjB,2CAAE;EACA,SAAS,EAAE,IAAI;;;AAEjB,EAAE;EACA,SAAS,EAAE,IAAI;;;AAEjB,EAAE;EACA,SAAS,EAAE,IAAI;;;AAEjB,EAAE;EACA,SAAS,EAAE,IAAI;;;AAEjB,EAAE;EACA,SAAS,EAAE,IAAI;;;AAEjB,EAAE;EACA,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,GAAG;EACX,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,iBAA6B;EACzC,MAAM,EAAE,MAAmB;EAC3B,OAAO,EAAE,CAAC;;;AAEZ,wCAAI;EACF,WAAW,EAAE,MAAM;EACnB,SAAS,EAAE,IAAI;EACf,UAAU,EblG0B,IAAM;EamG1C,MAAM,EAAE,iBAAiC;EACzC,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,KAAK;EACd,WAAW,EXrJyB,oNAAQ;EWsJ5C,KAAK,Eb1H+B,OAAI;Ea2HxC,UAAU,EAAE,IAAI;;AAChB,2CAAY;EACV,SAAS,EAAE,GAAG;;;AAmClB,2FAAmB;EACjB,UAAU,EAAE,IAAI;EAChB,WAAW,EbzKyB,IAAI;Ea0KxC,aAAa,Eb1KuB,IAAI;;Aa2KxC,uGAAE;EACA,UAAU,EAAE,IAAI;EAChB,WAAW,Eb7KuB,IAAI;;Aa8KtC,2JAAY;EACV,aAAa,EAAE,CAAC;;AAClB,mHAAE;EACA,aAAa,EAAE,CAAC;;AAClB,mHAAE;EACA,UAAU,EAAE,MAAM;;AAClB,+HAAE;EACA,UAAU,EAAE,MAAM;;AACtB,+HAAK;EACH,UAAU,EAAE,OAAO;;;AAEzB,oFAAsB;EACpB,UAAU,EAAE,OAAO;EACnB,WAAW,Eb3LyB,IAAI;Ea4LxC,aAAa,Eb5LuB,IAAI;;Aa6LxC,gGAAE;EACA,UAAU,EAAE,OAAO;EACnB,WAAW,Eb/LuB,IAAI;;AagMtC,oJAAY;EACV,aAAa,EAAE,CAAC;;AAClB,4GAAE;EACA,aAAa,EAAE,CAAC;;AAChB,wHAAE;EACA,UAAU,EAAE,IAAI;;;ACrOxB,kBAAkB;EAChB,MAAM,EAAE,iBAA6B;EACrC,aAAa,EAAE,IAAI;EACnB,OAAO,Ed6B6B,IAAI;Ec5BxC,WAAW,EAAE,IAAqB;EAClC,WAAW,EAAE,GAAG;EAChB,UAAU,EdoD0B,IAAM;EcnD1C,QAAQ,EAAE,QAAQ;;AAClB,wBAAO;EACL,OAAO,EAAE,SAAS;EAClB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,UAAU,EdoDwB,OAAO;EcnDzC,KAAK,EAAE,KAAoB;EAC3B,OAAO,EAAE,QAA2C;;AACtD,2CAA0B;EACxB,MAAM,EAAE,iBAA6B;EACrC,aAAa,EdcqB,IAAI;;;AcZ1C,mHAAmC;EACjC,MAAM,EAAE,iBAA6B;EACrC,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;EAChB,UAAU,EdkC0B,IAAM;EchC1C,MAAM,EAAE,YAAyB;;AACjC,mLAAuB;EACrB,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,CAAC;;;AAEb,+BAA+B;EAC7B,KAAK,EAAE,IAAI;;;AACb,cAAc;EACZ,YAAY,EAAE,iBAA0C;EACxD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,SAA2C;EACpD,WAAW,EZ3ByB,oNAAQ;EY4B5C,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EdI+B,OAAwB;;;AcH9D,2BAA2B;EACzB,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,SAA2C;EACpD,WAAW,EZnCyB,oNAAQ;EYoC5C,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,IAAI;EACd,KAAK,EZ7C+B,OAAW;;;AYiDjD,YAAY;EACV,gJAAgE;IAC9D,WAAW,EAAE,QAAQ;;;ACzDzB,IAAI;EACF,gBAAgB,EAAE,OAAO;EACzB,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,MAAM;EACf,OAAO,EAAE,KAAK;;;AAChB,EAAE;EACA,KAAK,EAAE,OAAO;EACd,UAAU,EAAE,MAAM;;;AACpB,IAAI;EACF,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;;;AAC3B,EAAE;EACA,WAAW,EAAE,IAAI;;;AACnB,EAAE;EACA,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,UAAU,EAAE,MAAM;;;AACpB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,UAAU,EAAE,MAAM;;;AACpB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;;;AACpB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;;;AAC3B,MAAM;EACJ,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;;;AAC3B,GAAG;EACD,UAAU,EAAE,MAAM;;;AACpB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;;;AAC3B,MAAM;EACJ,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,OAAO;;;AAC3B,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;;;AACnB,EAAE;EACA,KAAK,EAAE,OAAO;;;AAChB,EAAE;EACA,KAAK,EAAE,OAAO;;;AAChB,EAAE;EACA,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,IAAI;;;AACb,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,IAAI;;;AACb,GAAG;EACD,KAAK,EAAE,MAAM;;;AACf,GAAG;EACD,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;;;AACnB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,IAAI;;;AACb,GAAG;EACD,KAAK,EAAE,IAAI;;;AACb,GAAG;EACD,WAAW,EAAE,IAAI;;;AACnB,EAAE;EACA,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,IAAI;;;AACb,GAAG;EACD,KAAK,EAAE,IAAI;;;AACb,GAAG;EACD,KAAK,EAAE,IAAI;;;AACb,GAAG;EACD,KAAK,EAAE,OAAO;;;AAChB,GAAG;EACD,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,OAAO;;;ACjJ3B,kBAAkB;EAChB,OAAO,EAAE,YAAY;;AACrB,uCAAsB;EACpB,KAAK,EAAE,KAAK;;AACd,oBAAC;EACC,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,GAAG;;AACZ,gCAAa;EACX,YAAY,EAAE,CAAC;;AACnB,+FAAI;EACF,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;;AAChB,uHAAS;EACP,KAAK,EdR2B,OAAW;;;AcSjD,qBAAqB;EACnB,aAAa,EAAE,CAAC;EAChB,KAAK,EhB2B+B,OAAwB;EgB1B5D,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,YAAY;;;AbanB,oCAAsB;EaTxB,qBAAqB;IACnB,OAAO,EAAE,IAAI;;;EACf,uCAAuC;IACrC,OAAO,EAAE,IAAI;;;AAEjB,YAAY;EACV,uCAAuC;IACrC,OAAO,EAAE,IAAI;;;AC9BjB,SAAS;EACP,QAAQ,EAAE,KAAK;EACf,GAAG,ECAO,OAAO;;;ADGjB,gBAAO;EACL,eAAe,EAAE,IAAI;;;AAEzB,cAAc;E/B+FZ,KAAK,EAAE,CAAC;;AACR,2CAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,oBAAO;EACL,KAAK,EAAE,IAAI;;A+BnGb,oCAAM;EACJ,OAAO,EAAE,YAAY;;AACvB,uBAAQ;EACN,UAAU,EAAE,wBAAoB;;AAEhC,6BAAa;EACX,WAAW,EAAE,iBAAyB;;AACxC,8BAAc;EACZ,YAAY,EAAE,iBAAyB;;AAC3C,gBAAC;EACC,MAAM,EAAE,IAAmB;EAC3B,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,IAAmB;EAChC,OAAO,EAAE,MAAiB;;;AAG5B,qDAAiB;EACf,MAAM,EAAE,IAAmB;EAC3B,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,IAAmB;EAChC,OAAO,EAAE,SAAS;EAClB,aAAa,EAAE,CAAC;EAChB,OAAO,EAAE,KAAK;EACd,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,SAAS;EACzB,SAAS,EAAE,GAAG;EACd,KAAK,EjBvB6B,IAAI;EiBwBtC,WAAW,EAAE,MAAM;;AAErB,oBAAE;EACA,aAAa,EAAE,CAAC;;AAEhB,+BAAY;EACV,UAAU,EAAE,iBAAyB;;AACvC,kCAAe;EACb,aAAa,EAAE,iBAAyB;;AAC1C,4BAAS;EACP,UAAU,EAAE,OAAsC;;AAClD,8BAAC;EACC,KAAK,EjBNyB,IAAwB;EiBOtD,YAAY,EAAE,iBAAgD;EAC9D,OAAO,EAAE,gBAAyB;;AAClC,oCAAO;EACL,UAAU,EAAE,OAAsC;;AACxD,qGAAI;EACF,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,OAAO;EACnB,KAAK,EAAE,OAAO;EACd,YAAY,EAAE,CAAC;EACf,aAAa,EAAE,CAAC;;AAElB,wCAAmB;EACjB,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,MAAM;EAGnB,SAAS,EAAE,KAAI;EACf,WAAW,EAAE,KAAK;EAClB,KAAK,EAAE,OAAyB;;AAGpC,2DAAuB;EACrB,KAAK,EfnE6B,OAAW;EeoE7C,OAAO,EAAE,gBAAmB;EAC5B,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;EAClB,UAAU,EjBtEwB,OAAyB;EiBuE3D,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,iBAAgD;EAC/D,UAAU,EAAE,iBAAgD;EAC5D,YAAY,EAAE,YAAY;;AAE1B,uEAAO;EACL,UAAU,EjB7EsB,OAAyB;;AiB8EzD,+GAAmB;EACjB,KAAK,EjB3CyB,IAAwB;;AiB4C1D,mGAAmB;EAGjB,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,KAAI;EACf,WAAW,EAAE,KAAK;EAClB,KAAK,EAAE,OAAyB;;AAIlC,sHAAI;EACF,OAAO,EAAE,IAAI;;AACf,sIAAc;EACZ,OAAO,EAAE,KAAK;;AAGd,2CAAG;EACD,UAAU,EAAE,OAAsC;EAClD,OAAO,EAAE,gBAAyB;;AACpC,yDAAiB;EACf,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,OAAsC;EAClD,OAAO,EAAE,gBAAyB;;AACtC,2DAA2B;EACzB,KAAK,EjBpE2B,IAAwB;;AiBqE1D,mDAAmB;EACjB,KAAK,EAAE,OAAsC;;AACjD,+BAAa;EACX,SAAS,EAAE,KAAI;;AAEb,2CAAG;EACD,UAAU,EAAE,OAAsC;EAClD,OAAO,EAAE,gBAAyB;;AACpC,yDAAiB;EACf,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,OAAsC;EAClD,OAAO,EAAE,gBAAyB;EAClC,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;;AACvB,2DAA2B;EACzB,KAAK,EjBpF2B,IAAwB;;AiBqF1D,mDAAmB;EACjB,KAAK,EAAE,OAAsC;;AACjD,+BAAa;EACX,SAAS,EAAE,KAAI;;AAEjB,+BAAa;EACX,OAAO,EAAE,KAAK;;AAChB,uBAAK;EACH,aAAa,EAAE,CAAC;EAChB,OAAO,EAAE,IAAI;;AAEb,kCAAK;EACH,OAAO,EAAE,KAAK;;AAClB,4BAAU;EACR,aAAa,EAAE,CAAC;EAChB,KAAK,EjBnG6B,OAAwB;EiBoG1D,WAAW,EAAE,MAAM;;AACrB,mBAAC;EACC,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,gBAAmB;EAC5B,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,SAAS,EAAE,GAAG;EACd,KAAK,EjB5G6B,OAAwB;;AiB6G1D,yBAAO;EACL,gBAAgB,EAAE,OAAoC;EACtD,MAAM,EAAE,OAAO;;AACf,6CAAmB;EACjB,KAAK,EjBjHyB,OAAwB;;AiBkH1D,0BAAQ;EACN,gBAAgB,EjB/EgB,OAAW;EiBgF3C,MAAM,EAAE,OAAO;EACf,KAAK,EjBvG2B,IAAM;;AiBwGtC,8CAAmB;EACjB,KAAK,EjBzGyB,IAAM;;;AiB2G5C,mBAAmB;EACjB,OAAO,EjBhF6B,GAAG;EiBiFvC,gBAAgB,EjBvFoB,OAAW;EiBwF/C,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,OAAW;EACpB,OAAO,EAAE,KAAK;EACd,KAAK,EjBpK+B,OAAyB;EiBqK7D,aAAa,EAAE,OAAW;;AAC1B,oCAAgB;EACd,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,IAAI;EACnB,OAAO,EAAE,QAAQ;EACjB,YAAY,EAAE,OAAuB;;AACvC,uBAAG;EACD,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,sBAA0B;EAClC,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EjBvGkB,OAAW;EiBwG7C,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,IAAI;;AACrB,6DAAqB;EACnB,KAAK,EjBpL6B,OAAyB;EiBqL3D,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,OAA2C;EACpD,aAAa,EAAE,OAAW;;AAE1B,yEAAO;EACL,UAAU,EAAE,wBAAoB;;AAClC,+EAAQ;EACN,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,MAAM;EACd,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,CAAC;EAChB,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,WAAa;;AAEzB,yFAAQ;EACN,UAAU,EAAE,MAAM;;AACxB,iCAAa;EACX,UAAU,EAAE,SAAkB;EAC9B,aAAa,EAAE,OAAW;EAC1B,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,wBAAoB;;;AAI7B,gCAAM;EACJ,KAAK,EjBxI6B,OAAW;;AiByI/C,2BAAC;EACC,KAAK,EjB9K6B,OAAwB;;AiB+K1D,iCAAO;EACL,gBAAgB,EjB5IgB,OAAW;EiB6I3C,KAAK,EjBnK2B,IAAM;;;AiBqK5C,gBAAgB;EjCtNR,kBAAoB,EAAE,gBAAM;EAK5B,eAAiB,EAAE,gBAAM;EAezB,UAAY,EAAE,gBAAM;EiCoM1B,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;;AACV,4BAAa;EACX,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;;AACZ,0BAAW;EACT,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,KAAK;EACX,OAAO,EAAE,CAAC;;AACZ,2BAAY;EACV,KAAK,EAAE,KAAK;EACZ,IAAI,EAAE,IAAI;EACV,OAAO,EAAE,CAAC;;;AAGd,gBAAgB;EACd,UAAU,EAAE,qBAAuC;EACnD,gBAAgB,EAAE,2uCAA2uC;EAC7vC,eAAe,EAAE,SAAsB;;;AAEzC,gBAAgB;EACd,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;;AAEd,YAAY;EACV,QAAQ,EAAE,KAAK;EACf,GAAG,EAAE,CAAC;EACN,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,cAAc,EAAE,GAAG;EACnB,KAAK,EjBlL+B,KAAK;EiBmLzC,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,IAAI;EAChB,UAAU,EjBxLsB,OAAe;EiByL/C,OAAO,EjBlL6B,GAAG;;;AiBoLzC,WAAW;EACT,OAAO,EAAE,IAAI;EACb,UAAU,EjB5L0B,OAAW;EiB6L/C,KAAK,EjBnN+B,IAAM;EiBoN1C,OAAO,EAAE,gBAAuB;EAChC,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,IAAI;E/B3Kf,KAAK,EAAE,CAAC;;AACR,qCAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,iBAAO;EACL,KAAK,EAAE,IAAI;;A+BuKb,aAAC;EACC,KAAK,EjB3N6B,IAAM;EiB4NxC,WAAW,EAAE,IAAI;;AAEnB,eAAG;EACD,YAAY,EAAE,IAAqB;EACnC,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EjB5MkB,OAAW;EiB6M7C,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,IAAI;;AACrB,aAAC;EACC,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,OAAO;;;AAEnB,oBAAoB;EAClB,WAAW,EjBpNyB,KAAK;EiBqNzC,UAAU,EjB/R0B,OAAyB;EiBgS7D,UAAU,EAAE,IAAI;;;AAElB,eAAe;EACb,OAAO,EAAE,eAAmB;EAC5B,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,IAAI;;;AAEd,aAAa;EACX,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,kBAAc;EAC1B,OAAO,EAAE,IAAI;EACb,OAAO,EAAE,GAAkB;;AAC3B,gBAAI;EACF,OAAO,EAAE,KAAK;;;AAClB,MAAM;EACJ,KAAK,EjB1S+B,IAAI;;AiB2SxC,QAAC;EACC,aAAa,EAAE,IAAqB;;AACtC,+FAAgB;EACd,OAAO,EAAE,GAAG;EACZ,WAAW,EflTuB,oNAAQ;EemT1C,SAAS,EAAE,GAAG;EACd,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,IAAI;EACZ,KAAK,EjBnT6B,IAAI;;;AiBqT1C,mBAAmB;E/B5NjB,KAAK,EAAE,CAAC;;AACR,qDAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,yBAAO;EACL,KAAK,EAAE,IAAI;;;A+B0Nb,0BAAU;EACR,aAAa,EjBxSqB,IAAI;EiByStC,aAAa,EAAE,iBAA6B;EAC5C,cAAc,EjB1SoB,IAAI;;AiB2SxC,sCAAsB;EACpB,UAAU,EAAE,iBAA6B;EACzC,WAAW,EjB7SuB,IAAI;;AiB8SxC,4BAAY;EACV,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,IAAqB;EACpC,OAAO,EAAE,YAAY;;AACvB,wBAAQ;EACN,KAAK,EjBxS6B,IAAwB;EiByS1D,SAAS,EAAE,GAAG;;;AdpTd,oCAAsB;EcwTxB,gBAAgB;IACd,UAAU,EjBlVwB,OAAyB;;;EiBmV7D,WAAW;IACT,OAAO,EAAE,KAAK;;;EAChB,YAAY;IAER,IAAI,EAAE,MAAmB;;EAG3B,kBAAO;IACL,KAAK,EAAE,GAAG;IACV,IAAI,EAAE,CAAC;;;EACX,oBAAoB;IAClB,WAAW,EAAE,CAAC;;EACd,oCAAe;IACb,OAAO,ECrWD,OAAO;;EDsWf,0BAAO;IACL,QAAQ,EAAE,KAAK;IACf,SAAS,EAAE,IAAI;IACf,IAAI,EAAE,GAAG;IACT,GAAG,EAAE,CAAC;IACN,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,MAAM;;;Ad9UlB,qCAAsB;EciVxB,oBAAoB;IAClB,UAAU,EAAE,mBAAe;;;EAC7B,eAAe;IACb,MAAM,EAAE,CAAC;IACT,UAAU,EjB9WwB,OAAyB;;;AiBgX/D,YAAY;EACV,mCAAmC;IACjC,OAAO,EAAE,IAAI;;;EACf,oBAAoB;IAClB,WAAW,EAAE,CAAC;;;AE3XlB,aAAa;EACX,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EnB6E+B,KAAK;EmB5EzC,KAAK,EnBE+B,OAAyB;EmBD7D,UAAU,EAAE,OAAkC;EAC9C,UAAU,EAAE,kBAAiC;EAC7C,WAAW,EjBAyB,2DAAM;EiBC1C,OAAO,EnB+E6B,GAAG;;AmB9EvC,eAAC;EACC,KAAK,EnBqE6B,OAAW;EmBpE7C,eAAe,EAAE,IAAI;;AACvB,8BAAgB;EACd,OAAO,EAAE,IAAI;;AACf,kCAAoB;EAClB,OAAO,EAAE,IAAqB;EAC9B,gBAAgB,EAAE,OAAkC;EACpD,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,KAAK;EACjB,SAAS,EAAE,GAAG;EACd,MAAM,EAAE,OAAO;EACf,KAAK,EnBiD6B,OAAM;EdgC1C,KAAK,EAAE,CAAC;;AACR,mFAAS;EAEP,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,EAAE;;AACb,wCAAO;EACL,KAAK,EAAE,IAAI;;AiCrFX,gsDAAG;EACD,KAAK,EnBlB2B,OAAyB;;AmBmB3D,0FAAQ;EACN,KAAK,EAAE,IAAI;;AACb,6CAAU;EACR,KAAK,EAAE,IAAI;;AACb,kDAAiB;EACf,gBAAgB,EnBQgB,OAAI;EmBPpC,KAAK,EnB0B2B,IAAM;;AmBzBxC,yDAAwB;EACtB,gBAAgB,EnBXgB,OAAO;EmBYvC,KAAK,EnBzB2B,IAAI;;AmB0BxC,0CAA8B;EAC5B,OAAO,EAAE,KAAK;;AAChB,iCAAmB;EACjB,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,IAAqB;EAC9B,KAAK,EnBE6B,IAAwB;EmBD1D,OAAO,EAAE,IAAI;;AACb,oCAAE;EACA,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,GAAG;EACX,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,MAAM;EACd,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,iBAA6C;;AAC3D,oCAAE;EACA,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,CAAC;;AACT,sCAAC;EACC,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,GAAqB;EAC9B,KAAK,EnBjDyB,OAAyB;;AmBkD7D,uBAAW;EACT,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,IAAI;EACV,MAAM,EAAE,IAAI;EACZ,SAAS,EnBkByB,KAAK;;AmBjBvC,kCAAU;EACR,KAAK,EAAE,IAAI;;AACb,oEAAQ;EACN,KAAK,EAAE,IAAI;;AACb,qDAA+B;EAC7B,UAAU,EAAE,KAAK;;AACjB,gIAAQ;EACN,KAAK,EAAE,IAAI;;AACb,gEAAU;EACR,KAAK,EAAE,IAAI;;AACf,4CAAoB;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAuB;EAChC,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,MAAM;;;AhBhDpB,oCAAsB;EgBmDxB,aAAa;IACX,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,IAAI;;EACb,mBAAO;IACL,OAAO,EAAE,KAAK;;;EAClB,GAAG;IACD,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;;;ACzEd,gBAAG;EACD,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,eAAe;;AAEzB,uBAAU;EACR,aAAa,EpBUqB,IAAI;;AoBTtC,iCAAS;EACP,UAAU,EAAE,MAAM;;AAEtB,oCAAuB;EACrB,UAAU,EAAE,MAAM;;AAGpB,4DAAoC;EAClC,aAAa,EpBCqB,IAAI;;AoBUxC,uBAAU;EACR,WAAW,EpBXuB,IAAI;EoBYtC,WAAW,EpBZuB,IAAI;EoBatC,aAAa,EpBbqB,IAAI;;AoBmBtC,4TAAK;EACH,aAAa,EAAE,CAAC;;AAKlB,qCAAQ;EACN,YAAY,EAAE,GAAG;;AAUrB,8BAAiB;EACf,YAAY,EAAE,kBAAc;;AAC5B,oEAAM;EACJ,UAAU,EAAE,sBAAsB;EAClC,YAAY,EAAE,6BAAyB;;AAG3C,2EAAiD;EAC/C,UAAU,EAAE,WAAW;;AACzB,2EAAiD;EAC/C,UAAU,EAAE,WAAW;;AAGzB,sDAA4B;EAC1B,aAAa,EAAE,IAAqB;;AACtC,wBAAW;EACT,WAAW,EpBpDuB,IAAI;;AoBuDxC,yBAAY;EACV,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,IAAqB;;AACtC,yBAAY;EACV,KAAK,ElBrF6B,OAAW;;AkBsF/C,yBAAY;EACV,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,iBAA2C;;AACrD,wBAAW;EACT,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,iBAA2C;;AACrD,0BAAa;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,KAAK;;AAMd,qSAAW;EACT,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,IAAI;;AAEf,2VAAO;EACL,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,GAAO;EAChB,WAAW,EAAE,WAAW;EACxB,OAAO,EAAE,YAAY;;AACzB,2VAAmB;EACjB,OAAO,EAAE,YAAY;;AAGzB,qBAAQ;EACN,KAAK,EAAE,KAAK;EACZ,KAAK,EAAE,GAAG;EACV,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,aAAuC;EAC/C,OAAO,EpB7F2B,IAAI;EoB8FtC,UAAU,EpBtDwB,OAAmB;EoBuDrD,MAAM,EAAE,iBAA6B;;AAErC,2EAAS;EACP,SAAS,EAAE,GAAG;;AAChB,2BAAK;EACH,aAAa,EAAE,CAAC;;AAClB,oCAAc;EACZ,OAAO,EAAE,KAAK;EACd,WAAW,ElB9HqB,8DAAa;EkB+H7C,WAAW,EAAE,IAAI;EACjB,UAAU,EpBrFsB,OAAmB;EoBsFnD,OAAO,EAAE,QAA2C;EACpD,MAAM,EAAE,KAAkB;EAC1B,aAAa,EpB5GmB,IAAI;EoB6GpC,SAAS,EAAE,IAAI;;AAEnB,yBAAY;EACV,UAAU,EpBzHwB,OAAO;EoB0HzC,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAuB;;AAGlC,kEAAwC;EACtC,cAAc,EAAE,KAAK;EACrB,SAAS,EAAE,GAAG;;AAIhB,0EAAgD;EAC9C,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,IAAI;EACZ,KAAK,EpBjJ6B,IAAI;;AoBkJtC,kKAAM;EACJ,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,sBAAsB;EACxC,WAAW,EAAE,MAAM;;AACrB,4FAAQ;EACN,YAAY,EAAE,CAAC;EACf,aAAa,EAAE,CAAC;EAChB,cAAc,EAAE,GAAG;;AACrB,sKAAI;EACF,KAAK,EpB5J2B,IAAI;;AoBmKxC,6BAAgB;EAEd,MAAM,EAAE,IAAI;;AACZ,gCAAE;EACA,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,GAAG;;AAClB,yCAAW;EACT,OAAO,EAAE,YAAY;EACrB,UAAU,EAAE,GAAG;;AACjB,yCAAW;EACT,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,IAAI;EAChB,WAAW,EAAE,MAAM;;AACrB,yCAAW;EACT,UAAU,EAAE,IAAI;EAChB,YAAY,EAAE,CAAC;;AAGnB,mDAAQ;EAEN,KAAK,EpB1L6B,IAAI;;AoB2LtC,6HAAO;EACL,SAAS,EAAE,eAAe;EAC1B,WAAW,EAAE,MAAM;;AAErB,2EAAS;EACP,KAAK,EpBnK2B,OAAI;;AoBoKtC,6HAAW;EACT,WAAW,EAAE,IAAI;EACjB,KAAK,ElBvM2B,OAAW;;AkByM/C,yDAAY;EACV,KAAK,EpBhI6B,OAAW;;AoBiI/C,eAAE;EACA,aAAa,EpBlLqB,IAAI;;AoBmLtC,kBAAE;EACA,WAAW,EAAE,IAAI;;AAEnB,gFAAgB;EACd,aAAa,EAAE,eAAgC;;AAEjD,kBAAE;EACA,MAAM,EAAE,aAA4C;;AAMxD,8BAAiB;EACf,aAAa,EpBjMqB,IAAI;;AoBmMtC,iCAAE;EACA,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,KAAuB;EAC/B,SAAS,EAAE,GAAG;EACd,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,OAAmB;EAC/B,KAAK,EpBzJ2B,OAAW;EoB0J3C,UAAU,EAAE,iBAA6B;EACzC,OAAO,EAAE,GAAqB;EAC9B,QAAQ,EAAE,QAAQ;;AAClB,wCAAQ;EACN,KAAK,EAAE,OAAmB;;AAC5B,6CAAW;EACT,KAAK,ElB1OyB,OAAW;EkB2OzC,SAAS,EAAE,eAAe;;AAE9B,oCAAK;EACH,aAAa,EAAE,GAAqB;EACpC,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,iBAAuB;EACpC,UAAU,EAAE,OAAa;EACzB,KAAK,EpB7M2B,IAAwB;;AoB8MxD,gDAAW;EACT,KAAK,ElBpPyB,OAAW;EkBqPzC,SAAS,EAAE,eAAe;;AAC9B,6CAAc;EACZ,UAAU,EAAE,CAAC;;AAEf,yGAAQ;EACN,WAAW,EAAE,IAAI;;AACjB,yRAA2B;EACzB,gBAAgB,EAAE,WAAW;EAC7B,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,eAAe;;AAC5B,oIAAU;EACR,WAAW,EAAE,IAAI;;AAErB,wCAAS;EACP,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,KAAK;EACd,KAAK,EpBlQ2B,IAAI;EoBmQpC,WAAW,EAAE,IAAI;;AACnB,wCAAS;EACP,OAAO,EAAE,YAAY;EACrB,aAAa,EAAE,GAAG;;AAEtB,wDAA8B;EAC5B,OAAO,EAAE,YAAY;EACrB,KAAK,EpB7M6B,OAAM;EoB8MxC,SAAS,EAAE,GAAG;EACd,YAAY,EpBtPsB,IAAI;;AoBuPxC,2BAAc;EACZ,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,KAAK;;AACd,qBAAQ;EACN,aAAa,EAAE,IAAI;EACnB,WAAW,EAAE,IAAI;;AAEnB,oDAAa;EACX,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,OAAO;EAChB,WAAW,EAAE,OAAO;EACpB,SAAS,EAAE,OAAO;EAClB,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,OAAO;;AAIlB,oGAAQ;EACN,YAAY,EAAE,GAAG;;;AjB1QrB,oCAAsB;EiB+QtB,qBAAQ;IACN,KAAK,EAAE,IAAI;;;AChTjB,wBAAwB;EACtB,KAAK,EnBK+B,OAAW;;;AmBHjD,KAAK;EACH,UAAU,EAAE,MAAM;;;;ECHlB,WAAW,EAAE,aAAa;EAC1B,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,GAAG,EAAE,sEAAoB;;;EAGzB,WAAW,EAAE,aAAa;EAC1B,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,GAAG,EAAE,2GAAyB;;;EAG9B,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,GAAG,EAAE,+FAAqB;;;EAG1B,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,GAAG,EAAE,sFAAkB;;;EAGvB,WAAW,EAAE,aAAa;EAC1B,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,GAAG,EAAE,kHAA4B;;;EAGjC,WAAW,EAAE,aAAa;EAC1B,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,GAAG,EAAE,yGAAyB",
-"sources": ["../../../bower_components/neat/app/assets/stylesheets/grid/_grid.scss","../../../bower_components/bourbon/dist/addons/_prefixer.scss","../../../bower_components/wyrm/sass/wyrm_core/_reset.sass","../../../bower_components/wyrm/sass/wyrm_core/_mixin.sass","../../../bower_components/font-awesome/scss/_path.scss","../../../bower_components/font-awesome/scss/_core.scss","../../../bower_components/font-awesome/scss/_larger.scss","../../../bower_components/font-awesome/scss/_fixed-width.scss","../../../bower_components/font-awesome/scss/_list.scss","../../../bower_components/font-awesome/scss/_variables.scss","../../../bower_components/font-awesome/scss/_bordered-pulled.scss","../../../bower_components/font-awesome/scss/_spinning.scss","../../../bower_components/font-awesome/scss/_rotated-flipped.scss","../../../bower_components/font-awesome/scss/_mixins.scss","../../../bower_components/font-awesome/scss/_stacked.scss","../../../bower_components/font-awesome/scss/_icons.scss","../../../bower_components/wyrm/sass/wyrm_core/_font_icon_defaults.sass","../../../bower_components/wyrm/sass/wyrm_core/_wy_variables.sass","../../../bower_components/wyrm/sass/wyrm_core/_alert.sass","../../../sass/_theme_variables.sass","../../../bower_components/neat/app/assets/stylesheets/grid/_media.scss","../../../bower_components/wyrm/sass/wyrm_core/_button.sass","../../../bower_components/wyrm/sass/wyrm_core/_dropdown.sass","../../../bower_components/wyrm/sass/wyrm_core/_form.sass","../../../bower_components/neat/app/assets/stylesheets/grid/_outer-container.scss","../../../bower_components/neat/app/assets/stylesheets/settings/_grid.scss","../../../bower_components/neat/app/assets/stylesheets/grid/_span-columns.scss","../../../bower_components/wyrm/sass/wyrm_core/_neat_extra.sass","../../../bower_components/wyrm/sass/wyrm_core/_generic.sass","../../../bower_components/wyrm/sass/wyrm_core/_table.sass","../../../bower_components/wyrm/sass/wyrm_core/_type.sass","../../../bower_components/wyrm/sass/wyrm_addons/pygments/_pygments.sass","../../../bower_components/wyrm/sass/wyrm_addons/pygments/_pygments_light.sass","../../../sass/_theme_breadcrumbs.sass","../../../sass/_theme_layout.sass","../../../bower_components/neat/app/assets/stylesheets/grid/_private.scss","../../../sass/_theme_badge.sass","../../../sass/_theme_rst.sass","../../../sass/_theme_mathjax.sass","../../../sass/_theme_font_local.sass"],
-"names": [],
-"file": "theme.css"
-}
diff --git a/doc/_static/doctools.js b/doc/_static/doctools.js
deleted file mode 100644
index c7bfe760a..000000000
--- a/doc/_static/doctools.js
+++ /dev/null
@@ -1,263 +0,0 @@
-/*
- * doctools.js
- * ~~~~~~~~~~~
- *
- * Sphinx JavaScript utilities for all documentation.
- *
- * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
- */
-
-/**
- * select a different prefix for underscore
- */
-$u = _.noConflict();
-
-/**
- * make the code below compatible with browsers without
- * an installed firebug like debugger
-if (!window.console || !console.firebug) {
- var names = ["log", "debug", "info", "warn", "error", "assert", "dir",
- "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace",
- "profile", "profileEnd"];
- window.console = {};
- for (var i = 0; i < names.length; ++i)
- window.console[names[i]] = function() {};
-}
- */
-
-/**
- * small helper function to urldecode strings
- */
-jQuery.urldecode = function(x) {
- return decodeURIComponent(x).replace(/\+/g, ' ');
-};
-
-/**
- * small helper function to urlencode strings
- */
-jQuery.urlencode = encodeURIComponent;
-
-/**
- * This function returns the parsed url parameters of the
- * current request. Multiple values per key are supported,
- * it will always return arrays of strings for the value parts.
- */
-jQuery.getQueryParameters = function(s) {
- if (typeof s == 'undefined')
- s = document.location.search;
- var parts = s.substr(s.indexOf('?') + 1).split('&');
- var result = {};
- for (var i = 0; i < parts.length; i++) {
- var tmp = parts[i].split('=', 2);
- var key = jQuery.urldecode(tmp[0]);
- var value = jQuery.urldecode(tmp[1]);
- if (key in result)
- result[key].push(value);
- else
- result[key] = [value];
- }
- return result;
-};
-
-/**
- * highlight a given string on a jquery object by wrapping it in
- * span elements with the given class name.
- */
-jQuery.fn.highlightText = function(text, className) {
- function highlight(node) {
- if (node.nodeType == 3) {
- var val = node.nodeValue;
- var pos = val.toLowerCase().indexOf(text);
- if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) {
- var span = document.createElement("span");
- span.className = className;
- span.appendChild(document.createTextNode(val.substr(pos, text.length)));
- node.parentNode.insertBefore(span, node.parentNode.insertBefore(
- document.createTextNode(val.substr(pos + text.length)),
- node.nextSibling));
- node.nodeValue = val.substr(0, pos);
- }
- }
- else if (!jQuery(node).is("button, select, textarea")) {
- jQuery.each(node.childNodes, function() {
- highlight(this);
- });
- }
- }
- return this.each(function() {
- highlight(this);
- });
-};
-
-/*
- * backward compatibility for jQuery.browser
- * This will be supported until firefox bug is fixed.
- */
-if (!jQuery.browser) {
- jQuery.uaMatch = function(ua) {
- ua = ua.toLowerCase();
-
- var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
- /(webkit)[ \/]([\w.]+)/.exec(ua) ||
- /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
- /(msie) ([\w.]+)/.exec(ua) ||
- ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
- [];
-
- return {
- browser: match[ 1 ] || "",
- version: match[ 2 ] || "0"
- };
- };
- jQuery.browser = {};
- jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
-}
-
-/**
- * Small JavaScript module for the documentation.
- */
-var Documentation = {
-
- init : function() {
- this.fixFirefoxAnchorBug();
- this.highlightSearchWords();
- this.initIndexTable();
- },
-
- /**
- * i18n support
- */
- TRANSLATIONS : {},
- PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; },
- LOCALE : 'unknown',
-
- // gettext and ngettext don't access this so that the functions
- // can safely bound to a different name (_ = Documentation.gettext)
- gettext : function(string) {
- var translated = Documentation.TRANSLATIONS[string];
- if (typeof translated == 'undefined')
- return string;
- return (typeof translated == 'string') ? translated : translated[0];
- },
-
- ngettext : function(singular, plural, n) {
- var translated = Documentation.TRANSLATIONS[singular];
- if (typeof translated == 'undefined')
- return (n == 1) ? singular : plural;
- return translated[Documentation.PLURALEXPR(n)];
- },
-
- addTranslations : function(catalog) {
- for (var key in catalog.messages)
- this.TRANSLATIONS[key] = catalog.messages[key];
- this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')');
- this.LOCALE = catalog.locale;
- },
-
- /**
- * add context elements like header anchor links
- */
- addContextElements : function() {
- $('div[id] > :header:first').each(function() {
- $('<a class="headerlink">\u00B6</a>').
- attr('href', '#' + this.id).
- attr('title', _('Permalink to this headline')).
- appendTo(this);
- });
- $('dt[id]').each(function() {
- $('<a class="headerlink">\u00B6</a>').
- attr('href', '#' + this.id).
- attr('title', _('Permalink to this definition')).
- appendTo(this);
- });
- },
-
- /**
- * workaround a firefox stupidity
- * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075
- */
- fixFirefoxAnchorBug : function() {
- if (document.location.hash)
- window.setTimeout(function() {
- document.location.href += '';
- }, 10);
- },
-
- /**
- * highlight the search words provided in the url in the text
- */
- highlightSearchWords : function() {
- var params = $.getQueryParameters();
- var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : [];
- if (terms.length) {
- var body = $('div.body');
- if (!body.length) {
- body = $('body');
- }
- window.setTimeout(function() {
- $.each(terms, function() {
- body.highlightText(this.toLowerCase(), 'highlighted');
- });
- }, 10);
- $('<p class="highlight-link"><a href="javascript:Documentation.' +
- 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>')
- .appendTo($('#searchbox'));
- }
- },
-
- /**
- * init the domain index toggle buttons
- */
- initIndexTable : function() {
- var togglers = $('img.toggler').click(function() {
- var src = $(this).attr('src');
- var idnum = $(this).attr('id').substr(7);
- $('tr.cg-' + idnum).toggle();
- if (src.substr(-9) == 'minus.png')
- $(this).attr('src', src.substr(0, src.length-9) + 'plus.png');
- else
- $(this).attr('src', src.substr(0, src.length-8) + 'minus.png');
- }).css('display', '');
- if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) {
- togglers.click();
- }
- },
-
- /**
- * helper function to hide the search marks again
- */
- hideSearchWords : function() {
- $('#searchbox .highlight-link').fadeOut(300);
- $('span.highlighted').removeClass('highlighted');
- },
-
- /**
- * make the url absolute
- */
- makeURL : function(relativeURL) {
- return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL;
- },
-
- /**
- * get the current relative url
- */
- getCurrentURL : function() {
- var path = document.location.pathname;
- var parts = path.split(/\//);
- $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() {
- if (this == '..')
- parts.pop();
- });
- var url = parts.join('/');
- return path.substring(url.lastIndexOf('/') + 1, path.length - 1);
- }
-};
-
-// quick alias for translations
-_ = Documentation.gettext;
-
-$(document).ready(function() {
- Documentation.init();
-});
diff --git a/doc/_static/down-pressed.png b/doc/_static/down-pressed.png
deleted file mode 100644
index 7c30d004b..000000000
Binary files a/doc/_static/down-pressed.png and /dev/null differ
diff --git a/doc/_static/down.png b/doc/_static/down.png
deleted file mode 100644
index f48098a43..000000000
Binary files a/doc/_static/down.png and /dev/null differ
diff --git a/doc/_static/file.png b/doc/_static/file.png
deleted file mode 100644
index 254c60bfb..000000000
Binary files a/doc/_static/file.png and /dev/null differ
diff --git a/doc/_static/fonts/FontAwesome.otf b/doc/_static/fonts/FontAwesome.otf
deleted file mode 100644
index 8b0f54e47..000000000
Binary files a/doc/_static/fonts/FontAwesome.otf and /dev/null differ
diff --git a/doc/_static/fonts/Inconsolata-Bold.ttf b/doc/_static/fonts/Inconsolata-Bold.ttf
deleted file mode 100644
index 360a232dd..000000000
Binary files a/doc/_static/fonts/Inconsolata-Bold.ttf and /dev/null differ
diff --git a/doc/_static/fonts/Inconsolata.ttf b/doc/_static/fonts/Inconsolata.ttf
deleted file mode 100644
index 4b8a36d24..000000000
Binary files a/doc/_static/fonts/Inconsolata.ttf and /dev/null differ
diff --git a/doc/_static/fonts/Lato-Bold.ttf b/doc/_static/fonts/Lato-Bold.ttf
deleted file mode 100644
index e8b9bf6a2..000000000
Binary files a/doc/_static/fonts/Lato-Bold.ttf and /dev/null differ
diff --git a/doc/_static/fonts/Lato-Regular.ttf b/doc/_static/fonts/Lato-Regular.ttf
deleted file mode 100644
index 7608bc3e0..000000000
Binary files a/doc/_static/fonts/Lato-Regular.ttf and /dev/null differ
diff --git a/doc/_static/fonts/RobotoSlab-Bold.ttf b/doc/_static/fonts/RobotoSlab-Bold.ttf
deleted file mode 100644
index e6ed0de53..000000000
Binary files a/doc/_static/fonts/RobotoSlab-Bold.ttf and /dev/null differ
diff --git a/doc/_static/fonts/RobotoSlab-Regular.ttf b/doc/_static/fonts/RobotoSlab-Regular.ttf
deleted file mode 100644
index 141d6c08c..000000000
Binary files a/doc/_static/fonts/RobotoSlab-Regular.ttf and /dev/null differ
diff --git a/doc/_static/fonts/fontawesome-webfont.eot b/doc/_static/fonts/fontawesome-webfont.eot
deleted file mode 100644
index 7c79c6a6b..000000000
Binary files a/doc/_static/fonts/fontawesome-webfont.eot and /dev/null differ
diff --git a/doc/_static/fonts/fontawesome-webfont.svg b/doc/_static/fonts/fontawesome-webfont.svg
deleted file mode 100644
index 45fdf3383..000000000
--- a/doc/_static/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,414 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata></metadata>
-<defs>
-<font id="fontawesomeregular" horiz-adv-x="1536" >
-<font-face units-per-em="1792" ascent="1536" descent="-256" />
-<missing-glyph horiz-adv-x="448" />
-<glyph unicode=" " horiz-adv-x="448" />
-<glyph unicode="&#x09;" horiz-adv-x="448" />
-<glyph unicode="&#xa0;" horiz-adv-x="448" />
-<glyph unicode="&#xa8;" horiz-adv-x="1792" />
-<glyph unicode="&#xa9;" horiz-adv-x="1792" />
-<glyph unicode="&#xae;" horiz-adv-x="1792" />
-<glyph unicode="&#xb4;" horiz-adv-x="1792" />
-<glyph unicode="&#xc6;" horiz-adv-x="1792" />
-<glyph unicode="&#x2000;" horiz-adv-x="768" />
-<glyph unicode="&#x2001;" />
-<glyph unicode="&#x2002;" horiz-adv-x="768" />
-<glyph unicode="&#x2003;" />
-<glyph unicode="&#x2004;" horiz-adv-x="512" />
-<glyph unicode="&#x2005;" horiz-adv-x="384" />
-<glyph unicode="&#x2006;" horiz-adv-x="256" />
-<glyph unicode="&#x2007;" horiz-adv-x="256" />
-<glyph unicode="&#x2008;" horiz-adv-x="192" />
-<glyph unicode="&#x2009;" horiz-adv-x="307" />
-<glyph unicode="&#x200a;" horiz-adv-x="85" />
-<glyph unicode="&#x202f;" horiz-adv-x="307" />
-<glyph unicode="&#x205f;" horiz-adv-x="384" />
-<glyph unicode="&#x2122;" horiz-adv-x="1792" />
-<glyph unicode="&#x221e;" horiz-adv-x="1792" />
-<glyph unicode="&#x2260;" horiz-adv-x="1792" />
-<glyph unicode="&#xe000;" horiz-adv-x="500" d="M0 0z" />
-<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
-<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
-<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
-<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
-<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
-<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
-<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
-<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
-<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
-<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
-<glyph unicode="&#xf016;" horiz-adv-x="1280" d="M128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280zM768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z " />
-<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
-<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
-<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
-<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
-<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
-<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
-<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
-<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
-<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
-<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
-<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
-<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
-<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
-<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
-<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q73 -1 153.5 -2t119 -1.5t52.5 -0.5l29 2q-32 95 -92 241q-53 132 -92 211zM21 -128h-21l2 79q22 7 80 18q89 16 110 31q20 16 48 68l237 616l280 724h75h53l11 -21l205 -480q103 -242 124 -297q39 -102 96 -235q26 -58 65 -164q24 -67 65 -149 q22 -49 35 -57q22 -19 69 -23q47 -6 103 -27q6 -39 6 -57q0 -14 -1 -26q-80 0 -192 8q-93 8 -189 8q-79 0 -135 -2l-200 -11l-58 -2q0 45 4 78l131 28q56 13 68 23q12 12 12 27t-6 32l-47 114l-92 228l-450 2q-29 -65 -104 -274q-23 -64 -23 -84q0 -31 17 -43 q26 -21 103 -32q3 0 13.5 -2t30 -5t40.5 -6q1 -28 1 -58q0 -17 -2 -27q-66 0 -349 20l-48 -8q-81 -14 -167 -14z" />
-<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q76 -32 140 -32q131 0 216 41t122 113q38 70 38 181q0 114 -41 180q-58 94 -141 126q-80 32 -247 32q-74 0 -101 -10v-144l-1 -173l3 -270q0 -15 12 -44zM541 761q43 -7 109 -7q175 0 264 65t89 224q0 112 -85 187q-84 75 -255 75q-52 0 -130 -13q0 -44 2 -77 q7 -122 6 -279l-1 -98q0 -43 1 -77zM0 -128l2 94q45 9 68 12q77 12 123 31q17 27 21 51q9 66 9 194l-2 497q-5 256 -9 404q-1 87 -11 109q-1 4 -12 12q-18 12 -69 15q-30 2 -114 13l-4 83l260 6l380 13l45 1q5 0 14 0.5t14 0.5q1 0 21.5 -0.5t40.5 -0.5h74q88 0 191 -27 q43 -13 96 -39q57 -29 102 -76q44 -47 65 -104t21 -122q0 -70 -32 -128t-95 -105q-26 -20 -150 -77q177 -41 267 -146q92 -106 92 -236q0 -76 -29 -161q-21 -62 -71 -117q-66 -72 -140 -108q-73 -36 -203 -60q-82 -15 -198 -11l-197 4q-84 2 -298 -11q-33 -3 -272 -11z" />
-<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q4 1 77 20q76 19 116 39q29 37 41 101l27 139l56 268l12 64q8 44 17 84.5t16 67t12.5 46.5t9 30.5t3.5 11.5l29 157l16 63l22 135l8 50v38q-41 22 -144 28q-28 2 -38 4l19 103l317 -14q39 -2 73 -2q66 0 214 9q33 2 68 4.5t36 2.5q-2 -19 -6 -38 q-7 -29 -13 -51q-55 -19 -109 -31q-64 -16 -101 -31q-12 -31 -24 -88q-9 -44 -13 -82q-44 -199 -66 -306l-61 -311l-38 -158l-43 -235l-12 -45q-2 -7 1 -27q64 -15 119 -21q36 -5 66 -10q-1 -29 -7 -58q-7 -31 -9 -41q-18 0 -23 -1q-24 -2 -42 -2q-9 0 -28 3q-19 4 -145 17 l-198 2q-41 1 -174 -11q-74 -7 -98 -9z" />
-<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l215 -1h293l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -42.5 2t-103.5 -1t-111 -1 q-34 0 -67 -5q-10 -97 -8 -136l1 -152v-332l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-88 0 -233 -14q-48 -4 -70 -4q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q8 192 6 433l-5 428q-1 62 -0.5 118.5t0.5 102.5t-2 57t-6 15q-6 5 -14 6q-38 6 -148 6q-43 0 -100 -13.5t-73 -24.5q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1744 128q33 0 42 -18.5t-11 -44.5 l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80z" />
-<glyph unicode="&#xf035;" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l446 -1h318l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -58.5 2t-138.5 -1t-128 -1 q-94 0 -127 -5q-10 -97 -8 -136l1 -152v52l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-82 0 -233 -13q-45 -5 -70 -5q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q6 137 6 433l-5 44q0 265 -2 278q-2 11 -6 15q-6 5 -14 6q-38 6 -148 6q-50 0 -168.5 -14t-132.5 -24q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1505 113q26 -20 26 -49t-26 -49l-162 -126 q-26 -20 -44.5 -11t-18.5 42v80h-1024v-80q0 -33 -18.5 -42t-44.5 11l-162 126q-26 20 -26 49t26 49l162 126q26 20 44.5 11t18.5 -42v-80h1024v80q0 33 18.5 42t44.5 -11z" />
-<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
-<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
-<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
-<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
-<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
-<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
-<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
-<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
-<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
-<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
-<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
-<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
-<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
-<glyph unicode="&#xf053;" horiz-adv-x="1152" d="M742 -37l-652 651q-37 37 -37 90.5t37 90.5l652 651q37 37 90.5 37t90.5 -37l75 -75q37 -37 37 -90.5t-37 -90.5l-486 -486l486 -485q37 -38 37 -91t-37 -90l-75 -75q-37 -37 -90.5 -37t-90.5 37z" />
-<glyph unicode="&#xf054;" horiz-adv-x="1152" d="M1099 704q0 -52 -37 -91l-652 -651q-37 -37 -90 -37t-90 37l-76 75q-37 39 -37 91q0 53 37 90l486 486l-486 485q-37 39 -37 91q0 53 37 90l76 75q36 38 90 38t90 -38l652 -651q37 -37 37 -90z" />
-<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
-<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
-<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
-<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
-<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
-<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
-<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
-<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
-<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
-<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
-<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
-<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
-<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
-<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
-<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
-<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
-<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf077;" horiz-adv-x="1664" d="M1611 320q0 -53 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-486 485l-486 -485q-36 -38 -90 -38t-90 38l-75 75q-38 36 -38 90q0 53 38 91l651 651q37 37 90 37q52 0 91 -37l650 -651q38 -38 38 -91z" />
-<glyph unicode="&#xf078;" horiz-adv-x="1664" d="M1611 832q0 -53 -37 -90l-651 -651q-38 -38 -91 -38q-54 0 -90 38l-651 651q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l486 -486l486 486q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
-<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
-<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf080;" horiz-adv-x="1920" d="M512 512v-384h-256v384h256zM896 1024v-896h-256v896h256zM1280 768v-640h-256v640h256zM1664 1152v-1024h-256v1024h256zM1792 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5z M1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf082;" d="M1307 618l23 219h-198v109q0 49 15.5 68.5t71.5 19.5h110v219h-175q-152 0 -218 -72t-66 -213v-131h-131v-219h131v-635h262v635h175zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
-<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
-<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
-<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
-<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
-<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
-<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
-<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
-<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
-<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
-<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
-<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
-<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
-<glyph unicode="&#xf09a;" horiz-adv-x="768" d="M511 980h257l-30 -284h-227v-824h-341v824h-170v284h170v171q0 182 86 275.5t283 93.5h227v-284h-142q-39 0 -62.5 -6.5t-34 -23.5t-13.5 -34.5t-3 -49.5v-142z" />
-<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
-<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
-<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
-<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
-<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
-<glyph unicode="&#xf0a2;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM183 128h1298q-164 181 -246.5 411.5t-82.5 484.5q0 256 -320 256t-320 -256q0 -254 -82.5 -484.5t-246.5 -411.5zM1664 128q0 -52 -38 -90t-90 -38 h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
-<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
-<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
-<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
-<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
-<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
-<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
-<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
-<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
-<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
-<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
-<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
-<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
-<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
-<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
-<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
-<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
-<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
-<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
-<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
-<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
-<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
-<glyph unicode="&#xf0d4;" d="M678 -57q0 -38 -10 -71h-380q-95 0 -171.5 56.5t-103.5 147.5q24 45 69 77.5t100 49.5t107 24t107 7q32 0 49 -2q6 -4 30.5 -21t33 -23t31 -23t32 -25.5t27.5 -25.5t26.5 -29.5t21 -30.5t17.5 -34.5t9.5 -36t4.5 -40.5zM385 294q-234 -7 -385 -85v433q103 -118 273 -118 q32 0 70 5q-21 -61 -21 -86q0 -67 63 -149zM558 805q0 -100 -43.5 -160.5t-140.5 -60.5q-51 0 -97 26t-78 67.5t-56 93.5t-35.5 104t-11.5 99q0 96 51.5 165t144.5 69q66 0 119 -41t84 -104t47 -130t16 -128zM1536 896v-736q0 -119 -84.5 -203.5t-203.5 -84.5h-468 q39 73 39 157q0 66 -22 122.5t-55.5 93t-72 71t-72 59.5t-55.5 54.5t-22 59.5q0 36 23 68t56 61.5t65.5 64.5t55.5 93t23 131t-26.5 145.5t-75.5 118.5q-6 6 -14 11t-12.5 7.5t-10 9.5t-10.5 17h135l135 64h-437q-138 0 -244.5 -38.5t-182.5 -133.5q0 126 81 213t207 87h960 q119 0 203.5 -84.5t84.5 -203.5v-96h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
-<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M876 71q0 21 -4.5 40.5t-9.5 36t-17.5 34.5t-21 30.5t-26.5 29.5t-27.5 25.5t-32 25.5t-31 23t-33 23t-30.5 21q-17 2 -50 2q-54 0 -106 -7t-108 -25t-98 -46t-69 -75t-27 -107q0 -68 35.5 -121.5t93 -84t120.5 -45.5t127 -15q59 0 112.5 12.5t100.5 39t74.5 73.5 t27.5 110zM756 933q0 60 -16.5 127.5t-47 130.5t-84 104t-119.5 41q-93 0 -144 -69t-51 -165q0 -47 11.5 -99t35.5 -104t56 -93.5t78 -67.5t97 -26q97 0 140.5 60.5t43.5 160.5zM625 1408h437l-135 -79h-135q71 -45 110 -126t39 -169q0 -74 -23 -131.5t-56 -92.5t-66 -64.5 t-56 -61t-23 -67.5q0 -26 16.5 -51t43 -48t58.5 -48t64 -55.5t58.5 -66t43 -85t16.5 -106.5q0 -160 -140 -282q-152 -131 -420 -131q-59 0 -119.5 10t-122 33.5t-108.5 58t-77 89t-30 121.5q0 61 37 135q32 64 96 110.5t145 71t155 36t150 13.5q-64 83 -64 149q0 12 2 23.5 t5 19.5t8 21.5t7 21.5q-40 -5 -70 -5q-149 0 -255.5 98t-106.5 246q0 140 95 250.5t234 141.5q94 20 187 20zM1664 1152v-128h-256v-256h-128v256h-256v128h256v256h128v-256h256z" />
-<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
-<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
-<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
-<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
-<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
-<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
-<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
-<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
-<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
-<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
-<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
-<glyph unicode="&#xf0f3;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1664 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5 q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
-<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f6;" horiz-adv-x="1280" d="M1024 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1024 608v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280z M768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z" />
-<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
-<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
-<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
-<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
-<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
-<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
-<glyph unicode="&#xf110;" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
-<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
-<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
-<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
-<glyph unicode="&#xf116;" horiz-adv-x="1792" />
-<glyph unicode="&#xf117;" horiz-adv-x="1792" />
-<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
-<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
-<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
-<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
-<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
-<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
-<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
-<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
-<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
-<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
-<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
-<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
-<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
-<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
-<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
-<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
-<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
-<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
-<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
-<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
-<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
-<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
-<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
-<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
-<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
-<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
-<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
-<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
-<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
-<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
-<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
-<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
-<glyph unicode="&#xf15b;" horiz-adv-x="1280" d="M1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
-<glyph unicode="&#xf15c;" horiz-adv-x="1280" d="M1024 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1024 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28 t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
-<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
-<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
-<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
-<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
-<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
-<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
-<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
-<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
-<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
-<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
-<glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
-<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
-<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
-<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
-<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M390 1408h219v-388h364v-241h-364v-394q0 -136 14 -172q13 -37 52 -60q50 -31 117 -31q117 0 232 76v-242q-102 -48 -178 -65q-77 -19 -173 -19q-105 0 -186 27q-78 25 -138 75q-58 51 -79 105q-22 54 -22 161v539h-170v217q91 30 155 84q64 55 103 132q39 78 54 196z " />
-<glyph unicode="&#xf174;" d="M1123 127v181q-88 -56 -174 -56q-51 0 -88 23q-29 17 -39 45q-11 30 -11 129v295h274v181h-274v291h-164q-11 -90 -40 -147t-78 -99q-48 -40 -116 -63v-163h127v-404q0 -78 17 -121q17 -42 59 -78q43 -37 104 -57q62 -20 140 -20q67 0 129 14q57 13 134 49zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
-<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
-<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
-<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
-<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
-<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
-<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
-<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
-<glyph unicode="&#xf180;" horiz-adv-x="1664" d="M1483 512l-587 -587q-52 -53 -127.5 -53t-128.5 53l-587 587q-53 53 -53 128t53 128l587 587q53 53 128 53t128 -53l265 -265l-398 -399l-188 188q-42 42 -99 42q-59 0 -100 -41l-120 -121q-42 -40 -42 -99q0 -58 42 -100l406 -408q30 -28 67 -37l6 -4h28q60 0 99 41 l619 619l2 -3q53 -53 53 -128t-53 -128zM1406 1138l120 -120q14 -15 14 -36t-14 -36l-730 -730q-17 -15 -37 -15v0q-4 0 -6 1q-18 2 -30 14l-407 408q-14 15 -14 36t14 35l121 120q13 15 35 15t36 -15l252 -252l574 575q15 15 36 15t36 -15z" />
-<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
-<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
-<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
-<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
-<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
-<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
-<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
-<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
-<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
-<glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf197;" horiz-adv-x="1792" />
-<glyph unicode="&#xf198;" horiz-adv-x="1792" />
-<glyph unicode="&#xf199;" horiz-adv-x="1792" />
-<glyph unicode="&#xf19a;" horiz-adv-x="1792" />
-<glyph unicode="&#xf19b;" horiz-adv-x="1792" />
-<glyph unicode="&#xf19c;" horiz-adv-x="1792" />
-<glyph unicode="&#xf19d;" horiz-adv-x="1792" />
-<glyph unicode="&#xf19e;" horiz-adv-x="1792" />
-<glyph unicode="&#xf500;" horiz-adv-x="1792" />
-</font>
-</defs></svg>
\ No newline at end of file
diff --git a/doc/_static/fonts/fontawesome-webfont.ttf b/doc/_static/fonts/fontawesome-webfont.ttf
deleted file mode 100644
index e89738de5..000000000
Binary files a/doc/_static/fonts/fontawesome-webfont.ttf and /dev/null differ
diff --git a/doc/_static/fonts/fontawesome-webfont.woff b/doc/_static/fonts/fontawesome-webfont.woff
deleted file mode 100644
index 8c1748aab..000000000
Binary files a/doc/_static/fonts/fontawesome-webfont.woff and /dev/null differ
diff --git a/doc/_static/jquery-1.11.1.js b/doc/_static/jquery-1.11.1.js
deleted file mode 100644
index d4b67f7e6..000000000
--- a/doc/_static/jquery-1.11.1.js
+++ /dev/null
@@ -1,10308 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.11.1
- * http://jquery.com/
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- *
- * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
- * Released under the MIT license
- * http://jquery.org/license
- *
- * Date: 2014-05-01T17:42Z
- */
-
-(function( global, factory ) {
-
- if ( typeof module === "object" && typeof module.exports === "object" ) {
- // For CommonJS and CommonJS-like environments where a proper window is present,
- // execute the factory and get jQuery
- // For environments that do not inherently posses a window with a document
- // (such as Node.js), expose a jQuery-making factory as module.exports
- // This accentuates the need for the creation of a real window
- // e.g. var jQuery = require("jquery")(window);
- // See ticket #14549 for more info
- module.exports = global.document ?
- factory( global, true ) :
- function( w ) {
- if ( !w.document ) {
- throw new Error( "jQuery requires a window with a document" );
- }
- return factory( w );
- };
- } else {
- factory( global );
- }
-
-// Pass this if window is not defined yet
-}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
-
-// Can't do this because several apps including ASP.NET trace
-// the stack via arguments.caller.callee and Firefox dies if
-// you try to trace through "use strict" call chains. (#13335)
-// Support: Firefox 18+
-//
-
-var deletedIds = [];
-
-var slice = deletedIds.slice;
-
-var concat = deletedIds.concat;
-
-var push = deletedIds.push;
-
-var indexOf = deletedIds.indexOf;
-
-var class2type = {};
-
-var toString = class2type.toString;
-
-var hasOwn = class2type.hasOwnProperty;
-
-var support = {};
-
-
-
-var
- version = "1.11.1",
-
- // Define a local copy of jQuery
- jQuery = function( selector, context ) {
- // The jQuery object is actually just the init constructor 'enhanced'
- // Need init if jQuery is called (just allow error to be thrown if not included)
- return new jQuery.fn.init( selector, context );
- },
-
- // Support: Android<4.1, IE<9
- // Make sure we trim BOM and NBSP
- rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
-
- // Matches dashed string for camelizing
- rmsPrefix = /^-ms-/,
- rdashAlpha = /-([\da-z])/gi,
-
- // Used by jQuery.camelCase as callback to replace()
- fcamelCase = function( all, letter ) {
- return letter.toUpperCase();
- };
-
-jQuery.fn = jQuery.prototype = {
- // The current version of jQuery being used
- jquery: version,
-
- constructor: jQuery,
-
- // Start with an empty selector
- selector: "",
-
- // The default length of a jQuery object is 0
- length: 0,
-
- toArray: function() {
- return slice.call( this );
- },
-
- // Get the Nth element in the matched element set OR
- // Get the whole matched element set as a clean array
- get: function( num ) {
- return num != null ?
-
- // Return just the one element from the set
- ( num < 0 ? this[ num + this.length ] : this[ num ] ) :
-
- // Return all the elements in a clean array
- slice.call( this );
- },
-
- // Take an array of elements and push it onto the stack
- // (returning the new matched element set)
- pushStack: function( elems ) {
-
- // Build a new jQuery matched element set
- var ret = jQuery.merge( this.constructor(), elems );
-
- // Add the old object onto the stack (as a reference)
- ret.prevObject = this;
- ret.context = this.context;
-
- // Return the newly-formed element set
- return ret;
- },
-
- // Execute a callback for every element in the matched set.
- // (You can seed the arguments with an array of args, but this is
- // only used internally.)
- each: function( callback, args ) {
- return jQuery.each( this, callback, args );
- },
-
- map: function( callback ) {
- return this.pushStack( jQuery.map(this, function( elem, i ) {
- return callback.call( elem, i, elem );
- }));
- },
-
- slice: function() {
- return this.pushStack( slice.apply( this, arguments ) );
- },
-
- first: function() {
- return this.eq( 0 );
- },
-
- last: function() {
- return this.eq( -1 );
- },
-
- eq: function( i ) {
- var len = this.length,
- j = +i + ( i < 0 ? len : 0 );
- return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
- },
-
- end: function() {
- return this.prevObject || this.constructor(null);
- },
-
- // For internal use only.
- // Behaves like an Array's method, not like a jQuery method.
- push: push,
- sort: deletedIds.sort,
- splice: deletedIds.splice
-};
-
-jQuery.extend = jQuery.fn.extend = function() {
- var src, copyIsArray, copy, name, options, clone,
- target = arguments[0] || {},
- i = 1,
- length = arguments.length,
- deep = false;
-
- // Handle a deep copy situation
- if ( typeof target === "boolean" ) {
- deep = target;
-
- // skip the boolean and the target
- target = arguments[ i ] || {};
- i++;
- }
-
- // Handle case when target is a string or something (possible in deep copy)
- if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
- target = {};
- }
-
- // extend jQuery itself if only one argument is passed
- if ( i === length ) {
- target = this;
- i--;
- }
-
- for ( ; i < length; i++ ) {
- // Only deal with non-null/undefined values
- if ( (options = arguments[ i ]) != null ) {
- // Extend the base object
- for ( name in options ) {
- src = target[ name ];
- copy = options[ name ];
-
- // Prevent never-ending loop
- if ( target === copy ) {
- continue;
- }
-
- // Recurse if we're merging plain objects or arrays
- if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
- if ( copyIsArray ) {
- copyIsArray = false;
- clone = src && jQuery.isArray(src) ? src : [];
-
- } else {
- clone = src && jQuery.isPlainObject(src) ? src : {};
- }
-
- // Never move original objects, clone them
- target[ name ] = jQuery.extend( deep, clone, copy );
-
- // Don't bring in undefined values
- } else if ( copy !== undefined ) {
- target[ name ] = copy;
- }
- }
- }
- }
-
- // Return the modified object
- return target;
-};
-
-jQuery.extend({
- // Unique for each copy of jQuery on the page
- expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
-
- // Assume jQuery is ready without the ready module
- isReady: true,
-
- error: function( msg ) {
- throw new Error( msg );
- },
-
- noop: function() {},
-
- // See test/unit/core.js for details concerning isFunction.
- // Since version 1.3, DOM methods and functions like alert
- // aren't supported. They return false on IE (#2968).
- isFunction: function( obj ) {
- return jQuery.type(obj) === "function";
- },
-
- isArray: Array.isArray || function( obj ) {
- return jQuery.type(obj) === "array";
- },
-
- isWindow: function( obj ) {
- /* jshint eqeqeq: false */
- return obj != null && obj == obj.window;
- },
-
- isNumeric: function( obj ) {
- // parseFloat NaNs numeric-cast false positives (null|true|false|"")
- // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
- // subtraction forces infinities to NaN
- return !jQuery.isArray( obj ) && obj - parseFloat( obj ) >= 0;
- },
-
- isEmptyObject: function( obj ) {
- var name;
- for ( name in obj ) {
- return false;
- }
- return true;
- },
-
- isPlainObject: function( obj ) {
- var key;
-
- // Must be an Object.
- // Because of IE, we also have to check the presence of the constructor property.
- // Make sure that DOM nodes and window objects don't pass through, as well
- if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
- return false;
- }
-
- try {
- // Not own constructor property must be Object
- if ( obj.constructor &&
- !hasOwn.call(obj, "constructor") &&
- !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) {
- return false;
- }
- } catch ( e ) {
- // IE8,9 Will throw exceptions on certain host objects #9897
- return false;
- }
-
- // Support: IE<9
- // Handle iteration over inherited properties before own properties.
- if ( support.ownLast ) {
- for ( key in obj ) {
- return hasOwn.call( obj, key );
- }
- }
-
- // Own properties are enumerated firstly, so to speed up,
- // if last one is own, then all properties are own.
- for ( key in obj ) {}
-
- return key === undefined || hasOwn.call( obj, key );
- },
-
- type: function( obj ) {
- if ( obj == null ) {
- return obj + "";
- }
- return typeof obj === "object" || typeof obj === "function" ?
- class2type[ toString.call(obj) ] || "object" :
- typeof obj;
- },
-
- // Evaluates a script in a global context
- // Workarounds based on findings by Jim Driscoll
- // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
- globalEval: function( data ) {
- if ( data && jQuery.trim( data ) ) {
- // We use execScript on Internet Explorer
- // We use an anonymous function so that context is window
- // rather than jQuery in Firefox
- ( window.execScript || function( data ) {
- window[ "eval" ].call( window, data );
- } )( data );
- }
- },
-
- // Convert dashed to camelCase; used by the css and data modules
- // Microsoft forgot to hump their vendor prefix (#9572)
- camelCase: function( string ) {
- return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
- },
-
- nodeName: function( elem, name ) {
- return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
- },
-
- // args is for internal usage only
- each: function( obj, callback, args ) {
- var value,
- i = 0,
- length = obj.length,
- isArray = isArraylike( obj );
-
- if ( args ) {
- if ( isArray ) {
- for ( ; i < length; i++ ) {
- value = callback.apply( obj[ i ], args );
-
- if ( value === false ) {
- break;
- }
- }
- } else {
- for ( i in obj ) {
- value = callback.apply( obj[ i ], args );
-
- if ( value === false ) {
- break;
- }
- }
- }
-
- // A special, fast, case for the most common use of each
- } else {
- if ( isArray ) {
- for ( ; i < length; i++ ) {
- value = callback.call( obj[ i ], i, obj[ i ] );
-
- if ( value === false ) {
- break;
- }
- }
- } else {
- for ( i in obj ) {
- value = callback.call( obj[ i ], i, obj[ i ] );
-
- if ( value === false ) {
- break;
- }
- }
- }
- }
-
- return obj;
- },
-
- // Support: Android<4.1, IE<9
- trim: function( text ) {
- return text == null ?
- "" :
- ( text + "" ).replace( rtrim, "" );
- },
-
- // results is for internal usage only
- makeArray: function( arr, results ) {
- var ret = results || [];
-
- if ( arr != null ) {
- if ( isArraylike( Object(arr) ) ) {
- jQuery.merge( ret,
- typeof arr === "string" ?
- [ arr ] : arr
- );
- } else {
- push.call( ret, arr );
- }
- }
-
- return ret;
- },
-
- inArray: function( elem, arr, i ) {
- var len;
-
- if ( arr ) {
- if ( indexOf ) {
- return indexOf.call( arr, elem, i );
- }
-
- len = arr.length;
- i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;
-
- for ( ; i < len; i++ ) {
- // Skip accessing in sparse arrays
- if ( i in arr && arr[ i ] === elem ) {
- return i;
- }
- }
- }
-
- return -1;
- },
-
- merge: function( first, second ) {
- var len = +second.length,
- j = 0,
- i = first.length;
-
- while ( j < len ) {
- first[ i++ ] = second[ j++ ];
- }
-
- // Support: IE<9
- // Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)
- if ( len !== len ) {
- while ( second[j] !== undefined ) {
- first[ i++ ] = second[ j++ ];
- }
- }
-
- first.length = i;
-
- return first;
- },
-
- grep: function( elems, callback, invert ) {
- var callbackInverse,
- matches = [],
- i = 0,
- length = elems.length,
- callbackExpect = !invert;
-
- // Go through the array, only saving the items
- // that pass the validator function
- for ( ; i < length; i++ ) {
- callbackInverse = !callback( elems[ i ], i );
- if ( callbackInverse !== callbackExpect ) {
- matches.push( elems[ i ] );
- }
- }
-
- return matches;
- },
-
- // arg is for internal usage only
- map: function( elems, callback, arg ) {
- var value,
- i = 0,
- length = elems.length,
- isArray = isArraylike( elems ),
- ret = [];
-
- // Go through the array, translating each of the items to their new values
- if ( isArray ) {
- for ( ; i < length; i++ ) {
- value = callback( elems[ i ], i, arg );
-
- if ( value != null ) {
- ret.push( value );
- }
- }
-
- // Go through every key on the object,
- } else {
- for ( i in elems ) {
- value = callback( elems[ i ], i, arg );
-
- if ( value != null ) {
- ret.push( value );
- }
- }
- }
-
- // Flatten any nested arrays
- return concat.apply( [], ret );
- },
-
- // A global GUID counter for objects
- guid: 1,
-
- // Bind a function to a context, optionally partially applying any
- // arguments.
- proxy: function( fn, context ) {
- var args, proxy, tmp;
-
- if ( typeof context === "string" ) {
- tmp = fn[ context ];
- context = fn;
- fn = tmp;
- }
-
- // Quick check to determine if target is callable, in the spec
- // this throws a TypeError, but we will just return undefined.
- if ( !jQuery.isFunction( fn ) ) {
- return undefined;
- }
-
- // Simulated bind
- args = slice.call( arguments, 2 );
- proxy = function() {
- return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
- };
-
- // Set the guid of unique handler to the same of original handler, so it can be removed
- proxy.guid = fn.guid = fn.guid || jQuery.guid++;
-
- return proxy;
- },
-
- now: function() {
- return +( new Date() );
- },
-
- // jQuery.support is not used in Core but other projects attach their
- // properties to it so it needs to exist.
- support: support
-});
-
-// Populate the class2type map
-jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
- class2type[ "[object " + name + "]" ] = name.toLowerCase();
-});
-
-function isArraylike( obj ) {
- var length = obj.length,
- type = jQuery.type( obj );
-
- if ( type === "function" || jQuery.isWindow( obj ) ) {
- return false;
- }
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === "array" || length === 0 ||
- typeof length === "number" && length > 0 && ( length - 1 ) in obj;
-}
-var Sizzle =
-/*!
- * Sizzle CSS Selector Engine v1.10.19
- * http://sizzlejs.com/
- *
- * Copyright 2013 jQuery Foundation, Inc. and other contributors
- * Released under the MIT license
- * http://jquery.org/license
- *
- * Date: 2014-04-18
- */
-(function( window ) {
-
-var i,
- support,
- Expr,
- getText,
- isXML,
- tokenize,
- compile,
- select,
- outermostContext,
- sortInput,
- hasDuplicate,
-
- // Local document vars
- setDocument,
- document,
- docElem,
- documentIsHTML,
- rbuggyQSA,
- rbuggyMatches,
- matches,
- contains,
-
- // Instance-specific data
- expando = "sizzle" + -(new Date()),
- preferredDoc = window.document,
- dirruns = 0,
- done = 0,
- classCache = createCache(),
- tokenCache = createCache(),
- compilerCache = createCache(),
- sortOrder = function( a, b ) {
- if ( a === b ) {
- hasDuplicate = true;
- }
- return 0;
- },
-
- // General-purpose constants
- strundefined = typeof undefined,
- MAX_NEGATIVE = 1 << 31,
-
- // Instance methods
- hasOwn = ({}).hasOwnProperty,
- arr = [],
- pop = arr.pop,
- push_native = arr.push,
- push = arr.push,
- slice = arr.slice,
- // Use a stripped-down indexOf if we can't use a native one
- indexOf = arr.indexOf || function( elem ) {
- var i = 0,
- len = this.length;
- for ( ; i < len; i++ ) {
- if ( this[i] === elem ) {
- return i;
- }
- }
- return -1;
- },
-
- booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
-
- // Regular expressions
-
- // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
- whitespace = "[\\x20\\t\\r\\n\\f]",
- // http://www.w3.org/TR/css3-syntax/#characters
- characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
-
- // Loosely modeled on CSS identifier characters
- // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
- // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
- identifier = characterEncoding.replace( "w", "w#" ),
-
- // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
- attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace +
- // Operator (capture 2)
- "*([*^$|!~]?=)" + whitespace +
- // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
- "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
- "*\\]",
-
- pseudos = ":(" + characterEncoding + ")(?:\\((" +
- // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
- // 1. quoted (capture 3; capture 4 or capture 5)
- "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
- // 2. simple (capture 6)
- "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
- // 3. anything else (capture 2)
- ".*" +
- ")\\)|)",
-
- // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
- rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
-
- rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
- rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
-
- rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
-
- rpseudo = new RegExp( pseudos ),
- ridentifier = new RegExp( "^" + identifier + "$" ),
-
- matchExpr = {
- "ID": new RegExp( "^#(" + characterEncoding + ")" ),
- "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
- "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
- "ATTR": new RegExp( "^" + attributes ),
- "PSEUDO": new RegExp( "^" + pseudos ),
- "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
- "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
- "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
- "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
- // For use in libraries implementing .is()
- // We use this for POS matching in `select`
- "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
- whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
- },
-
- rinputs = /^(?:input|select|textarea|button)$/i,
- rheader = /^h\d$/i,
-
- rnative = /^[^{]+\{\s*\[native \w/,
-
- // Easily-parseable/retrievable ID or TAG or CLASS selectors
- rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
-
- rsibling = /[+~]/,
- rescape = /'|\\/g,
-
- // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
- runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
- funescape = function( _, escaped, escapedWhitespace ) {
- var high = "0x" + escaped - 0x10000;
- // NaN means non-codepoint
- // Support: Firefox<24
- // Workaround erroneous numeric interpretation of +"0x"
- return high !== high || escapedWhitespace ?
- escaped :
- high < 0 ?
- // BMP codepoint
- String.fromCharCode( high + 0x10000 ) :
- // Supplemental Plane codepoint (surrogate pair)
- String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
- };
-
-// Optimize for push.apply( _, NodeList )
-try {
- push.apply(
- (arr = slice.call( preferredDoc.childNodes )),
- preferredDoc.childNodes
- );
- // Support: Android<4.0
- // Detect silently failing push.apply
- arr[ preferredDoc.childNodes.length ].nodeType;
-} catch ( e ) {
- push = { apply: arr.length ?
-
- // Leverage slice if possible
- function( target, els ) {
- push_native.apply( target, slice.call(els) );
- } :
-
- // Support: IE<9
- // Otherwise append directly
- function( target, els ) {
- var j = target.length,
- i = 0;
- // Can't trust NodeList.length
- while ( (target[j++] = els[i++]) ) {}
- target.length = j - 1;
- }
- };
-}
-
-function Sizzle( selector, context, results, seed ) {
- var match, elem, m, nodeType,
- // QSA vars
- i, groups, old, nid, newContext, newSelector;
-
- if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
- setDocument( context );
- }
-
- context = context || document;
- results = results || [];
-
- if ( !selector || typeof selector !== "string" ) {
- return results;
- }
-
- if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
- return [];
- }
-
- if ( documentIsHTML && !seed ) {
-
- // Shortcuts
- if ( (match = rquickExpr.exec( selector )) ) {
- // Speed-up: Sizzle("#ID")
- if ( (m = match[1]) ) {
- if ( nodeType === 9 ) {
- elem = context.getElementById( m );
- // Check parentNode to catch when Blackberry 4.6 returns
- // nodes that are no longer in the document (jQuery #6963)
- if ( elem && elem.parentNode ) {
- // Handle the case where IE, Opera, and Webkit return items
- // by name instead of ID
- if ( elem.id === m ) {
- results.push( elem );
- return results;
- }
- } else {
- return results;
- }
- } else {
- // Context is not a document
- if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
- contains( context, elem ) && elem.id === m ) {
- results.push( elem );
- return results;
- }
- }
-
- // Speed-up: Sizzle("TAG")
- } else if ( match[2] ) {
- push.apply( results, context.getElementsByTagName( selector ) );
- return results;
-
- // Speed-up: Sizzle(".CLASS")
- } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
- push.apply( results, context.getElementsByClassName( m ) );
- return results;
- }
- }
-
- // QSA path
- if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
- nid = old = expando;
- newContext = context;
- newSelector = nodeType === 9 && selector;
-
- // qSA works strangely on Element-rooted queries
- // We can work around this by specifying an extra ID on the root
- // and working up from there (Thanks to Andrew Dupont for the technique)
- // IE 8 doesn't work on object elements
- if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
- groups = tokenize( selector );
-
- if ( (old = context.getAttribute("id")) ) {
- nid = old.replace( rescape, "\\$&" );
- } else {
- context.setAttribute( "id", nid );
- }
- nid = "[id='" + nid + "'] ";
-
- i = groups.length;
- while ( i-- ) {
- groups[i] = nid + toSelector( groups[i] );
- }
- newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
- newSelector = groups.join(",");
- }
-
- if ( newSelector ) {
- try {
- push.apply( results,
- newContext.querySelectorAll( newSelector )
- );
- return results;
- } catch(qsaError) {
- } finally {
- if ( !old ) {
- context.removeAttribute("id");
- }
- }
- }
- }
- }
-
- // All others
- return select( selector.replace( rtrim, "$1" ), context, results, seed );
-}
-
-/**
- * Create key-value caches of limited size
- * @returns {Function(string, Object)} Returns the Object data after storing it on itself with
- * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
- * deleting the oldest entry
- */
-function createCache() {
- var keys = [];
-
- function cache( key, value ) {
- // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
- if ( keys.push( key + " " ) > Expr.cacheLength ) {
- // Only keep the most recent entries
- delete cache[ keys.shift() ];
- }
- return (cache[ key + " " ] = value);
- }
- return cache;
-}
-
-/**
- * Mark a function for special use by Sizzle
- * @param {Function} fn The function to mark
- */
-function markFunction( fn ) {
- fn[ expando ] = true;
- return fn;
-}
-
-/**
- * Support testing using an element
- * @param {Function} fn Passed the created div and expects a boolean result
- */
-function assert( fn ) {
- var div = document.createElement("div");
-
- try {
- return !!fn( div );
- } catch (e) {
- return false;
- } finally {
- // Remove from its parent by default
- if ( div.parentNode ) {
- div.parentNode.removeChild( div );
- }
- // release memory in IE
- div = null;
- }
-}
-
-/**
- * Adds the same handler for all of the specified attrs
- * @param {String} attrs Pipe-separated list of attributes
- * @param {Function} handler The method that will be applied
- */
-function addHandle( attrs, handler ) {
- var arr = attrs.split("|"),
- i = attrs.length;
-
- while ( i-- ) {
- Expr.attrHandle[ arr[i] ] = handler;
- }
-}
-
-/**
- * Checks document order of two siblings
- * @param {Element} a
- * @param {Element} b
- * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
- */
-function siblingCheck( a, b ) {
- var cur = b && a,
- diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
- ( ~b.sourceIndex || MAX_NEGATIVE ) -
- ( ~a.sourceIndex || MAX_NEGATIVE );
-
- // Use IE sourceIndex if available on both nodes
- if ( diff ) {
- return diff;
- }
-
- // Check if b follows a
- if ( cur ) {
- while ( (cur = cur.nextSibling) ) {
- if ( cur === b ) {
- return -1;
- }
- }
- }
-
- return a ? 1 : -1;
-}
-
-/**
- * Returns a function to use in pseudos for input types
- * @param {String} type
- */
-function createInputPseudo( type ) {
- return function( elem ) {
- var name = elem.nodeName.toLowerCase();
- return name === "input" && elem.type === type;
- };
-}
-
-/**
- * Returns a function to use in pseudos for buttons
- * @param {String} type
- */
-function createButtonPseudo( type ) {
- return function( elem ) {
- var name = elem.nodeName.toLowerCase();
- return (name === "input" || name === "button") && elem.type === type;
- };
-}
-
-/**
- * Returns a function to use in pseudos for positionals
- * @param {Function} fn
- */
-function createPositionalPseudo( fn ) {
- return markFunction(function( argument ) {
- argument = +argument;
- return markFunction(function( seed, matches ) {
- var j,
- matchIndexes = fn( [], seed.length, argument ),
- i = matchIndexes.length;
-
- // Match elements found at the specified indexes
- while ( i-- ) {
- if ( seed[ (j = matchIndexes[i]) ] ) {
- seed[j] = !(matches[j] = seed[j]);
- }
- }
- });
- });
-}
-
-/**
- * Checks a node for validity as a Sizzle context
- * @param {Element|Object=} context
- * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
- */
-function testContext( context ) {
- return context && typeof context.getElementsByTagName !== strundefined && context;
-}
-
-// Expose support vars for convenience
-support = Sizzle.support = {};
-
-/**
- * Detects XML nodes
- * @param {Element|Object} elem An element or a document
- * @returns {Boolean} True iff elem is a non-HTML XML node
- */
-isXML = Sizzle.isXML = function( elem ) {
- // documentElement is verified for cases where it doesn't yet exist
- // (such as loading iframes in IE - #4833)
- var documentElement = elem && (elem.ownerDocument || elem).documentElement;
- return documentElement ? documentElement.nodeName !== "HTML" : false;
-};
-
-/**
- * Sets document-related variables once based on the current document
- * @param {Element|Object} [doc] An element or document object to use to set the document
- * @returns {Object} Returns the current document
- */
-setDocument = Sizzle.setDocument = function( node ) {
- var hasCompare,
- doc = node ? node.ownerDocument || node : preferredDoc,
- parent = doc.defaultView;
-
- // If no document and documentElement is available, return
- if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
- return document;
- }
-
- // Set our document
- document = doc;
- docElem = doc.documentElement;
-
- // Support tests
- documentIsHTML = !isXML( doc );
-
- // Support: IE>8
- // If iframe document is assigned to "document" variable and if iframe has been reloaded,
- // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
- // IE6-8 do not support the defaultView property so parent will be undefined
- if ( parent && parent !== parent.top ) {
- // IE11 does not have attachEvent, so all must suffer
- if ( parent.addEventListener ) {
- parent.addEventListener( "unload", function() {
- setDocument();
- }, false );
- } else if ( parent.attachEvent ) {
- parent.attachEvent( "onunload", function() {
- setDocument();
- });
- }
- }
-
- /* Attributes
- ---------------------------------------------------------------------- */
-
- // Support: IE<8
- // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans)
- support.attributes = assert(function( div ) {
- div.className = "i";
- return !div.getAttribute("className");
- });
-
- /* getElement(s)By*
- ---------------------------------------------------------------------- */
-
- // Check if getElementsByTagName("*") returns only elements
- support.getElementsByTagName = assert(function( div ) {
- div.appendChild( doc.createComment("") );
- return !div.getElementsByTagName("*").length;
- });
-
- // Check if getElementsByClassName can be trusted
- support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) {
- div.innerHTML = "<div class='a'></div><div class='a i'></div>";
-
- // Support: Safari<4
- // Catch class over-caching
- div.firstChild.className = "i";
- // Support: Opera<10
- // Catch gEBCN failure to find non-leading classes
- return div.getElementsByClassName("i").length === 2;
- });
-
- // Support: IE<10
- // Check if getElementById returns elements by name
- // The broken getElementById methods don't pick up programatically-set names,
- // so use a roundabout getElementsByName test
- support.getById = assert(function( div ) {
- docElem.appendChild( div ).id = expando;
- return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
- });
-
- // ID find and filter
- if ( support.getById ) {
- Expr.find["ID"] = function( id, context ) {
- if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
- var m = context.getElementById( id );
- // Check parentNode to catch when Blackberry 4.6 returns
- // nodes that are no longer in the document #6963
- return m && m.parentNode ? [ m ] : [];
- }
- };
- Expr.filter["ID"] = function( id ) {
- var attrId = id.replace( runescape, funescape );
- return function( elem ) {
- return elem.getAttribute("id") === attrId;
- };
- };
- } else {
- // Support: IE6/7
- // getElementById is not reliable as a find shortcut
- delete Expr.find["ID"];
-
- Expr.filter["ID"] = function( id ) {
- var attrId = id.replace( runescape, funescape );
- return function( elem ) {
- var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
- return node && node.value === attrId;
- };
- };
- }
-
- // Tag
- Expr.find["TAG"] = support.getElementsByTagName ?
- function( tag, context ) {
- if ( typeof context.getElementsByTagName !== strundefined ) {
- return context.getElementsByTagName( tag );
- }
- } :
- function( tag, context ) {
- var elem,
- tmp = [],
- i = 0,
- results = context.getElementsByTagName( tag );
-
- // Filter out possible comments
- if ( tag === "*" ) {
- while ( (elem = results[i++]) ) {
- if ( elem.nodeType === 1 ) {
- tmp.push( elem );
- }
- }
-
- return tmp;
- }
- return results;
- };
-
- // Class
- Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
- if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
- return context.getElementsByClassName( className );
- }
- };
-
- /* QSA/matchesSelector
- ---------------------------------------------------------------------- */
-
- // QSA and matchesSelector support
-
- // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
- rbuggyMatches = [];
-
- // qSa(:focus) reports false when true (Chrome 21)
- // We allow this because of a bug in IE8/9 that throws an error
- // whenever `document.activeElement` is accessed on an iframe
- // So, we allow :focus to pass through QSA all the time to avoid the IE error
- // See http://bugs.jquery.com/ticket/13378
- rbuggyQSA = [];
-
- if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
- // Build QSA regex
- // Regex strategy adopted from Diego Perini
- assert(function( div ) {
- // Select is set to empty string on purpose
- // This is to test IE's treatment of not explicitly
- // setting a boolean content attribute,
- // since its presence should be enough
- // http://bugs.jquery.com/ticket/12359
- div.innerHTML = "<select msallowclip=''><option selected=''></option></select>";
-
- // Support: IE8, Opera 11-12.16
- // Nothing should be selected when empty strings follow ^= or $= or *=
- // The test attribute must be unknown in Opera but "safe" for WinRT
- // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
- if ( div.querySelectorAll("[msallowclip^='']").length ) {
- rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
- }
-
- // Support: IE8
- // Boolean attributes and "value" are not treated correctly
- if ( !div.querySelectorAll("[selected]").length ) {
- rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
- }
-
- // Webkit/Opera - :checked should return selected option elements
- // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
- // IE8 throws error here and will not see later tests
- if ( !div.querySelectorAll(":checked").length ) {
- rbuggyQSA.push(":checked");
- }
- });
-
- assert(function( div ) {
- // Support: Windows 8 Native Apps
- // The type and name attributes are restricted during .innerHTML assignment
- var input = doc.createElement("input");
- input.setAttribute( "type", "hidden" );
- div.appendChild( input ).setAttribute( "name", "D" );
-
- // Support: IE8
- // Enforce case-sensitivity of name attribute
- if ( div.querySelectorAll("[name=d]").length ) {
- rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
- }
-
- // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
- // IE8 throws error here and will not see later tests
- if ( !div.querySelectorAll(":enabled").length ) {
- rbuggyQSA.push( ":enabled", ":disabled" );
- }
-
- // Opera 10-11 does not throw on post-comma invalid pseudos
- div.querySelectorAll("*,:x");
- rbuggyQSA.push(",.*:");
- });
- }
-
- if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
- docElem.webkitMatchesSelector ||
- docElem.mozMatchesSelector ||
- docElem.oMatchesSelector ||
- docElem.msMatchesSelector) )) ) {
-
- assert(function( div ) {
- // Check to see if it's possible to do matchesSelector
- // on a disconnected node (IE 9)
- support.disconnectedMatch = matches.call( div, "div" );
-
- // This should fail with an exception
- // Gecko does not error, returns false instead
- matches.call( div, "[s!='']:x" );
- rbuggyMatches.push( "!=", pseudos );
- });
- }
-
- rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
- rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
-
- /* Contains
- ---------------------------------------------------------------------- */
- hasCompare = rnative.test( docElem.compareDocumentPosition );
-
- // Element contains another
- // Purposefully does not implement inclusive descendent
- // As in, an element does not contain itself
- contains = hasCompare || rnative.test( docElem.contains ) ?
- function( a, b ) {
- var adown = a.nodeType === 9 ? a.documentElement : a,
- bup = b && b.parentNode;
- return a === bup || !!( bup && bup.nodeType === 1 && (
- adown.contains ?
- adown.contains( bup ) :
- a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
- ));
- } :
- function( a, b ) {
- if ( b ) {
- while ( (b = b.parentNode) ) {
- if ( b === a ) {
- return true;
- }
- }
- }
- return false;
- };
-
- /* Sorting
- ---------------------------------------------------------------------- */
-
- // Document order sorting
- sortOrder = hasCompare ?
- function( a, b ) {
-
- // Flag for duplicate removal
- if ( a === b ) {
- hasDuplicate = true;
- return 0;
- }
-
- // Sort on method existence if only one input has compareDocumentPosition
- var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
- if ( compare ) {
- return compare;
- }
-
- // Calculate position if both inputs belong to the same document
- compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
- a.compareDocumentPosition( b ) :
-
- // Otherwise we know they are disconnected
- 1;
-
- // Disconnected nodes
- if ( compare & 1 ||
- (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
-
- // Choose the first element that is related to our preferred document
- if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
- return -1;
- }
- if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
- return 1;
- }
-
- // Maintain original order
- return sortInput ?
- ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
- 0;
- }
-
- return compare & 4 ? -1 : 1;
- } :
- function( a, b ) {
- // Exit early if the nodes are identical
- if ( a === b ) {
- hasDuplicate = true;
- return 0;
- }
-
- var cur,
- i = 0,
- aup = a.parentNode,
- bup = b.parentNode,
- ap = [ a ],
- bp = [ b ];
-
- // Parentless nodes are either documents or disconnected
- if ( !aup || !bup ) {
- return a === doc ? -1 :
- b === doc ? 1 :
- aup ? -1 :
- bup ? 1 :
- sortInput ?
- ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
- 0;
-
- // If the nodes are siblings, we can do a quick check
- } else if ( aup === bup ) {
- return siblingCheck( a, b );
- }
-
- // Otherwise we need full lists of their ancestors for comparison
- cur = a;
- while ( (cur = cur.parentNode) ) {
- ap.unshift( cur );
- }
- cur = b;
- while ( (cur = cur.parentNode) ) {
- bp.unshift( cur );
- }
-
- // Walk down the tree looking for a discrepancy
- while ( ap[i] === bp[i] ) {
- i++;
- }
-
- return i ?
- // Do a sibling check if the nodes have a common ancestor
- siblingCheck( ap[i], bp[i] ) :
-
- // Otherwise nodes in our document sort first
- ap[i] === preferredDoc ? -1 :
- bp[i] === preferredDoc ? 1 :
- 0;
- };
-
- return doc;
-};
-
-Sizzle.matches = function( expr, elements ) {
- return Sizzle( expr, null, null, elements );
-};
-
-Sizzle.matchesSelector = function( elem, expr ) {
- // Set document vars if needed
- if ( ( elem.ownerDocument || elem ) !== document ) {
- setDocument( elem );
- }
-
- // Make sure that attribute selectors are quoted
- expr = expr.replace( rattributeQuotes, "='$1']" );
-
- if ( support.matchesSelector && documentIsHTML &&
- ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
- ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
-
- try {
- var ret = matches.call( elem, expr );
-
- // IE 9's matchesSelector returns false on disconnected nodes
- if ( ret || support.disconnectedMatch ||
- // As well, disconnected nodes are said to be in a document
- // fragment in IE 9
- elem.document && elem.document.nodeType !== 11 ) {
- return ret;
- }
- } catch(e) {}
- }
-
- return Sizzle( expr, document, null, [ elem ] ).length > 0;
-};
-
-Sizzle.contains = function( context, elem ) {
- // Set document vars if needed
- if ( ( context.ownerDocument || context ) !== document ) {
- setDocument( context );
- }
- return contains( context, elem );
-};
-
-Sizzle.attr = function( elem, name ) {
- // Set document vars if needed
- if ( ( elem.ownerDocument || elem ) !== document ) {
- setDocument( elem );
- }
-
- var fn = Expr.attrHandle[ name.toLowerCase() ],
- // Don't get fooled by Object.prototype properties (jQuery #13807)
- val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
- fn( elem, name, !documentIsHTML ) :
- undefined;
-
- return val !== undefined ?
- val :
- support.attributes || !documentIsHTML ?
- elem.getAttribute( name ) :
- (val = elem.getAttributeNode(name)) && val.specified ?
- val.value :
- null;
-};
-
-Sizzle.error = function( msg ) {
- throw new Error( "Syntax error, unrecognized expression: " + msg );
-};
-
-/**
- * Document sorting and removing duplicates
- * @param {ArrayLike} results
- */
-Sizzle.uniqueSort = function( results ) {
- var elem,
- duplicates = [],
- j = 0,
- i = 0;
-
- // Unless we *know* we can detect duplicates, assume their presence
- hasDuplicate = !support.detectDuplicates;
- sortInput = !support.sortStable && results.slice( 0 );
- results.sort( sortOrder );
-
- if ( hasDuplicate ) {
- while ( (elem = results[i++]) ) {
- if ( elem === results[ i ] ) {
- j = duplicates.push( i );
- }
- }
- while ( j-- ) {
- results.splice( duplicates[ j ], 1 );
- }
- }
-
- // Clear input after sorting to release objects
- // See https://github.com/jquery/sizzle/pull/225
- sortInput = null;
-
- return results;
-};
-
-/**
- * Utility function for retrieving the text value of an array of DOM nodes
- * @param {Array|Element} elem
- */
-getText = Sizzle.getText = function( elem ) {
- var node,
- ret = "",
- i = 0,
- nodeType = elem.nodeType;
-
- if ( !nodeType ) {
- // If no nodeType, this is expected to be an array
- while ( (node = elem[i++]) ) {
- // Do not traverse comment nodes
- ret += getText( node );
- }
- } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
- // Use textContent for elements
- // innerText usage removed for consistency of new lines (jQuery #11153)
- if ( typeof elem.textContent === "string" ) {
- return elem.textContent;
- } else {
- // Traverse its children
- for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
- ret += getText( elem );
- }
- }
- } else if ( nodeType === 3 || nodeType === 4 ) {
- return elem.nodeValue;
- }
- // Do not include comment or processing instruction nodes
-
- return ret;
-};
-
-Expr = Sizzle.selectors = {
-
- // Can be adjusted by the user
- cacheLength: 50,
-
- createPseudo: markFunction,
-
- match: matchExpr,
-
- attrHandle: {},
-
- find: {},
-
- relative: {
- ">": { dir: "parentNode", first: true },
- " ": { dir: "parentNode" },
- "+": { dir: "previousSibling", first: true },
- "~": { dir: "previousSibling" }
- },
-
- preFilter: {
- "ATTR": function( match ) {
- match[1] = match[1].replace( runescape, funescape );
-
- // Move the given value to match[3] whether quoted or unquoted
- match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
-
- if ( match[2] === "~=" ) {
- match[3] = " " + match[3] + " ";
- }
-
- return match.slice( 0, 4 );
- },
-
- "CHILD": function( match ) {
- /* matches from matchExpr["CHILD"]
- 1 type (only|nth|...)
- 2 what (child|of-type)
- 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
- 4 xn-component of xn+y argument ([+-]?\d*n|)
- 5 sign of xn-component
- 6 x of xn-component
- 7 sign of y-component
- 8 y of y-component
- */
- match[1] = match[1].toLowerCase();
-
- if ( match[1].slice( 0, 3 ) === "nth" ) {
- // nth-* requires argument
- if ( !match[3] ) {
- Sizzle.error( match[0] );
- }
-
- // numeric x and y parameters for Expr.filter.CHILD
- // remember that false/true cast respectively to 0/1
- match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
- match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
-
- // other types prohibit arguments
- } else if ( match[3] ) {
- Sizzle.error( match[0] );
- }
-
- return match;
- },
-
- "PSEUDO": function( match ) {
- var excess,
- unquoted = !match[6] && match[2];
-
- if ( matchExpr["CHILD"].test( match[0] ) ) {
- return null;
- }
-
- // Accept quoted arguments as-is
- if ( match[3] ) {
- match[2] = match[4] || match[5] || "";
-
- // Strip excess characters from unquoted arguments
- } else if ( unquoted && rpseudo.test( unquoted ) &&
- // Get excess from tokenize (recursively)
- (excess = tokenize( unquoted, true )) &&
- // advance to the next closing parenthesis
- (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
-
- // excess is a negative index
- match[0] = match[0].slice( 0, excess );
- match[2] = unquoted.slice( 0, excess );
- }
-
- // Return only captures needed by the pseudo filter method (type and argument)
- return match.slice( 0, 3 );
- }
- },
-
- filter: {
-
- "TAG": function( nodeNameSelector ) {
- var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
- return nodeNameSelector === "*" ?
- function() { return true; } :
- function( elem ) {
- return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
- };
- },
-
- "CLASS": function( className ) {
- var pattern = classCache[ className + " " ];
-
- return pattern ||
- (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
- classCache( className, function( elem ) {
- return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" );
- });
- },
-
- "ATTR": function( name, operator, check ) {
- return function( elem ) {
- var result = Sizzle.attr( elem, name );
-
- if ( result == null ) {
- return operator === "!=";
- }
- if ( !operator ) {
- return true;
- }
-
- result += "";
-
- return operator === "=" ? result === check :
- operator === "!=" ? result !== check :
- operator === "^=" ? check && result.indexOf( check ) === 0 :
- operator === "*=" ? check && result.indexOf( check ) > -1 :
- operator === "$=" ? check && result.slice( -check.length ) === check :
- operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
- operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
- false;
- };
- },
-
- "CHILD": function( type, what, argument, first, last ) {
- var simple = type.slice( 0, 3 ) !== "nth",
- forward = type.slice( -4 ) !== "last",
- ofType = what === "of-type";
-
- return first === 1 && last === 0 ?
-
- // Shortcut for :nth-*(n)
- function( elem ) {
- return !!elem.parentNode;
- } :
-
- function( elem, context, xml ) {
- var cache, outerCache, node, diff, nodeIndex, start,
- dir = simple !== forward ? "nextSibling" : "previousSibling",
- parent = elem.parentNode,
- name = ofType && elem.nodeName.toLowerCase(),
- useCache = !xml && !ofType;
-
- if ( parent ) {
-
- // :(first|last|only)-(child|of-type)
- if ( simple ) {
- while ( dir ) {
- node = elem;
- while ( (node = node[ dir ]) ) {
- if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
- return false;
- }
- }
- // Reverse direction for :only-* (if we haven't yet done so)
- start = dir = type === "only" && !start && "nextSibling";
- }
- return true;
- }
-
- start = [ forward ? parent.firstChild : parent.lastChild ];
-
- // non-xml :nth-child(...) stores cache data on `parent`
- if ( forward && useCache ) {
- // Seek `elem` from a previously-cached index
- outerCache = parent[ expando ] || (parent[ expando ] = {});
- cache = outerCache[ type ] || [];
- nodeIndex = cache[0] === dirruns && cache[1];
- diff = cache[0] === dirruns && cache[2];
- node = nodeIndex && parent.childNodes[ nodeIndex ];
-
- while ( (node = ++nodeIndex && node && node[ dir ] ||
-
- // Fallback to seeking `elem` from the start
- (diff = nodeIndex = 0) || start.pop()) ) {
-
- // When found, cache indexes on `parent` and break
- if ( node.nodeType === 1 && ++diff && node === elem ) {
- outerCache[ type ] = [ dirruns, nodeIndex, diff ];
- break;
- }
- }
-
- // Use previously-cached element index if available
- } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
- diff = cache[1];
-
- // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
- } else {
- // Use the same loop as above to seek `elem` from the start
- while ( (node = ++nodeIndex && node && node[ dir ] ||
- (diff = nodeIndex = 0) || start.pop()) ) {
-
- if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
- // Cache the index of each encountered element
- if ( useCache ) {
- (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
- }
-
- if ( node === elem ) {
- break;
- }
- }
- }
- }
-
- // Incorporate the offset, then check against cycle size
- diff -= last;
- return diff === first || ( diff % first === 0 && diff / first >= 0 );
- }
- };
- },
-
- "PSEUDO": function( pseudo, argument ) {
- // pseudo-class names are case-insensitive
- // http://www.w3.org/TR/selectors/#pseudo-classes
- // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
- // Remember that setFilters inherits from pseudos
- var args,
- fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
- Sizzle.error( "unsupported pseudo: " + pseudo );
-
- // The user may use createPseudo to indicate that
- // arguments are needed to create the filter function
- // just as Sizzle does
- if ( fn[ expando ] ) {
- return fn( argument );
- }
-
- // But maintain support for old signatures
- if ( fn.length > 1 ) {
- args = [ pseudo, pseudo, "", argument ];
- return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
- markFunction(function( seed, matches ) {
- var idx,
- matched = fn( seed, argument ),
- i = matched.length;
- while ( i-- ) {
- idx = indexOf.call( seed, matched[i] );
- seed[ idx ] = !( matches[ idx ] = matched[i] );
- }
- }) :
- function( elem ) {
- return fn( elem, 0, args );
- };
- }
-
- return fn;
- }
- },
-
- pseudos: {
- // Potentially complex pseudos
- "not": markFunction(function( selector ) {
- // Trim the selector passed to compile
- // to avoid treating leading and trailing
- // spaces as combinators
- var input = [],
- results = [],
- matcher = compile( selector.replace( rtrim, "$1" ) );
-
- return matcher[ expando ] ?
- markFunction(function( seed, matches, context, xml ) {
- var elem,
- unmatched = matcher( seed, null, xml, [] ),
- i = seed.length;
-
- // Match elements unmatched by `matcher`
- while ( i-- ) {
- if ( (elem = unmatched[i]) ) {
- seed[i] = !(matches[i] = elem);
- }
- }
- }) :
- function( elem, context, xml ) {
- input[0] = elem;
- matcher( input, null, xml, results );
- return !results.pop();
- };
- }),
-
- "has": markFunction(function( selector ) {
- return function( elem ) {
- return Sizzle( selector, elem ).length > 0;
- };
- }),
-
- "contains": markFunction(function( text ) {
- return function( elem ) {
- return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
- };
- }),
-
- // "Whether an element is represented by a :lang() selector
- // is based solely on the element's language value
- // being equal to the identifier C,
- // or beginning with the identifier C immediately followed by "-".
- // The matching of C against the element's language value is performed case-insensitively.
- // The identifier C does not have to be a valid language name."
- // http://www.w3.org/TR/selectors/#lang-pseudo
- "lang": markFunction( function( lang ) {
- // lang value must be a valid identifier
- if ( !ridentifier.test(lang || "") ) {
- Sizzle.error( "unsupported lang: " + lang );
- }
- lang = lang.replace( runescape, funescape ).toLowerCase();
- return function( elem ) {
- var elemLang;
- do {
- if ( (elemLang = documentIsHTML ?
- elem.lang :
- elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
-
- elemLang = elemLang.toLowerCase();
- return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
- }
- } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
- return false;
- };
- }),
-
- // Miscellaneous
- "target": function( elem ) {
- var hash = window.location && window.location.hash;
- return hash && hash.slice( 1 ) === elem.id;
- },
-
- "root": function( elem ) {
- return elem === docElem;
- },
-
- "focus": function( elem ) {
- return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
- },
-
- // Boolean properties
- "enabled": function( elem ) {
- return elem.disabled === false;
- },
-
- "disabled": function( elem ) {
- return elem.disabled === true;
- },
-
- "checked": function( elem ) {
- // In CSS3, :checked should return both checked and selected elements
- // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
- var nodeName = elem.nodeName.toLowerCase();
- return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
- },
-
- "selected": function( elem ) {
- // Accessing this property makes selected-by-default
- // options in Safari work properly
- if ( elem.parentNode ) {
- elem.parentNode.selectedIndex;
- }
-
- return elem.selected === true;
- },
-
- // Contents
- "empty": function( elem ) {
- // http://www.w3.org/TR/selectors/#empty-pseudo
- // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
- // but not by others (comment: 8; processing instruction: 7; etc.)
- // nodeType < 6 works because attributes (2) do not appear as children
- for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
- if ( elem.nodeType < 6 ) {
- return false;
- }
- }
- return true;
- },
-
- "parent": function( elem ) {
- return !Expr.pseudos["empty"]( elem );
- },
-
- // Element/input types
- "header": function( elem ) {
- return rheader.test( elem.nodeName );
- },
-
- "input": function( elem ) {
- return rinputs.test( elem.nodeName );
- },
-
- "button": function( elem ) {
- var name = elem.nodeName.toLowerCase();
- return name === "input" && elem.type === "button" || name === "button";
- },
-
- "text": function( elem ) {
- var attr;
- return elem.nodeName.toLowerCase() === "input" &&
- elem.type === "text" &&
-
- // Support: IE<8
- // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
- ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
- },
-
- // Position-in-collection
- "first": createPositionalPseudo(function() {
- return [ 0 ];
- }),
-
- "last": createPositionalPseudo(function( matchIndexes, length ) {
- return [ length - 1 ];
- }),
-
- "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
- return [ argument < 0 ? argument + length : argument ];
- }),
-
- "even": createPositionalPseudo(function( matchIndexes, length ) {
- var i = 0;
- for ( ; i < length; i += 2 ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- }),
-
- "odd": createPositionalPseudo(function( matchIndexes, length ) {
- var i = 1;
- for ( ; i < length; i += 2 ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- }),
-
- "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
- var i = argument < 0 ? argument + length : argument;
- for ( ; --i >= 0; ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- }),
-
- "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
- var i = argument < 0 ? argument + length : argument;
- for ( ; ++i < length; ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- })
- }
-};
-
-Expr.pseudos["nth"] = Expr.pseudos["eq"];
-
-// Add button/input type pseudos
-for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
- Expr.pseudos[ i ] = createInputPseudo( i );
-}
-for ( i in { submit: true, reset: true } ) {
- Expr.pseudos[ i ] = createButtonPseudo( i );
-}
-
-// Easy API for creating new setFilters
-function setFilters() {}
-setFilters.prototype = Expr.filters = Expr.pseudos;
-Expr.setFilters = new setFilters();
-
-tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
- var matched, match, tokens, type,
- soFar, groups, preFilters,
- cached = tokenCache[ selector + " " ];
-
- if ( cached ) {
- return parseOnly ? 0 : cached.slice( 0 );
- }
-
- soFar = selector;
- groups = [];
- preFilters = Expr.preFilter;
-
- while ( soFar ) {
-
- // Comma and first run
- if ( !matched || (match = rcomma.exec( soFar )) ) {
- if ( match ) {
- // Don't consume trailing commas as valid
- soFar = soFar.slice( match[0].length ) || soFar;
- }
- groups.push( (tokens = []) );
- }
-
- matched = false;
-
- // Combinators
- if ( (match = rcombinators.exec( soFar )) ) {
- matched = match.shift();
- tokens.push({
- value: matched,
- // Cast descendant combinators to space
- type: match[0].replace( rtrim, " " )
- });
- soFar = soFar.slice( matched.length );
- }
-
- // Filters
- for ( type in Expr.filter ) {
- if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
- (match = preFilters[ type ]( match ))) ) {
- matched = match.shift();
- tokens.push({
- value: matched,
- type: type,
- matches: match
- });
- soFar = soFar.slice( matched.length );
- }
- }
-
- if ( !matched ) {
- break;
- }
- }
-
- // Return the length of the invalid excess
- // if we're just parsing
- // Otherwise, throw an error or return tokens
- return parseOnly ?
- soFar.length :
- soFar ?
- Sizzle.error( selector ) :
- // Cache the tokens
- tokenCache( selector, groups ).slice( 0 );
-};
-
-function toSelector( tokens ) {
- var i = 0,
- len = tokens.length,
- selector = "";
- for ( ; i < len; i++ ) {
- selector += tokens[i].value;
- }
- return selector;
-}
-
-function addCombinator( matcher, combinator, base ) {
- var dir = combinator.dir,
- checkNonElements = base && dir === "parentNode",
- doneName = done++;
-
- return combinator.first ?
- // Check against closest ancestor/preceding element
- function( elem, context, xml ) {
- while ( (elem = elem[ dir ]) ) {
- if ( elem.nodeType === 1 || checkNonElements ) {
- return matcher( elem, context, xml );
- }
- }
- } :
-
- // Check against all ancestor/preceding elements
- function( elem, context, xml ) {
- var oldCache, outerCache,
- newCache = [ dirruns, doneName ];
-
- // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
- if ( xml ) {
- while ( (elem = elem[ dir ]) ) {
- if ( elem.nodeType === 1 || checkNonElements ) {
- if ( matcher( elem, context, xml ) ) {
- return true;
- }
- }
- }
- } else {
- while ( (elem = elem[ dir ]) ) {
- if ( elem.nodeType === 1 || checkNonElements ) {
- outerCache = elem[ expando ] || (elem[ expando ] = {});
- if ( (oldCache = outerCache[ dir ]) &&
- oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
-
- // Assign to newCache so results back-propagate to previous elements
- return (newCache[ 2 ] = oldCache[ 2 ]);
- } else {
- // Reuse newcache so results back-propagate to previous elements
- outerCache[ dir ] = newCache;
-
- // A match means we're done; a fail means we have to keep checking
- if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
- return true;
- }
- }
- }
- }
- }
- };
-}
-
-function elementMatcher( matchers ) {
- return matchers.length > 1 ?
- function( elem, context, xml ) {
- var i = matchers.length;
- while ( i-- ) {
- if ( !matchers[i]( elem, context, xml ) ) {
- return false;
- }
- }
- return true;
- } :
- matchers[0];
-}
-
-function multipleContexts( selector, contexts, results ) {
- var i = 0,
- len = contexts.length;
- for ( ; i < len; i++ ) {
- Sizzle( selector, contexts[i], results );
- }
- return results;
-}
-
-function condense( unmatched, map, filter, context, xml ) {
- var elem,
- newUnmatched = [],
- i = 0,
- len = unmatched.length,
- mapped = map != null;
-
- for ( ; i < len; i++ ) {
- if ( (elem = unmatched[i]) ) {
- if ( !filter || filter( elem, context, xml ) ) {
- newUnmatched.push( elem );
- if ( mapped ) {
- map.push( i );
- }
- }
- }
- }
-
- return newUnmatched;
-}
-
-function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
- if ( postFilter && !postFilter[ expando ] ) {
- postFilter = setMatcher( postFilter );
- }
- if ( postFinder && !postFinder[ expando ] ) {
- postFinder = setMatcher( postFinder, postSelector );
- }
- return markFunction(function( seed, results, context, xml ) {
- var temp, i, elem,
- preMap = [],
- postMap = [],
- preexisting = results.length,
-
- // Get initial elements from seed or context
- elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
-
- // Prefilter to get matcher input, preserving a map for seed-results synchronization
- matcherIn = preFilter && ( seed || !selector ) ?
- condense( elems, preMap, preFilter, context, xml ) :
- elems,
-
- matcherOut = matcher ?
- // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
- postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
-
- // ...intermediate processing is necessary
- [] :
-
- // ...otherwise use results directly
- results :
- matcherIn;
-
- // Find primary matches
- if ( matcher ) {
- matcher( matcherIn, matcherOut, context, xml );
- }
-
- // Apply postFilter
- if ( postFilter ) {
- temp = condense( matcherOut, postMap );
- postFilter( temp, [], context, xml );
-
- // Un-match failing elements by moving them back to matcherIn
- i = temp.length;
- while ( i-- ) {
- if ( (elem = temp[i]) ) {
- matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
- }
- }
- }
-
- if ( seed ) {
- if ( postFinder || preFilter ) {
- if ( postFinder ) {
- // Get the final matcherOut by condensing this intermediate into postFinder contexts
- temp = [];
- i = matcherOut.length;
- while ( i-- ) {
- if ( (elem = matcherOut[i]) ) {
- // Restore matcherIn since elem is not yet a final match
- temp.push( (matcherIn[i] = elem) );
- }
- }
- postFinder( null, (matcherOut = []), temp, xml );
- }
-
- // Move matched elements from seed to results to keep them synchronized
- i = matcherOut.length;
- while ( i-- ) {
- if ( (elem = matcherOut[i]) &&
- (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
-
- seed[temp] = !(results[temp] = elem);
- }
- }
- }
-
- // Add elements to results, through postFinder if defined
- } else {
- matcherOut = condense(
- matcherOut === results ?
- matcherOut.splice( preexisting, matcherOut.length ) :
- matcherOut
- );
- if ( postFinder ) {
- postFinder( null, results, matcherOut, xml );
- } else {
- push.apply( results, matcherOut );
- }
- }
- });
-}
-
-function matcherFromTokens( tokens ) {
- var checkContext, matcher, j,
- len = tokens.length,
- leadingRelative = Expr.relative[ tokens[0].type ],
- implicitRelative = leadingRelative || Expr.relative[" "],
- i = leadingRelative ? 1 : 0,
-
- // The foundational matcher ensures that elements are reachable from top-level context(s)
- matchContext = addCombinator( function( elem ) {
- return elem === checkContext;
- }, implicitRelative, true ),
- matchAnyContext = addCombinator( function( elem ) {
- return indexOf.call( checkContext, elem ) > -1;
- }, implicitRelative, true ),
- matchers = [ function( elem, context, xml ) {
- return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
- (checkContext = context).nodeType ?
- matchContext( elem, context, xml ) :
- matchAnyContext( elem, context, xml ) );
- } ];
-
- for ( ; i < len; i++ ) {
- if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
- matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
- } else {
- matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
-
- // Return special upon seeing a positional matcher
- if ( matcher[ expando ] ) {
- // Find the next relative operator (if any) for proper handling
- j = ++i;
- for ( ; j < len; j++ ) {
- if ( Expr.relative[ tokens[j].type ] ) {
- break;
- }
- }
- return setMatcher(
- i > 1 && elementMatcher( matchers ),
- i > 1 && toSelector(
- // If the preceding token was a descendant combinator, insert an implicit any-element `*`
- tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
- ).replace( rtrim, "$1" ),
- matcher,
- i < j && matcherFromTokens( tokens.slice( i, j ) ),
- j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
- j < len && toSelector( tokens )
- );
- }
- matchers.push( matcher );
- }
- }
-
- return elementMatcher( matchers );
-}
-
-function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
- var bySet = setMatchers.length > 0,
- byElement = elementMatchers.length > 0,
- superMatcher = function( seed, context, xml, results, outermost ) {
- var elem, j, matcher,
- matchedCount = 0,
- i = "0",
- unmatched = seed && [],
- setMatched = [],
- contextBackup = outermostContext,
- // We must always have either seed elements or outermost context
- elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
- // Use integer dirruns iff this is the outermost matcher
- dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
- len = elems.length;
-
- if ( outermost ) {
- outermostContext = context !== document && context;
- }
-
- // Add elements passing elementMatchers directly to results
- // Keep `i` a string if there are no elements so `matchedCount` will be "00" below
- // Support: IE<9, Safari
- // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
- for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
- if ( byElement && elem ) {
- j = 0;
- while ( (matcher = elementMatchers[j++]) ) {
- if ( matcher( elem, context, xml ) ) {
- results.push( elem );
- break;
- }
- }
- if ( outermost ) {
- dirruns = dirrunsUnique;
- }
- }
-
- // Track unmatched elements for set filters
- if ( bySet ) {
- // They will have gone through all possible matchers
- if ( (elem = !matcher && elem) ) {
- matchedCount--;
- }
-
- // Lengthen the array for every element, matched or not
- if ( seed ) {
- unmatched.push( elem );
- }
- }
- }
-
- // Apply set filters to unmatched elements
- matchedCount += i;
- if ( bySet && i !== matchedCount ) {
- j = 0;
- while ( (matcher = setMatchers[j++]) ) {
- matcher( unmatched, setMatched, context, xml );
- }
-
- if ( seed ) {
- // Reintegrate element matches to eliminate the need for sorting
- if ( matchedCount > 0 ) {
- while ( i-- ) {
- if ( !(unmatched[i] || setMatched[i]) ) {
- setMatched[i] = pop.call( results );
- }
- }
- }
-
- // Discard index placeholder values to get only actual matches
- setMatched = condense( setMatched );
- }
-
- // Add matches to results
- push.apply( results, setMatched );
-
- // Seedless set matches succeeding multiple successful matchers stipulate sorting
- if ( outermost && !seed && setMatched.length > 0 &&
- ( matchedCount + setMatchers.length ) > 1 ) {
-
- Sizzle.uniqueSort( results );
- }
- }
-
- // Override manipulation of globals by nested matchers
- if ( outermost ) {
- dirruns = dirrunsUnique;
- outermostContext = contextBackup;
- }
-
- return unmatched;
- };
-
- return bySet ?
- markFunction( superMatcher ) :
- superMatcher;
-}
-
-compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
- var i,
- setMatchers = [],
- elementMatchers = [],
- cached = compilerCache[ selector + " " ];
-
- if ( !cached ) {
- // Generate a function of recursive functions that can be used to check each element
- if ( !match ) {
- match = tokenize( selector );
- }
- i = match.length;
- while ( i-- ) {
- cached = matcherFromTokens( match[i] );
- if ( cached[ expando ] ) {
- setMatchers.push( cached );
- } else {
- elementMatchers.push( cached );
- }
- }
-
- // Cache the compiled function
- cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
-
- // Save selector and tokenization
- cached.selector = selector;
- }
- return cached;
-};
-
-/**
- * A low-level selection function that works with Sizzle's compiled
- * selector functions
- * @param {String|Function} selector A selector or a pre-compiled
- * selector function built with Sizzle.compile
- * @param {Element} context
- * @param {Array} [results]
- * @param {Array} [seed] A set of elements to match against
- */
-select = Sizzle.select = function( selector, context, results, seed ) {
- var i, tokens, token, type, find,
- compiled = typeof selector === "function" && selector,
- match = !seed && tokenize( (selector = compiled.selector || selector) );
-
- results = results || [];
-
- // Try to minimize operations if there is no seed and only one group
- if ( match.length === 1 ) {
-
- // Take a shortcut and set the context if the root selector is an ID
- tokens = match[0] = match[0].slice( 0 );
- if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
- support.getById && context.nodeType === 9 && documentIsHTML &&
- Expr.relative[ tokens[1].type ] ) {
-
- context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
- if ( !context ) {
- return results;
-
- // Precompiled matchers will still verify ancestry, so step up a level
- } else if ( compiled ) {
- context = context.parentNode;
- }
-
- selector = selector.slice( tokens.shift().value.length );
- }
-
- // Fetch a seed set for right-to-left matching
- i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
- while ( i-- ) {
- token = tokens[i];
-
- // Abort if we hit a combinator
- if ( Expr.relative[ (type = token.type) ] ) {
- break;
- }
- if ( (find = Expr.find[ type ]) ) {
- // Search, expanding context for leading sibling combinators
- if ( (seed = find(
- token.matches[0].replace( runescape, funescape ),
- rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
- )) ) {
-
- // If seed is empty or no tokens remain, we can return early
- tokens.splice( i, 1 );
- selector = seed.length && toSelector( tokens );
- if ( !selector ) {
- push.apply( results, seed );
- return results;
- }
-
- break;
- }
- }
- }
- }
-
- // Compile and execute a filtering function if one is not provided
- // Provide `match` to avoid retokenization if we modified the selector above
- ( compiled || compile( selector, match ) )(
- seed,
- context,
- !documentIsHTML,
- results,
- rsibling.test( selector ) && testContext( context.parentNode ) || context
- );
- return results;
-};
-
-// One-time assignments
-
-// Sort stability
-support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
-
-// Support: Chrome<14
-// Always assume duplicates if they aren't passed to the comparison function
-support.detectDuplicates = !!hasDuplicate;
-
-// Initialize against the default document
-setDocument();
-
-// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
-// Detached nodes confoundingly follow *each other*
-support.sortDetached = assert(function( div1 ) {
- // Should return 1, but returns 4 (following)
- return div1.compareDocumentPosition( document.createElement("div") ) & 1;
-});
-
-// Support: IE<8
-// Prevent attribute/property "interpolation"
-// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
-if ( !assert(function( div ) {
- div.innerHTML = "<a href='#'></a>";
- return div.firstChild.getAttribute("href") === "#" ;
-}) ) {
- addHandle( "type|href|height|width", function( elem, name, isXML ) {
- if ( !isXML ) {
- return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
- }
- });
-}
-
-// Support: IE<9
-// Use defaultValue in place of getAttribute("value")
-if ( !support.attributes || !assert(function( div ) {
- div.innerHTML = "<input/>";
- div.firstChild.setAttribute( "value", "" );
- return div.firstChild.getAttribute( "value" ) === "";
-}) ) {
- addHandle( "value", function( elem, name, isXML ) {
- if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
- return elem.defaultValue;
- }
- });
-}
-
-// Support: IE<9
-// Use getAttributeNode to fetch booleans when getAttribute lies
-if ( !assert(function( div ) {
- return div.getAttribute("disabled") == null;
-}) ) {
- addHandle( booleans, function( elem, name, isXML ) {
- var val;
- if ( !isXML ) {
- return elem[ name ] === true ? name.toLowerCase() :
- (val = elem.getAttributeNode( name )) && val.specified ?
- val.value :
- null;
- }
- });
-}
-
-return Sizzle;
-
-})( window );
-
-
-
-jQuery.find = Sizzle;
-jQuery.expr = Sizzle.selectors;
-jQuery.expr[":"] = jQuery.expr.pseudos;
-jQuery.unique = Sizzle.uniqueSort;
-jQuery.text = Sizzle.getText;
-jQuery.isXMLDoc = Sizzle.isXML;
-jQuery.contains = Sizzle.contains;
-
-
-
-var rneedsContext = jQuery.expr.match.needsContext;
-
-var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
-
-
-
-var risSimple = /^.[^:#\[\.,]*$/;
-
-// Implement the identical functionality for filter and not
-function winnow( elements, qualifier, not ) {
- if ( jQuery.isFunction( qualifier ) ) {
- return jQuery.grep( elements, function( elem, i ) {
- /* jshint -W018 */
- return !!qualifier.call( elem, i, elem ) !== not;
- });
-
- }
-
- if ( qualifier.nodeType ) {
- return jQuery.grep( elements, function( elem ) {
- return ( elem === qualifier ) !== not;
- });
-
- }
-
- if ( typeof qualifier === "string" ) {
- if ( risSimple.test( qualifier ) ) {
- return jQuery.filter( qualifier, elements, not );
- }
-
- qualifier = jQuery.filter( qualifier, elements );
- }
-
- return jQuery.grep( elements, function( elem ) {
- return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;
- });
-}
-
-jQuery.filter = function( expr, elems, not ) {
- var elem = elems[ 0 ];
-
- if ( not ) {
- expr = ":not(" + expr + ")";
- }
-
- return elems.length === 1 && elem.nodeType === 1 ?
- jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
- jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
- return elem.nodeType === 1;
- }));
-};
-
-jQuery.fn.extend({
- find: function( selector ) {
- var i,
- ret = [],
- self = this,
- len = self.length;
-
- if ( typeof selector !== "string" ) {
- return this.pushStack( jQuery( selector ).filter(function() {
- for ( i = 0; i < len; i++ ) {
- if ( jQuery.contains( self[ i ], this ) ) {
- return true;
- }
- }
- }) );
- }
-
- for ( i = 0; i < len; i++ ) {
- jQuery.find( selector, self[ i ], ret );
- }
-
- // Needed because $( selector, context ) becomes $( context ).find( selector )
- ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
- ret.selector = this.selector ? this.selector + " " + selector : selector;
- return ret;
- },
- filter: function( selector ) {
- return this.pushStack( winnow(this, selector || [], false) );
- },
- not: function( selector ) {
- return this.pushStack( winnow(this, selector || [], true) );
- },
- is: function( selector ) {
- return !!winnow(
- this,
-
- // If this is a positional/relative selector, check membership in the returned set
- // so $("p:first").is("p:last") won't return true for a doc with two "p".
- typeof selector === "string" && rneedsContext.test( selector ) ?
- jQuery( selector ) :
- selector || [],
- false
- ).length;
- }
-});
-
-
-// Initialize a jQuery object
-
-
-// A central reference to the root jQuery(document)
-var rootjQuery,
-
- // Use the correct document accordingly with window argument (sandbox)
- document = window.document,
-
- // A simple way to check for HTML strings
- // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
- // Strict HTML recognition (#11290: must start with <)
- rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
-
- init = jQuery.fn.init = function( selector, context ) {
- var match, elem;
-
- // HANDLE: $(""), $(null), $(undefined), $(false)
- if ( !selector ) {
- return this;
- }
-
- // Handle HTML strings
- if ( typeof selector === "string" ) {
- if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
- // Assume that strings that start and end with <> are HTML and skip the regex check
- match = [ null, selector, null ];
-
- } else {
- match = rquickExpr.exec( selector );
- }
-
- // Match html or make sure no context is specified for #id
- if ( match && (match[1] || !context) ) {
-
- // HANDLE: $(html) -> $(array)
- if ( match[1] ) {
- context = context instanceof jQuery ? context[0] : context;
-
- // scripts is true for back-compat
- // Intentionally let the error be thrown if parseHTML is not present
- jQuery.merge( this, jQuery.parseHTML(
- match[1],
- context && context.nodeType ? context.ownerDocument || context : document,
- true
- ) );
-
- // HANDLE: $(html, props)
- if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
- for ( match in context ) {
- // Properties of context are called as methods if possible
- if ( jQuery.isFunction( this[ match ] ) ) {
- this[ match ]( context[ match ] );
-
- // ...and otherwise set as attributes
- } else {
- this.attr( match, context[ match ] );
- }
- }
- }
-
- return this;
-
- // HANDLE: $(#id)
- } else {
- elem = document.getElementById( match[2] );
-
- // Check parentNode to catch when Blackberry 4.6 returns
- // nodes that are no longer in the document #6963
- if ( elem && elem.parentNode ) {
- // Handle the case where IE and Opera return items
- // by name instead of ID
- if ( elem.id !== match[2] ) {
- return rootjQuery.find( selector );
- }
-
- // Otherwise, we inject the element directly into the jQuery object
- this.length = 1;
- this[0] = elem;
- }
-
- this.context = document;
- this.selector = selector;
- return this;
- }
-
- // HANDLE: $(expr, $(...))
- } else if ( !context || context.jquery ) {
- return ( context || rootjQuery ).find( selector );
-
- // HANDLE: $(expr, context)
- // (which is just equivalent to: $(context).find(expr)
- } else {
- return this.constructor( context ).find( selector );
- }
-
- // HANDLE: $(DOMElement)
- } else if ( selector.nodeType ) {
- this.context = this[0] = selector;
- this.length = 1;
- return this;
-
- // HANDLE: $(function)
- // Shortcut for document ready
- } else if ( jQuery.isFunction( selector ) ) {
- return typeof rootjQuery.ready !== "undefined" ?
- rootjQuery.ready( selector ) :
- // Execute immediately if ready is not present
- selector( jQuery );
- }
-
- if ( selector.selector !== undefined ) {
- this.selector = selector.selector;
- this.context = selector.context;
- }
-
- return jQuery.makeArray( selector, this );
- };
-
-// Give the init function the jQuery prototype for later instantiation
-init.prototype = jQuery.fn;
-
-// Initialize central reference
-rootjQuery = jQuery( document );
-
-
-var rparentsprev = /^(?:parents|prev(?:Until|All))/,
- // methods guaranteed to produce a unique set when starting from a unique set
- guaranteedUnique = {
- children: true,
- contents: true,
- next: true,
- prev: true
- };
-
-jQuery.extend({
- dir: function( elem, dir, until ) {
- var matched = [],
- cur = elem[ dir ];
-
- while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
- if ( cur.nodeType === 1 ) {
- matched.push( cur );
- }
- cur = cur[dir];
- }
- return matched;
- },
-
- sibling: function( n, elem ) {
- var r = [];
-
- for ( ; n; n = n.nextSibling ) {
- if ( n.nodeType === 1 && n !== elem ) {
- r.push( n );
- }
- }
-
- return r;
- }
-});
-
-jQuery.fn.extend({
- has: function( target ) {
- var i,
- targets = jQuery( target, this ),
- len = targets.length;
-
- return this.filter(function() {
- for ( i = 0; i < len; i++ ) {
- if ( jQuery.contains( this, targets[i] ) ) {
- return true;
- }
- }
- });
- },
-
- closest: function( selectors, context ) {
- var cur,
- i = 0,
- l = this.length,
- matched = [],
- pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
- jQuery( selectors, context || this.context ) :
- 0;
-
- for ( ; i < l; i++ ) {
- for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
- // Always skip document fragments
- if ( cur.nodeType < 11 && (pos ?
- pos.index(cur) > -1 :
-
- // Don't pass non-elements to Sizzle
- cur.nodeType === 1 &&
- jQuery.find.matchesSelector(cur, selectors)) ) {
-
- matched.push( cur );
- break;
- }
- }
- }
-
- return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
- },
-
- // Determine the position of an element within
- // the matched set of elements
- index: function( elem ) {
-
- // No argument, return index in parent
- if ( !elem ) {
- return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;
- }
-
- // index in selector
- if ( typeof elem === "string" ) {
- return jQuery.inArray( this[0], jQuery( elem ) );
- }
-
- // Locate the position of the desired element
- return jQuery.inArray(
- // If it receives a jQuery object, the first element is used
- elem.jquery ? elem[0] : elem, this );
- },
-
- add: function( selector, context ) {
- return this.pushStack(
- jQuery.unique(
- jQuery.merge( this.get(), jQuery( selector, context ) )
- )
- );
- },
-
- addBack: function( selector ) {
- return this.add( selector == null ?
- this.prevObject : this.prevObject.filter(selector)
- );
- }
-});
-
-function sibling( cur, dir ) {
- do {
- cur = cur[ dir ];
- } while ( cur && cur.nodeType !== 1 );
-
- return cur;
-}
-
-jQuery.each({
- parent: function( elem ) {
- var parent = elem.parentNode;
- return parent && parent.nodeType !== 11 ? parent : null;
- },
- parents: function( elem ) {
- return jQuery.dir( elem, "parentNode" );
- },
- parentsUntil: function( elem, i, until ) {
- return jQuery.dir( elem, "parentNode", until );
- },
- next: function( elem ) {
- return sibling( elem, "nextSibling" );
- },
- prev: function( elem ) {
- return sibling( elem, "previousSibling" );
- },
- nextAll: function( elem ) {
- return jQuery.dir( elem, "nextSibling" );
- },
- prevAll: function( elem ) {
- return jQuery.dir( elem, "previousSibling" );
- },
- nextUntil: function( elem, i, until ) {
- return jQuery.dir( elem, "nextSibling", until );
- },
- prevUntil: function( elem, i, until ) {
- return jQuery.dir( elem, "previousSibling", until );
- },
- siblings: function( elem ) {
- return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
- },
- children: function( elem ) {
- return jQuery.sibling( elem.firstChild );
- },
- contents: function( elem ) {
- return jQuery.nodeName( elem, "iframe" ) ?
- elem.contentDocument || elem.contentWindow.document :
- jQuery.merge( [], elem.childNodes );
- }
-}, function( name, fn ) {
- jQuery.fn[ name ] = function( until, selector ) {
- var ret = jQuery.map( this, fn, until );
-
- if ( name.slice( -5 ) !== "Until" ) {
- selector = until;
- }
-
- if ( selector && typeof selector === "string" ) {
- ret = jQuery.filter( selector, ret );
- }
-
- if ( this.length > 1 ) {
- // Remove duplicates
- if ( !guaranteedUnique[ name ] ) {
- ret = jQuery.unique( ret );
- }
-
- // Reverse order for parents* and prev-derivatives
- if ( rparentsprev.test( name ) ) {
- ret = ret.reverse();
- }
- }
-
- return this.pushStack( ret );
- };
-});
-var rnotwhite = (/\S+/g);
-
-
-
-// String to Object options format cache
-var optionsCache = {};
-
-// Convert String-formatted options into Object-formatted ones and store in cache
-function createOptions( options ) {
- var object = optionsCache[ options ] = {};
- jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
- object[ flag ] = true;
- });
- return object;
-}
-
-/*
- * Create a callback list using the following parameters:
- *
- * options: an optional list of space-separated options that will change how
- * the callback list behaves or a more traditional option object
- *
- * By default a callback list will act like an event callback list and can be
- * "fired" multiple times.
- *
- * Possible options:
- *
- * once: will ensure the callback list can only be fired once (like a Deferred)
- *
- * memory: will keep track of previous values and will call any callback added
- * after the list has been fired right away with the latest "memorized"
- * values (like a Deferred)
- *
- * unique: will ensure a callback can only be added once (no duplicate in the list)
- *
- * stopOnFalse: interrupt callings when a callback returns false
- *
- */
-jQuery.Callbacks = function( options ) {
-
- // Convert options from String-formatted to Object-formatted if needed
- // (we check in cache first)
- options = typeof options === "string" ?
- ( optionsCache[ options ] || createOptions( options ) ) :
- jQuery.extend( {}, options );
-
- var // Flag to know if list is currently firing
- firing,
- // Last fire value (for non-forgettable lists)
- memory,
- // Flag to know if list was already fired
- fired,
- // End of the loop when firing
- firingLength,
- // Index of currently firing callback (modified by remove if needed)
- firingIndex,
- // First callback to fire (used internally by add and fireWith)
- firingStart,
- // Actual callback list
- list = [],
- // Stack of fire calls for repeatable lists
- stack = !options.once && [],
- // Fire callbacks
- fire = function( data ) {
- memory = options.memory && data;
- fired = true;
- firingIndex = firingStart || 0;
- firingStart = 0;
- firingLength = list.length;
- firing = true;
- for ( ; list && firingIndex < firingLength; firingIndex++ ) {
- if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
- memory = false; // To prevent further calls using add
- break;
- }
- }
- firing = false;
- if ( list ) {
- if ( stack ) {
- if ( stack.length ) {
- fire( stack.shift() );
- }
- } else if ( memory ) {
- list = [];
- } else {
- self.disable();
- }
- }
- },
- // Actual Callbacks object
- self = {
- // Add a callback or a collection of callbacks to the list
- add: function() {
- if ( list ) {
- // First, we save the current length
- var start = list.length;
- (function add( args ) {
- jQuery.each( args, function( _, arg ) {
- var type = jQuery.type( arg );
- if ( type === "function" ) {
- if ( !options.unique || !self.has( arg ) ) {
- list.push( arg );
- }
- } else if ( arg && arg.length && type !== "string" ) {
- // Inspect recursively
- add( arg );
- }
- });
- })( arguments );
- // Do we need to add the callbacks to the
- // current firing batch?
- if ( firing ) {
- firingLength = list.length;
- // With memory, if we're not firing then
- // we should call right away
- } else if ( memory ) {
- firingStart = start;
- fire( memory );
- }
- }
- return this;
- },
- // Remove a callback from the list
- remove: function() {
- if ( list ) {
- jQuery.each( arguments, function( _, arg ) {
- var index;
- while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
- list.splice( index, 1 );
- // Handle firing indexes
- if ( firing ) {
- if ( index <= firingLength ) {
- firingLength--;
- }
- if ( index <= firingIndex ) {
- firingIndex--;
- }
- }
- }
- });
- }
- return this;
- },
- // Check if a given callback is in the list.
- // If no argument is given, return whether or not list has callbacks attached.
- has: function( fn ) {
- return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
- },
- // Remove all callbacks from the list
- empty: function() {
- list = [];
- firingLength = 0;
- return this;
- },
- // Have the list do nothing anymore
- disable: function() {
- list = stack = memory = undefined;
- return this;
- },
- // Is it disabled?
- disabled: function() {
- return !list;
- },
- // Lock the list in its current state
- lock: function() {
- stack = undefined;
- if ( !memory ) {
- self.disable();
- }
- return this;
- },
- // Is it locked?
- locked: function() {
- return !stack;
- },
- // Call all callbacks with the given context and arguments
- fireWith: function( context, args ) {
- if ( list && ( !fired || stack ) ) {
- args = args || [];
- args = [ context, args.slice ? args.slice() : args ];
- if ( firing ) {
- stack.push( args );
- } else {
- fire( args );
- }
- }
- return this;
- },
- // Call all the callbacks with the given arguments
- fire: function() {
- self.fireWith( this, arguments );
- return this;
- },
- // To know if the callbacks have already been called at least once
- fired: function() {
- return !!fired;
- }
- };
-
- return self;
-};
-
-
-jQuery.extend({
-
- Deferred: function( func ) {
- var tuples = [
- // action, add listener, listener list, final state
- [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
- [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
- [ "notify", "progress", jQuery.Callbacks("memory") ]
- ],
- state = "pending",
- promise = {
- state: function() {
- return state;
- },
- always: function() {
- deferred.done( arguments ).fail( arguments );
- return this;
- },
- then: function( /* fnDone, fnFail, fnProgress */ ) {
- var fns = arguments;
- return jQuery.Deferred(function( newDefer ) {
- jQuery.each( tuples, function( i, tuple ) {
- var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
- // deferred[ done | fail | progress ] for forwarding actions to newDefer
- deferred[ tuple[1] ](function() {
- var returned = fn && fn.apply( this, arguments );
- if ( returned && jQuery.isFunction( returned.promise ) ) {
- returned.promise()
- .done( newDefer.resolve )
- .fail( newDefer.reject )
- .progress( newDefer.notify );
- } else {
- newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
- }
- });
- });
- fns = null;
- }).promise();
- },
- // Get a promise for this deferred
- // If obj is provided, the promise aspect is added to the object
- promise: function( obj ) {
- return obj != null ? jQuery.extend( obj, promise ) : promise;
- }
- },
- deferred = {};
-
- // Keep pipe for back-compat
- promise.pipe = promise.then;
-
- // Add list-specific methods
- jQuery.each( tuples, function( i, tuple ) {
- var list = tuple[ 2 ],
- stateString = tuple[ 3 ];
-
- // promise[ done | fail | progress ] = list.add
- promise[ tuple[1] ] = list.add;
-
- // Handle state
- if ( stateString ) {
- list.add(function() {
- // state = [ resolved | rejected ]
- state = stateString;
-
- // [ reject_list | resolve_list ].disable; progress_list.lock
- }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
- }
-
- // deferred[ resolve | reject | notify ]
- deferred[ tuple[0] ] = function() {
- deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
- return this;
- };
- deferred[ tuple[0] + "With" ] = list.fireWith;
- });
-
- // Make the deferred a promise
- promise.promise( deferred );
-
- // Call given func if any
- if ( func ) {
- func.call( deferred, deferred );
- }
-
- // All done!
- return deferred;
- },
-
- // Deferred helper
- when: function( subordinate /* , ..., subordinateN */ ) {
- var i = 0,
- resolveValues = slice.call( arguments ),
- length = resolveValues.length,
-
- // the count of uncompleted subordinates
- remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
-
- // the master Deferred. If resolveValues consist of only a single Deferred, just use that.
- deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
-
- // Update function for both resolve and progress values
- updateFunc = function( i, contexts, values ) {
- return function( value ) {
- contexts[ i ] = this;
- values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
- if ( values === progressValues ) {
- deferred.notifyWith( contexts, values );
-
- } else if ( !(--remaining) ) {
- deferred.resolveWith( contexts, values );
- }
- };
- },
-
- progressValues, progressContexts, resolveContexts;
-
- // add listeners to Deferred subordinates; treat others as resolved
- if ( length > 1 ) {
- progressValues = new Array( length );
- progressContexts = new Array( length );
- resolveContexts = new Array( length );
- for ( ; i < length; i++ ) {
- if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
- resolveValues[ i ].promise()
- .done( updateFunc( i, resolveContexts, resolveValues ) )
- .fail( deferred.reject )
- .progress( updateFunc( i, progressContexts, progressValues ) );
- } else {
- --remaining;
- }
- }
- }
-
- // if we're not waiting on anything, resolve the master
- if ( !remaining ) {
- deferred.resolveWith( resolveContexts, resolveValues );
- }
-
- return deferred.promise();
- }
-});
-
-
-// The deferred used on DOM ready
-var readyList;
-
-jQuery.fn.ready = function( fn ) {
- // Add the callback
- jQuery.ready.promise().done( fn );
-
- return this;
-};
-
-jQuery.extend({
- // Is the DOM ready to be used? Set to true once it occurs.
- isReady: false,
-
- // A counter to track how many items to wait for before
- // the ready event fires. See #6781
- readyWait: 1,
-
- // Hold (or release) the ready event
- holdReady: function( hold ) {
- if ( hold ) {
- jQuery.readyWait++;
- } else {
- jQuery.ready( true );
- }
- },
-
- // Handle when the DOM is ready
- ready: function( wait ) {
-
- // Abort if there are pending holds or we're already ready
- if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
- return;
- }
-
- // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
- if ( !document.body ) {
- return setTimeout( jQuery.ready );
- }
-
- // Remember that the DOM is ready
- jQuery.isReady = true;
-
- // If a normal DOM Ready event fired, decrement, and wait if need be
- if ( wait !== true && --jQuery.readyWait > 0 ) {
- return;
- }
-
- // If there are functions bound, to execute
- readyList.resolveWith( document, [ jQuery ] );
-
- // Trigger any bound ready events
- if ( jQuery.fn.triggerHandler ) {
- jQuery( document ).triggerHandler( "ready" );
- jQuery( document ).off( "ready" );
- }
- }
-});
-
-/**
- * Clean-up method for dom ready events
- */
-function detach() {
- if ( document.addEventListener ) {
- document.removeEventListener( "DOMContentLoaded", completed, false );
- window.removeEventListener( "load", completed, false );
-
- } else {
- document.detachEvent( "onreadystatechange", completed );
- window.detachEvent( "onload", completed );
- }
-}
-
-/**
- * The ready event handler and self cleanup method
- */
-function completed() {
- // readyState === "complete" is good enough for us to call the dom ready in oldIE
- if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) {
- detach();
- jQuery.ready();
- }
-}
-
-jQuery.ready.promise = function( obj ) {
- if ( !readyList ) {
-
- readyList = jQuery.Deferred();
-
- // Catch cases where $(document).ready() is called after the browser event has already occurred.
- // we once tried to use readyState "interactive" here, but it caused issues like the one
- // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
- if ( document.readyState === "complete" ) {
- // Handle it asynchronously to allow scripts the opportunity to delay ready
- setTimeout( jQuery.ready );
-
- // Standards-based browsers support DOMContentLoaded
- } else if ( document.addEventListener ) {
- // Use the handy event callback
- document.addEventListener( "DOMContentLoaded", completed, false );
-
- // A fallback to window.onload, that will always work
- window.addEventListener( "load", completed, false );
-
- // If IE event model is used
- } else {
- // Ensure firing before onload, maybe late but safe also for iframes
- document.attachEvent( "onreadystatechange", completed );
-
- // A fallback to window.onload, that will always work
- window.attachEvent( "onload", completed );
-
- // If IE and not a frame
- // continually check to see if the document is ready
- var top = false;
-
- try {
- top = window.frameElement == null && document.documentElement;
- } catch(e) {}
-
- if ( top && top.doScroll ) {
- (function doScrollCheck() {
- if ( !jQuery.isReady ) {
-
- try {
- // Use the trick by Diego Perini
- // http://javascript.nwbox.com/IEContentLoaded/
- top.doScroll("left");
- } catch(e) {
- return setTimeout( doScrollCheck, 50 );
- }
-
- // detach all dom ready events
- detach();
-
- // and execute any waiting functions
- jQuery.ready();
- }
- })();
- }
- }
- }
- return readyList.promise( obj );
-};
-
-
-var strundefined = typeof undefined;
-
-
-
-// Support: IE<9
-// Iteration over object's inherited properties before its own
-var i;
-for ( i in jQuery( support ) ) {
- break;
-}
-support.ownLast = i !== "0";
-
-// Note: most support tests are defined in their respective modules.
-// false until the test is run
-support.inlineBlockNeedsLayout = false;
-
-// Execute ASAP in case we need to set body.style.zoom
-jQuery(function() {
- // Minified: var a,b,c,d
- var val, div, body, container;
-
- body = document.getElementsByTagName( "body" )[ 0 ];
- if ( !body || !body.style ) {
- // Return for frameset docs that don't have a body
- return;
- }
-
- // Setup
- div = document.createElement( "div" );
- container = document.createElement( "div" );
- container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
- body.appendChild( container ).appendChild( div );
-
- if ( typeof div.style.zoom !== strundefined ) {
- // Support: IE<8
- // Check if natively block-level elements act like inline-block
- // elements when setting their display to 'inline' and giving
- // them layout
- div.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1";
-
- support.inlineBlockNeedsLayout = val = div.offsetWidth === 3;
- if ( val ) {
- // Prevent IE 6 from affecting layout for positioned elements #11048
- // Prevent IE from shrinking the body in IE 7 mode #12869
- // Support: IE<8
- body.style.zoom = 1;
- }
- }
-
- body.removeChild( container );
-});
-
-
-
-
-(function() {
- var div = document.createElement( "div" );
-
- // Execute the test only if not already executed in another module.
- if (support.deleteExpando == null) {
- // Support: IE<9
- support.deleteExpando = true;
- try {
- delete div.test;
- } catch( e ) {
- support.deleteExpando = false;
- }
- }
-
- // Null elements to avoid leaks in IE.
- div = null;
-})();
-
-
-/**
- * Determines whether an object can have data
- */
-jQuery.acceptData = function( elem ) {
- var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ],
- nodeType = +elem.nodeType || 1;
-
- // Do not set data on non-element DOM nodes because it will not be cleared (#8335).
- return nodeType !== 1 && nodeType !== 9 ?
- false :
-
- // Nodes accept data unless otherwise specified; rejection can be conditional
- !noData || noData !== true && elem.getAttribute("classid") === noData;
-};
-
-
-var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
- rmultiDash = /([A-Z])/g;
-
-function dataAttr( elem, key, data ) {
- // If nothing was found internally, try to fetch any
- // data from the HTML5 data-* attribute
- if ( data === undefined && elem.nodeType === 1 ) {
-
- var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
-
- data = elem.getAttribute( name );
-
- if ( typeof data === "string" ) {
- try {
- data = data === "true" ? true :
- data === "false" ? false :
- data === "null" ? null :
- // Only convert to a number if it doesn't change the string
- +data + "" === data ? +data :
- rbrace.test( data ) ? jQuery.parseJSON( data ) :
- data;
- } catch( e ) {}
-
- // Make sure we set the data so it isn't changed later
- jQuery.data( elem, key, data );
-
- } else {
- data = undefined;
- }
- }
-
- return data;
-}
-
-// checks a cache object for emptiness
-function isEmptyDataObject( obj ) {
- var name;
- for ( name in obj ) {
-
- // if the public data object is empty, the private is still empty
- if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
- continue;
- }
- if ( name !== "toJSON" ) {
- return false;
- }
- }
-
- return true;
-}
-
-function internalData( elem, name, data, pvt /* Internal Use Only */ ) {
- if ( !jQuery.acceptData( elem ) ) {
- return;
- }
-
- var ret, thisCache,
- internalKey = jQuery.expando,
-
- // We have to handle DOM nodes and JS objects differently because IE6-7
- // can't GC object references properly across the DOM-JS boundary
- isNode = elem.nodeType,
-
- // Only DOM nodes need the global jQuery cache; JS object data is
- // attached directly to the object so GC can occur automatically
- cache = isNode ? jQuery.cache : elem,
-
- // Only defining an ID for JS objects if its cache already exists allows
- // the code to shortcut on the same path as a DOM node with no cache
- id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;
-
- // Avoid doing any more work than we need to when trying to get data on an
- // object that has no data at all
- if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) {
- return;
- }
-
- if ( !id ) {
- // Only DOM nodes need a new unique ID for each element since their data
- // ends up in the global cache
- if ( isNode ) {
- id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;
- } else {
- id = internalKey;
- }
- }
-
- if ( !cache[ id ] ) {
- // Avoid exposing jQuery metadata on plain JS objects when the object
- // is serialized using JSON.stringify
- cache[ id ] = isNode ? {} : { toJSON: jQuery.noop };
- }
-
- // An object can be passed to jQuery.data instead of a key/value pair; this gets
- // shallow copied over onto the existing cache
- if ( typeof name === "object" || typeof name === "function" ) {
- if ( pvt ) {
- cache[ id ] = jQuery.extend( cache[ id ], name );
- } else {
- cache[ id ].data = jQuery.extend( cache[ id ].data, name );
- }
- }
-
- thisCache = cache[ id ];
-
- // jQuery data() is stored in a separate object inside the object's internal data
- // cache in order to avoid key collisions between internal data and user-defined
- // data.
- if ( !pvt ) {
- if ( !thisCache.data ) {
- thisCache.data = {};
- }
-
- thisCache = thisCache.data;
- }
-
- if ( data !== undefined ) {
- thisCache[ jQuery.camelCase( name ) ] = data;
- }
-
- // Check for both converted-to-camel and non-converted data property names
- // If a data property was specified
- if ( typeof name === "string" ) {
-
- // First Try to find as-is property data
- ret = thisCache[ name ];
-
- // Test for null|undefined property data
- if ( ret == null ) {
-
- // Try to find the camelCased property
- ret = thisCache[ jQuery.camelCase( name ) ];
- }
- } else {
- ret = thisCache;
- }
-
- return ret;
-}
-
-function internalRemoveData( elem, name, pvt ) {
- if ( !jQuery.acceptData( elem ) ) {
- return;
- }
-
- var thisCache, i,
- isNode = elem.nodeType,
-
- // See jQuery.data for more information
- cache = isNode ? jQuery.cache : elem,
- id = isNode ? elem[ jQuery.expando ] : jQuery.expando;
-
- // If there is already no cache entry for this object, there is no
- // purpose in continuing
- if ( !cache[ id ] ) {
- return;
- }
-
- if ( name ) {
-
- thisCache = pvt ? cache[ id ] : cache[ id ].data;
-
- if ( thisCache ) {
-
- // Support array or space separated string names for data keys
- if ( !jQuery.isArray( name ) ) {
-
- // try the string as a key before any manipulation
- if ( name in thisCache ) {
- name = [ name ];
- } else {
-
- // split the camel cased version by spaces unless a key with the spaces exists
- name = jQuery.camelCase( name );
- if ( name in thisCache ) {
- name = [ name ];
- } else {
- name = name.split(" ");
- }
- }
- } else {
- // If "name" is an array of keys...
- // When data is initially created, via ("key", "val") signature,
- // keys will be converted to camelCase.
- // Since there is no way to tell _how_ a key was added, remove
- // both plain key and camelCase key. #12786
- // This will only penalize the array argument path.
- name = name.concat( jQuery.map( name, jQuery.camelCase ) );
- }
-
- i = name.length;
- while ( i-- ) {
- delete thisCache[ name[i] ];
- }
-
- // If there is no data left in the cache, we want to continue
- // and let the cache object itself get destroyed
- if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {
- return;
- }
- }
- }
-
- // See jQuery.data for more information
- if ( !pvt ) {
- delete cache[ id ].data;
-
- // Don't destroy the parent cache unless the internal data object
- // had been the only thing left in it
- if ( !isEmptyDataObject( cache[ id ] ) ) {
- return;
- }
- }
-
- // Destroy the cache
- if ( isNode ) {
- jQuery.cleanData( [ elem ], true );
-
- // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)
- /* jshint eqeqeq: false */
- } else if ( support.deleteExpando || cache != cache.window ) {
- /* jshint eqeqeq: true */
- delete cache[ id ];
-
- // When all else fails, null
- } else {
- cache[ id ] = null;
- }
-}
-
-jQuery.extend({
- cache: {},
-
- // The following elements (space-suffixed to avoid Object.prototype collisions)
- // throw uncatchable exceptions if you attempt to set expando properties
- noData: {
- "applet ": true,
- "embed ": true,
- // ...but Flash objects (which have this classid) *can* handle expandos
- "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
- },
-
- hasData: function( elem ) {
- elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
- return !!elem && !isEmptyDataObject( elem );
- },
-
- data: function( elem, name, data ) {
- return internalData( elem, name, data );
- },
-
- removeData: function( elem, name ) {
- return internalRemoveData( elem, name );
- },
-
- // For internal use only.
- _data: function( elem, name, data ) {
- return internalData( elem, name, data, true );
- },
-
- _removeData: function( elem, name ) {
- return internalRemoveData( elem, name, true );
- }
-});
-
-jQuery.fn.extend({
- data: function( key, value ) {
- var i, name, data,
- elem = this[0],
- attrs = elem && elem.attributes;
-
- // Special expections of .data basically thwart jQuery.access,
- // so implement the relevant behavior ourselves
-
- // Gets all values
- if ( key === undefined ) {
- if ( this.length ) {
- data = jQuery.data( elem );
-
- if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) {
- i = attrs.length;
- while ( i-- ) {
-
- // Support: IE11+
- // The attrs elements can be null (#14894)
- if ( attrs[ i ] ) {
- name = attrs[ i ].name;
- if ( name.indexOf( "data-" ) === 0 ) {
- name = jQuery.camelCase( name.slice(5) );
- dataAttr( elem, name, data[ name ] );
- }
- }
- }
- jQuery._data( elem, "parsedAttrs", true );
- }
- }
-
- return data;
- }
-
- // Sets multiple values
- if ( typeof key === "object" ) {
- return this.each(function() {
- jQuery.data( this, key );
- });
- }
-
- return arguments.length > 1 ?
-
- // Sets one value
- this.each(function() {
- jQuery.data( this, key, value );
- }) :
-
- // Gets one value
- // Try to fetch any internally stored data first
- elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;
- },
-
- removeData: function( key ) {
- return this.each(function() {
- jQuery.removeData( this, key );
- });
- }
-});
-
-
-jQuery.extend({
- queue: function( elem, type, data ) {
- var queue;
-
- if ( elem ) {
- type = ( type || "fx" ) + "queue";
- queue = jQuery._data( elem, type );
-
- // Speed up dequeue by getting out quickly if this is just a lookup
- if ( data ) {
- if ( !queue || jQuery.isArray(data) ) {
- queue = jQuery._data( elem, type, jQuery.makeArray(data) );
- } else {
- queue.push( data );
- }
- }
- return queue || [];
- }
- },
-
- dequeue: function( elem, type ) {
- type = type || "fx";
-
- var queue = jQuery.queue( elem, type ),
- startLength = queue.length,
- fn = queue.shift(),
- hooks = jQuery._queueHooks( elem, type ),
- next = function() {
- jQuery.dequeue( elem, type );
- };
-
- // If the fx queue is dequeued, always remove the progress sentinel
- if ( fn === "inprogress" ) {
- fn = queue.shift();
- startLength--;
- }
-
- if ( fn ) {
-
- // Add a progress sentinel to prevent the fx queue from being
- // automatically dequeued
- if ( type === "fx" ) {
- queue.unshift( "inprogress" );
- }
-
- // clear up the last queue stop function
- delete hooks.stop;
- fn.call( elem, next, hooks );
- }
-
- if ( !startLength && hooks ) {
- hooks.empty.fire();
- }
- },
-
- // not intended for public consumption - generates a queueHooks object, or returns the current one
- _queueHooks: function( elem, type ) {
- var key = type + "queueHooks";
- return jQuery._data( elem, key ) || jQuery._data( elem, key, {
- empty: jQuery.Callbacks("once memory").add(function() {
- jQuery._removeData( elem, type + "queue" );
- jQuery._removeData( elem, key );
- })
- });
- }
-});
-
-jQuery.fn.extend({
- queue: function( type, data ) {
- var setter = 2;
-
- if ( typeof type !== "string" ) {
- data = type;
- type = "fx";
- setter--;
- }
-
- if ( arguments.length < setter ) {
- return jQuery.queue( this[0], type );
- }
-
- return data === undefined ?
- this :
- this.each(function() {
- var queue = jQuery.queue( this, type, data );
-
- // ensure a hooks for this queue
- jQuery._queueHooks( this, type );
-
- if ( type === "fx" && queue[0] !== "inprogress" ) {
- jQuery.dequeue( this, type );
- }
- });
- },
- dequeue: function( type ) {
- return this.each(function() {
- jQuery.dequeue( this, type );
- });
- },
- clearQueue: function( type ) {
- return this.queue( type || "fx", [] );
- },
- // Get a promise resolved when queues of a certain type
- // are emptied (fx is the type by default)
- promise: function( type, obj ) {
- var tmp,
- count = 1,
- defer = jQuery.Deferred(),
- elements = this,
- i = this.length,
- resolve = function() {
- if ( !( --count ) ) {
- defer.resolveWith( elements, [ elements ] );
- }
- };
-
- if ( typeof type !== "string" ) {
- obj = type;
- type = undefined;
- }
- type = type || "fx";
-
- while ( i-- ) {
- tmp = jQuery._data( elements[ i ], type + "queueHooks" );
- if ( tmp && tmp.empty ) {
- count++;
- tmp.empty.add( resolve );
- }
- }
- resolve();
- return defer.promise( obj );
- }
-});
-var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
-
-var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
-
-var isHidden = function( elem, el ) {
- // isHidden might be called from jQuery#filter function;
- // in that case, element will be second argument
- elem = el || elem;
- return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
- };
-
-
-
-// Multifunctional method to get and set values of a collection
-// The value/s can optionally be executed if it's a function
-var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
- var i = 0,
- length = elems.length,
- bulk = key == null;
-
- // Sets many values
- if ( jQuery.type( key ) === "object" ) {
- chainable = true;
- for ( i in key ) {
- jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
- }
-
- // Sets one value
- } else if ( value !== undefined ) {
- chainable = true;
-
- if ( !jQuery.isFunction( value ) ) {
- raw = true;
- }
-
- if ( bulk ) {
- // Bulk operations run against the entire set
- if ( raw ) {
- fn.call( elems, value );
- fn = null;
-
- // ...except when executing function values
- } else {
- bulk = fn;
- fn = function( elem, key, value ) {
- return bulk.call( jQuery( elem ), value );
- };
- }
- }
-
- if ( fn ) {
- for ( ; i < length; i++ ) {
- fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
- }
- }
- }
-
- return chainable ?
- elems :
-
- // Gets
- bulk ?
- fn.call( elems ) :
- length ? fn( elems[0], key ) : emptyGet;
-};
-var rcheckableType = (/^(?:checkbox|radio)$/i);
-
-
-
-(function() {
- // Minified: var a,b,c
- var input = document.createElement( "input" ),
- div = document.createElement( "div" ),
- fragment = document.createDocumentFragment();
-
- // Setup
- div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
-
- // IE strips leading whitespace when .innerHTML is used
- support.leadingWhitespace = div.firstChild.nodeType === 3;
-
- // Make sure that tbody elements aren't automatically inserted
- // IE will insert them into empty tables
- support.tbody = !div.getElementsByTagName( "tbody" ).length;
-
- // Make sure that link elements get serialized correctly by innerHTML
- // This requires a wrapper element in IE
- support.htmlSerialize = !!div.getElementsByTagName( "link" ).length;
-
- // Makes sure cloning an html5 element does not cause problems
- // Where outerHTML is undefined, this still works
- support.html5Clone =
- document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav></:nav>";
-
- // Check if a disconnected checkbox will retain its checked
- // value of true after appended to the DOM (IE6/7)
- input.type = "checkbox";
- input.checked = true;
- fragment.appendChild( input );
- support.appendChecked = input.checked;
-
- // Make sure textarea (and checkbox) defaultValue is properly cloned
- // Support: IE6-IE11+
- div.innerHTML = "<textarea>x</textarea>";
- support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
-
- // #11217 - WebKit loses check when the name is after the checked attribute
- fragment.appendChild( div );
- div.innerHTML = "<input type='radio' checked='checked' name='t'/>";
-
- // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3
- // old WebKit doesn't clone checked state correctly in fragments
- support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
-
- // Support: IE<9
- // Opera does not clone events (and typeof div.attachEvent === undefined).
- // IE9-10 clones events bound via attachEvent, but they don't trigger with .click()
- support.noCloneEvent = true;
- if ( div.attachEvent ) {
- div.attachEvent( "onclick", function() {
- support.noCloneEvent = false;
- });
-
- div.cloneNode( true ).click();
- }
-
- // Execute the test only if not already executed in another module.
- if (support.deleteExpando == null) {
- // Support: IE<9
- support.deleteExpando = true;
- try {
- delete div.test;
- } catch( e ) {
- support.deleteExpando = false;
- }
- }
-})();
-
-
-(function() {
- var i, eventName,
- div = document.createElement( "div" );
-
- // Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)
- for ( i in { submit: true, change: true, focusin: true }) {
- eventName = "on" + i;
-
- if ( !(support[ i + "Bubbles" ] = eventName in window) ) {
- // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)
- div.setAttribute( eventName, "t" );
- support[ i + "Bubbles" ] = div.attributes[ eventName ].expando === false;
- }
- }
-
- // Null elements to avoid leaks in IE.
- div = null;
-})();
-
-
-var rformElems = /^(?:input|select|textarea)$/i,
- rkeyEvent = /^key/,
- rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,
- rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
- rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
-
-function returnTrue() {
- return true;
-}
-
-function returnFalse() {
- return false;
-}
-
-function safeActiveElement() {
- try {
- return document.activeElement;
- } catch ( err ) { }
-}
-
-/*
- * Helper functions for managing events -- not part of the public interface.
- * Props to Dean Edwards' addEvent library for many of the ideas.
- */
-jQuery.event = {
-
- global: {},
-
- add: function( elem, types, handler, data, selector ) {
- var tmp, events, t, handleObjIn,
- special, eventHandle, handleObj,
- handlers, type, namespaces, origType,
- elemData = jQuery._data( elem );
-
- // Don't attach events to noData or text/comment nodes (but allow plain objects)
- if ( !elemData ) {
- return;
- }
-
- // Caller can pass in an object of custom data in lieu of the handler
- if ( handler.handler ) {
- handleObjIn = handler;
- handler = handleObjIn.handler;
- selector = handleObjIn.selector;
- }
-
- // Make sure that the handler has a unique ID, used to find/remove it later
- if ( !handler.guid ) {
- handler.guid = jQuery.guid++;
- }
-
- // Init the element's event structure and main handler, if this is the first
- if ( !(events = elemData.events) ) {
- events = elemData.events = {};
- }
- if ( !(eventHandle = elemData.handle) ) {
- eventHandle = elemData.handle = function( e ) {
- // Discard the second event of a jQuery.event.trigger() and
- // when an event is called after a page has unloaded
- return typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?
- jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
- undefined;
- };
- // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events
- eventHandle.elem = elem;
- }
-
- // Handle multiple events separated by a space
- types = ( types || "" ).match( rnotwhite ) || [ "" ];
- t = types.length;
- while ( t-- ) {
- tmp = rtypenamespace.exec( types[t] ) || [];
- type = origType = tmp[1];
- namespaces = ( tmp[2] || "" ).split( "." ).sort();
-
- // There *must* be a type, no attaching namespace-only handlers
- if ( !type ) {
- continue;
- }
-
- // If event changes its type, use the special event handlers for the changed type
- special = jQuery.event.special[ type ] || {};
-
- // If selector defined, determine special event api type, otherwise given type
- type = ( selector ? special.delegateType : special.bindType ) || type;
-
- // Update special based on newly reset type
- special = jQuery.event.special[ type ] || {};
-
- // handleObj is passed to all event handlers
- handleObj = jQuery.extend({
- type: type,
- origType: origType,
- data: data,
- handler: handler,
- guid: handler.guid,
- selector: selector,
- needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
- namespace: namespaces.join(".")
- }, handleObjIn );
-
- // Init the event handler queue if we're the first
- if ( !(handlers = events[ type ]) ) {
- handlers = events[ type ] = [];
- handlers.delegateCount = 0;
-
- // Only use addEventListener/attachEvent if the special events handler returns false
- if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
- // Bind the global event handler to the element
- if ( elem.addEventListener ) {
- elem.addEventListener( type, eventHandle, false );
-
- } else if ( elem.attachEvent ) {
- elem.attachEvent( "on" + type, eventHandle );
- }
- }
- }
-
- if ( special.add ) {
- special.add.call( elem, handleObj );
-
- if ( !handleObj.handler.guid ) {
- handleObj.handler.guid = handler.guid;
- }
- }
-
- // Add to the element's handler list, delegates in front
- if ( selector ) {
- handlers.splice( handlers.delegateCount++, 0, handleObj );
- } else {
- handlers.push( handleObj );
- }
-
- // Keep track of which events have ever been used, for event optimization
- jQuery.event.global[ type ] = true;
- }
-
- // Nullify elem to prevent memory leaks in IE
- elem = null;
- },
-
- // Detach an event or set of events from an element
- remove: function( elem, types, handler, selector, mappedTypes ) {
- var j, handleObj, tmp,
- origCount, t, events,
- special, handlers, type,
- namespaces, origType,
- elemData = jQuery.hasData( elem ) && jQuery._data( elem );
-
- if ( !elemData || !(events = elemData.events) ) {
- return;
- }
-
- // Once for each type.namespace in types; type may be omitted
- types = ( types || "" ).match( rnotwhite ) || [ "" ];
- t = types.length;
- while ( t-- ) {
- tmp = rtypenamespace.exec( types[t] ) || [];
- type = origType = tmp[1];
- namespaces = ( tmp[2] || "" ).split( "." ).sort();
-
- // Unbind all events (on this namespace, if provided) for the element
- if ( !type ) {
- for ( type in events ) {
- jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
- }
- continue;
- }
-
- special = jQuery.event.special[ type ] || {};
- type = ( selector ? special.delegateType : special.bindType ) || type;
- handlers = events[ type ] || [];
- tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
-
- // Remove matching events
- origCount = j = handlers.length;
- while ( j-- ) {
- handleObj = handlers[ j ];
-
- if ( ( mappedTypes || origType === handleObj.origType ) &&
- ( !handler || handler.guid === handleObj.guid ) &&
- ( !tmp || tmp.test( handleObj.namespace ) ) &&
- ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
- handlers.splice( j, 1 );
-
- if ( handleObj.selector ) {
- handlers.delegateCount--;
- }
- if ( special.remove ) {
- special.remove.call( elem, handleObj );
- }
- }
- }
-
- // Remove generic event handler if we removed something and no more handlers exist
- // (avoids potential for endless recursion during removal of special event handlers)
- if ( origCount && !handlers.length ) {
- if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
- jQuery.removeEvent( elem, type, elemData.handle );
- }
-
- delete events[ type ];
- }
- }
-
- // Remove the expando if it's no longer used
- if ( jQuery.isEmptyObject( events ) ) {
- delete elemData.handle;
-
- // removeData also checks for emptiness and clears the expando if empty
- // so use it instead of delete
- jQuery._removeData( elem, "events" );
- }
- },
-
- trigger: function( event, data, elem, onlyHandlers ) {
- var handle, ontype, cur,
- bubbleType, special, tmp, i,
- eventPath = [ elem || document ],
- type = hasOwn.call( event, "type" ) ? event.type : event,
- namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
-
- cur = tmp = elem = elem || document;
-
- // Don't do events on text and comment nodes
- if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
- return;
- }
-
- // focus/blur morphs to focusin/out; ensure we're not firing them right now
- if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
- return;
- }
-
- if ( type.indexOf(".") >= 0 ) {
- // Namespaced trigger; create a regexp to match event type in handle()
- namespaces = type.split(".");
- type = namespaces.shift();
- namespaces.sort();
- }
- ontype = type.indexOf(":") < 0 && "on" + type;
-
- // Caller can pass in a jQuery.Event object, Object, or just an event type string
- event = event[ jQuery.expando ] ?
- event :
- new jQuery.Event( type, typeof event === "object" && event );
-
- // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
- event.isTrigger = onlyHandlers ? 2 : 3;
- event.namespace = namespaces.join(".");
- event.namespace_re = event.namespace ?
- new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
- null;
-
- // Clean up the event in case it is being reused
- event.result = undefined;
- if ( !event.target ) {
- event.target = elem;
- }
-
- // Clone any incoming data and prepend the event, creating the handler arg list
- data = data == null ?
- [ event ] :
- jQuery.makeArray( data, [ event ] );
-
- // Allow special events to draw outside the lines
- special = jQuery.event.special[ type ] || {};
- if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
- return;
- }
-
- // Determine event propagation path in advance, per W3C events spec (#9951)
- // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
- if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
-
- bubbleType = special.delegateType || type;
- if ( !rfocusMorph.test( bubbleType + type ) ) {
- cur = cur.parentNode;
- }
- for ( ; cur; cur = cur.parentNode ) {
- eventPath.push( cur );
- tmp = cur;
- }
-
- // Only add window if we got to document (e.g., not plain obj or detached DOM)
- if ( tmp === (elem.ownerDocument || document) ) {
- eventPath.push( tmp.defaultView || tmp.parentWindow || window );
- }
- }
-
- // Fire handlers on the event path
- i = 0;
- while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
-
- event.type = i > 1 ?
- bubbleType :
- special.bindType || type;
-
- // jQuery handler
- handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" );
- if ( handle ) {
- handle.apply( cur, data );
- }
-
- // Native handler
- handle = ontype && cur[ ontype ];
- if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
- event.result = handle.apply( cur, data );
- if ( event.result === false ) {
- event.preventDefault();
- }
- }
- }
- event.type = type;
-
- // If nobody prevented the default action, do it now
- if ( !onlyHandlers && !event.isDefaultPrevented() ) {
-
- if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
- jQuery.acceptData( elem ) ) {
-
- // Call a native DOM method on the target with the same name name as the event.
- // Can't use an .isFunction() check here because IE6/7 fails that test.
- // Don't do default actions on window, that's where global variables be (#6170)
- if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {
-
- // Don't re-trigger an onFOO event when we call its FOO() method
- tmp = elem[ ontype ];
-
- if ( tmp ) {
- elem[ ontype ] = null;
- }
-
- // Prevent re-triggering of the same event, since we already bubbled it above
- jQuery.event.triggered = type;
- try {
- elem[ type ]();
- } catch ( e ) {
- // IE<9 dies on focus/blur to hidden element (#1486,#12518)
- // only reproducible on winXP IE8 native, not IE9 in IE8 mode
- }
- jQuery.event.triggered = undefined;
-
- if ( tmp ) {
- elem[ ontype ] = tmp;
- }
- }
- }
- }
-
- return event.result;
- },
-
- dispatch: function( event ) {
-
- // Make a writable jQuery.Event from the native event object
- event = jQuery.event.fix( event );
-
- var i, ret, handleObj, matched, j,
- handlerQueue = [],
- args = slice.call( arguments ),
- handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [],
- special = jQuery.event.special[ event.type ] || {};
-
- // Use the fix-ed jQuery.Event rather than the (read-only) native event
- args[0] = event;
- event.delegateTarget = this;
-
- // Call the preDispatch hook for the mapped type, and let it bail if desired
- if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
- return;
- }
-
- // Determine handlers
- handlerQueue = jQuery.event.handlers.call( this, event, handlers );
-
- // Run delegates first; they may want to stop propagation beneath us
- i = 0;
- while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
- event.currentTarget = matched.elem;
-
- j = 0;
- while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
-
- // Triggered event must either 1) have no namespace, or
- // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
- if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
-
- event.handleObj = handleObj;
- event.data = handleObj.data;
-
- ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
- .apply( matched.elem, args );
-
- if ( ret !== undefined ) {
- if ( (event.result = ret) === false ) {
- event.preventDefault();
- event.stopPropagation();
- }
- }
- }
- }
- }
-
- // Call the postDispatch hook for the mapped type
- if ( special.postDispatch ) {
- special.postDispatch.call( this, event );
- }
-
- return event.result;
- },
-
- handlers: function( event, handlers ) {
- var sel, handleObj, matches, i,
- handlerQueue = [],
- delegateCount = handlers.delegateCount,
- cur = event.target;
-
- // Find delegate handlers
- // Black-hole SVG <use> instance trees (#13180)
- // Avoid non-left-click bubbling in Firefox (#3861)
- if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
-
- /* jshint eqeqeq: false */
- for ( ; cur != this; cur = cur.parentNode || this ) {
- /* jshint eqeqeq: true */
-
- // Don't check non-elements (#13208)
- // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
- if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) {
- matches = [];
- for ( i = 0; i < delegateCount; i++ ) {
- handleObj = handlers[ i ];
-
- // Don't conflict with Object.prototype properties (#13203)
- sel = handleObj.selector + " ";
-
- if ( matches[ sel ] === undefined ) {
- matches[ sel ] = handleObj.needsContext ?
- jQuery( sel, this ).index( cur ) >= 0 :
- jQuery.find( sel, this, null, [ cur ] ).length;
- }
- if ( matches[ sel ] ) {
- matches.push( handleObj );
- }
- }
- if ( matches.length ) {
- handlerQueue.push({ elem: cur, handlers: matches });
- }
- }
- }
- }
-
- // Add the remaining (directly-bound) handlers
- if ( delegateCount < handlers.length ) {
- handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
- }
-
- return handlerQueue;
- },
-
- fix: function( event ) {
- if ( event[ jQuery.expando ] ) {
- return event;
- }
-
- // Create a writable copy of the event object and normalize some properties
- var i, prop, copy,
- type = event.type,
- originalEvent = event,
- fixHook = this.fixHooks[ type ];
-
- if ( !fixHook ) {
- this.fixHooks[ type ] = fixHook =
- rmouseEvent.test( type ) ? this.mouseHooks :
- rkeyEvent.test( type ) ? this.keyHooks :
- {};
- }
- copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
-
- event = new jQuery.Event( originalEvent );
-
- i = copy.length;
- while ( i-- ) {
- prop = copy[ i ];
- event[ prop ] = originalEvent[ prop ];
- }
-
- // Support: IE<9
- // Fix target property (#1925)
- if ( !event.target ) {
- event.target = originalEvent.srcElement || document;
- }
-
- // Support: Chrome 23+, Safari?
- // Target should not be a text node (#504, #13143)
- if ( event.target.nodeType === 3 ) {
- event.target = event.target.parentNode;
- }
-
- // Support: IE<9
- // For mouse/key events, metaKey==false if it's undefined (#3368, #11328)
- event.metaKey = !!event.metaKey;
-
- return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
- },
-
- // Includes some event props shared by KeyEvent and MouseEvent
- props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
-
- fixHooks: {},
-
- keyHooks: {
- props: "char charCode key keyCode".split(" "),
- filter: function( event, original ) {
-
- // Add which for key events
- if ( event.which == null ) {
- event.which = original.charCode != null ? original.charCode : original.keyCode;
- }
-
- return event;
- }
- },
-
- mouseHooks: {
- props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
- filter: function( event, original ) {
- var body, eventDoc, doc,
- button = original.button,
- fromElement = original.fromElement;
-
- // Calculate pageX/Y if missing and clientX/Y available
- if ( event.pageX == null && original.clientX != null ) {
- eventDoc = event.target.ownerDocument || document;
- doc = eventDoc.documentElement;
- body = eventDoc.body;
-
- event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
- event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
- }
-
- // Add relatedTarget, if necessary
- if ( !event.relatedTarget && fromElement ) {
- event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
- }
-
- // Add which for click: 1 === left; 2 === middle; 3 === right
- // Note: button is not normalized, so don't use it
- if ( !event.which && button !== undefined ) {
- event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
- }
-
- return event;
- }
- },
-
- special: {
- load: {
- // Prevent triggered image.load events from bubbling to window.load
- noBubble: true
- },
- focus: {
- // Fire native event if possible so blur/focus sequence is correct
- trigger: function() {
- if ( this !== safeActiveElement() && this.focus ) {
- try {
- this.focus();
- return false;
- } catch ( e ) {
- // Support: IE<9
- // If we error on focus to hidden element (#1486, #12518),
- // let .trigger() run the handlers
- }
- }
- },
- delegateType: "focusin"
- },
- blur: {
- trigger: function() {
- if ( this === safeActiveElement() && this.blur ) {
- this.blur();
- return false;
- }
- },
- delegateType: "focusout"
- },
- click: {
- // For checkbox, fire native event so checked state will be right
- trigger: function() {
- if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) {
- this.click();
- return false;
- }
- },
-
- // For cross-browser consistency, don't fire native .click() on links
- _default: function( event ) {
- return jQuery.nodeName( event.target, "a" );
- }
- },
-
- beforeunload: {
- postDispatch: function( event ) {
-
- // Support: Firefox 20+
- // Firefox doesn't alert if the returnValue field is not set.
- if ( event.result !== undefined && event.originalEvent ) {
- event.originalEvent.returnValue = event.result;
- }
- }
- }
- },
-
- simulate: function( type, elem, event, bubble ) {
- // Piggyback on a donor event to simulate a different one.
- // Fake originalEvent to avoid donor's stopPropagation, but if the
- // simulated event prevents default then we do the same on the donor.
- var e = jQuery.extend(
- new jQuery.Event(),
- event,
- {
- type: type,
- isSimulated: true,
- originalEvent: {}
- }
- );
- if ( bubble ) {
- jQuery.event.trigger( e, null, elem );
- } else {
- jQuery.event.dispatch.call( elem, e );
- }
- if ( e.isDefaultPrevented() ) {
- event.preventDefault();
- }
- }
-};
-
-jQuery.removeEvent = document.removeEventListener ?
- function( elem, type, handle ) {
- if ( elem.removeEventListener ) {
- elem.removeEventListener( type, handle, false );
- }
- } :
- function( elem, type, handle ) {
- var name = "on" + type;
-
- if ( elem.detachEvent ) {
-
- // #8545, #7054, preventing memory leaks for custom events in IE6-8
- // detachEvent needed property on element, by name of that event, to properly expose it to GC
- if ( typeof elem[ name ] === strundefined ) {
- elem[ name ] = null;
- }
-
- elem.detachEvent( name, handle );
- }
- };
-
-jQuery.Event = function( src, props ) {
- // Allow instantiation without the 'new' keyword
- if ( !(this instanceof jQuery.Event) ) {
- return new jQuery.Event( src, props );
- }
-
- // Event object
- if ( src && src.type ) {
- this.originalEvent = src;
- this.type = src.type;
-
- // Events bubbling up the document may have been marked as prevented
- // by a handler lower down the tree; reflect the correct value.
- this.isDefaultPrevented = src.defaultPrevented ||
- src.defaultPrevented === undefined &&
- // Support: IE < 9, Android < 4.0
- src.returnValue === false ?
- returnTrue :
- returnFalse;
-
- // Event type
- } else {
- this.type = src;
- }
-
- // Put explicitly provided properties onto the event object
- if ( props ) {
- jQuery.extend( this, props );
- }
-
- // Create a timestamp if incoming event doesn't have one
- this.timeStamp = src && src.timeStamp || jQuery.now();
-
- // Mark it as fixed
- this[ jQuery.expando ] = true;
-};
-
-// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
-// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
-jQuery.Event.prototype = {
- isDefaultPrevented: returnFalse,
- isPropagationStopped: returnFalse,
- isImmediatePropagationStopped: returnFalse,
-
- preventDefault: function() {
- var e = this.originalEvent;
-
- this.isDefaultPrevented = returnTrue;
- if ( !e ) {
- return;
- }
-
- // If preventDefault exists, run it on the original event
- if ( e.preventDefault ) {
- e.preventDefault();
-
- // Support: IE
- // Otherwise set the returnValue property of the original event to false
- } else {
- e.returnValue = false;
- }
- },
- stopPropagation: function() {
- var e = this.originalEvent;
-
- this.isPropagationStopped = returnTrue;
- if ( !e ) {
- return;
- }
- // If stopPropagation exists, run it on the original event
- if ( e.stopPropagation ) {
- e.stopPropagation();
- }
-
- // Support: IE
- // Set the cancelBubble property of the original event to true
- e.cancelBubble = true;
- },
- stopImmediatePropagation: function() {
- var e = this.originalEvent;
-
- this.isImmediatePropagationStopped = returnTrue;
-
- if ( e && e.stopImmediatePropagation ) {
- e.stopImmediatePropagation();
- }
-
- this.stopPropagation();
- }
-};
-
-// Create mouseenter/leave events using mouseover/out and event-time checks
-jQuery.each({
- mouseenter: "mouseover",
- mouseleave: "mouseout",
- pointerenter: "pointerover",
- pointerleave: "pointerout"
-}, function( orig, fix ) {
- jQuery.event.special[ orig ] = {
- delegateType: fix,
- bindType: fix,
-
- handle: function( event ) {
- var ret,
- target = this,
- related = event.relatedTarget,
- handleObj = event.handleObj;
-
- // For mousenter/leave call the handler if related is outside the target.
- // NB: No relatedTarget if the mouse left/entered the browser window
- if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
- event.type = handleObj.origType;
- ret = handleObj.handler.apply( this, arguments );
- event.type = fix;
- }
- return ret;
- }
- };
-});
-
-// IE submit delegation
-if ( !support.submitBubbles ) {
-
- jQuery.event.special.submit = {
- setup: function() {
- // Only need this for delegated form submit events
- if ( jQuery.nodeName( this, "form" ) ) {
- return false;
- }
-
- // Lazy-add a submit handler when a descendant form may potentially be submitted
- jQuery.event.add( this, "click._submit keypress._submit", function( e ) {
- // Node name check avoids a VML-related crash in IE (#9807)
- var elem = e.target,
- form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined;
- if ( form && !jQuery._data( form, "submitBubbles" ) ) {
- jQuery.event.add( form, "submit._submit", function( event ) {
- event._submit_bubble = true;
- });
- jQuery._data( form, "submitBubbles", true );
- }
- });
- // return undefined since we don't need an event listener
- },
-
- postDispatch: function( event ) {
- // If form was submitted by the user, bubble the event up the tree
- if ( event._submit_bubble ) {
- delete event._submit_bubble;
- if ( this.parentNode && !event.isTrigger ) {
- jQuery.event.simulate( "submit", this.parentNode, event, true );
- }
- }
- },
-
- teardown: function() {
- // Only need this for delegated form submit events
- if ( jQuery.nodeName( this, "form" ) ) {
- return false;
- }
-
- // Remove delegated handlers; cleanData eventually reaps submit handlers attached above
- jQuery.event.remove( this, "._submit" );
- }
- };
-}
-
-// IE change delegation and checkbox/radio fix
-if ( !support.changeBubbles ) {
-
- jQuery.event.special.change = {
-
- setup: function() {
-
- if ( rformElems.test( this.nodeName ) ) {
- // IE doesn't fire change on a check/radio until blur; trigger it on click
- // after a propertychange. Eat the blur-change in special.change.handle.
- // This still fires onchange a second time for check/radio after blur.
- if ( this.type === "checkbox" || this.type === "radio" ) {
- jQuery.event.add( this, "propertychange._change", function( event ) {
- if ( event.originalEvent.propertyName === "checked" ) {
- this._just_changed = true;
- }
- });
- jQuery.event.add( this, "click._change", function( event ) {
- if ( this._just_changed && !event.isTrigger ) {
- this._just_changed = false;
- }
- // Allow triggered, simulated change events (#11500)
- jQuery.event.simulate( "change", this, event, true );
- });
- }
- return false;
- }
- // Delegated event; lazy-add a change handler on descendant inputs
- jQuery.event.add( this, "beforeactivate._change", function( e ) {
- var elem = e.target;
-
- if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) {
- jQuery.event.add( elem, "change._change", function( event ) {
- if ( this.parentNode && !event.isSimulated && !event.isTrigger ) {
- jQuery.event.simulate( "change", this.parentNode, event, true );
- }
- });
- jQuery._data( elem, "changeBubbles", true );
- }
- });
- },
-
- handle: function( event ) {
- var elem = event.target;
-
- // Swallow native change events from checkbox/radio, we already triggered them above
- if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) {
- return event.handleObj.handler.apply( this, arguments );
- }
- },
-
- teardown: function() {
- jQuery.event.remove( this, "._change" );
-
- return !rformElems.test( this.nodeName );
- }
- };
-}
-
-// Create "bubbling" focus and blur events
-if ( !support.focusinBubbles ) {
- jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
-
- // Attach a single capturing handler on the document while someone wants focusin/focusout
- var handler = function( event ) {
- jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
- };
-
- jQuery.event.special[ fix ] = {
- setup: function() {
- var doc = this.ownerDocument || this,
- attaches = jQuery._data( doc, fix );
-
- if ( !attaches ) {
- doc.addEventListener( orig, handler, true );
- }
- jQuery._data( doc, fix, ( attaches || 0 ) + 1 );
- },
- teardown: function() {
- var doc = this.ownerDocument || this,
- attaches = jQuery._data( doc, fix ) - 1;
-
- if ( !attaches ) {
- doc.removeEventListener( orig, handler, true );
- jQuery._removeData( doc, fix );
- } else {
- jQuery._data( doc, fix, attaches );
- }
- }
- };
- });
-}
-
-jQuery.fn.extend({
-
- on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
- var type, origFn;
-
- // Types can be a map of types/handlers
- if ( typeof types === "object" ) {
- // ( types-Object, selector, data )
- if ( typeof selector !== "string" ) {
- // ( types-Object, data )
- data = data || selector;
- selector = undefined;
- }
- for ( type in types ) {
- this.on( type, selector, data, types[ type ], one );
- }
- return this;
- }
-
- if ( data == null && fn == null ) {
- // ( types, fn )
- fn = selector;
- data = selector = undefined;
- } else if ( fn == null ) {
- if ( typeof selector === "string" ) {
- // ( types, selector, fn )
- fn = data;
- data = undefined;
- } else {
- // ( types, data, fn )
- fn = data;
- data = selector;
- selector = undefined;
- }
- }
- if ( fn === false ) {
- fn = returnFalse;
- } else if ( !fn ) {
- return this;
- }
-
- if ( one === 1 ) {
- origFn = fn;
- fn = function( event ) {
- // Can use an empty set, since event contains the info
- jQuery().off( event );
- return origFn.apply( this, arguments );
- };
- // Use same guid so caller can remove using origFn
- fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
- }
- return this.each( function() {
- jQuery.event.add( this, types, fn, data, selector );
- });
- },
- one: function( types, selector, data, fn ) {
- return this.on( types, selector, data, fn, 1 );
- },
- off: function( types, selector, fn ) {
- var handleObj, type;
- if ( types && types.preventDefault && types.handleObj ) {
- // ( event ) dispatched jQuery.Event
- handleObj = types.handleObj;
- jQuery( types.delegateTarget ).off(
- handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
- handleObj.selector,
- handleObj.handler
- );
- return this;
- }
- if ( typeof types === "object" ) {
- // ( types-object [, selector] )
- for ( type in types ) {
- this.off( type, selector, types[ type ] );
- }
- return this;
- }
- if ( selector === false || typeof selector === "function" ) {
- // ( types [, fn] )
- fn = selector;
- selector = undefined;
- }
- if ( fn === false ) {
- fn = returnFalse;
- }
- return this.each(function() {
- jQuery.event.remove( this, types, fn, selector );
- });
- },
-
- trigger: function( type, data ) {
- return this.each(function() {
- jQuery.event.trigger( type, data, this );
- });
- },
- triggerHandler: function( type, data ) {
- var elem = this[0];
- if ( elem ) {
- return jQuery.event.trigger( type, data, elem, true );
- }
- }
-});
-
-
-function createSafeFragment( document ) {
- var list = nodeNames.split( "|" ),
- safeFrag = document.createDocumentFragment();
-
- if ( safeFrag.createElement ) {
- while ( list.length ) {
- safeFrag.createElement(
- list.pop()
- );
- }
- }
- return safeFrag;
-}
-
-var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
- "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
- rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g,
- rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
- rleadingWhitespace = /^\s+/,
- rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
- rtagName = /<([\w:]+)/,
- rtbody = /<tbody/i,
- rhtml = /<|&#?\w+;/,
- rnoInnerhtml = /<(?:script|style|link)/i,
- // checked="checked" or checked
- rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
- rscriptType = /^$|\/(?:java|ecma)script/i,
- rscriptTypeMasked = /^true\/(.*)/,
- rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
-
- // We have to close these tags to support XHTML (#13200)
- wrapMap = {
- option: [ 1, "<select multiple='multiple'>", "</select>" ],
- legend: [ 1, "<fieldset>", "</fieldset>" ],
- area: [ 1, "<map>", "</map>" ],
- param: [ 1, "<object>", "</object>" ],
- thead: [ 1, "<table>", "</table>" ],
- tr: [ 2, "<table><tbody>", "</tbody></table>" ],
- col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
- td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
-
- // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,
- // unless wrapped in a div with non-breaking characters in front of it.
- _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ]
- },
- safeFragment = createSafeFragment( document ),
- fragmentDiv = safeFragment.appendChild( document.createElement("div") );
-
-wrapMap.optgroup = wrapMap.option;
-wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
-wrapMap.th = wrapMap.td;
-
-function getAll( context, tag ) {
- var elems, elem,
- i = 0,
- found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) :
- typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) :
- undefined;
-
- if ( !found ) {
- for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {
- if ( !tag || jQuery.nodeName( elem, tag ) ) {
- found.push( elem );
- } else {
- jQuery.merge( found, getAll( elem, tag ) );
- }
- }
- }
-
- return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
- jQuery.merge( [ context ], found ) :
- found;
-}
-
-// Used in buildFragment, fixes the defaultChecked property
-function fixDefaultChecked( elem ) {
- if ( rcheckableType.test( elem.type ) ) {
- elem.defaultChecked = elem.checked;
- }
-}
-
-// Support: IE<8
-// Manipulating tables requires a tbody
-function manipulationTarget( elem, content ) {
- return jQuery.nodeName( elem, "table" ) &&
- jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
-
- elem.getElementsByTagName("tbody")[0] ||
- elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
- elem;
-}
-
-// Replace/restore the type attribute of script elements for safe DOM manipulation
-function disableScript( elem ) {
- elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type;
- return elem;
-}
-function restoreScript( elem ) {
- var match = rscriptTypeMasked.exec( elem.type );
- if ( match ) {
- elem.type = match[1];
- } else {
- elem.removeAttribute("type");
- }
- return elem;
-}
-
-// Mark scripts as having already been evaluated
-function setGlobalEval( elems, refElements ) {
- var elem,
- i = 0;
- for ( ; (elem = elems[i]) != null; i++ ) {
- jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) );
- }
-}
-
-function cloneCopyEvent( src, dest ) {
-
- if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {
- return;
- }
-
- var type, i, l,
- oldData = jQuery._data( src ),
- curData = jQuery._data( dest, oldData ),
- events = oldData.events;
-
- if ( events ) {
- delete curData.handle;
- curData.events = {};
-
- for ( type in events ) {
- for ( i = 0, l = events[ type ].length; i < l; i++ ) {
- jQuery.event.add( dest, type, events[ type ][ i ] );
- }
- }
- }
-
- // make the cloned public data object a copy from the original
- if ( curData.data ) {
- curData.data = jQuery.extend( {}, curData.data );
- }
-}
-
-function fixCloneNodeIssues( src, dest ) {
- var nodeName, e, data;
-
- // We do not need to do anything for non-Elements
- if ( dest.nodeType !== 1 ) {
- return;
- }
-
- nodeName = dest.nodeName.toLowerCase();
-
- // IE6-8 copies events bound via attachEvent when using cloneNode.
- if ( !support.noCloneEvent && dest[ jQuery.expando ] ) {
- data = jQuery._data( dest );
-
- for ( e in data.events ) {
- jQuery.removeEvent( dest, e, data.handle );
- }
-
- // Event data gets referenced instead of copied if the expando gets copied too
- dest.removeAttribute( jQuery.expando );
- }
-
- // IE blanks contents when cloning scripts, and tries to evaluate newly-set text
- if ( nodeName === "script" && dest.text !== src.text ) {
- disableScript( dest ).text = src.text;
- restoreScript( dest );
-
- // IE6-10 improperly clones children of object elements using classid.
- // IE10 throws NoModificationAllowedError if parent is null, #12132.
- } else if ( nodeName === "object" ) {
- if ( dest.parentNode ) {
- dest.outerHTML = src.outerHTML;
- }
-
- // This path appears unavoidable for IE9. When cloning an object
- // element in IE9, the outerHTML strategy above is not sufficient.
- // If the src has innerHTML and the destination does not,
- // copy the src.innerHTML into the dest.innerHTML. #10324
- if ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {
- dest.innerHTML = src.innerHTML;
- }
-
- } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
- // IE6-8 fails to persist the checked state of a cloned checkbox
- // or radio button. Worse, IE6-7 fail to give the cloned element
- // a checked appearance if the defaultChecked value isn't also set
-
- dest.defaultChecked = dest.checked = src.checked;
-
- // IE6-7 get confused and end up setting the value of a cloned
- // checkbox/radio button to an empty string instead of "on"
- if ( dest.value !== src.value ) {
- dest.value = src.value;
- }
-
- // IE6-8 fails to return the selected option to the default selected
- // state when cloning options
- } else if ( nodeName === "option" ) {
- dest.defaultSelected = dest.selected = src.defaultSelected;
-
- // IE6-8 fails to set the defaultValue to the correct value when
- // cloning other types of input fields
- } else if ( nodeName === "input" || nodeName === "textarea" ) {
- dest.defaultValue = src.defaultValue;
- }
-}
-
-jQuery.extend({
- clone: function( elem, dataAndEvents, deepDataAndEvents ) {
- var destElements, node, clone, i, srcElements,
- inPage = jQuery.contains( elem.ownerDocument, elem );
-
- if ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) {
- clone = elem.cloneNode( true );
-
- // IE<=8 does not properly clone detached, unknown element nodes
- } else {
- fragmentDiv.innerHTML = elem.outerHTML;
- fragmentDiv.removeChild( clone = fragmentDiv.firstChild );
- }
-
- if ( (!support.noCloneEvent || !support.noCloneChecked) &&
- (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {
-
- // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
- destElements = getAll( clone );
- srcElements = getAll( elem );
-
- // Fix all IE cloning issues
- for ( i = 0; (node = srcElements[i]) != null; ++i ) {
- // Ensure that the destination node is not null; Fixes #9587
- if ( destElements[i] ) {
- fixCloneNodeIssues( node, destElements[i] );
- }
- }
- }
-
- // Copy the events from the original to the clone
- if ( dataAndEvents ) {
- if ( deepDataAndEvents ) {
- srcElements = srcElements || getAll( elem );
- destElements = destElements || getAll( clone );
-
- for ( i = 0; (node = srcElements[i]) != null; i++ ) {
- cloneCopyEvent( node, destElements[i] );
- }
- } else {
- cloneCopyEvent( elem, clone );
- }
- }
-
- // Preserve script evaluation history
- destElements = getAll( clone, "script" );
- if ( destElements.length > 0 ) {
- setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
- }
-
- destElements = srcElements = node = null;
-
- // Return the cloned set
- return clone;
- },
-
- buildFragment: function( elems, context, scripts, selection ) {
- var j, elem, contains,
- tmp, tag, tbody, wrap,
- l = elems.length,
-
- // Ensure a safe fragment
- safe = createSafeFragment( context ),
-
- nodes = [],
- i = 0;
-
- for ( ; i < l; i++ ) {
- elem = elems[ i ];
-
- if ( elem || elem === 0 ) {
-
- // Add nodes directly
- if ( jQuery.type( elem ) === "object" ) {
- jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
-
- // Convert non-html into a text node
- } else if ( !rhtml.test( elem ) ) {
- nodes.push( context.createTextNode( elem ) );
-
- // Convert html into DOM nodes
- } else {
- tmp = tmp || safe.appendChild( context.createElement("div") );
-
- // Deserialize a standard representation
- tag = (rtagName.exec( elem ) || [ "", "" ])[ 1 ].toLowerCase();
- wrap = wrapMap[ tag ] || wrapMap._default;
-
- tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2];
-
- // Descend through wrappers to the right content
- j = wrap[0];
- while ( j-- ) {
- tmp = tmp.lastChild;
- }
-
- // Manually add leading whitespace removed by IE
- if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
- nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );
- }
-
- // Remove IE's autoinserted <tbody> from table fragments
- if ( !support.tbody ) {
-
- // String was a <table>, *may* have spurious <tbody>
- elem = tag === "table" && !rtbody.test( elem ) ?
- tmp.firstChild :
-
- // String was a bare <thead> or <tfoot>
- wrap[1] === "<table>" && !rtbody.test( elem ) ?
- tmp :
- 0;
-
- j = elem && elem.childNodes.length;
- while ( j-- ) {
- if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) {
- elem.removeChild( tbody );
- }
- }
- }
-
- jQuery.merge( nodes, tmp.childNodes );
-
- // Fix #12392 for WebKit and IE > 9
- tmp.textContent = "";
-
- // Fix #12392 for oldIE
- while ( tmp.firstChild ) {
- tmp.removeChild( tmp.firstChild );
- }
-
- // Remember the top-level container for proper cleanup
- tmp = safe.lastChild;
- }
- }
- }
-
- // Fix #11356: Clear elements from fragment
- if ( tmp ) {
- safe.removeChild( tmp );
- }
-
- // Reset defaultChecked for any radios and checkboxes
- // about to be appended to the DOM in IE 6/7 (#8060)
- if ( !support.appendChecked ) {
- jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked );
- }
-
- i = 0;
- while ( (elem = nodes[ i++ ]) ) {
-
- // #4087 - If origin and destination elements are the same, and this is
- // that element, do not do anything
- if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
- continue;
- }
-
- contains = jQuery.contains( elem.ownerDocument, elem );
-
- // Append to fragment
- tmp = getAll( safe.appendChild( elem ), "script" );
-
- // Preserve script evaluation history
- if ( contains ) {
- setGlobalEval( tmp );
- }
-
- // Capture executables
- if ( scripts ) {
- j = 0;
- while ( (elem = tmp[ j++ ]) ) {
- if ( rscriptType.test( elem.type || "" ) ) {
- scripts.push( elem );
- }
- }
- }
- }
-
- tmp = null;
-
- return safe;
- },
-
- cleanData: function( elems, /* internal */ acceptData ) {
- var elem, type, id, data,
- i = 0,
- internalKey = jQuery.expando,
- cache = jQuery.cache,
- deleteExpando = support.deleteExpando,
- special = jQuery.event.special;
-
- for ( ; (elem = elems[i]) != null; i++ ) {
- if ( acceptData || jQuery.acceptData( elem ) ) {
-
- id = elem[ internalKey ];
- data = id && cache[ id ];
-
- if ( data ) {
- if ( data.events ) {
- for ( type in data.events ) {
- if ( special[ type ] ) {
- jQuery.event.remove( elem, type );
-
- // This is a shortcut to avoid jQuery.event.remove's overhead
- } else {
- jQuery.removeEvent( elem, type, data.handle );
- }
- }
- }
-
- // Remove cache only if it was not already removed by jQuery.event.remove
- if ( cache[ id ] ) {
-
- delete cache[ id ];
-
- // IE does not allow us to delete expando properties from nodes,
- // nor does it have a removeAttribute function on Document nodes;
- // we must handle all of these cases
- if ( deleteExpando ) {
- delete elem[ internalKey ];
-
- } else if ( typeof elem.removeAttribute !== strundefined ) {
- elem.removeAttribute( internalKey );
-
- } else {
- elem[ internalKey ] = null;
- }
-
- deletedIds.push( id );
- }
- }
- }
- }
- }
-});
-
-jQuery.fn.extend({
- text: function( value ) {
- return access( this, function( value ) {
- return value === undefined ?
- jQuery.text( this ) :
- this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );
- }, null, value, arguments.length );
- },
-
- append: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
- var target = manipulationTarget( this, elem );
- target.appendChild( elem );
- }
- });
- },
-
- prepend: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
- var target = manipulationTarget( this, elem );
- target.insertBefore( elem, target.firstChild );
- }
- });
- },
-
- before: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.parentNode ) {
- this.parentNode.insertBefore( elem, this );
- }
- });
- },
-
- after: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.parentNode ) {
- this.parentNode.insertBefore( elem, this.nextSibling );
- }
- });
- },
-
- remove: function( selector, keepData /* Internal Use Only */ ) {
- var elem,
- elems = selector ? jQuery.filter( selector, this ) : this,
- i = 0;
-
- for ( ; (elem = elems[i]) != null; i++ ) {
-
- if ( !keepData && elem.nodeType === 1 ) {
- jQuery.cleanData( getAll( elem ) );
- }
-
- if ( elem.parentNode ) {
- if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
- setGlobalEval( getAll( elem, "script" ) );
- }
- elem.parentNode.removeChild( elem );
- }
- }
-
- return this;
- },
-
- empty: function() {
- var elem,
- i = 0;
-
- for ( ; (elem = this[i]) != null; i++ ) {
- // Remove element nodes and prevent memory leaks
- if ( elem.nodeType === 1 ) {
- jQuery.cleanData( getAll( elem, false ) );
- }
-
- // Remove any remaining nodes
- while ( elem.firstChild ) {
- elem.removeChild( elem.firstChild );
- }
-
- // If this is a select, ensure that it displays empty (#12336)
- // Support: IE<9
- if ( elem.options && jQuery.nodeName( elem, "select" ) ) {
- elem.options.length = 0;
- }
- }
-
- return this;
- },
-
- clone: function( dataAndEvents, deepDataAndEvents ) {
- dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
- deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
-
- return this.map(function() {
- return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
- });
- },
-
- html: function( value ) {
- return access( this, function( value ) {
- var elem = this[ 0 ] || {},
- i = 0,
- l = this.length;
-
- if ( value === undefined ) {
- return elem.nodeType === 1 ?
- elem.innerHTML.replace( rinlinejQuery, "" ) :
- undefined;
- }
-
- // See if we can take a shortcut and just use innerHTML
- if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
- ( support.htmlSerialize || !rnoshimcache.test( value ) ) &&
- ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
- !wrapMap[ (rtagName.exec( value ) || [ "", "" ])[ 1 ].toLowerCase() ] ) {
-
- value = value.replace( rxhtmlTag, "<$1></$2>" );
-
- try {
- for (; i < l; i++ ) {
- // Remove element nodes and prevent memory leaks
- elem = this[i] || {};
- if ( elem.nodeType === 1 ) {
- jQuery.cleanData( getAll( elem, false ) );
- elem.innerHTML = value;
- }
- }
-
- elem = 0;
-
- // If using innerHTML throws an exception, use the fallback method
- } catch(e) {}
- }
-
- if ( elem ) {
- this.empty().append( value );
- }
- }, null, value, arguments.length );
- },
-
- replaceWith: function() {
- var arg = arguments[ 0 ];
-
- // Make the changes, replacing each context element with the new content
- this.domManip( arguments, function( elem ) {
- arg = this.parentNode;
-
- jQuery.cleanData( getAll( this ) );
-
- if ( arg ) {
- arg.replaceChild( elem, this );
- }
- });
-
- // Force removal if there was no new content (e.g., from empty arguments)
- return arg && (arg.length || arg.nodeType) ? this : this.remove();
- },
-
- detach: function( selector ) {
- return this.remove( selector, true );
- },
-
- domManip: function( args, callback ) {
-
- // Flatten any nested arrays
- args = concat.apply( [], args );
-
- var first, node, hasScripts,
- scripts, doc, fragment,
- i = 0,
- l = this.length,
- set = this,
- iNoClone = l - 1,
- value = args[0],
- isFunction = jQuery.isFunction( value );
-
- // We can't cloneNode fragments that contain checked, in WebKit
- if ( isFunction ||
- ( l > 1 && typeof value === "string" &&
- !support.checkClone && rchecked.test( value ) ) ) {
- return this.each(function( index ) {
- var self = set.eq( index );
- if ( isFunction ) {
- args[0] = value.call( this, index, self.html() );
- }
- self.domManip( args, callback );
- });
- }
-
- if ( l ) {
- fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
- first = fragment.firstChild;
-
- if ( fragment.childNodes.length === 1 ) {
- fragment = first;
- }
-
- if ( first ) {
- scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
- hasScripts = scripts.length;
-
- // Use the original fragment for the last item instead of the first because it can end up
- // being emptied incorrectly in certain situations (#8070).
- for ( ; i < l; i++ ) {
- node = fragment;
-
- if ( i !== iNoClone ) {
- node = jQuery.clone( node, true, true );
-
- // Keep references to cloned scripts for later restoration
- if ( hasScripts ) {
- jQuery.merge( scripts, getAll( node, "script" ) );
- }
- }
-
- callback.call( this[i], node, i );
- }
-
- if ( hasScripts ) {
- doc = scripts[ scripts.length - 1 ].ownerDocument;
-
- // Reenable scripts
- jQuery.map( scripts, restoreScript );
-
- // Evaluate executable scripts on first document insertion
- for ( i = 0; i < hasScripts; i++ ) {
- node = scripts[ i ];
- if ( rscriptType.test( node.type || "" ) &&
- !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
-
- if ( node.src ) {
- // Optional AJAX dependency, but won't run scripts if not present
- if ( jQuery._evalUrl ) {
- jQuery._evalUrl( node.src );
- }
- } else {
- jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) );
- }
- }
- }
- }
-
- // Fix #11809: Avoid leaking memory
- fragment = first = null;
- }
- }
-
- return this;
- }
-});
-
-jQuery.each({
- appendTo: "append",
- prependTo: "prepend",
- insertBefore: "before",
- insertAfter: "after",
- replaceAll: "replaceWith"
-}, function( name, original ) {
- jQuery.fn[ name ] = function( selector ) {
- var elems,
- i = 0,
- ret = [],
- insert = jQuery( selector ),
- last = insert.length - 1;
-
- for ( ; i <= last; i++ ) {
- elems = i === last ? this : this.clone(true);
- jQuery( insert[i] )[ original ]( elems );
-
- // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()
- push.apply( ret, elems.get() );
- }
-
- return this.pushStack( ret );
- };
-});
-
-
-var iframe,
- elemdisplay = {};
-
-/**
- * Retrieve the actual display of a element
- * @param {String} name nodeName of the element
- * @param {Object} doc Document object
- */
-// Called only from within defaultDisplay
-function actualDisplay( name, doc ) {
- var style,
- elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
-
- // getDefaultComputedStyle might be reliably used only on attached element
- display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
-
- // Use of this method is a temporary fix (more like optmization) until something better comes along,
- // since it was removed from specification and supported only in FF
- style.display : jQuery.css( elem[ 0 ], "display" );
-
- // We don't have any data stored on the element,
- // so use "detach" method as fast way to get rid of the element
- elem.detach();
-
- return display;
-}
-
-/**
- * Try to determine the default display value of an element
- * @param {String} nodeName
- */
-function defaultDisplay( nodeName ) {
- var doc = document,
- display = elemdisplay[ nodeName ];
-
- if ( !display ) {
- display = actualDisplay( nodeName, doc );
-
- // If the simple way fails, read from inside an iframe
- if ( display === "none" || !display ) {
-
- // Use the already-created iframe if possible
- iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
-
- // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
- doc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;
-
- // Support: IE
- doc.write();
- doc.close();
-
- display = actualDisplay( nodeName, doc );
- iframe.detach();
- }
-
- // Store the correct default display
- elemdisplay[ nodeName ] = display;
- }
-
- return display;
-}
-
-
-(function() {
- var shrinkWrapBlocksVal;
-
- support.shrinkWrapBlocks = function() {
- if ( shrinkWrapBlocksVal != null ) {
- return shrinkWrapBlocksVal;
- }
-
- // Will be changed later if needed.
- shrinkWrapBlocksVal = false;
-
- // Minified: var b,c,d
- var div, body, container;
-
- body = document.getElementsByTagName( "body" )[ 0 ];
- if ( !body || !body.style ) {
- // Test fired too early or in an unsupported environment, exit.
- return;
- }
-
- // Setup
- div = document.createElement( "div" );
- container = document.createElement( "div" );
- container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
- body.appendChild( container ).appendChild( div );
-
- // Support: IE6
- // Check if elements with layout shrink-wrap their children
- if ( typeof div.style.zoom !== strundefined ) {
- // Reset CSS: box-sizing; display; margin; border
- div.style.cssText =
- // Support: Firefox<29, Android 2.3
- // Vendor-prefix box-sizing
- "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
- "box-sizing:content-box;display:block;margin:0;border:0;" +
- "padding:1px;width:1px;zoom:1";
- div.appendChild( document.createElement( "div" ) ).style.width = "5px";
- shrinkWrapBlocksVal = div.offsetWidth !== 3;
- }
-
- body.removeChild( container );
-
- return shrinkWrapBlocksVal;
- };
-
-})();
-var rmargin = (/^margin/);
-
-var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
-
-
-
-var getStyles, curCSS,
- rposition = /^(top|right|bottom|left)$/;
-
-if ( window.getComputedStyle ) {
- getStyles = function( elem ) {
- return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
- };
-
- curCSS = function( elem, name, computed ) {
- var width, minWidth, maxWidth, ret,
- style = elem.style;
-
- computed = computed || getStyles( elem );
-
- // getPropertyValue is only needed for .css('filter') in IE9, see #12537
- ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
-
- if ( computed ) {
-
- if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
- ret = jQuery.style( elem, name );
- }
-
- // A tribute to the "awesome hack by Dean Edwards"
- // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right
- // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
- // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
- if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
-
- // Remember the original values
- width = style.width;
- minWidth = style.minWidth;
- maxWidth = style.maxWidth;
-
- // Put in the new values to get a computed value out
- style.minWidth = style.maxWidth = style.width = ret;
- ret = computed.width;
-
- // Revert the changed values
- style.width = width;
- style.minWidth = minWidth;
- style.maxWidth = maxWidth;
- }
- }
-
- // Support: IE
- // IE returns zIndex value as an integer.
- return ret === undefined ?
- ret :
- ret + "";
- };
-} else if ( document.documentElement.currentStyle ) {
- getStyles = function( elem ) {
- return elem.currentStyle;
- };
-
- curCSS = function( elem, name, computed ) {
- var left, rs, rsLeft, ret,
- style = elem.style;
-
- computed = computed || getStyles( elem );
- ret = computed ? computed[ name ] : undefined;
-
- // Avoid setting ret to empty string here
- // so we don't default to auto
- if ( ret == null && style && style[ name ] ) {
- ret = style[ name ];
- }
-
- // From the awesome hack by Dean Edwards
- // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
-
- // If we're not dealing with a regular pixel number
- // but a number that has a weird ending, we need to convert it to pixels
- // but not position css attributes, as those are proportional to the parent element instead
- // and we can't measure the parent instead because it might trigger a "stacking dolls" problem
- if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {
-
- // Remember the original values
- left = style.left;
- rs = elem.runtimeStyle;
- rsLeft = rs && rs.left;
-
- // Put in the new values to get a computed value out
- if ( rsLeft ) {
- rs.left = elem.currentStyle.left;
- }
- style.left = name === "fontSize" ? "1em" : ret;
- ret = style.pixelLeft + "px";
-
- // Revert the changed values
- style.left = left;
- if ( rsLeft ) {
- rs.left = rsLeft;
- }
- }
-
- // Support: IE
- // IE returns zIndex value as an integer.
- return ret === undefined ?
- ret :
- ret + "" || "auto";
- };
-}
-
-
-
-
-function addGetHookIf( conditionFn, hookFn ) {
- // Define the hook, we'll check on the first run if it's really needed.
- return {
- get: function() {
- var condition = conditionFn();
-
- if ( condition == null ) {
- // The test was not ready at this point; screw the hook this time
- // but check again when needed next time.
- return;
- }
-
- if ( condition ) {
- // Hook not needed (or it's not possible to use it due to missing dependency),
- // remove it.
- // Since there are no other hooks for marginRight, remove the whole object.
- delete this.get;
- return;
- }
-
- // Hook needed; redefine it so that the support test is not executed again.
-
- return (this.get = hookFn).apply( this, arguments );
- }
- };
-}
-
-
-(function() {
- // Minified: var b,c,d,e,f,g, h,i
- var div, style, a, pixelPositionVal, boxSizingReliableVal,
- reliableHiddenOffsetsVal, reliableMarginRightVal;
-
- // Setup
- div = document.createElement( "div" );
- div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
- a = div.getElementsByTagName( "a" )[ 0 ];
- style = a && a.style;
-
- // Finish early in limited (non-browser) environments
- if ( !style ) {
- return;
- }
-
- style.cssText = "float:left;opacity:.5";
-
- // Support: IE<9
- // Make sure that element opacity exists (as opposed to filter)
- support.opacity = style.opacity === "0.5";
-
- // Verify style float existence
- // (IE uses styleFloat instead of cssFloat)
- support.cssFloat = !!style.cssFloat;
-
- div.style.backgroundClip = "content-box";
- div.cloneNode( true ).style.backgroundClip = "";
- support.clearCloneStyle = div.style.backgroundClip === "content-box";
-
- // Support: Firefox<29, Android 2.3
- // Vendor-prefix box-sizing
- support.boxSizing = style.boxSizing === "" || style.MozBoxSizing === "" ||
- style.WebkitBoxSizing === "";
-
- jQuery.extend(support, {
- reliableHiddenOffsets: function() {
- if ( reliableHiddenOffsetsVal == null ) {
- computeStyleTests();
- }
- return reliableHiddenOffsetsVal;
- },
-
- boxSizingReliable: function() {
- if ( boxSizingReliableVal == null ) {
- computeStyleTests();
- }
- return boxSizingReliableVal;
- },
-
- pixelPosition: function() {
- if ( pixelPositionVal == null ) {
- computeStyleTests();
- }
- return pixelPositionVal;
- },
-
- // Support: Android 2.3
- reliableMarginRight: function() {
- if ( reliableMarginRightVal == null ) {
- computeStyleTests();
- }
- return reliableMarginRightVal;
- }
- });
-
- function computeStyleTests() {
- // Minified: var b,c,d,j
- var div, body, container, contents;
-
- body = document.getElementsByTagName( "body" )[ 0 ];
- if ( !body || !body.style ) {
- // Test fired too early or in an unsupported environment, exit.
- return;
- }
-
- // Setup
- div = document.createElement( "div" );
- container = document.createElement( "div" );
- container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
- body.appendChild( container ).appendChild( div );
-
- div.style.cssText =
- // Support: Firefox<29, Android 2.3
- // Vendor-prefix box-sizing
- "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
- "box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
- "border:1px;padding:1px;width:4px;position:absolute";
-
- // Support: IE<9
- // Assume reasonable values in the absence of getComputedStyle
- pixelPositionVal = boxSizingReliableVal = false;
- reliableMarginRightVal = true;
-
- // Check for getComputedStyle so that this code is not run in IE<9.
- if ( window.getComputedStyle ) {
- pixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
- boxSizingReliableVal =
- ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";
-
- // Support: Android 2.3
- // Div with explicit width and no margin-right incorrectly
- // gets computed margin-right based on width of container (#3333)
- // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
- contents = div.appendChild( document.createElement( "div" ) );
-
- // Reset CSS: box-sizing; display; margin; border; padding
- contents.style.cssText = div.style.cssText =
- // Support: Firefox<29, Android 2.3
- // Vendor-prefix box-sizing
- "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
- "box-sizing:content-box;display:block;margin:0;border:0;padding:0";
- contents.style.marginRight = contents.style.width = "0";
- div.style.width = "1px";
-
- reliableMarginRightVal =
- !parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );
- }
-
- // Support: IE8
- // Check if table cells still have offsetWidth/Height when they are set
- // to display:none and there are still other visible table cells in a
- // table row; if so, offsetWidth/Height are not reliable for use when
- // determining if an element has been hidden directly using
- // display:none (it is still safe to use offsets if a parent element is
- // hidden; don safety goggles and see bug #4512 for more information).
- div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>";
- contents = div.getElementsByTagName( "td" );
- contents[ 0 ].style.cssText = "margin:0;border:0;padding:0;display:none";
- reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;
- if ( reliableHiddenOffsetsVal ) {
- contents[ 0 ].style.display = "";
- contents[ 1 ].style.display = "none";
- reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;
- }
-
- body.removeChild( container );
- }
-
-})();
-
-
-// A method for quickly swapping in/out CSS properties to get correct calculations.
-jQuery.swap = function( elem, options, callback, args ) {
- var ret, name,
- old = {};
-
- // Remember the old values, and insert the new ones
- for ( name in options ) {
- old[ name ] = elem.style[ name ];
- elem.style[ name ] = options[ name ];
- }
-
- ret = callback.apply( elem, args || [] );
-
- // Revert the old values
- for ( name in options ) {
- elem.style[ name ] = old[ name ];
- }
-
- return ret;
-};
-
-
-var
- ralpha = /alpha\([^)]*\)/i,
- ropacity = /opacity\s*=\s*([^)]*)/,
-
- // swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
- // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
- rdisplayswap = /^(none|table(?!-c[ea]).+)/,
- rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ),
- rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ),
-
- cssShow = { position: "absolute", visibility: "hidden", display: "block" },
- cssNormalTransform = {
- letterSpacing: "0",
- fontWeight: "400"
- },
-
- cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
-
-
-// return a css property mapped to a potentially vendor prefixed property
-function vendorPropName( style, name ) {
-
- // shortcut for names that are not vendor prefixed
- if ( name in style ) {
- return name;
- }
-
- // check for vendor prefixed names
- var capName = name.charAt(0).toUpperCase() + name.slice(1),
- origName = name,
- i = cssPrefixes.length;
-
- while ( i-- ) {
- name = cssPrefixes[ i ] + capName;
- if ( name in style ) {
- return name;
- }
- }
-
- return origName;
-}
-
-function showHide( elements, show ) {
- var display, elem, hidden,
- values = [],
- index = 0,
- length = elements.length;
-
- for ( ; index < length; index++ ) {
- elem = elements[ index ];
- if ( !elem.style ) {
- continue;
- }
-
- values[ index ] = jQuery._data( elem, "olddisplay" );
- display = elem.style.display;
- if ( show ) {
- // Reset the inline display of this element to learn if it is
- // being hidden by cascaded rules or not
- if ( !values[ index ] && display === "none" ) {
- elem.style.display = "";
- }
-
- // Set elements which have been overridden with display: none
- // in a stylesheet to whatever the default browser style is
- // for such an element
- if ( elem.style.display === "" && isHidden( elem ) ) {
- values[ index ] = jQuery._data( elem, "olddisplay", defaultDisplay(elem.nodeName) );
- }
- } else {
- hidden = isHidden( elem );
-
- if ( display && display !== "none" || !hidden ) {
- jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) );
- }
- }
- }
-
- // Set the display of most of the elements in a second loop
- // to avoid the constant reflow
- for ( index = 0; index < length; index++ ) {
- elem = elements[ index ];
- if ( !elem.style ) {
- continue;
- }
- if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
- elem.style.display = show ? values[ index ] || "" : "none";
- }
- }
-
- return elements;
-}
-
-function setPositiveNumber( elem, value, subtract ) {
- var matches = rnumsplit.exec( value );
- return matches ?
- // Guard against undefined "subtract", e.g., when used as in cssHooks
- Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
- value;
-}
-
-function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
- var i = extra === ( isBorderBox ? "border" : "content" ) ?
- // If we already have the right measurement, avoid augmentation
- 4 :
- // Otherwise initialize for horizontal or vertical properties
- name === "width" ? 1 : 0,
-
- val = 0;
-
- for ( ; i < 4; i += 2 ) {
- // both box models exclude margin, so add it if we want it
- if ( extra === "margin" ) {
- val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
- }
-
- if ( isBorderBox ) {
- // border-box includes padding, so remove it if we want content
- if ( extra === "content" ) {
- val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
- }
-
- // at this point, extra isn't border nor margin, so remove border
- if ( extra !== "margin" ) {
- val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
- }
- } else {
- // at this point, extra isn't content, so add padding
- val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
-
- // at this point, extra isn't content nor padding, so add border
- if ( extra !== "padding" ) {
- val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
- }
- }
- }
-
- return val;
-}
-
-function getWidthOrHeight( elem, name, extra ) {
-
- // Start with offset property, which is equivalent to the border-box value
- var valueIsBorderBox = true,
- val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
- styles = getStyles( elem ),
- isBorderBox = support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
-
- // some non-html elements return undefined for offsetWidth, so check for null/undefined
- // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
- // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
- if ( val <= 0 || val == null ) {
- // Fall back to computed then uncomputed css if necessary
- val = curCSS( elem, name, styles );
- if ( val < 0 || val == null ) {
- val = elem.style[ name ];
- }
-
- // Computed unit is not pixels. Stop here and return.
- if ( rnumnonpx.test(val) ) {
- return val;
- }
-
- // we need the check for style in case a browser which returns unreliable values
- // for getComputedStyle silently falls back to the reliable elem.style
- valueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );
-
- // Normalize "", auto, and prepare for extra
- val = parseFloat( val ) || 0;
- }
-
- // use the active box-sizing model to add/subtract irrelevant styles
- return ( val +
- augmentWidthOrHeight(
- elem,
- name,
- extra || ( isBorderBox ? "border" : "content" ),
- valueIsBorderBox,
- styles
- )
- ) + "px";
-}
-
-jQuery.extend({
- // Add in style property hooks for overriding the default
- // behavior of getting and setting a style property
- cssHooks: {
- opacity: {
- get: function( elem, computed ) {
- if ( computed ) {
- // We should always get a number back from opacity
- var ret = curCSS( elem, "opacity" );
- return ret === "" ? "1" : ret;
- }
- }
- }
- },
-
- // Don't automatically add "px" to these possibly-unitless properties
- cssNumber: {
- "columnCount": true,
- "fillOpacity": true,
- "flexGrow": true,
- "flexShrink": true,
- "fontWeight": true,
- "lineHeight": true,
- "opacity": true,
- "order": true,
- "orphans": true,
- "widows": true,
- "zIndex": true,
- "zoom": true
- },
-
- // Add in properties whose names you wish to fix before
- // setting or getting the value
- cssProps: {
- // normalize float css property
- "float": support.cssFloat ? "cssFloat" : "styleFloat"
- },
-
- // Get and set the style property on a DOM Node
- style: function( elem, name, value, extra ) {
- // Don't set styles on text and comment nodes
- if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
- return;
- }
-
- // Make sure that we're working with the right name
- var ret, type, hooks,
- origName = jQuery.camelCase( name ),
- style = elem.style;
-
- name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
-
- // gets hook for the prefixed version
- // followed by the unprefixed version
- hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
- // Check if we're setting a value
- if ( value !== undefined ) {
- type = typeof value;
-
- // convert relative number strings (+= or -=) to relative numbers. #7345
- if ( type === "string" && (ret = rrelNum.exec( value )) ) {
- value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
- // Fixes bug #9237
- type = "number";
- }
-
- // Make sure that null and NaN values aren't set. See: #7116
- if ( value == null || value !== value ) {
- return;
- }
-
- // If a number was passed in, add 'px' to the (except for certain CSS properties)
- if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
- value += "px";
- }
-
- // Fixes #8908, it can be done more correctly by specifing setters in cssHooks,
- // but it would mean to define eight (for every problematic property) identical functions
- if ( !support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) {
- style[ name ] = "inherit";
- }
-
- // If a hook was provided, use that value, otherwise just set the specified value
- if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
-
- // Support: IE
- // Swallow errors from 'invalid' CSS values (#5509)
- try {
- style[ name ] = value;
- } catch(e) {}
- }
-
- } else {
- // If a hook was provided get the non-computed value from there
- if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
- return ret;
- }
-
- // Otherwise just get the value from the style object
- return style[ name ];
- }
- },
-
- css: function( elem, name, extra, styles ) {
- var num, val, hooks,
- origName = jQuery.camelCase( name );
-
- // Make sure that we're working with the right name
- name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
-
- // gets hook for the prefixed version
- // followed by the unprefixed version
- hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
- // If a hook was provided get the computed value from there
- if ( hooks && "get" in hooks ) {
- val = hooks.get( elem, true, extra );
- }
-
- // Otherwise, if a way to get the computed value exists, use that
- if ( val === undefined ) {
- val = curCSS( elem, name, styles );
- }
-
- //convert "normal" to computed value
- if ( val === "normal" && name in cssNormalTransform ) {
- val = cssNormalTransform[ name ];
- }
-
- // Return, converting to number if forced or a qualifier was provided and val looks numeric
- if ( extra === "" || extra ) {
- num = parseFloat( val );
- return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
- }
- return val;
- }
-});
-
-jQuery.each([ "height", "width" ], function( i, name ) {
- jQuery.cssHooks[ name ] = {
- get: function( elem, computed, extra ) {
- if ( computed ) {
- // certain elements can have dimension info if we invisibly show them
- // however, it must have a current display style that would benefit from this
- return rdisplayswap.test( jQuery.css( elem, "display" ) ) && elem.offsetWidth === 0 ?
- jQuery.swap( elem, cssShow, function() {
- return getWidthOrHeight( elem, name, extra );
- }) :
- getWidthOrHeight( elem, name, extra );
- }
- },
-
- set: function( elem, value, extra ) {
- var styles = extra && getStyles( elem );
- return setPositiveNumber( elem, value, extra ?
- augmentWidthOrHeight(
- elem,
- name,
- extra,
- support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
- styles
- ) : 0
- );
- }
- };
-});
-
-if ( !support.opacity ) {
- jQuery.cssHooks.opacity = {
- get: function( elem, computed ) {
- // IE uses filters for opacity
- return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ?
- ( 0.01 * parseFloat( RegExp.$1 ) ) + "" :
- computed ? "1" : "";
- },
-
- set: function( elem, value ) {
- var style = elem.style,
- currentStyle = elem.currentStyle,
- opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "",
- filter = currentStyle && currentStyle.filter || style.filter || "";
-
- // IE has trouble with opacity if it does not have layout
- // Force it by setting the zoom level
- style.zoom = 1;
-
- // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652
- // if value === "", then remove inline opacity #12685
- if ( ( value >= 1 || value === "" ) &&
- jQuery.trim( filter.replace( ralpha, "" ) ) === "" &&
- style.removeAttribute ) {
-
- // Setting style.filter to null, "" & " " still leave "filter:" in the cssText
- // if "filter:" is present at all, clearType is disabled, we want to avoid this
- // style.removeAttribute is IE Only, but so apparently is this code path...
- style.removeAttribute( "filter" );
-
- // if there is no filter style applied in a css rule or unset inline opacity, we are done
- if ( value === "" || currentStyle && !currentStyle.filter ) {
- return;
- }
- }
-
- // otherwise, set new filter values
- style.filter = ralpha.test( filter ) ?
- filter.replace( ralpha, opacity ) :
- filter + " " + opacity;
- }
- };
-}
-
-jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
- function( elem, computed ) {
- if ( computed ) {
- // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
- // Work around by temporarily setting element display to inline-block
- return jQuery.swap( elem, { "display": "inline-block" },
- curCSS, [ elem, "marginRight" ] );
- }
- }
-);
-
-// These hooks are used by animate to expand properties
-jQuery.each({
- margin: "",
- padding: "",
- border: "Width"
-}, function( prefix, suffix ) {
- jQuery.cssHooks[ prefix + suffix ] = {
- expand: function( value ) {
- var i = 0,
- expanded = {},
-
- // assumes a single number if not a string
- parts = typeof value === "string" ? value.split(" ") : [ value ];
-
- for ( ; i < 4; i++ ) {
- expanded[ prefix + cssExpand[ i ] + suffix ] =
- parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
- }
-
- return expanded;
- }
- };
-
- if ( !rmargin.test( prefix ) ) {
- jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
- }
-});
-
-jQuery.fn.extend({
- css: function( name, value ) {
- return access( this, function( elem, name, value ) {
- var styles, len,
- map = {},
- i = 0;
-
- if ( jQuery.isArray( name ) ) {
- styles = getStyles( elem );
- len = name.length;
-
- for ( ; i < len; i++ ) {
- map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
- }
-
- return map;
- }
-
- return value !== undefined ?
- jQuery.style( elem, name, value ) :
- jQuery.css( elem, name );
- }, name, value, arguments.length > 1 );
- },
- show: function() {
- return showHide( this, true );
- },
- hide: function() {
- return showHide( this );
- },
- toggle: function( state ) {
- if ( typeof state === "boolean" ) {
- return state ? this.show() : this.hide();
- }
-
- return this.each(function() {
- if ( isHidden( this ) ) {
- jQuery( this ).show();
- } else {
- jQuery( this ).hide();
- }
- });
- }
-});
-
-
-function Tween( elem, options, prop, end, easing ) {
- return new Tween.prototype.init( elem, options, prop, end, easing );
-}
-jQuery.Tween = Tween;
-
-Tween.prototype = {
- constructor: Tween,
- init: function( elem, options, prop, end, easing, unit ) {
- this.elem = elem;
- this.prop = prop;
- this.easing = easing || "swing";
- this.options = options;
- this.start = this.now = this.cur();
- this.end = end;
- this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
- },
- cur: function() {
- var hooks = Tween.propHooks[ this.prop ];
-
- return hooks && hooks.get ?
- hooks.get( this ) :
- Tween.propHooks._default.get( this );
- },
- run: function( percent ) {
- var eased,
- hooks = Tween.propHooks[ this.prop ];
-
- if ( this.options.duration ) {
- this.pos = eased = jQuery.easing[ this.easing ](
- percent, this.options.duration * percent, 0, 1, this.options.duration
- );
- } else {
- this.pos = eased = percent;
- }
- this.now = ( this.end - this.start ) * eased + this.start;
-
- if ( this.options.step ) {
- this.options.step.call( this.elem, this.now, this );
- }
-
- if ( hooks && hooks.set ) {
- hooks.set( this );
- } else {
- Tween.propHooks._default.set( this );
- }
- return this;
- }
-};
-
-Tween.prototype.init.prototype = Tween.prototype;
-
-Tween.propHooks = {
- _default: {
- get: function( tween ) {
- var result;
-
- if ( tween.elem[ tween.prop ] != null &&
- (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
- return tween.elem[ tween.prop ];
- }
-
- // passing an empty string as a 3rd parameter to .css will automatically
- // attempt a parseFloat and fallback to a string if the parse fails
- // so, simple values such as "10px" are parsed to Float.
- // complex values such as "rotate(1rad)" are returned as is.
- result = jQuery.css( tween.elem, tween.prop, "" );
- // Empty strings, null, undefined and "auto" are converted to 0.
- return !result || result === "auto" ? 0 : result;
- },
- set: function( tween ) {
- // use step hook for back compat - use cssHook if its there - use .style if its
- // available and use plain properties where available
- if ( jQuery.fx.step[ tween.prop ] ) {
- jQuery.fx.step[ tween.prop ]( tween );
- } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
- jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
- } else {
- tween.elem[ tween.prop ] = tween.now;
- }
- }
- }
-};
-
-// Support: IE <=9
-// Panic based approach to setting things on disconnected nodes
-
-Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
- set: function( tween ) {
- if ( tween.elem.nodeType && tween.elem.parentNode ) {
- tween.elem[ tween.prop ] = tween.now;
- }
- }
-};
-
-jQuery.easing = {
- linear: function( p ) {
- return p;
- },
- swing: function( p ) {
- return 0.5 - Math.cos( p * Math.PI ) / 2;
- }
-};
-
-jQuery.fx = Tween.prototype.init;
-
-// Back Compat <1.8 extension point
-jQuery.fx.step = {};
-
-
-
-
-var
- fxNow, timerId,
- rfxtypes = /^(?:toggle|show|hide)$/,
- rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
- rrun = /queueHooks$/,
- animationPrefilters = [ defaultPrefilter ],
- tweeners = {
- "*": [ function( prop, value ) {
- var tween = this.createTween( prop, value ),
- target = tween.cur(),
- parts = rfxnum.exec( value ),
- unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
-
- // Starting value computation is required for potential unit mismatches
- start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
- rfxnum.exec( jQuery.css( tween.elem, prop ) ),
- scale = 1,
- maxIterations = 20;
-
- if ( start && start[ 3 ] !== unit ) {
- // Trust units reported by jQuery.css
- unit = unit || start[ 3 ];
-
- // Make sure we update the tween properties later on
- parts = parts || [];
-
- // Iteratively approximate from a nonzero starting point
- start = +target || 1;
-
- do {
- // If previous iteration zeroed out, double until we get *something*
- // Use a string for doubling factor so we don't accidentally see scale as unchanged below
- scale = scale || ".5";
-
- // Adjust and apply
- start = start / scale;
- jQuery.style( tween.elem, prop, start + unit );
-
- // Update scale, tolerating zero or NaN from tween.cur()
- // And breaking the loop if scale is unchanged or perfect, or if we've just had enough
- } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
- }
-
- // Update tween properties
- if ( parts ) {
- start = tween.start = +start || +target || 0;
- tween.unit = unit;
- // If a +=/-= token was provided, we're doing a relative animation
- tween.end = parts[ 1 ] ?
- start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
- +parts[ 2 ];
- }
-
- return tween;
- } ]
- };
-
-// Animations created synchronously will run synchronously
-function createFxNow() {
- setTimeout(function() {
- fxNow = undefined;
- });
- return ( fxNow = jQuery.now() );
-}
-
-// Generate parameters to create a standard animation
-function genFx( type, includeWidth ) {
- var which,
- attrs = { height: type },
- i = 0;
-
- // if we include width, step value is 1 to do all cssExpand values,
- // if we don't include width, step value is 2 to skip over Left and Right
- includeWidth = includeWidth ? 1 : 0;
- for ( ; i < 4 ; i += 2 - includeWidth ) {
- which = cssExpand[ i ];
- attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
- }
-
- if ( includeWidth ) {
- attrs.opacity = attrs.width = type;
- }
-
- return attrs;
-}
-
-function createTween( value, prop, animation ) {
- var tween,
- collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
- index = 0,
- length = collection.length;
- for ( ; index < length; index++ ) {
- if ( (tween = collection[ index ].call( animation, prop, value )) ) {
-
- // we're done with this property
- return tween;
- }
- }
-}
-
-function defaultPrefilter( elem, props, opts ) {
- /* jshint validthis: true */
- var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
- anim = this,
- orig = {},
- style = elem.style,
- hidden = elem.nodeType && isHidden( elem ),
- dataShow = jQuery._data( elem, "fxshow" );
-
- // handle queue: false promises
- if ( !opts.queue ) {
- hooks = jQuery._queueHooks( elem, "fx" );
- if ( hooks.unqueued == null ) {
- hooks.unqueued = 0;
- oldfire = hooks.empty.fire;
- hooks.empty.fire = function() {
- if ( !hooks.unqueued ) {
- oldfire();
- }
- };
- }
- hooks.unqueued++;
-
- anim.always(function() {
- // doing this makes sure that the complete handler will be called
- // before this completes
- anim.always(function() {
- hooks.unqueued--;
- if ( !jQuery.queue( elem, "fx" ).length ) {
- hooks.empty.fire();
- }
- });
- });
- }
-
- // height/width overflow pass
- if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
- // Make sure that nothing sneaks out
- // Record all 3 overflow attributes because IE does not
- // change the overflow attribute when overflowX and
- // overflowY are set to the same value
- opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
-
- // Set display property to inline-block for height/width
- // animations on inline elements that are having width/height animated
- display = jQuery.css( elem, "display" );
-
- // Test default display if display is currently "none"
- checkDisplay = display === "none" ?
- jQuery._data( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
-
- if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
-
- // inline-level elements accept inline-block;
- // block-level elements need to be inline with layout
- if ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === "inline" ) {
- style.display = "inline-block";
- } else {
- style.zoom = 1;
- }
- }
- }
-
- if ( opts.overflow ) {
- style.overflow = "hidden";
- if ( !support.shrinkWrapBlocks() ) {
- anim.always(function() {
- style.overflow = opts.overflow[ 0 ];
- style.overflowX = opts.overflow[ 1 ];
- style.overflowY = opts.overflow[ 2 ];
- });
- }
- }
-
- // show/hide pass
- for ( prop in props ) {
- value = props[ prop ];
- if ( rfxtypes.exec( value ) ) {
- delete props[ prop ];
- toggle = toggle || value === "toggle";
- if ( value === ( hidden ? "hide" : "show" ) ) {
-
- // If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
- if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
- hidden = true;
- } else {
- continue;
- }
- }
- orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
-
- // Any non-fx value stops us from restoring the original display value
- } else {
- display = undefined;
- }
- }
-
- if ( !jQuery.isEmptyObject( orig ) ) {
- if ( dataShow ) {
- if ( "hidden" in dataShow ) {
- hidden = dataShow.hidden;
- }
- } else {
- dataShow = jQuery._data( elem, "fxshow", {} );
- }
-
- // store state if its toggle - enables .stop().toggle() to "reverse"
- if ( toggle ) {
- dataShow.hidden = !hidden;
- }
- if ( hidden ) {
- jQuery( elem ).show();
- } else {
- anim.done(function() {
- jQuery( elem ).hide();
- });
- }
- anim.done(function() {
- var prop;
- jQuery._removeData( elem, "fxshow" );
- for ( prop in orig ) {
- jQuery.style( elem, prop, orig[ prop ] );
- }
- });
- for ( prop in orig ) {
- tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
-
- if ( !( prop in dataShow ) ) {
- dataShow[ prop ] = tween.start;
- if ( hidden ) {
- tween.end = tween.start;
- tween.start = prop === "width" || prop === "height" ? 1 : 0;
- }
- }
- }
-
- // If this is a noop like .hide().hide(), restore an overwritten display value
- } else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
- style.display = display;
- }
-}
-
-function propFilter( props, specialEasing ) {
- var index, name, easing, value, hooks;
-
- // camelCase, specialEasing and expand cssHook pass
- for ( index in props ) {
- name = jQuery.camelCase( index );
- easing = specialEasing[ name ];
- value = props[ index ];
- if ( jQuery.isArray( value ) ) {
- easing = value[ 1 ];
- value = props[ index ] = value[ 0 ];
- }
-
- if ( index !== name ) {
- props[ name ] = value;
- delete props[ index ];
- }
-
- hooks = jQuery.cssHooks[ name ];
- if ( hooks && "expand" in hooks ) {
- value = hooks.expand( value );
- delete props[ name ];
-
- // not quite $.extend, this wont overwrite keys already present.
- // also - reusing 'index' from above because we have the correct "name"
- for ( index in value ) {
- if ( !( index in props ) ) {
- props[ index ] = value[ index ];
- specialEasing[ index ] = easing;
- }
- }
- } else {
- specialEasing[ name ] = easing;
- }
- }
-}
-
-function Animation( elem, properties, options ) {
- var result,
- stopped,
- index = 0,
- length = animationPrefilters.length,
- deferred = jQuery.Deferred().always( function() {
- // don't match elem in the :animated selector
- delete tick.elem;
- }),
- tick = function() {
- if ( stopped ) {
- return false;
- }
- var currentTime = fxNow || createFxNow(),
- remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
- // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
- temp = remaining / animation.duration || 0,
- percent = 1 - temp,
- index = 0,
- length = animation.tweens.length;
-
- for ( ; index < length ; index++ ) {
- animation.tweens[ index ].run( percent );
- }
-
- deferred.notifyWith( elem, [ animation, percent, remaining ]);
-
- if ( percent < 1 && length ) {
- return remaining;
- } else {
- deferred.resolveWith( elem, [ animation ] );
- return false;
- }
- },
- animation = deferred.promise({
- elem: elem,
- props: jQuery.extend( {}, properties ),
- opts: jQuery.extend( true, { specialEasing: {} }, options ),
- originalProperties: properties,
- originalOptions: options,
- startTime: fxNow || createFxNow(),
- duration: options.duration,
- tweens: [],
- createTween: function( prop, end ) {
- var tween = jQuery.Tween( elem, animation.opts, prop, end,
- animation.opts.specialEasing[ prop ] || animation.opts.easing );
- animation.tweens.push( tween );
- return tween;
- },
- stop: function( gotoEnd ) {
- var index = 0,
- // if we are going to the end, we want to run all the tweens
- // otherwise we skip this part
- length = gotoEnd ? animation.tweens.length : 0;
- if ( stopped ) {
- return this;
- }
- stopped = true;
- for ( ; index < length ; index++ ) {
- animation.tweens[ index ].run( 1 );
- }
-
- // resolve when we played the last frame
- // otherwise, reject
- if ( gotoEnd ) {
- deferred.resolveWith( elem, [ animation, gotoEnd ] );
- } else {
- deferred.rejectWith( elem, [ animation, gotoEnd ] );
- }
- return this;
- }
- }),
- props = animation.props;
-
- propFilter( props, animation.opts.specialEasing );
-
- for ( ; index < length ; index++ ) {
- result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
- if ( result ) {
- return result;
- }
- }
-
- jQuery.map( props, createTween, animation );
-
- if ( jQuery.isFunction( animation.opts.start ) ) {
- animation.opts.start.call( elem, animation );
- }
-
- jQuery.fx.timer(
- jQuery.extend( tick, {
- elem: elem,
- anim: animation,
- queue: animation.opts.queue
- })
- );
-
- // attach callbacks from options
- return animation.progress( animation.opts.progress )
- .done( animation.opts.done, animation.opts.complete )
- .fail( animation.opts.fail )
- .always( animation.opts.always );
-}
-
-jQuery.Animation = jQuery.extend( Animation, {
- tweener: function( props, callback ) {
- if ( jQuery.isFunction( props ) ) {
- callback = props;
- props = [ "*" ];
- } else {
- props = props.split(" ");
- }
-
- var prop,
- index = 0,
- length = props.length;
-
- for ( ; index < length ; index++ ) {
- prop = props[ index ];
- tweeners[ prop ] = tweeners[ prop ] || [];
- tweeners[ prop ].unshift( callback );
- }
- },
-
- prefilter: function( callback, prepend ) {
- if ( prepend ) {
- animationPrefilters.unshift( callback );
- } else {
- animationPrefilters.push( callback );
- }
- }
-});
-
-jQuery.speed = function( speed, easing, fn ) {
- var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
- complete: fn || !fn && easing ||
- jQuery.isFunction( speed ) && speed,
- duration: speed,
- easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
- };
-
- opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
- opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
-
- // normalize opt.queue - true/undefined/null -> "fx"
- if ( opt.queue == null || opt.queue === true ) {
- opt.queue = "fx";
- }
-
- // Queueing
- opt.old = opt.complete;
-
- opt.complete = function() {
- if ( jQuery.isFunction( opt.old ) ) {
- opt.old.call( this );
- }
-
- if ( opt.queue ) {
- jQuery.dequeue( this, opt.queue );
- }
- };
-
- return opt;
-};
-
-jQuery.fn.extend({
- fadeTo: function( speed, to, easing, callback ) {
-
- // show any hidden elements after setting opacity to 0
- return this.filter( isHidden ).css( "opacity", 0 ).show()
-
- // animate to the value specified
- .end().animate({ opacity: to }, speed, easing, callback );
- },
- animate: function( prop, speed, easing, callback ) {
- var empty = jQuery.isEmptyObject( prop ),
- optall = jQuery.speed( speed, easing, callback ),
- doAnimation = function() {
- // Operate on a copy of prop so per-property easing won't be lost
- var anim = Animation( this, jQuery.extend( {}, prop ), optall );
-
- // Empty animations, or finishing resolves immediately
- if ( empty || jQuery._data( this, "finish" ) ) {
- anim.stop( true );
- }
- };
- doAnimation.finish = doAnimation;
-
- return empty || optall.queue === false ?
- this.each( doAnimation ) :
- this.queue( optall.queue, doAnimation );
- },
- stop: function( type, clearQueue, gotoEnd ) {
- var stopQueue = function( hooks ) {
- var stop = hooks.stop;
- delete hooks.stop;
- stop( gotoEnd );
- };
-
- if ( typeof type !== "string" ) {
- gotoEnd = clearQueue;
- clearQueue = type;
- type = undefined;
- }
- if ( clearQueue && type !== false ) {
- this.queue( type || "fx", [] );
- }
-
- return this.each(function() {
- var dequeue = true,
- index = type != null && type + "queueHooks",
- timers = jQuery.timers,
- data = jQuery._data( this );
-
- if ( index ) {
- if ( data[ index ] && data[ index ].stop ) {
- stopQueue( data[ index ] );
- }
- } else {
- for ( index in data ) {
- if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
- stopQueue( data[ index ] );
- }
- }
- }
-
- for ( index = timers.length; index--; ) {
- if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
- timers[ index ].anim.stop( gotoEnd );
- dequeue = false;
- timers.splice( index, 1 );
- }
- }
-
- // start the next in the queue if the last step wasn't forced
- // timers currently will call their complete callbacks, which will dequeue
- // but only if they were gotoEnd
- if ( dequeue || !gotoEnd ) {
- jQuery.dequeue( this, type );
- }
- });
- },
- finish: function( type ) {
- if ( type !== false ) {
- type = type || "fx";
- }
- return this.each(function() {
- var index,
- data = jQuery._data( this ),
- queue = data[ type + "queue" ],
- hooks = data[ type + "queueHooks" ],
- timers = jQuery.timers,
- length = queue ? queue.length : 0;
-
- // enable finishing flag on private data
- data.finish = true;
-
- // empty the queue first
- jQuery.queue( this, type, [] );
-
- if ( hooks && hooks.stop ) {
- hooks.stop.call( this, true );
- }
-
- // look for any active animations, and finish them
- for ( index = timers.length; index--; ) {
- if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
- timers[ index ].anim.stop( true );
- timers.splice( index, 1 );
- }
- }
-
- // look for any animations in the old queue and finish them
- for ( index = 0; index < length; index++ ) {
- if ( queue[ index ] && queue[ index ].finish ) {
- queue[ index ].finish.call( this );
- }
- }
-
- // turn off finishing flag
- delete data.finish;
- });
- }
-});
-
-jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
- var cssFn = jQuery.fn[ name ];
- jQuery.fn[ name ] = function( speed, easing, callback ) {
- return speed == null || typeof speed === "boolean" ?
- cssFn.apply( this, arguments ) :
- this.animate( genFx( name, true ), speed, easing, callback );
- };
-});
-
-// Generate shortcuts for custom animations
-jQuery.each({
- slideDown: genFx("show"),
- slideUp: genFx("hide"),
- slideToggle: genFx("toggle"),
- fadeIn: { opacity: "show" },
- fadeOut: { opacity: "hide" },
- fadeToggle: { opacity: "toggle" }
-}, function( name, props ) {
- jQuery.fn[ name ] = function( speed, easing, callback ) {
- return this.animate( props, speed, easing, callback );
- };
-});
-
-jQuery.timers = [];
-jQuery.fx.tick = function() {
- var timer,
- timers = jQuery.timers,
- i = 0;
-
- fxNow = jQuery.now();
-
- for ( ; i < timers.length; i++ ) {
- timer = timers[ i ];
- // Checks the timer has not already been removed
- if ( !timer() && timers[ i ] === timer ) {
- timers.splice( i--, 1 );
- }
- }
-
- if ( !timers.length ) {
- jQuery.fx.stop();
- }
- fxNow = undefined;
-};
-
-jQuery.fx.timer = function( timer ) {
- jQuery.timers.push( timer );
- if ( timer() ) {
- jQuery.fx.start();
- } else {
- jQuery.timers.pop();
- }
-};
-
-jQuery.fx.interval = 13;
-
-jQuery.fx.start = function() {
- if ( !timerId ) {
- timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
- }
-};
-
-jQuery.fx.stop = function() {
- clearInterval( timerId );
- timerId = null;
-};
-
-jQuery.fx.speeds = {
- slow: 600,
- fast: 200,
- // Default speed
- _default: 400
-};
-
-
-// Based off of the plugin by Clint Helfers, with permission.
-// http://blindsignals.com/index.php/2009/07/jquery-delay/
-jQuery.fn.delay = function( time, type ) {
- time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
- type = type || "fx";
-
- return this.queue( type, function( next, hooks ) {
- var timeout = setTimeout( next, time );
- hooks.stop = function() {
- clearTimeout( timeout );
- };
- });
-};
-
-
-(function() {
- // Minified: var a,b,c,d,e
- var input, div, select, a, opt;
-
- // Setup
- div = document.createElement( "div" );
- div.setAttribute( "className", "t" );
- div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
- a = div.getElementsByTagName("a")[ 0 ];
-
- // First batch of tests.
- select = document.createElement("select");
- opt = select.appendChild( document.createElement("option") );
- input = div.getElementsByTagName("input")[ 0 ];
-
- a.style.cssText = "top:1px";
-
- // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
- support.getSetAttribute = div.className !== "t";
-
- // Get the style information from getAttribute
- // (IE uses .cssText instead)
- support.style = /top/.test( a.getAttribute("style") );
-
- // Make sure that URLs aren't manipulated
- // (IE normalizes it by default)
- support.hrefNormalized = a.getAttribute("href") === "/a";
-
- // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere)
- support.checkOn = !!input.value;
-
- // Make sure that a selected-by-default option has a working selected property.
- // (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
- support.optSelected = opt.selected;
-
- // Tests for enctype support on a form (#6743)
- support.enctype = !!document.createElement("form").enctype;
-
- // Make sure that the options inside disabled selects aren't marked as disabled
- // (WebKit marks them as disabled)
- select.disabled = true;
- support.optDisabled = !opt.disabled;
-
- // Support: IE8 only
- // Check if we can trust getAttribute("value")
- input = document.createElement( "input" );
- input.setAttribute( "value", "" );
- support.input = input.getAttribute( "value" ) === "";
-
- // Check if an input maintains its value after becoming a radio
- input.value = "t";
- input.setAttribute( "type", "radio" );
- support.radioValue = input.value === "t";
-})();
-
-
-var rreturn = /\r/g;
-
-jQuery.fn.extend({
- val: function( value ) {
- var hooks, ret, isFunction,
- elem = this[0];
-
- if ( !arguments.length ) {
- if ( elem ) {
- hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
-
- if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
- return ret;
- }
-
- ret = elem.value;
-
- return typeof ret === "string" ?
- // handle most common string cases
- ret.replace(rreturn, "") :
- // handle cases where value is null/undef or number
- ret == null ? "" : ret;
- }
-
- return;
- }
-
- isFunction = jQuery.isFunction( value );
-
- return this.each(function( i ) {
- var val;
-
- if ( this.nodeType !== 1 ) {
- return;
- }
-
- if ( isFunction ) {
- val = value.call( this, i, jQuery( this ).val() );
- } else {
- val = value;
- }
-
- // Treat null/undefined as ""; convert numbers to string
- if ( val == null ) {
- val = "";
- } else if ( typeof val === "number" ) {
- val += "";
- } else if ( jQuery.isArray( val ) ) {
- val = jQuery.map( val, function( value ) {
- return value == null ? "" : value + "";
- });
- }
-
- hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
-
- // If set returns undefined, fall back to normal setting
- if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
- this.value = val;
- }
- });
- }
-});
-
-jQuery.extend({
- valHooks: {
- option: {
- get: function( elem ) {
- var val = jQuery.find.attr( elem, "value" );
- return val != null ?
- val :
- // Support: IE10-11+
- // option.text throws exceptions (#14686, #14858)
- jQuery.trim( jQuery.text( elem ) );
- }
- },
- select: {
- get: function( elem ) {
- var value, option,
- options = elem.options,
- index = elem.selectedIndex,
- one = elem.type === "select-one" || index < 0,
- values = one ? null : [],
- max = one ? index + 1 : options.length,
- i = index < 0 ?
- max :
- one ? index : 0;
-
- // Loop through all the selected options
- for ( ; i < max; i++ ) {
- option = options[ i ];
-
- // oldIE doesn't update selected after form reset (#2551)
- if ( ( option.selected || i === index ) &&
- // Don't return options that are disabled or in a disabled optgroup
- ( support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&
- ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
-
- // Get the specific value for the option
- value = jQuery( option ).val();
-
- // We don't need an array for one selects
- if ( one ) {
- return value;
- }
-
- // Multi-Selects return an array
- values.push( value );
- }
- }
-
- return values;
- },
-
- set: function( elem, value ) {
- var optionSet, option,
- options = elem.options,
- values = jQuery.makeArray( value ),
- i = options.length;
-
- while ( i-- ) {
- option = options[ i ];
-
- if ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {
-
- // Support: IE6
- // When new option element is added to select box we need to
- // force reflow of newly added node in order to workaround delay
- // of initialization properties
- try {
- option.selected = optionSet = true;
-
- } catch ( _ ) {
-
- // Will be executed only in IE6
- option.scrollHeight;
- }
-
- } else {
- option.selected = false;
- }
- }
-
- // Force browsers to behave consistently when non-matching value is set
- if ( !optionSet ) {
- elem.selectedIndex = -1;
- }
-
- return options;
- }
- }
- }
-});
-
-// Radios and checkboxes getter/setter
-jQuery.each([ "radio", "checkbox" ], function() {
- jQuery.valHooks[ this ] = {
- set: function( elem, value ) {
- if ( jQuery.isArray( value ) ) {
- return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
- }
- }
- };
- if ( !support.checkOn ) {
- jQuery.valHooks[ this ].get = function( elem ) {
- // Support: Webkit
- // "" is returned instead of "on" if a value isn't specified
- return elem.getAttribute("value") === null ? "on" : elem.value;
- };
- }
-});
-
-
-
-
-var nodeHook, boolHook,
- attrHandle = jQuery.expr.attrHandle,
- ruseDefault = /^(?:checked|selected)$/i,
- getSetAttribute = support.getSetAttribute,
- getSetInput = support.input;
-
-jQuery.fn.extend({
- attr: function( name, value ) {
- return access( this, jQuery.attr, name, value, arguments.length > 1 );
- },
-
- removeAttr: function( name ) {
- return this.each(function() {
- jQuery.removeAttr( this, name );
- });
- }
-});
-
-jQuery.extend({
- attr: function( elem, name, value ) {
- var hooks, ret,
- nType = elem.nodeType;
-
- // don't get/set attributes on text, comment and attribute nodes
- if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
- return;
- }
-
- // Fallback to prop when attributes are not supported
- if ( typeof elem.getAttribute === strundefined ) {
- return jQuery.prop( elem, name, value );
- }
-
- // All attributes are lowercase
- // Grab necessary hook if one is defined
- if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
- name = name.toLowerCase();
- hooks = jQuery.attrHooks[ name ] ||
- ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
- }
-
- if ( value !== undefined ) {
-
- if ( value === null ) {
- jQuery.removeAttr( elem, name );
-
- } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
- return ret;
-
- } else {
- elem.setAttribute( name, value + "" );
- return value;
- }
-
- } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
- return ret;
-
- } else {
- ret = jQuery.find.attr( elem, name );
-
- // Non-existent attributes return null, we normalize to undefined
- return ret == null ?
- undefined :
- ret;
- }
- },
-
- removeAttr: function( elem, value ) {
- var name, propName,
- i = 0,
- attrNames = value && value.match( rnotwhite );
-
- if ( attrNames && elem.nodeType === 1 ) {
- while ( (name = attrNames[i++]) ) {
- propName = jQuery.propFix[ name ] || name;
-
- // Boolean attributes get special treatment (#10870)
- if ( jQuery.expr.match.bool.test( name ) ) {
- // Set corresponding property to false
- if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
- elem[ propName ] = false;
- // Support: IE<9
- // Also clear defaultChecked/defaultSelected (if appropriate)
- } else {
- elem[ jQuery.camelCase( "default-" + name ) ] =
- elem[ propName ] = false;
- }
-
- // See #9699 for explanation of this approach (setting first, then removal)
- } else {
- jQuery.attr( elem, name, "" );
- }
-
- elem.removeAttribute( getSetAttribute ? name : propName );
- }
- }
- },
-
- attrHooks: {
- type: {
- set: function( elem, value ) {
- if ( !support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
- // Setting the type on a radio button after the value resets the value in IE6-9
- // Reset value to default in case type is set after value during creation
- var val = elem.value;
- elem.setAttribute( "type", value );
- if ( val ) {
- elem.value = val;
- }
- return value;
- }
- }
- }
- }
-});
-
-// Hook for boolean attributes
-boolHook = {
- set: function( elem, value, name ) {
- if ( value === false ) {
- // Remove boolean attributes when set to false
- jQuery.removeAttr( elem, name );
- } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
- // IE<8 needs the *property* name
- elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );
-
- // Use defaultChecked and defaultSelected for oldIE
- } else {
- elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true;
- }
-
- return name;
- }
-};
-
-// Retrieve booleans specially
-jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
-
- var getter = attrHandle[ name ] || jQuery.find.attr;
-
- attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?
- function( elem, name, isXML ) {
- var ret, handle;
- if ( !isXML ) {
- // Avoid an infinite loop by temporarily removing this function from the getter
- handle = attrHandle[ name ];
- attrHandle[ name ] = ret;
- ret = getter( elem, name, isXML ) != null ?
- name.toLowerCase() :
- null;
- attrHandle[ name ] = handle;
- }
- return ret;
- } :
- function( elem, name, isXML ) {
- if ( !isXML ) {
- return elem[ jQuery.camelCase( "default-" + name ) ] ?
- name.toLowerCase() :
- null;
- }
- };
-});
-
-// fix oldIE attroperties
-if ( !getSetInput || !getSetAttribute ) {
- jQuery.attrHooks.value = {
- set: function( elem, value, name ) {
- if ( jQuery.nodeName( elem, "input" ) ) {
- // Does not return so that setAttribute is also used
- elem.defaultValue = value;
- } else {
- // Use nodeHook if defined (#1954); otherwise setAttribute is fine
- return nodeHook && nodeHook.set( elem, value, name );
- }
- }
- };
-}
-
-// IE6/7 do not support getting/setting some attributes with get/setAttribute
-if ( !getSetAttribute ) {
-
- // Use this for any attribute in IE6/7
- // This fixes almost every IE6/7 issue
- nodeHook = {
- set: function( elem, value, name ) {
- // Set the existing or create a new attribute node
- var ret = elem.getAttributeNode( name );
- if ( !ret ) {
- elem.setAttributeNode(
- (ret = elem.ownerDocument.createAttribute( name ))
- );
- }
-
- ret.value = value += "";
-
- // Break association with cloned elements by also using setAttribute (#9646)
- if ( name === "value" || value === elem.getAttribute( name ) ) {
- return value;
- }
- }
- };
-
- // Some attributes are constructed with empty-string values when not defined
- attrHandle.id = attrHandle.name = attrHandle.coords =
- function( elem, name, isXML ) {
- var ret;
- if ( !isXML ) {
- return (ret = elem.getAttributeNode( name )) && ret.value !== "" ?
- ret.value :
- null;
- }
- };
-
- // Fixing value retrieval on a button requires this module
- jQuery.valHooks.button = {
- get: function( elem, name ) {
- var ret = elem.getAttributeNode( name );
- if ( ret && ret.specified ) {
- return ret.value;
- }
- },
- set: nodeHook.set
- };
-
- // Set contenteditable to false on removals(#10429)
- // Setting to empty string throws an error as an invalid value
- jQuery.attrHooks.contenteditable = {
- set: function( elem, value, name ) {
- nodeHook.set( elem, value === "" ? false : value, name );
- }
- };
-
- // Set width and height to auto instead of 0 on empty string( Bug #8150 )
- // This is for removals
- jQuery.each([ "width", "height" ], function( i, name ) {
- jQuery.attrHooks[ name ] = {
- set: function( elem, value ) {
- if ( value === "" ) {
- elem.setAttribute( name, "auto" );
- return value;
- }
- }
- };
- });
-}
-
-if ( !support.style ) {
- jQuery.attrHooks.style = {
- get: function( elem ) {
- // Return undefined in the case of empty string
- // Note: IE uppercases css property names, but if we were to .toLowerCase()
- // .cssText, that would destroy case senstitivity in URL's, like in "background"
- return elem.style.cssText || undefined;
- },
- set: function( elem, value ) {
- return ( elem.style.cssText = value + "" );
- }
- };
-}
-
-
-
-
-var rfocusable = /^(?:input|select|textarea|button|object)$/i,
- rclickable = /^(?:a|area)$/i;
-
-jQuery.fn.extend({
- prop: function( name, value ) {
- return access( this, jQuery.prop, name, value, arguments.length > 1 );
- },
-
- removeProp: function( name ) {
- name = jQuery.propFix[ name ] || name;
- return this.each(function() {
- // try/catch handles cases where IE balks (such as removing a property on window)
- try {
- this[ name ] = undefined;
- delete this[ name ];
- } catch( e ) {}
- });
- }
-});
-
-jQuery.extend({
- propFix: {
- "for": "htmlFor",
- "class": "className"
- },
-
- prop: function( elem, name, value ) {
- var ret, hooks, notxml,
- nType = elem.nodeType;
-
- // don't get/set properties on text, comment and attribute nodes
- if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
- return;
- }
-
- notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
-
- if ( notxml ) {
- // Fix name and attach hooks
- name = jQuery.propFix[ name ] || name;
- hooks = jQuery.propHooks[ name ];
- }
-
- if ( value !== undefined ) {
- return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
- ret :
- ( elem[ name ] = value );
-
- } else {
- return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
- ret :
- elem[ name ];
- }
- },
-
- propHooks: {
- tabIndex: {
- get: function( elem ) {
- // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
- // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
- // Use proper attribute retrieval(#12072)
- var tabindex = jQuery.find.attr( elem, "tabindex" );
-
- return tabindex ?
- parseInt( tabindex, 10 ) :
- rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
- 0 :
- -1;
- }
- }
- }
-});
-
-// Some attributes require a special call on IE
-// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
-if ( !support.hrefNormalized ) {
- // href/src property should get the full normalized URL (#10299/#12915)
- jQuery.each([ "href", "src" ], function( i, name ) {
- jQuery.propHooks[ name ] = {
- get: function( elem ) {
- return elem.getAttribute( name, 4 );
- }
- };
- });
-}
-
-// Support: Safari, IE9+
-// mis-reports the default selected property of an option
-// Accessing the parent's selectedIndex property fixes it
-if ( !support.optSelected ) {
- jQuery.propHooks.selected = {
- get: function( elem ) {
- var parent = elem.parentNode;
-
- if ( parent ) {
- parent.selectedIndex;
-
- // Make sure that it also works with optgroups, see #5701
- if ( parent.parentNode ) {
- parent.parentNode.selectedIndex;
- }
- }
- return null;
- }
- };
-}
-
-jQuery.each([
- "tabIndex",
- "readOnly",
- "maxLength",
- "cellSpacing",
- "cellPadding",
- "rowSpan",
- "colSpan",
- "useMap",
- "frameBorder",
- "contentEditable"
-], function() {
- jQuery.propFix[ this.toLowerCase() ] = this;
-});
-
-// IE6/7 call enctype encoding
-if ( !support.enctype ) {
- jQuery.propFix.enctype = "encoding";
-}
-
-
-
-
-var rclass = /[\t\r\n\f]/g;
-
-jQuery.fn.extend({
- addClass: function( value ) {
- var classes, elem, cur, clazz, j, finalValue,
- i = 0,
- len = this.length,
- proceed = typeof value === "string" && value;
-
- if ( jQuery.isFunction( value ) ) {
- return this.each(function( j ) {
- jQuery( this ).addClass( value.call( this, j, this.className ) );
- });
- }
-
- if ( proceed ) {
- // The disjunction here is for better compressibility (see removeClass)
- classes = ( value || "" ).match( rnotwhite ) || [];
-
- for ( ; i < len; i++ ) {
- elem = this[ i ];
- cur = elem.nodeType === 1 && ( elem.className ?
- ( " " + elem.className + " " ).replace( rclass, " " ) :
- " "
- );
-
- if ( cur ) {
- j = 0;
- while ( (clazz = classes[j++]) ) {
- if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
- cur += clazz + " ";
- }
- }
-
- // only assign if different to avoid unneeded rendering.
- finalValue = jQuery.trim( cur );
- if ( elem.className !== finalValue ) {
- elem.className = finalValue;
- }
- }
- }
- }
-
- return this;
- },
-
- removeClass: function( value ) {
- var classes, elem, cur, clazz, j, finalValue,
- i = 0,
- len = this.length,
- proceed = arguments.length === 0 || typeof value === "string" && value;
-
- if ( jQuery.isFunction( value ) ) {
- return this.each(function( j ) {
- jQuery( this ).removeClass( value.call( this, j, this.className ) );
- });
- }
- if ( proceed ) {
- classes = ( value || "" ).match( rnotwhite ) || [];
-
- for ( ; i < len; i++ ) {
- elem = this[ i ];
- // This expression is here for better compressibility (see addClass)
- cur = elem.nodeType === 1 && ( elem.className ?
- ( " " + elem.className + " " ).replace( rclass, " " ) :
- ""
- );
-
- if ( cur ) {
- j = 0;
- while ( (clazz = classes[j++]) ) {
- // Remove *all* instances
- while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
- cur = cur.replace( " " + clazz + " ", " " );
- }
- }
-
- // only assign if different to avoid unneeded rendering.
- finalValue = value ? jQuery.trim( cur ) : "";
- if ( elem.className !== finalValue ) {
- elem.className = finalValue;
- }
- }
- }
- }
-
- return this;
- },
-
- toggleClass: function( value, stateVal ) {
- var type = typeof value;
-
- if ( typeof stateVal === "boolean" && type === "string" ) {
- return stateVal ? this.addClass( value ) : this.removeClass( value );
- }
-
- if ( jQuery.isFunction( value ) ) {
- return this.each(function( i ) {
- jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
- });
- }
-
- return this.each(function() {
- if ( type === "string" ) {
- // toggle individual class names
- var className,
- i = 0,
- self = jQuery( this ),
- classNames = value.match( rnotwhite ) || [];
-
- while ( (className = classNames[ i++ ]) ) {
- // check each className given, space separated list
- if ( self.hasClass( className ) ) {
- self.removeClass( className );
- } else {
- self.addClass( className );
- }
- }
-
- // Toggle whole class name
- } else if ( type === strundefined || type === "boolean" ) {
- if ( this.className ) {
- // store className if set
- jQuery._data( this, "__className__", this.className );
- }
-
- // If the element has a class name or if we're passed "false",
- // then remove the whole classname (if there was one, the above saved it).
- // Otherwise bring back whatever was previously saved (if anything),
- // falling back to the empty string if nothing was stored.
- this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
- }
- });
- },
-
- hasClass: function( selector ) {
- var className = " " + selector + " ",
- i = 0,
- l = this.length;
- for ( ; i < l; i++ ) {
- if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
- return true;
- }
- }
-
- return false;
- }
-});
-
-
-
-
-// Return jQuery for attributes-only inclusion
-
-
-jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
- "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
- "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
-
- // Handle event binding
- jQuery.fn[ name ] = function( data, fn ) {
- return arguments.length > 0 ?
- this.on( name, null, data, fn ) :
- this.trigger( name );
- };
-});
-
-jQuery.fn.extend({
- hover: function( fnOver, fnOut ) {
- return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
- },
-
- bind: function( types, data, fn ) {
- return this.on( types, null, data, fn );
- },
- unbind: function( types, fn ) {
- return this.off( types, null, fn );
- },
-
- delegate: function( selector, types, data, fn ) {
- return this.on( types, selector, data, fn );
- },
- undelegate: function( selector, types, fn ) {
- // ( namespace ) or ( selector, types [, fn] )
- return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
- }
-});
-
-
-var nonce = jQuery.now();
-
-var rquery = (/\?/);
-
-
-
-var rvalidtokens = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
-
-jQuery.parseJSON = function( data ) {
- // Attempt to parse using the native JSON parser first
- if ( window.JSON && window.JSON.parse ) {
- // Support: Android 2.3
- // Workaround failure to string-cast null input
- return window.JSON.parse( data + "" );
- }
-
- var requireNonComma,
- depth = null,
- str = jQuery.trim( data + "" );
-
- // Guard against invalid (and possibly dangerous) input by ensuring that nothing remains
- // after removing valid tokens
- return str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {
-
- // Force termination if we see a misplaced comma
- if ( requireNonComma && comma ) {
- depth = 0;
- }
-
- // Perform no more replacements after returning to outermost depth
- if ( depth === 0 ) {
- return token;
- }
-
- // Commas must not follow "[", "{", or ","
- requireNonComma = open || comma;
-
- // Determine new depth
- // array/object open ("[" or "{"): depth += true - false (increment)
- // array/object close ("]" or "}"): depth += false - true (decrement)
- // other cases ("," or primitive): depth += true - true (numeric cast)
- depth += !close - !open;
-
- // Remove this token
- return "";
- }) ) ?
- ( Function( "return " + str ) )() :
- jQuery.error( "Invalid JSON: " + data );
-};
-
-
-// Cross-browser xml parsing
-jQuery.parseXML = function( data ) {
- var xml, tmp;
- if ( !data || typeof data !== "string" ) {
- return null;
- }
- try {
- if ( window.DOMParser ) { // Standard
- tmp = new DOMParser();
- xml = tmp.parseFromString( data, "text/xml" );
- } else { // IE
- xml = new ActiveXObject( "Microsoft.XMLDOM" );
- xml.async = "false";
- xml.loadXML( data );
- }
- } catch( e ) {
- xml = undefined;
- }
- if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) {
- jQuery.error( "Invalid XML: " + data );
- }
- return xml;
-};
-
-
-var
- // Document location
- ajaxLocParts,
- ajaxLocation,
-
- rhash = /#.*$/,
- rts = /([?&])_=[^&]*/,
- rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
- // #7653, #8125, #8152: local protocol detection
- rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
- rnoContent = /^(?:GET|HEAD)$/,
- rprotocol = /^\/\//,
- rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
-
- /* Prefilters
- * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
- * 2) These are called:
- * - BEFORE asking for a transport
- * - AFTER param serialization (s.data is a string if s.processData is true)
- * 3) key is the dataType
- * 4) the catchall symbol "*" can be used
- * 5) execution will start with transport dataType and THEN continue down to "*" if needed
- */
- prefilters = {},
-
- /* Transports bindings
- * 1) key is the dataType
- * 2) the catchall symbol "*" can be used
- * 3) selection will start with transport dataType and THEN go to "*" if needed
- */
- transports = {},
-
- // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
- allTypes = "*/".concat("*");
-
-// #8138, IE may throw an exception when accessing
-// a field from window.location if document.domain has been set
-try {
- ajaxLocation = location.href;
-} catch( e ) {
- // Use the href attribute of an A element
- // since IE will modify it given document.location
- ajaxLocation = document.createElement( "a" );
- ajaxLocation.href = "";
- ajaxLocation = ajaxLocation.href;
-}
-
-// Segment location into parts
-ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
-
-// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
-function addToPrefiltersOrTransports( structure ) {
-
- // dataTypeExpression is optional and defaults to "*"
- return function( dataTypeExpression, func ) {
-
- if ( typeof dataTypeExpression !== "string" ) {
- func = dataTypeExpression;
- dataTypeExpression = "*";
- }
-
- var dataType,
- i = 0,
- dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
-
- if ( jQuery.isFunction( func ) ) {
- // For each dataType in the dataTypeExpression
- while ( (dataType = dataTypes[i++]) ) {
- // Prepend if requested
- if ( dataType.charAt( 0 ) === "+" ) {
- dataType = dataType.slice( 1 ) || "*";
- (structure[ dataType ] = structure[ dataType ] || []).unshift( func );
-
- // Otherwise append
- } else {
- (structure[ dataType ] = structure[ dataType ] || []).push( func );
- }
- }
- }
- };
-}
-
-// Base inspection function for prefilters and transports
-function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
-
- var inspected = {},
- seekingTransport = ( structure === transports );
-
- function inspect( dataType ) {
- var selected;
- inspected[ dataType ] = true;
- jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
- var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
- if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
- options.dataTypes.unshift( dataTypeOrTransport );
- inspect( dataTypeOrTransport );
- return false;
- } else if ( seekingTransport ) {
- return !( selected = dataTypeOrTransport );
- }
- });
- return selected;
- }
-
- return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
-}
-
-// A special extend for ajax options
-// that takes "flat" options (not to be deep extended)
-// Fixes #9887
-function ajaxExtend( target, src ) {
- var deep, key,
- flatOptions = jQuery.ajaxSettings.flatOptions || {};
-
- for ( key in src ) {
- if ( src[ key ] !== undefined ) {
- ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
- }
- }
- if ( deep ) {
- jQuery.extend( true, target, deep );
- }
-
- return target;
-}
-
-/* Handles responses to an ajax request:
- * - finds the right dataType (mediates between content-type and expected dataType)
- * - returns the corresponding response
- */
-function ajaxHandleResponses( s, jqXHR, responses ) {
- var firstDataType, ct, finalDataType, type,
- contents = s.contents,
- dataTypes = s.dataTypes;
-
- // Remove auto dataType and get content-type in the process
- while ( dataTypes[ 0 ] === "*" ) {
- dataTypes.shift();
- if ( ct === undefined ) {
- ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
- }
- }
-
- // Check if we're dealing with a known content-type
- if ( ct ) {
- for ( type in contents ) {
- if ( contents[ type ] && contents[ type ].test( ct ) ) {
- dataTypes.unshift( type );
- break;
- }
- }
- }
-
- // Check to see if we have a response for the expected dataType
- if ( dataTypes[ 0 ] in responses ) {
- finalDataType = dataTypes[ 0 ];
- } else {
- // Try convertible dataTypes
- for ( type in responses ) {
- if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
- finalDataType = type;
- break;
- }
- if ( !firstDataType ) {
- firstDataType = type;
- }
- }
- // Or just use first one
- finalDataType = finalDataType || firstDataType;
- }
-
- // If we found a dataType
- // We add the dataType to the list if needed
- // and return the corresponding response
- if ( finalDataType ) {
- if ( finalDataType !== dataTypes[ 0 ] ) {
- dataTypes.unshift( finalDataType );
- }
- return responses[ finalDataType ];
- }
-}
-
-/* Chain conversions given the request and the original response
- * Also sets the responseXXX fields on the jqXHR instance
- */
-function ajaxConvert( s, response, jqXHR, isSuccess ) {
- var conv2, current, conv, tmp, prev,
- converters = {},
- // Work with a copy of dataTypes in case we need to modify it for conversion
- dataTypes = s.dataTypes.slice();
-
- // Create converters map with lowercased keys
- if ( dataTypes[ 1 ] ) {
- for ( conv in s.converters ) {
- converters[ conv.toLowerCase() ] = s.converters[ conv ];
- }
- }
-
- current = dataTypes.shift();
-
- // Convert to each sequential dataType
- while ( current ) {
-
- if ( s.responseFields[ current ] ) {
- jqXHR[ s.responseFields[ current ] ] = response;
- }
-
- // Apply the dataFilter if provided
- if ( !prev && isSuccess && s.dataFilter ) {
- response = s.dataFilter( response, s.dataType );
- }
-
- prev = current;
- current = dataTypes.shift();
-
- if ( current ) {
-
- // There's only work to do if current dataType is non-auto
- if ( current === "*" ) {
-
- current = prev;
-
- // Convert response if prev dataType is non-auto and differs from current
- } else if ( prev !== "*" && prev !== current ) {
-
- // Seek a direct converter
- conv = converters[ prev + " " + current ] || converters[ "* " + current ];
-
- // If none found, seek a pair
- if ( !conv ) {
- for ( conv2 in converters ) {
-
- // If conv2 outputs current
- tmp = conv2.split( " " );
- if ( tmp[ 1 ] === current ) {
-
- // If prev can be converted to accepted input
- conv = converters[ prev + " " + tmp[ 0 ] ] ||
- converters[ "* " + tmp[ 0 ] ];
- if ( conv ) {
- // Condense equivalence converters
- if ( conv === true ) {
- conv = converters[ conv2 ];
-
- // Otherwise, insert the intermediate dataType
- } else if ( converters[ conv2 ] !== true ) {
- current = tmp[ 0 ];
- dataTypes.unshift( tmp[ 1 ] );
- }
- break;
- }
- }
- }
- }
-
- // Apply converter (if not an equivalence)
- if ( conv !== true ) {
-
- // Unless errors are allowed to bubble, catch and return them
- if ( conv && s[ "throws" ] ) {
- response = conv( response );
- } else {
- try {
- response = conv( response );
- } catch ( e ) {
- return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
- }
- }
- }
- }
- }
- }
-
- return { state: "success", data: response };
-}
-
-jQuery.extend({
-
- // Counter for holding the number of active queries
- active: 0,
-
- // Last-Modified header cache for next request
- lastModified: {},
- etag: {},
-
- ajaxSettings: {
- url: ajaxLocation,
- type: "GET",
- isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
- global: true,
- processData: true,
- async: true,
- contentType: "application/x-www-form-urlencoded; charset=UTF-8",
- /*
- timeout: 0,
- data: null,
- dataType: null,
- username: null,
- password: null,
- cache: null,
- throws: false,
- traditional: false,
- headers: {},
- */
-
- accepts: {
- "*": allTypes,
- text: "text/plain",
- html: "text/html",
- xml: "application/xml, text/xml",
- json: "application/json, text/javascript"
- },
-
- contents: {
- xml: /xml/,
- html: /html/,
- json: /json/
- },
-
- responseFields: {
- xml: "responseXML",
- text: "responseText",
- json: "responseJSON"
- },
-
- // Data converters
- // Keys separate source (or catchall "*") and destination types with a single space
- converters: {
-
- // Convert anything to text
- "* text": String,
-
- // Text to html (true = no transformation)
- "text html": true,
-
- // Evaluate text as a json expression
- "text json": jQuery.parseJSON,
-
- // Parse text as xml
- "text xml": jQuery.parseXML
- },
-
- // For options that shouldn't be deep extended:
- // you can add your own custom options here if
- // and when you create one that shouldn't be
- // deep extended (see ajaxExtend)
- flatOptions: {
- url: true,
- context: true
- }
- },
-
- // Creates a full fledged settings object into target
- // with both ajaxSettings and settings fields.
- // If target is omitted, writes into ajaxSettings.
- ajaxSetup: function( target, settings ) {
- return settings ?
-
- // Building a settings object
- ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
-
- // Extending ajaxSettings
- ajaxExtend( jQuery.ajaxSettings, target );
- },
-
- ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
- ajaxTransport: addToPrefiltersOrTransports( transports ),
-
- // Main method
- ajax: function( url, options ) {
-
- // If url is an object, simulate pre-1.5 signature
- if ( typeof url === "object" ) {
- options = url;
- url = undefined;
- }
-
- // Force options to be an object
- options = options || {};
-
- var // Cross-domain detection vars
- parts,
- // Loop variable
- i,
- // URL without anti-cache param
- cacheURL,
- // Response headers as string
- responseHeadersString,
- // timeout handle
- timeoutTimer,
-
- // To know if global events are to be dispatched
- fireGlobals,
-
- transport,
- // Response headers
- responseHeaders,
- // Create the final options object
- s = jQuery.ajaxSetup( {}, options ),
- // Callbacks context
- callbackContext = s.context || s,
- // Context for global events is callbackContext if it is a DOM node or jQuery collection
- globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
- jQuery( callbackContext ) :
- jQuery.event,
- // Deferreds
- deferred = jQuery.Deferred(),
- completeDeferred = jQuery.Callbacks("once memory"),
- // Status-dependent callbacks
- statusCode = s.statusCode || {},
- // Headers (they are sent all at once)
- requestHeaders = {},
- requestHeadersNames = {},
- // The jqXHR state
- state = 0,
- // Default abort message
- strAbort = "canceled",
- // Fake xhr
- jqXHR = {
- readyState: 0,
-
- // Builds headers hashtable if needed
- getResponseHeader: function( key ) {
- var match;
- if ( state === 2 ) {
- if ( !responseHeaders ) {
- responseHeaders = {};
- while ( (match = rheaders.exec( responseHeadersString )) ) {
- responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
- }
- }
- match = responseHeaders[ key.toLowerCase() ];
- }
- return match == null ? null : match;
- },
-
- // Raw string
- getAllResponseHeaders: function() {
- return state === 2 ? responseHeadersString : null;
- },
-
- // Caches the header
- setRequestHeader: function( name, value ) {
- var lname = name.toLowerCase();
- if ( !state ) {
- name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
- requestHeaders[ name ] = value;
- }
- return this;
- },
-
- // Overrides response content-type header
- overrideMimeType: function( type ) {
- if ( !state ) {
- s.mimeType = type;
- }
- return this;
- },
-
- // Status-dependent callbacks
- statusCode: function( map ) {
- var code;
- if ( map ) {
- if ( state < 2 ) {
- for ( code in map ) {
- // Lazy-add the new callback in a way that preserves old ones
- statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
- }
- } else {
- // Execute the appropriate callbacks
- jqXHR.always( map[ jqXHR.status ] );
- }
- }
- return this;
- },
-
- // Cancel the request
- abort: function( statusText ) {
- var finalText = statusText || strAbort;
- if ( transport ) {
- transport.abort( finalText );
- }
- done( 0, finalText );
- return this;
- }
- };
-
- // Attach deferreds
- deferred.promise( jqXHR ).complete = completeDeferred.add;
- jqXHR.success = jqXHR.done;
- jqXHR.error = jqXHR.fail;
-
- // Remove hash character (#7531: and string promotion)
- // Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
- // Handle falsy url in the settings object (#10093: consistency with old signature)
- // We also use the url parameter if available
- s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
-
- // Alias method option to type as per ticket #12004
- s.type = options.method || options.type || s.method || s.type;
-
- // Extract dataTypes list
- s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
-
- // A cross-domain request is in order when we have a protocol:host:port mismatch
- if ( s.crossDomain == null ) {
- parts = rurl.exec( s.url.toLowerCase() );
- s.crossDomain = !!( parts &&
- ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
- ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
- ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
- );
- }
-
- // Convert data if not already a string
- if ( s.data && s.processData && typeof s.data !== "string" ) {
- s.data = jQuery.param( s.data, s.traditional );
- }
-
- // Apply prefilters
- inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
-
- // If request was aborted inside a prefilter, stop there
- if ( state === 2 ) {
- return jqXHR;
- }
-
- // We can fire global events as of now if asked to
- fireGlobals = s.global;
-
- // Watch for a new set of requests
- if ( fireGlobals && jQuery.active++ === 0 ) {
- jQuery.event.trigger("ajaxStart");
- }
-
- // Uppercase the type
- s.type = s.type.toUpperCase();
-
- // Determine if request has content
- s.hasContent = !rnoContent.test( s.type );
-
- // Save the URL in case we're toying with the If-Modified-Since
- // and/or If-None-Match header later on
- cacheURL = s.url;
-
- // More options handling for requests with no content
- if ( !s.hasContent ) {
-
- // If data is available, append data to url
- if ( s.data ) {
- cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
- // #9682: remove data so that it's not used in an eventual retry
- delete s.data;
- }
-
- // Add anti-cache in url if needed
- if ( s.cache === false ) {
- s.url = rts.test( cacheURL ) ?
-
- // If there is already a '_' parameter, set its value
- cacheURL.replace( rts, "$1_=" + nonce++ ) :
-
- // Otherwise add one to the end
- cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
- }
- }
-
- // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
- if ( s.ifModified ) {
- if ( jQuery.lastModified[ cacheURL ] ) {
- jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
- }
- if ( jQuery.etag[ cacheURL ] ) {
- jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
- }
- }
-
- // Set the correct header, if data is being sent
- if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
- jqXHR.setRequestHeader( "Content-Type", s.contentType );
- }
-
- // Set the Accepts header for the server, depending on the dataType
- jqXHR.setRequestHeader(
- "Accept",
- s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
- s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
- s.accepts[ "*" ]
- );
-
- // Check for headers option
- for ( i in s.headers ) {
- jqXHR.setRequestHeader( i, s.headers[ i ] );
- }
-
- // Allow custom headers/mimetypes and early abort
- if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
- // Abort if not done already and return
- return jqXHR.abort();
- }
-
- // aborting is no longer a cancellation
- strAbort = "abort";
-
- // Install callbacks on deferreds
- for ( i in { success: 1, error: 1, complete: 1 } ) {
- jqXHR[ i ]( s[ i ] );
- }
-
- // Get transport
- transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
-
- // If no transport, we auto-abort
- if ( !transport ) {
- done( -1, "No Transport" );
- } else {
- jqXHR.readyState = 1;
-
- // Send global event
- if ( fireGlobals ) {
- globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
- }
- // Timeout
- if ( s.async && s.timeout > 0 ) {
- timeoutTimer = setTimeout(function() {
- jqXHR.abort("timeout");
- }, s.timeout );
- }
-
- try {
- state = 1;
- transport.send( requestHeaders, done );
- } catch ( e ) {
- // Propagate exception as error if not done
- if ( state < 2 ) {
- done( -1, e );
- // Simply rethrow otherwise
- } else {
- throw e;
- }
- }
- }
-
- // Callback for when everything is done
- function done( status, nativeStatusText, responses, headers ) {
- var isSuccess, success, error, response, modified,
- statusText = nativeStatusText;
-
- // Called once
- if ( state === 2 ) {
- return;
- }
-
- // State is "done" now
- state = 2;
-
- // Clear timeout if it exists
- if ( timeoutTimer ) {
- clearTimeout( timeoutTimer );
- }
-
- // Dereference transport for early garbage collection
- // (no matter how long the jqXHR object will be used)
- transport = undefined;
-
- // Cache response headers
- responseHeadersString = headers || "";
-
- // Set readyState
- jqXHR.readyState = status > 0 ? 4 : 0;
-
- // Determine if successful
- isSuccess = status >= 200 && status < 300 || status === 304;
-
- // Get response data
- if ( responses ) {
- response = ajaxHandleResponses( s, jqXHR, responses );
- }
-
- // Convert no matter what (that way responseXXX fields are always set)
- response = ajaxConvert( s, response, jqXHR, isSuccess );
-
- // If successful, handle type chaining
- if ( isSuccess ) {
-
- // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
- if ( s.ifModified ) {
- modified = jqXHR.getResponseHeader("Last-Modified");
- if ( modified ) {
- jQuery.lastModified[ cacheURL ] = modified;
- }
- modified = jqXHR.getResponseHeader("etag");
- if ( modified ) {
- jQuery.etag[ cacheURL ] = modified;
- }
- }
-
- // if no content
- if ( status === 204 || s.type === "HEAD" ) {
- statusText = "nocontent";
-
- // if not modified
- } else if ( status === 304 ) {
- statusText = "notmodified";
-
- // If we have data, let's convert it
- } else {
- statusText = response.state;
- success = response.data;
- error = response.error;
- isSuccess = !error;
- }
- } else {
- // We extract error from statusText
- // then normalize statusText and status for non-aborts
- error = statusText;
- if ( status || !statusText ) {
- statusText = "error";
- if ( status < 0 ) {
- status = 0;
- }
- }
- }
-
- // Set data for the fake xhr object
- jqXHR.status = status;
- jqXHR.statusText = ( nativeStatusText || statusText ) + "";
-
- // Success/Error
- if ( isSuccess ) {
- deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
- } else {
- deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
- }
-
- // Status-dependent callbacks
- jqXHR.statusCode( statusCode );
- statusCode = undefined;
-
- if ( fireGlobals ) {
- globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
- [ jqXHR, s, isSuccess ? success : error ] );
- }
-
- // Complete
- completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
-
- if ( fireGlobals ) {
- globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
- // Handle the global AJAX counter
- if ( !( --jQuery.active ) ) {
- jQuery.event.trigger("ajaxStop");
- }
- }
- }
-
- return jqXHR;
- },
-
- getJSON: function( url, data, callback ) {
- return jQuery.get( url, data, callback, "json" );
- },
-
- getScript: function( url, callback ) {
- return jQuery.get( url, undefined, callback, "script" );
- }
-});
-
-jQuery.each( [ "get", "post" ], function( i, method ) {
- jQuery[ method ] = function( url, data, callback, type ) {
- // shift arguments if data argument was omitted
- if ( jQuery.isFunction( data ) ) {
- type = type || callback;
- callback = data;
- data = undefined;
- }
-
- return jQuery.ajax({
- url: url,
- type: method,
- dataType: type,
- data: data,
- success: callback
- });
- };
-});
-
-// Attach a bunch of functions for handling common AJAX events
-jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
- jQuery.fn[ type ] = function( fn ) {
- return this.on( type, fn );
- };
-});
-
-
-jQuery._evalUrl = function( url ) {
- return jQuery.ajax({
- url: url,
- type: "GET",
- dataType: "script",
- async: false,
- global: false,
- "throws": true
- });
-};
-
-
-jQuery.fn.extend({
- wrapAll: function( html ) {
- if ( jQuery.isFunction( html ) ) {
- return this.each(function(i) {
- jQuery(this).wrapAll( html.call(this, i) );
- });
- }
-
- if ( this[0] ) {
- // The elements to wrap the target around
- var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);
-
- if ( this[0].parentNode ) {
- wrap.insertBefore( this[0] );
- }
-
- wrap.map(function() {
- var elem = this;
-
- while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
- elem = elem.firstChild;
- }
-
- return elem;
- }).append( this );
- }
-
- return this;
- },
-
- wrapInner: function( html ) {
- if ( jQuery.isFunction( html ) ) {
- return this.each(function(i) {
- jQuery(this).wrapInner( html.call(this, i) );
- });
- }
-
- return this.each(function() {
- var self = jQuery( this ),
- contents = self.contents();
-
- if ( contents.length ) {
- contents.wrapAll( html );
-
- } else {
- self.append( html );
- }
- });
- },
-
- wrap: function( html ) {
- var isFunction = jQuery.isFunction( html );
-
- return this.each(function(i) {
- jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
- });
- },
-
- unwrap: function() {
- return this.parent().each(function() {
- if ( !jQuery.nodeName( this, "body" ) ) {
- jQuery( this ).replaceWith( this.childNodes );
- }
- }).end();
- }
-});
-
-
-jQuery.expr.filters.hidden = function( elem ) {
- // Support: Opera <= 12.12
- // Opera reports offsetWidths and offsetHeights less than zero on some elements
- return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||
- (!support.reliableHiddenOffsets() &&
- ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none");
-};
-
-jQuery.expr.filters.visible = function( elem ) {
- return !jQuery.expr.filters.hidden( elem );
-};
-
-
-
-
-var r20 = /%20/g,
- rbracket = /\[\]$/,
- rCRLF = /\r?\n/g,
- rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
- rsubmittable = /^(?:input|select|textarea|keygen)/i;
-
-function buildParams( prefix, obj, traditional, add ) {
- var name;
-
- if ( jQuery.isArray( obj ) ) {
- // Serialize array item.
- jQuery.each( obj, function( i, v ) {
- if ( traditional || rbracket.test( prefix ) ) {
- // Treat each array item as a scalar.
- add( prefix, v );
-
- } else {
- // Item is non-scalar (array or object), encode its numeric index.
- buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
- }
- });
-
- } else if ( !traditional && jQuery.type( obj ) === "object" ) {
- // Serialize object item.
- for ( name in obj ) {
- buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
- }
-
- } else {
- // Serialize scalar item.
- add( prefix, obj );
- }
-}
-
-// Serialize an array of form elements or a set of
-// key/values into a query string
-jQuery.param = function( a, traditional ) {
- var prefix,
- s = [],
- add = function( key, value ) {
- // If value is a function, invoke it and return its value
- value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
- s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
- };
-
- // Set traditional to true for jQuery <= 1.3.2 behavior.
- if ( traditional === undefined ) {
- traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
- }
-
- // If an array was passed in, assume that it is an array of form elements.
- if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
- // Serialize the form elements
- jQuery.each( a, function() {
- add( this.name, this.value );
- });
-
- } else {
- // If traditional, encode the "old" way (the way 1.3.2 or older
- // did it), otherwise encode params recursively.
- for ( prefix in a ) {
- buildParams( prefix, a[ prefix ], traditional, add );
- }
- }
-
- // Return the resulting serialization
- return s.join( "&" ).replace( r20, "+" );
-};
-
-jQuery.fn.extend({
- serialize: function() {
- return jQuery.param( this.serializeArray() );
- },
- serializeArray: function() {
- return this.map(function() {
- // Can add propHook for "elements" to filter or add form elements
- var elements = jQuery.prop( this, "elements" );
- return elements ? jQuery.makeArray( elements ) : this;
- })
- .filter(function() {
- var type = this.type;
- // Use .is(":disabled") so that fieldset[disabled] works
- return this.name && !jQuery( this ).is( ":disabled" ) &&
- rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
- ( this.checked || !rcheckableType.test( type ) );
- })
- .map(function( i, elem ) {
- var val = jQuery( this ).val();
-
- return val == null ?
- null :
- jQuery.isArray( val ) ?
- jQuery.map( val, function( val ) {
- return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
- }) :
- { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
- }).get();
- }
-});
-
-
-// Create the request object
-// (This is still attached to ajaxSettings for backward compatibility)
-jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?
- // Support: IE6+
- function() {
-
- // XHR cannot access local files, always use ActiveX for that case
- return !this.isLocal &&
-
- // Support: IE7-8
- // oldIE XHR does not support non-RFC2616 methods (#13240)
- // See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx
- // and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9
- // Although this check for six methods instead of eight
- // since IE also does not support "trace" and "connect"
- /^(get|post|head|put|delete|options)$/i.test( this.type ) &&
-
- createStandardXHR() || createActiveXHR();
- } :
- // For all other browsers, use the standard XMLHttpRequest object
- createStandardXHR;
-
-var xhrId = 0,
- xhrCallbacks = {},
- xhrSupported = jQuery.ajaxSettings.xhr();
-
-// Support: IE<10
-// Open requests must be manually aborted on unload (#5280)
-if ( window.ActiveXObject ) {
- jQuery( window ).on( "unload", function() {
- for ( var key in xhrCallbacks ) {
- xhrCallbacks[ key ]( undefined, true );
- }
- });
-}
-
-// Determine support properties
-support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
-xhrSupported = support.ajax = !!xhrSupported;
-
-// Create transport if the browser can provide an xhr
-if ( xhrSupported ) {
-
- jQuery.ajaxTransport(function( options ) {
- // Cross domain only allowed if supported through XMLHttpRequest
- if ( !options.crossDomain || support.cors ) {
-
- var callback;
-
- return {
- send: function( headers, complete ) {
- var i,
- xhr = options.xhr(),
- id = ++xhrId;
-
- // Open the socket
- xhr.open( options.type, options.url, options.async, options.username, options.password );
-
- // Apply custom fields if provided
- if ( options.xhrFields ) {
- for ( i in options.xhrFields ) {
- xhr[ i ] = options.xhrFields[ i ];
- }
- }
-
- // Override mime type if needed
- if ( options.mimeType && xhr.overrideMimeType ) {
- xhr.overrideMimeType( options.mimeType );
- }
-
- // X-Requested-With header
- // For cross-domain requests, seeing as conditions for a preflight are
- // akin to a jigsaw puzzle, we simply never set it to be sure.
- // (it can always be set on a per-request basis or even using ajaxSetup)
- // For same-domain requests, won't change header if already provided.
- if ( !options.crossDomain && !headers["X-Requested-With"] ) {
- headers["X-Requested-With"] = "XMLHttpRequest";
- }
-
- // Set headers
- for ( i in headers ) {
- // Support: IE<9
- // IE's ActiveXObject throws a 'Type Mismatch' exception when setting
- // request header to a null-value.
- //
- // To keep consistent with other XHR implementations, cast the value
- // to string and ignore `undefined`.
- if ( headers[ i ] !== undefined ) {
- xhr.setRequestHeader( i, headers[ i ] + "" );
- }
- }
-
- // Do send the request
- // This may raise an exception which is actually
- // handled in jQuery.ajax (so no try/catch here)
- xhr.send( ( options.hasContent && options.data ) || null );
-
- // Listener
- callback = function( _, isAbort ) {
- var status, statusText, responses;
-
- // Was never called and is aborted or complete
- if ( callback && ( isAbort || xhr.readyState === 4 ) ) {
- // Clean up
- delete xhrCallbacks[ id ];
- callback = undefined;
- xhr.onreadystatechange = jQuery.noop;
-
- // Abort manually if needed
- if ( isAbort ) {
- if ( xhr.readyState !== 4 ) {
- xhr.abort();
- }
- } else {
- responses = {};
- status = xhr.status;
-
- // Support: IE<10
- // Accessing binary-data responseText throws an exception
- // (#11426)
- if ( typeof xhr.responseText === "string" ) {
- responses.text = xhr.responseText;
- }
-
- // Firefox throws an exception when accessing
- // statusText for faulty cross-domain requests
- try {
- statusText = xhr.statusText;
- } catch( e ) {
- // We normalize with Webkit giving an empty statusText
- statusText = "";
- }
-
- // Filter status for non standard behaviors
-
- // If the request is local and we have data: assume a success
- // (success with no data won't get notified, that's the best we
- // can do given current implementations)
- if ( !status && options.isLocal && !options.crossDomain ) {
- status = responses.text ? 200 : 404;
- // IE - #1450: sometimes returns 1223 when it should be 204
- } else if ( status === 1223 ) {
- status = 204;
- }
- }
- }
-
- // Call complete if needed
- if ( responses ) {
- complete( status, statusText, responses, xhr.getAllResponseHeaders() );
- }
- };
-
- if ( !options.async ) {
- // if we're in sync mode we fire the callback
- callback();
- } else if ( xhr.readyState === 4 ) {
- // (IE6 & IE7) if it's in cache and has been
- // retrieved directly we need to fire the callback
- setTimeout( callback );
- } else {
- // Add to the list of active xhr callbacks
- xhr.onreadystatechange = xhrCallbacks[ id ] = callback;
- }
- },
-
- abort: function() {
- if ( callback ) {
- callback( undefined, true );
- }
- }
- };
- }
- });
-}
-
-// Functions to create xhrs
-function createStandardXHR() {
- try {
- return new window.XMLHttpRequest();
- } catch( e ) {}
-}
-
-function createActiveXHR() {
- try {
- return new window.ActiveXObject( "Microsoft.XMLHTTP" );
- } catch( e ) {}
-}
-
-
-
-
-// Install script dataType
-jQuery.ajaxSetup({
- accepts: {
- script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
- },
- contents: {
- script: /(?:java|ecma)script/
- },
- converters: {
- "text script": function( text ) {
- jQuery.globalEval( text );
- return text;
- }
- }
-});
-
-// Handle cache's special case and global
-jQuery.ajaxPrefilter( "script", function( s ) {
- if ( s.cache === undefined ) {
- s.cache = false;
- }
- if ( s.crossDomain ) {
- s.type = "GET";
- s.global = false;
- }
-});
-
-// Bind script tag hack transport
-jQuery.ajaxTransport( "script", function(s) {
-
- // This transport only deals with cross domain requests
- if ( s.crossDomain ) {
-
- var script,
- head = document.head || jQuery("head")[0] || document.documentElement;
-
- return {
-
- send: function( _, callback ) {
-
- script = document.createElement("script");
-
- script.async = true;
-
- if ( s.scriptCharset ) {
- script.charset = s.scriptCharset;
- }
-
- script.src = s.url;
-
- // Attach handlers for all browsers
- script.onload = script.onreadystatechange = function( _, isAbort ) {
-
- if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {
-
- // Handle memory leak in IE
- script.onload = script.onreadystatechange = null;
-
- // Remove the script
- if ( script.parentNode ) {
- script.parentNode.removeChild( script );
- }
-
- // Dereference the script
- script = null;
-
- // Callback if not abort
- if ( !isAbort ) {
- callback( 200, "success" );
- }
- }
- };
-
- // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending
- // Use native DOM manipulation to avoid our domManip AJAX trickery
- head.insertBefore( script, head.firstChild );
- },
-
- abort: function() {
- if ( script ) {
- script.onload( undefined, true );
- }
- }
- };
- }
-});
-
-
-
-
-var oldCallbacks = [],
- rjsonp = /(=)\?(?=&|$)|\?\?/;
-
-// Default jsonp settings
-jQuery.ajaxSetup({
- jsonp: "callback",
- jsonpCallback: function() {
- var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
- this[ callback ] = true;
- return callback;
- }
-});
-
-// Detect, normalize options and install callbacks for jsonp requests
-jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
-
- var callbackName, overwritten, responseContainer,
- jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
- "url" :
- typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
- );
-
- // Handle iff the expected data type is "jsonp" or we have a parameter to set
- if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
-
- // Get callback name, remembering preexisting value associated with it
- callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
- s.jsonpCallback() :
- s.jsonpCallback;
-
- // Insert callback into url or form data
- if ( jsonProp ) {
- s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
- } else if ( s.jsonp !== false ) {
- s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
- }
-
- // Use data converter to retrieve json after script execution
- s.converters["script json"] = function() {
- if ( !responseContainer ) {
- jQuery.error( callbackName + " was not called" );
- }
- return responseContainer[ 0 ];
- };
-
- // force json dataType
- s.dataTypes[ 0 ] = "json";
-
- // Install callback
- overwritten = window[ callbackName ];
- window[ callbackName ] = function() {
- responseContainer = arguments;
- };
-
- // Clean-up function (fires after converters)
- jqXHR.always(function() {
- // Restore preexisting value
- window[ callbackName ] = overwritten;
-
- // Save back as free
- if ( s[ callbackName ] ) {
- // make sure that re-using the options doesn't screw things around
- s.jsonpCallback = originalSettings.jsonpCallback;
-
- // save the callback name for future use
- oldCallbacks.push( callbackName );
- }
-
- // Call if it was a function and we have a response
- if ( responseContainer && jQuery.isFunction( overwritten ) ) {
- overwritten( responseContainer[ 0 ] );
- }
-
- responseContainer = overwritten = undefined;
- });
-
- // Delegate to script
- return "script";
- }
-});
-
-
-
-
-// data: string of html
-// context (optional): If specified, the fragment will be created in this context, defaults to document
-// keepScripts (optional): If true, will include scripts passed in the html string
-jQuery.parseHTML = function( data, context, keepScripts ) {
- if ( !data || typeof data !== "string" ) {
- return null;
- }
- if ( typeof context === "boolean" ) {
- keepScripts = context;
- context = false;
- }
- context = context || document;
-
- var parsed = rsingleTag.exec( data ),
- scripts = !keepScripts && [];
-
- // Single tag
- if ( parsed ) {
- return [ context.createElement( parsed[1] ) ];
- }
-
- parsed = jQuery.buildFragment( [ data ], context, scripts );
-
- if ( scripts && scripts.length ) {
- jQuery( scripts ).remove();
- }
-
- return jQuery.merge( [], parsed.childNodes );
-};
-
-
-// Keep a copy of the old load method
-var _load = jQuery.fn.load;
-
-/**
- * Load a url into a page
- */
-jQuery.fn.load = function( url, params, callback ) {
- if ( typeof url !== "string" && _load ) {
- return _load.apply( this, arguments );
- }
-
- var selector, response, type,
- self = this,
- off = url.indexOf(" ");
-
- if ( off >= 0 ) {
- selector = jQuery.trim( url.slice( off, url.length ) );
- url = url.slice( 0, off );
- }
-
- // If it's a function
- if ( jQuery.isFunction( params ) ) {
-
- // We assume that it's the callback
- callback = params;
- params = undefined;
-
- // Otherwise, build a param string
- } else if ( params && typeof params === "object" ) {
- type = "POST";
- }
-
- // If we have elements to modify, make the request
- if ( self.length > 0 ) {
- jQuery.ajax({
- url: url,
-
- // if "type" variable is undefined, then "GET" method will be used
- type: type,
- dataType: "html",
- data: params
- }).done(function( responseText ) {
-
- // Save response for use in complete callback
- response = arguments;
-
- self.html( selector ?
-
- // If a selector was specified, locate the right elements in a dummy div
- // Exclude scripts to avoid IE 'Permission Denied' errors
- jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
-
- // Otherwise use the full result
- responseText );
-
- }).complete( callback && function( jqXHR, status ) {
- self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
- });
- }
-
- return this;
-};
-
-
-
-
-jQuery.expr.filters.animated = function( elem ) {
- return jQuery.grep(jQuery.timers, function( fn ) {
- return elem === fn.elem;
- }).length;
-};
-
-
-
-
-
-var docElem = window.document.documentElement;
-
-/**
- * Gets a window from an element
- */
-function getWindow( elem ) {
- return jQuery.isWindow( elem ) ?
- elem :
- elem.nodeType === 9 ?
- elem.defaultView || elem.parentWindow :
- false;
-}
-
-jQuery.offset = {
- setOffset: function( elem, options, i ) {
- var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
- position = jQuery.css( elem, "position" ),
- curElem = jQuery( elem ),
- props = {};
-
- // set position first, in-case top/left are set even on static elem
- if ( position === "static" ) {
- elem.style.position = "relative";
- }
-
- curOffset = curElem.offset();
- curCSSTop = jQuery.css( elem, "top" );
- curCSSLeft = jQuery.css( elem, "left" );
- calculatePosition = ( position === "absolute" || position === "fixed" ) &&
- jQuery.inArray("auto", [ curCSSTop, curCSSLeft ] ) > -1;
-
- // need to be able to calculate position if either top or left is auto and position is either absolute or fixed
- if ( calculatePosition ) {
- curPosition = curElem.position();
- curTop = curPosition.top;
- curLeft = curPosition.left;
- } else {
- curTop = parseFloat( curCSSTop ) || 0;
- curLeft = parseFloat( curCSSLeft ) || 0;
- }
-
- if ( jQuery.isFunction( options ) ) {
- options = options.call( elem, i, curOffset );
- }
-
- if ( options.top != null ) {
- props.top = ( options.top - curOffset.top ) + curTop;
- }
- if ( options.left != null ) {
- props.left = ( options.left - curOffset.left ) + curLeft;
- }
-
- if ( "using" in options ) {
- options.using.call( elem, props );
- } else {
- curElem.css( props );
- }
- }
-};
-
-jQuery.fn.extend({
- offset: function( options ) {
- if ( arguments.length ) {
- return options === undefined ?
- this :
- this.each(function( i ) {
- jQuery.offset.setOffset( this, options, i );
- });
- }
-
- var docElem, win,
- box = { top: 0, left: 0 },
- elem = this[ 0 ],
- doc = elem && elem.ownerDocument;
-
- if ( !doc ) {
- return;
- }
-
- docElem = doc.documentElement;
-
- // Make sure it's not a disconnected DOM node
- if ( !jQuery.contains( docElem, elem ) ) {
- return box;
- }
-
- // If we don't have gBCR, just use 0,0 rather than error
- // BlackBerry 5, iOS 3 (original iPhone)
- if ( typeof elem.getBoundingClientRect !== strundefined ) {
- box = elem.getBoundingClientRect();
- }
- win = getWindow( doc );
- return {
- top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ),
- left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )
- };
- },
-
- position: function() {
- if ( !this[ 0 ] ) {
- return;
- }
-
- var offsetParent, offset,
- parentOffset = { top: 0, left: 0 },
- elem = this[ 0 ];
-
- // fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent
- if ( jQuery.css( elem, "position" ) === "fixed" ) {
- // we assume that getBoundingClientRect is available when computed position is fixed
- offset = elem.getBoundingClientRect();
- } else {
- // Get *real* offsetParent
- offsetParent = this.offsetParent();
-
- // Get correct offsets
- offset = this.offset();
- if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
- parentOffset = offsetParent.offset();
- }
-
- // Add offsetParent borders
- parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
- parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
- }
-
- // Subtract parent offsets and element margins
- // note: when an element has margin: auto the offsetLeft and marginLeft
- // are the same in Safari causing offset.left to incorrectly be 0
- return {
- top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
- left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true)
- };
- },
-
- offsetParent: function() {
- return this.map(function() {
- var offsetParent = this.offsetParent || docElem;
-
- while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) {
- offsetParent = offsetParent.offsetParent;
- }
- return offsetParent || docElem;
- });
- }
-});
-
-// Create scrollLeft and scrollTop methods
-jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
- var top = /Y/.test( prop );
-
- jQuery.fn[ method ] = function( val ) {
- return access( this, function( elem, method, val ) {
- var win = getWindow( elem );
-
- if ( val === undefined ) {
- return win ? (prop in win) ? win[ prop ] :
- win.document.documentElement[ method ] :
- elem[ method ];
- }
-
- if ( win ) {
- win.scrollTo(
- !top ? val : jQuery( win ).scrollLeft(),
- top ? val : jQuery( win ).scrollTop()
- );
-
- } else {
- elem[ method ] = val;
- }
- }, method, val, arguments.length, null );
- };
-});
-
-// Add the top/left cssHooks using jQuery.fn.position
-// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
-// getComputedStyle returns percent when specified for top/left/bottom/right
-// rather than make the css module depend on the offset module, we just check for it here
-jQuery.each( [ "top", "left" ], function( i, prop ) {
- jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
- function( elem, computed ) {
- if ( computed ) {
- computed = curCSS( elem, prop );
- // if curCSS returns percentage, fallback to offset
- return rnumnonpx.test( computed ) ?
- jQuery( elem ).position()[ prop ] + "px" :
- computed;
- }
- }
- );
-});
-
-
-// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
-jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
- jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
- // margin is only for outerHeight, outerWidth
- jQuery.fn[ funcName ] = function( margin, value ) {
- var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
- extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
-
- return access( this, function( elem, type, value ) {
- var doc;
-
- if ( jQuery.isWindow( elem ) ) {
- // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
- // isn't a whole lot we can do. See pull request at this URL for discussion:
- // https://github.com/jquery/jquery/pull/764
- return elem.document.documentElement[ "client" + name ];
- }
-
- // Get document width or height
- if ( elem.nodeType === 9 ) {
- doc = elem.documentElement;
-
- // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest
- // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.
- return Math.max(
- elem.body[ "scroll" + name ], doc[ "scroll" + name ],
- elem.body[ "offset" + name ], doc[ "offset" + name ],
- doc[ "client" + name ]
- );
- }
-
- return value === undefined ?
- // Get width or height on the element, requesting but not forcing parseFloat
- jQuery.css( elem, type, extra ) :
-
- // Set width or height on the element
- jQuery.style( elem, type, value, extra );
- }, type, chainable ? margin : undefined, chainable, null );
- };
- });
-});
-
-
-// The number of elements contained in the matched element set
-jQuery.fn.size = function() {
- return this.length;
-};
-
-jQuery.fn.andSelf = jQuery.fn.addBack;
-
-
-
-
-// Register as a named AMD module, since jQuery can be concatenated with other
-// files that may use define, but not via a proper concatenation script that
-// understands anonymous AMD modules. A named AMD is safest and most robust
-// way to register. Lowercase jquery is used because AMD module names are
-// derived from file names, and jQuery is normally delivered in a lowercase
-// file name. Do this after creating the global so that if an AMD module wants
-// to call noConflict to hide this version of jQuery, it will work.
-
-// Note that for maximum portability, libraries that are not jQuery should
-// declare themselves as anonymous modules, and avoid setting a global if an
-// AMD loader is present. jQuery is a special case. For more information, see
-// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
-
-if ( typeof define === "function" && define.amd ) {
- define( "jquery", [], function() {
- return jQuery;
- });
-}
-
-
-
-
-var
- // Map over jQuery in case of overwrite
- _jQuery = window.jQuery,
-
- // Map over the $ in case of overwrite
- _$ = window.$;
-
-jQuery.noConflict = function( deep ) {
- if ( window.$ === jQuery ) {
- window.$ = _$;
- }
-
- if ( deep && window.jQuery === jQuery ) {
- window.jQuery = _jQuery;
- }
-
- return jQuery;
-};
-
-// Expose jQuery and $ identifiers, even in
-// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
-// and CommonJS for browser emulators (#13566)
-if ( typeof noGlobal === strundefined ) {
- window.jQuery = window.$ = jQuery;
-}
-
-
-
-
-return jQuery;
-
-}));
diff --git a/doc/_static/jquery.js b/doc/_static/jquery.js
deleted file mode 100644
index ab28a2472..000000000
--- a/doc/_static/jquery.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;
-if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Mb=/alpha\([^)]*\)/i,Nb=/opacity\s*=\s*([^)]*)/,Ob=/^(none|table(?!-c[ea]).+)/,Pb=new RegExp("^("+S+")(.*)$","i"),Qb=new RegExp("^([+-])=("+S+")","i"),Rb={position:"absolute",visibility:"hidden",display:"block"},Sb={letterSpacing:"0",fontWeight:"400"},Tb=["Webkit","O","Moz","ms"];function Ub(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Tb.length;while(e--)if(b=Tb[e]+c,b in a)return b;return d}function Vb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fb(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wb(a,b,c){var d=Pb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Yb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ib(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Jb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Hb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xb(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Jb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ub(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ub(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Jb(a,b,d)),"normal"===f&&b in Sb&&(f=Sb[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Ob.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Rb,function(){return Yb(a,b,d)}):Yb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ib(a);return Wb(a,c,d?Xb(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Mb.test(f)?f.replace(Mb,e):f+" "+e)}}),m.cssHooks.marginRight=Lb(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Jb,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Gb.test(a)||(m.cssHooks[a+b].set=Wb)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ib(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Vb(this,!0)},hide:function(){return Vb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Zb(a,b,c,d,e){return new Zb.prototype.init(a,b,c,d,e)}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")
-},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var b,c=Zb.propHooks[this.prop];return this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Zb.propHooks._default.set(this),this}},Zb.prototype.init.prototype=Zb.prototype,Zb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Zb.propHooks.scrollTop=Zb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Zb.prototype.init,m.fx.step={};var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[ic],ec={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bc.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bc.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fc(){return setTimeout(function(){$b=void 0}),$b=m.now()}function gc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hc(a,b,c){for(var d,e=(ec[b]||[]).concat(ec["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ic(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fb(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fb(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ac.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fb(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hc(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jc(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kc(a,b,c){var d,e,f=0,g=dc.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$b||fc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$b||fc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jc(k,j.opts.specialEasing);g>f;f++)if(d=dc[f].call(j,a,k,j.opts))return d;return m.map(k,hc,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kc,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],ec[c]=ec[c]||[],ec[c].unshift(b)},prefilter:function(a,b){b?dc.unshift(a):dc.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kc(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gc(b,!0),a,d,e)}}),m.each({slideDown:gc("show"),slideUp:gc("hide"),slideToggle:gc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($b=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$b=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_b||(_b=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_b),_b=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lc=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lc,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mc,nc,oc=m.expr.attrHandle,pc=/^(?:checked|selected)$/i,qc=k.getSetAttribute,rc=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nc:mc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rc&&qc||!pc.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qc?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nc={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rc&&qc||!pc.test(c)?a.setAttribute(!qc&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=oc[b]||m.find.attr;oc[b]=rc&&qc||!pc.test(b)?function(a,b,d){var e,f;return d||(f=oc[b],oc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,oc[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rc&&qc||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mc&&mc.set(a,b,c)}}),qc||(mc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},oc.id=oc.name=oc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mc.set},m.attrHooks.contenteditable={set:function(a,b,c){mc.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sc=/^(?:input|select|textarea|button|object)$/i,tc=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sc.test(a.nodeName)||tc.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var uc=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(uc," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vc=m.now(),wc=/\?/,xc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yc,zc,Ac=/#.*$/,Bc=/([?&])_=[^&]*/,Cc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Dc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ec=/^(?:GET|HEAD)$/,Fc=/^\/\//,Gc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hc={},Ic={},Jc="*/".concat("*");try{zc=location.href}catch(Kc){zc=y.createElement("a"),zc.href="",zc=zc.href}yc=Gc.exec(zc.toLowerCase())||[];function Lc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mc(a,b,c,d){var e={},f=a===Ic;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nc(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Oc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zc,type:"GET",isLocal:Dc.test(yc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nc(Nc(a,m.ajaxSettings),b):Nc(m.ajaxSettings,a)},ajaxPrefilter:Lc(Hc),ajaxTransport:Lc(Ic),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yc[1]&&c[2]===yc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yc[3]||("http:"===yc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mc(Hc,k,b,v),2===t)return v;h=k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Ec.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bc.test(e)?e.replace(Bc,"$1_="+vc++):e+(wc.test(e)?"&":"?")+"_="+vc++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mc(Ic,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Oc(k,v,c)),u=Pc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qc=/%20/g,Rc=/\[\]$/,Sc=/\r?\n/g,Tc=/^(?:submit|button|image|reset|file)$/i,Uc=/^(?:input|select|textarea|keygen)/i;function Vc(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rc.test(a)?d(a,e):Vc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vc(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vc(c,a[c],b,e);return d.join("&").replace(Qc,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Uc.test(this.nodeName)&&!Tc.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sc,"\r\n")}}):{name:b.name,value:c.replace(Sc,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zc()||$c()}:Zc;var Wc=0,Xc={},Yc=m.ajaxSettings.xhr();a.ActiveXObject&&m(a).on("unload",function(){for(var a in Xc)Xc[a](void 0,!0)}),k.cors=!!Yc&&"withCredentials"in Yc,Yc=k.ajax=!!Yc,Yc&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xc[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zc(){try{return new a.XMLHttpRequest}catch(b){}}function $c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _c=[],ad=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_c.pop()||m.expando+"_"+vc++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ad.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ad.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ad,"$1"+e):b.jsonp!==!1&&(b.url+=(wc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_c.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bd=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bd)return bd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cd=a.document.documentElement;function dd(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dd(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||cd;while(a&&!m.nodeName(a,"html")&&"static"===m.css(a,"position"))a=a.offsetParent;return a||cd})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);m.fn[a]=function(d){return V(this,function(a,d,e){var f=dd(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?m(f).scrollLeft():e,c?e:m(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),m.each(["top","left"],function(a,b){m.cssHooks[b]=Lb(k.pixelPosition,function(a,c){return c?(c=Jb(a,b),Hb.test(c)?m(a).position()[b]+"px":c):void 0})}),m.each({Height:"height",Width:"width"},function(a,b){m.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){m.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return V(this,function(b,c,d){var e;return m.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?m.css(b,c,g):m.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),m.fn.size=function(){return this.length},m.fn.andSelf=m.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return m});var ed=a.jQuery,fd=a.$;return m.noConflict=function(b){return a.$===m&&(a.$=fd),b&&a.jQuery===m&&(a.jQuery=ed),m},typeof b===K&&(a.jQuery=a.$=m),m});
diff --git a/doc/_static/js/modernizr.min.js b/doc/_static/js/modernizr.min.js
deleted file mode 100644
index f65d47974..000000000
--- a/doc/_static/js/modernizr.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/* Modernizr 2.6.2 (Custom Build) | MIT & BSD
- * Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
- */
-;window.Modernizr=function(a,b,c){function D(a){j.cssText=a}function E(a,b){return D(n.join(a+";")+(b||""))}function F(a,b){return typeof a===b}function G(a,b){return!!~(""+a).indexOf(b)}function H(a,b){for(var d in a){var e=a[d];if(!G(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function I(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:F(f,"function")?f.bind(d||b):f}return!1}function J(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+p.join(d+" ")+d).split(" ");return F(b,"string")||F(b,"undefined")?H(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),I(e,b,c))}function K(){e.input=function(c){for(var d=0,e=c.length;d<e;d++)u[c[d]]=c[d]in k;return u.list&&(u.list=!!b.createElement("datalist")&&!!a.HTMLDataListElement),u}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var d=0,e,f,h,i=a.length;d<i;d++)k.setAttribute("type",f=a[d]),e=k.type!=="text",e&&(k.value=l,k.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(f)&&k.style.WebkitAppearance!==c?(g.appendChild(k),h=b.defaultView,e=h.getComputedStyle&&h.getComputedStyle(k,null).WebkitAppearance!=="textfield"&&k.offsetHeight!==0,g.removeChild(k)):/^(search|tel)$/.test(f)||(/^(url|email)$/.test(f)?e=k.checkValidity&&k.checkValidity()===!1:e=k.value!=l)),t[a[d]]=!!e;return t}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k=b.createElement("input"),l=":)",m={}.toString,n=" -webkit- -moz- -o- -ms- ".split(" "),o="Webkit Moz O ms",p=o.split(" "),q=o.toLowerCase().split(" "),r={svg:"http://www.w3.org/2000/svg"},s={},t={},u={},v=[],w=v.slice,x,y=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["&#173;",'<style id="s',h,'">',a,"</style>"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e}),s.flexbox=function(){return J("flexWrap")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){return!!a.WebGLRenderingContext},s.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:y(["@media (",n.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},s.geolocation=function(){return"geolocation"in navigator},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},s.rgba=function(){return D("background-color:rgba(150,255,150,.5)"),G(j.backgroundColor,"rgba")},s.hsla=function(){return D("background-color:hsla(120,40%,100%,.5)"),G(j.backgroundColor,"rgba")||G(j.backgroundColor,"hsla")},s.multiplebgs=function(){return D("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(j.background)},s.backgroundsize=function(){return J("backgroundSize")},s.borderimage=function(){return J("borderImage")},s.borderradius=function(){return J("borderRadius")},s.boxshadow=function(){return J("boxShadow")},s.textshadow=function(){return b.createElement("div").style.textShadow===""},s.opacity=function(){return E("opacity:.55"),/^0.55$/.test(j.opacity)},s.cssanimations=function(){return J("animationName")},s.csscolumns=function(){return J("columnCount")},s.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return D((a+"-webkit- ".split(" ").join(b+a)+n.join(c+a)).slice(0,-a.length)),G(j.backgroundImage,"gradient")},s.cssreflections=function(){return J("boxReflect")},s.csstransforms=function(){return!!J("transform")},s.csstransforms3d=function(){var a=!!J("perspective");return a&&"webkitPerspective"in g.style&&y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a},s.csstransitions=function(){return J("transition")},s.fontface=function(){var a;return y('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&g.indexOf(d.split(" ")[0])===0}),a},s.generatedcontent=function(){var a;return y(["#",h,"{font:0/0 a}#",h,':after{content:"',l,'";visibility:hidden;font:3px/1 a}'].join(""),function(b){a=b.offsetHeight>=3}),a},s.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,"")}catch(d){}return c},s.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,"")}catch(d){}return c},s.localstorage=function(){try{return localStorage.setItem(h,h),localStorage.removeItem(h),!0}catch(a){return!1}},s.sessionstorage=function(){try{return sessionStorage.setItem(h,h),sessionStorage.removeItem(h),!0}catch(a){return!1}},s.webworkers=function(){return!!a.Worker},s.applicationcache=function(){return!!a.applicationCache},s.svg=function(){return!!b.createElementNS&&!!b.createElementNS(r.svg,"svg").createSVGRect},s.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="<svg/>",(a.firstChild&&a.firstChild.namespaceURI)==r.svg},s.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(m.call(b.createElementNS(r.svg,"animate")))},s.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(m.call(b.createElementNS(r.svg,"clipPath")))};for(var L in s)C(s,L)&&(x=L.toLowerCase(),e[x]=s[L](),v.push((e[x]?"":"no-")+x));return e.input||K(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)C(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},D(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e<g;e++)d.createElement(f[e]);return d}function p(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return r.shivMethods?n(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+l().join().replace(/\w+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(r,b.frag)}function q(a){a||(a=b);var c=m(a);return r.shivCSS&&!f&&!c.hasCSS&&(c.hasCSS=!!k(a,"article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}")),j||p(a,c),a}var c=a.html5||{},d=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,e=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,f,g="_html5shiv",h=0,i={},j;(function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(w(a))for(i=0;i<a.length;i++)j=a[i],e(j)?g(j,0,l,0):w(j)?B(j):Object(j)===j&&h(j,l);else Object(a)===a&&h(a,l)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
diff --git a/doc/_static/js/theme.js b/doc/_static/js/theme.js
deleted file mode 100644
index 749e58f40..000000000
--- a/doc/_static/js/theme.js
+++ /dev/null
@@ -1,113 +0,0 @@
-function toggleCurrent (elem) {
- var parent_li = elem.closest('li');
- parent_li.siblings('li.current').removeClass('current');
- parent_li.siblings().find('li.current').removeClass('current');
- parent_li.find('> ul li.current').removeClass('current');
- parent_li.toggleClass('current');
-}
-
-$(document).ready(function() {
- // Shift nav in mobile when clicking the menu.
- $(document).on('click', "[data-toggle='wy-nav-top']", function() {
- $("[data-toggle='wy-nav-shift']").toggleClass("shift");
- $("[data-toggle='rst-versions']").toggleClass("shift");
- });
- // Nav menu link click operations
- $(document).on('click', ".wy-menu-vertical .current ul li a", function() {
- var target = $(this);
- // Close menu when you click a link.
- $("[data-toggle='wy-nav-shift']").removeClass("shift");
- $("[data-toggle='rst-versions']").toggleClass("shift");
- // Handle dynamic display of l3 and l4 nav lists
- toggleCurrent(target);
- if (typeof(window.SphinxRtdTheme) != 'undefined') {
- window.SphinxRtdTheme.StickyNav.hashChange();
- }
- });
- $(document).on('click', "[data-toggle='rst-current-version']", function() {
- $("[data-toggle='rst-versions']").toggleClass("shift-up");
- });
- // Make tables responsive
- $("table.docutils:not(.field-list)").wrap("<div class='wy-table-responsive'></div>");
-
- // Add expand links to all parents of nested ul
- $('.wy-menu-vertical ul').siblings('a').each(function () {
- var link = $(this);
- expand = $('<span class="toctree-expand"></span>');
- expand.on('click', function (ev) {
- toggleCurrent(link);
- ev.stopPropagation();
- return false;
- });
- link.prepend(expand);
- });
-});
-
-// Sphinx theme state
-window.SphinxRtdTheme = (function (jquery) {
- var stickyNav = (function () {
- var navBar,
- win,
- winScroll = false,
- linkScroll = false,
- winPosition = 0,
- enable = function () {
- init();
- reset();
- win.on('hashchange', reset);
-
- // Set scrolling
- win.on('scroll', function () {
- if (!linkScroll) {
- winScroll = true;
- }
- });
- setInterval(function () {
- if (winScroll) {
- winScroll = false;
- var newWinPosition = win.scrollTop(),
- navPosition = navBar.scrollTop(),
- newNavPosition = navPosition + (newWinPosition - winPosition);
- navBar.scrollTop(newNavPosition);
- winPosition = newWinPosition;
- }
- }, 25);
- },
- init = function () {
- navBar = jquery('nav.wy-nav-side:first');
- win = jquery(window);
- },
- reset = function () {
- // Get anchor from URL and open up nested nav
- var anchor = encodeURI(window.location.hash);
- if (anchor) {
- try {
- var link = $('.wy-menu-vertical')
- .find('[href="' + anchor + '"]');
- $('.wy-menu-vertical li.toctree-l1 li.current')
- .removeClass('current');
- link.closest('li.toctree-l2').addClass('current');
- link.closest('li.toctree-l3').addClass('current');
- link.closest('li.toctree-l4').addClass('current');
- }
- catch (err) {
- console.log("Error expanding nav for anchor", err);
- }
- }
- },
- hashChange = function () {
- linkScroll = true;
- win.one('hashchange', function () {
- linkScroll = false;
- });
- };
- jquery(init);
- return {
- enable: enable,
- hashChange: hashChange
- };
- }());
- return {
- StickyNav: stickyNav
- };
-}($));
diff --git a/doc/_static/minus.png b/doc/_static/minus.png
deleted file mode 100644
index 0f22b16b0..000000000
Binary files a/doc/_static/minus.png and /dev/null differ
diff --git a/doc/_static/plus.png b/doc/_static/plus.png
deleted file mode 100644
index 0cfe084cf..000000000
Binary files a/doc/_static/plus.png and /dev/null differ
diff --git a/doc/_static/pygments.css b/doc/_static/pygments.css
deleted file mode 100644
index 57eadc030..000000000
--- a/doc/_static/pygments.css
+++ /dev/null
@@ -1,63 +0,0 @@
-.highlight .hll { background-color: #ffffcc }
-.highlight { background: #eeffcc; }
-.highlight .c { color: #408090; font-style: italic } /* Comment */
-.highlight .err { border: 1px solid #FF0000 } /* Error */
-.highlight .k { color: #007020; font-weight: bold } /* Keyword */
-.highlight .o { color: #666666 } /* Operator */
-.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */
-.highlight .cp { color: #007020 } /* Comment.Preproc */
-.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */
-.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */
-.highlight .gd { color: #A00000 } /* Generic.Deleted */
-.highlight .ge { font-style: italic } /* Generic.Emph */
-.highlight .gr { color: #FF0000 } /* Generic.Error */
-.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
-.highlight .gi { color: #00A000 } /* Generic.Inserted */
-.highlight .go { color: #333333 } /* Generic.Output */
-.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
-.highlight .gs { font-weight: bold } /* Generic.Strong */
-.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
-.highlight .gt { color: #0044DD } /* Generic.Traceback */
-.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
-.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
-.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
-.highlight .kp { color: #007020 } /* Keyword.Pseudo */
-.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
-.highlight .kt { color: #902000 } /* Keyword.Type */
-.highlight .m { color: #208050 } /* Literal.Number */
-.highlight .s { color: #4070a0 } /* Literal.String */
-.highlight .na { color: #4070a0 } /* Name.Attribute */
-.highlight .nb { color: #007020 } /* Name.Builtin */
-.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
-.highlight .no { color: #60add5 } /* Name.Constant */
-.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
-.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */
-.highlight .ne { color: #007020 } /* Name.Exception */
-.highlight .nf { color: #06287e } /* Name.Function */
-.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
-.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
-.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
-.highlight .nv { color: #bb60d5 } /* Name.Variable */
-.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
-.highlight .w { color: #bbbbbb } /* Text.Whitespace */
-.highlight .mb { color: #208050 } /* Literal.Number.Bin */
-.highlight .mf { color: #208050 } /* Literal.Number.Float */
-.highlight .mh { color: #208050 } /* Literal.Number.Hex */
-.highlight .mi { color: #208050 } /* Literal.Number.Integer */
-.highlight .mo { color: #208050 } /* Literal.Number.Oct */
-.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
-.highlight .sc { color: #4070a0 } /* Literal.String.Char */
-.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
-.highlight .s2 { color: #4070a0 } /* Literal.String.Double */
-.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
-.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */
-.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
-.highlight .sx { color: #c65d09 } /* Literal.String.Other */
-.highlight .sr { color: #235388 } /* Literal.String.Regex */
-.highlight .s1 { color: #4070a0 } /* Literal.String.Single */
-.highlight .ss { color: #517918 } /* Literal.String.Symbol */
-.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
-.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
-.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
-.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
-.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */
\ No newline at end of file
diff --git a/doc/_static/searchtools.js b/doc/_static/searchtools.js
deleted file mode 100644
index 0e794fd3e..000000000
--- a/doc/_static/searchtools.js
+++ /dev/null
@@ -1,622 +0,0 @@
-/*
- * searchtools.js_t
- * ~~~~~~~~~~~~~~~~
- *
- * Sphinx JavaScript utilties for the full-text search.
- *
- * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
- */
-
-
-/**
- * Porter Stemmer
- */
-var Stemmer = function() {
-
- var step2list = {
- ational: 'ate',
- tional: 'tion',
- enci: 'ence',
- anci: 'ance',
- izer: 'ize',
- bli: 'ble',
- alli: 'al',
- entli: 'ent',
- eli: 'e',
- ousli: 'ous',
- ization: 'ize',
- ation: 'ate',
- ator: 'ate',
- alism: 'al',
- iveness: 'ive',
- fulness: 'ful',
- ousness: 'ous',
- aliti: 'al',
- iviti: 'ive',
- biliti: 'ble',
- logi: 'log'
- };
-
- var step3list = {
- icate: 'ic',
- ative: '',
- alize: 'al',
- iciti: 'ic',
- ical: 'ic',
- ful: '',
- ness: ''
- };
-
- var c = "[^aeiou]"; // consonant
- var v = "[aeiouy]"; // vowel
- var C = c + "[^aeiouy]*"; // consonant sequence
- var V = v + "[aeiou]*"; // vowel sequence
-
- var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0
- var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1
- var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1
- var s_v = "^(" + C + ")?" + v; // vowel in stem
-
- this.stemWord = function (w) {
- var stem;
- var suffix;
- var firstch;
- var origword = w;
-
- if (w.length < 3)
- return w;
-
- var re;
- var re2;
- var re3;
- var re4;
-
- firstch = w.substr(0,1);
- if (firstch == "y")
- w = firstch.toUpperCase() + w.substr(1);
-
- // Step 1a
- re = /^(.+?)(ss|i)es$/;
- re2 = /^(.+?)([^s])s$/;
-
- if (re.test(w))
- w = w.replace(re,"$1$2");
- else if (re2.test(w))
- w = w.replace(re2,"$1$2");
-
- // Step 1b
- re = /^(.+?)eed$/;
- re2 = /^(.+?)(ed|ing)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- re = new RegExp(mgr0);
- if (re.test(fp[1])) {
- re = /.$/;
- w = w.replace(re,"");
- }
- }
- else if (re2.test(w)) {
- var fp = re2.exec(w);
- stem = fp[1];
- re2 = new RegExp(s_v);
- if (re2.test(stem)) {
- w = stem;
- re2 = /(at|bl|iz)$/;
- re3 = new RegExp("([^aeiouylsz])\\1$");
- re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
- if (re2.test(w))
- w = w + "e";
- else if (re3.test(w)) {
- re = /.$/;
- w = w.replace(re,"");
- }
- else if (re4.test(w))
- w = w + "e";
- }
- }
-
- // Step 1c
- re = /^(.+?)y$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- re = new RegExp(s_v);
- if (re.test(stem))
- w = stem + "i";
- }
-
- // Step 2
- re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- suffix = fp[2];
- re = new RegExp(mgr0);
- if (re.test(stem))
- w = stem + step2list[suffix];
- }
-
- // Step 3
- re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- suffix = fp[2];
- re = new RegExp(mgr0);
- if (re.test(stem))
- w = stem + step3list[suffix];
- }
-
- // Step 4
- re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
- re2 = /^(.+?)(s|t)(ion)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- re = new RegExp(mgr1);
- if (re.test(stem))
- w = stem;
- }
- else if (re2.test(w)) {
- var fp = re2.exec(w);
- stem = fp[1] + fp[2];
- re2 = new RegExp(mgr1);
- if (re2.test(stem))
- w = stem;
- }
-
- // Step 5
- re = /^(.+?)e$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- re = new RegExp(mgr1);
- re2 = new RegExp(meq1);
- re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
- if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
- w = stem;
- }
- re = /ll$/;
- re2 = new RegExp(mgr1);
- if (re.test(w) && re2.test(w)) {
- re = /.$/;
- w = w.replace(re,"");
- }
-
- // and turn initial Y back to y
- if (firstch == "y")
- w = firstch.toLowerCase() + w.substr(1);
- return w;
- }
-}
-
-
-
-/**
- * Simple result scoring code.
- */
-var Scorer = {
- // Implement the following function to further tweak the score for each result
- // The function takes a result array [filename, title, anchor, descr, score]
- // and returns the new score.
- /*
- score: function(result) {
- return result[4];
- },
- */
-
- // query matches the full name of an object
- objNameMatch: 11,
- // or matches in the last dotted part of the object name
- objPartialMatch: 6,
- // Additive scores depending on the priority of the object
- objPrio: {0: 15, // used to be importantResults
- 1: 5, // used to be objectResults
- 2: -5}, // used to be unimportantResults
- // Used when the priority is not in the mapping.
- objPrioDefault: 0,
-
- // query found in title
- title: 15,
- // query found in terms
- term: 5
-};
-
-
-/**
- * Search Module
- */
-var Search = {
-
- _index : null,
- _queued_query : null,
- _pulse_status : -1,
-
- init : function() {
- var params = $.getQueryParameters();
- if (params.q) {
- var query = params.q[0];
- $('input[name="q"]')[0].value = query;
- this.performSearch(query);
- }
- },
-
- loadIndex : function(url) {
- $.ajax({type: "GET", url: url, data: null,
- dataType: "script", cache: true,
- complete: function(jqxhr, textstatus) {
- if (textstatus != "success") {
- document.getElementById("searchindexloader").src = url;
- }
- }});
- },
-
- setIndex : function(index) {
- var q;
- this._index = index;
- if ((q = this._queued_query) !== null) {
- this._queued_query = null;
- Search.query(q);
- }
- },
-
- hasIndex : function() {
- return this._index !== null;
- },
-
- deferQuery : function(query) {
- this._queued_query = query;
- },
-
- stopPulse : function() {
- this._pulse_status = 0;
- },
-
- startPulse : function() {
- if (this._pulse_status >= 0)
- return;
- function pulse() {
- var i;
- Search._pulse_status = (Search._pulse_status + 1) % 4;
- var dotString = '';
- for (i = 0; i < Search._pulse_status; i++)
- dotString += '.';
- Search.dots.text(dotString);
- if (Search._pulse_status > -1)
- window.setTimeout(pulse, 500);
- }
- pulse();
- },
-
- /**
- * perform a search for something (or wait until index is loaded)
- */
- performSearch : function(query) {
- // create the required interface elements
- this.out = $('#search-results');
- this.title = $('<h2>' + _('Searching') + '</h2>').appendTo(this.out);
- this.dots = $('<span></span>').appendTo(this.title);
- this.status = $('<p style="display: none"></p>').appendTo(this.out);
- this.output = $('<ul class="search"/>').appendTo(this.out);
-
- $('#search-progress').text(_('Preparing search...'));
- this.startPulse();
-
- // index already loaded, the browser was quick!
- if (this.hasIndex())
- this.query(query);
- else
- this.deferQuery(query);
- },
-
- /**
- * execute search (requires search index to be loaded)
- */
- query : function(query) {
- var i;
- var stopwords = ["a","and","are","as","at","be","but","by","for","if","in","into","is","it","near","no","not","of","on","or","such","that","the","their","then","there","these","they","this","to","was","will","with"];
-
- // stem the searchterms and add them to the correct list
- var stemmer = new Stemmer();
- var searchterms = [];
- var excluded = [];
- var hlterms = [];
- var tmp = query.split(/\s+/);
- var objectterms = [];
- for (i = 0; i < tmp.length; i++) {
- if (tmp[i] !== "") {
- objectterms.push(tmp[i].toLowerCase());
- }
-
- if ($u.indexOf(stopwords, tmp[i].toLowerCase()) != -1 || tmp[i].match(/^\d+$/) ||
- tmp[i] === "") {
- // skip this "word"
- continue;
- }
- // stem the word
- var word = stemmer.stemWord(tmp[i].toLowerCase());
- var toAppend;
- // select the correct list
- if (word[0] == '-') {
- toAppend = excluded;
- word = word.substr(1);
- }
- else {
- toAppend = searchterms;
- hlterms.push(tmp[i].toLowerCase());
- }
- // only add if not already in the list
- if (!$u.contains(toAppend, word))
- toAppend.push(word);
- }
- var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" "));
-
- // console.debug('SEARCH: searching for:');
- // console.info('required: ', searchterms);
- // console.info('excluded: ', excluded);
-
- // prepare search
- var terms = this._index.terms;
- var titleterms = this._index.titleterms;
-
- // array of [filename, title, anchor, descr, score]
- var results = [];
- $('#search-progress').empty();
-
- // lookup as object
- for (i = 0; i < objectterms.length; i++) {
- var others = [].concat(objectterms.slice(0, i),
- objectterms.slice(i+1, objectterms.length));
- results = results.concat(this.performObjectSearch(objectterms[i], others));
- }
-
- // lookup as search terms in fulltext
- results = results.concat(this.performTermsSearch(searchterms, excluded, terms, Scorer.term))
- .concat(this.performTermsSearch(searchterms, excluded, titleterms, Scorer.title));
-
- // let the scorer override scores with a custom scoring function
- if (Scorer.score) {
- for (i = 0; i < results.length; i++)
- results[i][4] = Scorer.score(results[i]);
- }
-
- // now sort the results by score (in opposite order of appearance, since the
- // display function below uses pop() to retrieve items) and then
- // alphabetically
- results.sort(function(a, b) {
- var left = a[4];
- var right = b[4];
- if (left > right) {
- return 1;
- } else if (left < right) {
- return -1;
- } else {
- // same score: sort alphabetically
- left = a[1].toLowerCase();
- right = b[1].toLowerCase();
- return (left > right) ? -1 : ((left < right) ? 1 : 0);
- }
- });
-
- // for debugging
- //Search.lastresults = results.slice(); // a copy
- //console.info('search results:', Search.lastresults);
-
- // print the results
- var resultCount = results.length;
- function displayNextItem() {
- // results left, load the summary and display it
- if (results.length) {
- var item = results.pop();
- var listItem = $('<li style="display:none"></li>');
- if (DOCUMENTATION_OPTIONS.FILE_SUFFIX === '') {
- // dirhtml builder
- var dirname = item[0] + '/';
- if (dirname.match(/\/index\/$/)) {
- dirname = dirname.substring(0, dirname.length-6);
- } else if (dirname == 'index/') {
- dirname = '';
- }
- listItem.append($('<a/>').attr('href',
- DOCUMENTATION_OPTIONS.URL_ROOT + dirname +
- highlightstring + item[2]).html(item[1]));
- } else {
- // normal html builders
- listItem.append($('<a/>').attr('href',
- item[0] + DOCUMENTATION_OPTIONS.FILE_SUFFIX +
- highlightstring + item[2]).html(item[1]));
- }
- if (item[3]) {
- listItem.append($('<span> (' + item[3] + ')</span>'));
- Search.output.append(listItem);
- listItem.slideDown(5, function() {
- displayNextItem();
- });
- } else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) {
- $.ajax({url: DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' + item[0] + '.txt',
- dataType: "text",
- complete: function(jqxhr, textstatus) {
- var data = jqxhr.responseText;
- if (data !== '' && data !== undefined) {
- listItem.append(Search.makeSearchSummary(data, searchterms, hlterms));
- }
- Search.output.append(listItem);
- listItem.slideDown(5, function() {
- displayNextItem();
- });
- }});
- } else {
- // no source available, just display title
- Search.output.append(listItem);
- listItem.slideDown(5, function() {
- displayNextItem();
- });
- }
- }
- // search finished, update title and status message
- else {
- Search.stopPulse();
- Search.title.text(_('Search Results'));
- if (!resultCount)
- Search.status.text(_('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.'));
- else
- Search.status.text(_('Search finished, found %s page(s) matching the search query.').replace('%s', resultCount));
- Search.status.fadeIn(500);
- }
- }
- displayNextItem();
- },
-
- /**
- * search for object names
- */
- performObjectSearch : function(object, otherterms) {
- var filenames = this._index.filenames;
- var objects = this._index.objects;
- var objnames = this._index.objnames;
- var titles = this._index.titles;
-
- var i;
- var results = [];
-
- for (var prefix in objects) {
- for (var name in objects[prefix]) {
- var fullname = (prefix ? prefix + '.' : '') + name;
- if (fullname.toLowerCase().indexOf(object) > -1) {
- var score = 0;
- var parts = fullname.split('.');
- // check for different match types: exact matches of full name or
- // "last name" (i.e. last dotted part)
- if (fullname == object || parts[parts.length - 1] == object) {
- score += Scorer.objNameMatch;
- // matches in last name
- } else if (parts[parts.length - 1].indexOf(object) > -1) {
- score += Scorer.objPartialMatch;
- }
- var match = objects[prefix][name];
- var objname = objnames[match[1]][2];
- var title = titles[match[0]];
- // If more than one term searched for, we require other words to be
- // found in the name/title/description
- if (otherterms.length > 0) {
- var haystack = (prefix + ' ' + name + ' ' +
- objname + ' ' + title).toLowerCase();
- var allfound = true;
- for (i = 0; i < otherterms.length; i++) {
- if (haystack.indexOf(otherterms[i]) == -1) {
- allfound = false;
- break;
- }
- }
- if (!allfound) {
- continue;
- }
- }
- var descr = objname + _(', in ') + title;
-
- var anchor = match[3];
- if (anchor === '')
- anchor = fullname;
- else if (anchor == '-')
- anchor = objnames[match[1]][1] + '-' + fullname;
- // add custom score for some objects according to scorer
- if (Scorer.objPrio.hasOwnProperty(match[2])) {
- score += Scorer.objPrio[match[2]];
- } else {
- score += Scorer.objPrioDefault;
- }
- results.push([filenames[match[0]], fullname, '#'+anchor, descr, score]);
- }
- }
- }
-
- return results;
- },
-
- /**
- * search for full-text terms in the index
- */
- performTermsSearch : function(searchterms, excluded, terms, score) {
- var filenames = this._index.filenames;
- var titles = this._index.titles;
-
- var i, j, file, files;
- var fileMap = {};
- var results = [];
-
- // perform the search on the required terms
- for (i = 0; i < searchterms.length; i++) {
- var word = searchterms[i];
- // no match but word was a required one
- if ((files = terms[word]) === undefined)
- break;
- if (files.length === undefined) {
- files = [files];
- }
- // create the mapping
- for (j = 0; j < files.length; j++) {
- file = files[j];
- if (file in fileMap)
- fileMap[file].push(word);
- else
- fileMap[file] = [word];
- }
- }
-
- // now check if the files don't contain excluded terms
- for (file in fileMap) {
- var valid = true;
-
- // check if all requirements are matched
- if (fileMap[file].length != searchterms.length)
- continue;
-
- // ensure that none of the excluded terms is in the search result
- for (i = 0; i < excluded.length; i++) {
- if (terms[excluded[i]] == file ||
- $u.contains(terms[excluded[i]] || [], file)) {
- valid = false;
- break;
- }
- }
-
- // if we have still a valid result we can add it to the result list
- if (valid) {
- results.push([filenames[file], titles[file], '', null, score]);
- }
- }
- return results;
- },
-
- /**
- * helper function to return a node containing the
- * search summary for a given text. keywords is a list
- * of stemmed words, hlwords is the list of normal, unstemmed
- * words. the first one is used to find the occurance, the
- * latter for highlighting it.
- */
- makeSearchSummary : function(text, keywords, hlwords) {
- var textLower = text.toLowerCase();
- var start = 0;
- $.each(keywords, function() {
- var i = textLower.indexOf(this.toLowerCase());
- if (i > -1)
- start = i;
- });
- start = Math.max(start - 120, 0);
- var excerpt = ((start > 0) ? '...' : '') +
- $.trim(text.substr(start, 240)) +
- ((start + 240 - text.length) ? '...' : '');
- var rv = $('<div class="context"></div>').text(excerpt);
- $.each(hlwords, function() {
- rv = rv.highlightText(this, 'highlighted');
- });
- return rv;
- }
-};
-
-$(document).ready(function() {
- Search.init();
-});
\ No newline at end of file
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2-customize/jquery-noconflict.js b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2-customize/jquery-noconflict.js
deleted file mode 100644
index a07e4e1d3..000000000
--- a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2-customize/jquery-noconflict.js
+++ /dev/null
@@ -1 +0,0 @@
- jQuery.noConflict(true);
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/css/lightbox.css b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/css/lightbox.css
deleted file mode 100644
index 60cf695d6..000000000
--- a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/css/lightbox.css
+++ /dev/null
@@ -1,210 +0,0 @@
-/* Preload images */
-body:after {
- content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
- display: none;
-}
-
-.lightboxOverlay {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 9999;
- background-color: black;
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
- opacity: 0.8;
- display: none;
-}
-
-.lightbox {
- position: absolute;
- left: 0;
- width: 100%;
- z-index: 10000;
- text-align: center;
- line-height: 0;
- font-weight: normal;
-}
-
-.lightbox .lb-image {
- display: block;
- height: auto;
- max-width: inherit;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- -ms-border-radius: 3px;
- -o-border-radius: 3px;
- border-radius: 3px;
-}
-
-.lightbox a img {
- border: none;
-}
-
-.lb-outerContainer {
- position: relative;
- background-color: white;
- *zoom: 1;
- width: 250px;
- height: 250px;
- margin: 0 auto;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- -ms-border-radius: 4px;
- -o-border-radius: 4px;
- border-radius: 4px;
-}
-
-.lb-outerContainer:after {
- content: "";
- display: table;
- clear: both;
-}
-
-.lb-container {
- padding: 4px;
-}
-
-.lb-loader {
- position: absolute;
- top: 43%;
- left: 0;
- height: 25%;
- width: 100%;
- text-align: center;
- line-height: 0;
-}
-
-.lb-cancel {
- display: block;
- width: 32px;
- height: 32px;
- margin: 0 auto;
- background: url(../img/loading.gif) no-repeat;
-}
-
-.lb-nav {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- z-index: 10;
-}
-
-.lb-container > .nav {
- left: 0;
-}
-
-.lb-nav a {
- outline: none;
- background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
-}
-
-.lb-prev, .lb-next {
- height: 100%;
- cursor: pointer;
- display: block;
-}
-
-.lb-nav a.lb-prev {
- width: 34%;
- left: 0;
- float: left;
- background: url(../img/prev.png) left 48% no-repeat;
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
- opacity: 0;
- -webkit-transition: opacity 0.6s;
- -moz-transition: opacity 0.6s;
- -o-transition: opacity 0.6s;
- transition: opacity 0.6s;
-}
-
-.lb-nav a.lb-prev:hover {
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
- opacity: 1;
-}
-
-.lb-nav a.lb-next {
- width: 64%;
- right: 0;
- float: right;
- background: url(../img/next.png) right 48% no-repeat;
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
- opacity: 0;
- -webkit-transition: opacity 0.6s;
- -moz-transition: opacity 0.6s;
- -o-transition: opacity 0.6s;
- transition: opacity 0.6s;
-}
-
-.lb-nav a.lb-next:hover {
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
- opacity: 1;
-}
-
-.lb-dataContainer {
- margin: 0 auto;
- padding-top: 5px;
- *zoom: 1;
- width: 100%;
- -moz-border-radius-bottomleft: 4px;
- -webkit-border-bottom-left-radius: 4px;
- border-bottom-left-radius: 4px;
- -moz-border-radius-bottomright: 4px;
- -webkit-border-bottom-right-radius: 4px;
- border-bottom-right-radius: 4px;
-}
-
-.lb-dataContainer:after {
- content: "";
- display: table;
- clear: both;
-}
-
-.lb-data {
- padding: 0 4px;
- color: #ccc;
-}
-
-.lb-data .lb-details {
- width: 85%;
- float: left;
- text-align: left;
- line-height: 1.1em;
-}
-
-.lb-data .lb-caption {
- font-size: 13px;
- font-weight: bold;
- line-height: 1em;
-}
-
-.lb-data .lb-number {
- display: block;
- clear: left;
- padding-bottom: 1em;
- font-size: 12px;
- color: #999999;
-}
-
-.lb-data .lb-close {
- display: block;
- float: right;
- width: 30px;
- height: 30px;
- background: url(../img/close.png) top right no-repeat;
- text-align: right;
- outline: none;
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
- opacity: 0.7;
- -webkit-transition: opacity 0.2s;
- -moz-transition: opacity 0.2s;
- -o-transition: opacity 0.2s;
- transition: opacity 0.2s;
-}
-
-.lb-data .lb-close:hover {
- cursor: pointer;
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
- opacity: 1;
-}
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/close.png b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/close.png
deleted file mode 100644
index 20baa1db5..000000000
Binary files a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/close.png and /dev/null differ
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/loading.gif b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/loading.gif
deleted file mode 100644
index 5087c2a64..000000000
Binary files a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/loading.gif and /dev/null differ
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/next.png b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/next.png
deleted file mode 100644
index 08365ac84..000000000
Binary files a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/next.png and /dev/null differ
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/prev.png b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/prev.png
deleted file mode 100644
index 329fa9860..000000000
Binary files a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/img/prev.png and /dev/null differ
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/jquery-1.11.0.min.js b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/jquery-1.11.0.min.js
deleted file mode 100644
index 046e93aa1..000000000
--- a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/jquery-1.11.0.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k="".trim,l={},m="1.11.0",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(l.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:k&&!k.call("\ufeff\xa0")?function(a){return null==a?"":k.call(a)}:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||n.guid++,e):void 0},now:function(){return+new Date},support:l}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s="sizzle"+-new Date,t=a.document,u=0,v=0,w=eb(),x=eb(),y=eb(),z=function(a,b){return a===b&&(j=!0),0},A="undefined",B=1<<31,C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=D.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},J="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",K="[\\x20\\t\\r\\n\\f]",L="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",M=L.replace("w","w#"),N="\\["+K+"*("+L+")"+K+"*(?:([*^$|!~]?=)"+K+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+M+")|)|)"+K+"*\\]",O=":("+L+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+N.replace(3,8)+")*)|.*)\\)|)",P=new RegExp("^"+K+"+|((?:^|[^\\\\])(?:\\\\.)*)"+K+"+$","g"),Q=new RegExp("^"+K+"*,"+K+"*"),R=new RegExp("^"+K+"*([>+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(O),U=new RegExp("^"+M+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L.replace("w","w*")+")"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=/'|\\/g,ab=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),bb=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{G.apply(D=H.call(t.childNodes),t.childNodes),D[t.childNodes.length].nodeType}catch(cb){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function db(a,b,d,e){var f,g,h,i,j,m,p,q,u,v;if((b?b.ownerDocument||b:t)!==l&&k(b),b=b||l,d=d||[],!a||"string"!=typeof a)return d;if(1!==(i=b.nodeType)&&9!==i)return[];if(n&&!e){if(f=Z.exec(a))if(h=f[1]){if(9===i){if(g=b.getElementById(h),!g||!g.parentNode)return d;if(g.id===h)return d.push(g),d}else if(b.ownerDocument&&(g=b.ownerDocument.getElementById(h))&&r(b,g)&&g.id===h)return d.push(g),d}else{if(f[2])return G.apply(d,b.getElementsByTagName(a)),d;if((h=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(h)),d}if(c.qsa&&(!o||!o.test(a))){if(q=p=s,u=b,v=9===i&&a,1===i&&"object"!==b.nodeName.toLowerCase()){m=ob(a),(p=b.getAttribute("id"))?q=p.replace(_,"\\$&"):b.setAttribute("id",q),q="[id='"+q+"'] ",j=m.length;while(j--)m[j]=q+pb(m[j]);u=$.test(a)&&mb(b.parentNode)||b,v=m.join(",")}if(v)try{return G.apply(d,u.querySelectorAll(v)),d}catch(w){}finally{p||b.removeAttribute("id")}}}return xb(a.replace(P,"$1"),b,d,e)}function eb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function fb(a){return a[s]=!0,a}function gb(a){var b=l.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function hb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function ib(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||B)-(~a.sourceIndex||B);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function jb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function kb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function lb(a){return fb(function(b){return b=+b,fb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function mb(a){return a&&typeof a.getElementsByTagName!==A&&a}c=db.support={},f=db.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},k=db.setDocument=function(a){var b,e=a?a.ownerDocument||a:t,g=e.defaultView;return e!==l&&9===e.nodeType&&e.documentElement?(l=e,m=e.documentElement,n=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){k()},!1):g.attachEvent&&g.attachEvent("onunload",function(){k()})),c.attributes=gb(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=gb(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(e.getElementsByClassName)&&gb(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=gb(function(a){return m.appendChild(a).id=s,!e.getElementsByName||!e.getElementsByName(s).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==A&&n){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){var c=typeof a.getAttributeNode!==A&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==A?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==A&&n?b.getElementsByClassName(a):void 0},p=[],o=[],(c.qsa=Y.test(e.querySelectorAll))&&(gb(function(a){a.innerHTML="<select t=''><option selected=''></option></select>",a.querySelectorAll("[t^='']").length&&o.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||o.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll(":checked").length||o.push(":checked")}),gb(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&o.push("name"+K+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||o.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),o.push(",.*:")})),(c.matchesSelector=Y.test(q=m.webkitMatchesSelector||m.mozMatchesSelector||m.oMatchesSelector||m.msMatchesSelector))&&gb(function(a){c.disconnectedMatch=q.call(a,"div"),q.call(a,"[s!='']:x"),p.push("!=",O)}),o=o.length&&new RegExp(o.join("|")),p=p.length&&new RegExp(p.join("|")),b=Y.test(m.compareDocumentPosition),r=b||Y.test(m.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},z=b?function(a,b){if(a===b)return j=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===t&&r(t,a)?-1:b===e||b.ownerDocument===t&&r(t,b)?1:i?I.call(i,a)-I.call(i,b):0:4&d?-1:1)}:function(a,b){if(a===b)return j=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],k=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:i?I.call(i,a)-I.call(i,b):0;if(f===g)return ib(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)k.unshift(c);while(h[d]===k[d])d++;return d?ib(h[d],k[d]):h[d]===t?-1:k[d]===t?1:0},e):l},db.matches=function(a,b){return db(a,null,null,b)},db.matchesSelector=function(a,b){if((a.ownerDocument||a)!==l&&k(a),b=b.replace(S,"='$1']"),!(!c.matchesSelector||!n||p&&p.test(b)||o&&o.test(b)))try{var d=q.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return db(b,l,null,[a]).length>0},db.contains=function(a,b){return(a.ownerDocument||a)!==l&&k(a),r(a,b)},db.attr=function(a,b){(a.ownerDocument||a)!==l&&k(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!n):void 0;return void 0!==f?f:c.attributes||!n?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},db.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},db.uniqueSort=function(a){var b,d=[],e=0,f=0;if(j=!c.detectDuplicates,i=!c.sortStable&&a.slice(0),a.sort(z),j){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return i=null,a},e=db.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=db.selectors={cacheLength:50,createPseudo:fb,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ab,bb),a[3]=(a[4]||a[5]||"").replace(ab,bb),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||db.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&db.error(a[0]),a},PSEUDO:function(a){var b,c=!a[5]&&a[2];return V.CHILD.test(a[0])?null:(a[3]&&void 0!==a[4]?a[2]=a[4]:c&&T.test(c)&&(b=ob(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ab,bb).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=w[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&w(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==A&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=db.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),t=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&t){k=q[s]||(q[s]={}),j=k[a]||[],n=j[0]===u&&j[1],m=j[0]===u&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[u,n,m];break}}else if(t&&(j=(b[s]||(b[s]={}))[a])&&j[0]===u)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(t&&((l[s]||(l[s]={}))[a]=[u,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||db.error("unsupported pseudo: "+a);return e[s]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?fb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:fb(function(a){var b=[],c=[],d=g(a.replace(P,"$1"));return d[s]?fb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:fb(function(a){return function(b){return db(a,b).length>0}}),contains:fb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:fb(function(a){return U.test(a||"")||db.error("unsupported lang: "+a),a=a.replace(ab,bb).toLowerCase(),function(b){var c;do if(c=n?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===m},focus:function(a){return a===l.activeElement&&(!l.hasFocus||l.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:lb(function(){return[0]}),last:lb(function(a,b){return[b-1]}),eq:lb(function(a,b,c){return[0>c?c+b:c]}),even:lb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:lb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:lb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:lb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=jb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=kb(b);function nb(){}nb.prototype=d.filters=d.pseudos,d.setFilters=new nb;function ob(a,b){var c,e,f,g,h,i,j,k=x[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=Q.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=R.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(P," ")}),h=h.slice(c.length));for(g in d.filter)!(e=V[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?db.error(a):x(a,i).slice(0)}function pb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function qb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=v++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[u,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[s]||(b[s]={}),(h=i[d])&&h[0]===u&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function rb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function sb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function tb(a,b,c,d,e,f){return d&&!d[s]&&(d=tb(d)),e&&!e[s]&&(e=tb(e,f)),fb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||wb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:sb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=sb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=sb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ub(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],i=g||d.relative[" "],j=g?1:0,k=qb(function(a){return a===b},i,!0),l=qb(function(a){return I.call(b,a)>-1},i,!0),m=[function(a,c,d){return!g&&(d||c!==h)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>j;j++)if(c=d.relative[a[j].type])m=[qb(rb(m),c)];else{if(c=d.filter[a[j].type].apply(null,a[j].matches),c[s]){for(e=++j;f>e;e++)if(d.relative[a[e].type])break;return tb(j>1&&rb(m),j>1&&pb(a.slice(0,j-1).concat({value:" "===a[j-2].type?"*":""})).replace(P,"$1"),c,e>j&&ub(a.slice(j,e)),f>e&&ub(a=a.slice(e)),f>e&&pb(a))}m.push(c)}return rb(m)}function vb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,i,j,k){var m,n,o,p=0,q="0",r=f&&[],s=[],t=h,v=f||e&&d.find.TAG("*",k),w=u+=null==t?1:Math.random()||.1,x=v.length;for(k&&(h=g!==l&&g);q!==x&&null!=(m=v[q]);q++){if(e&&m){n=0;while(o=a[n++])if(o(m,g,i)){j.push(m);break}k&&(u=w)}c&&((m=!o&&m)&&p--,f&&r.push(m))}if(p+=q,c&&q!==p){n=0;while(o=b[n++])o(r,s,g,i);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=E.call(j));s=sb(s)}G.apply(j,s),k&&!f&&s.length>0&&p+b.length>1&&db.uniqueSort(j)}return k&&(u=w,h=t),r};return c?fb(f):f}g=db.compile=function(a,b){var c,d=[],e=[],f=y[a+" "];if(!f){b||(b=ob(a)),c=b.length;while(c--)f=ub(b[c]),f[s]?d.push(f):e.push(f);f=y(a,vb(e,d))}return f};function wb(a,b,c){for(var d=0,e=b.length;e>d;d++)db(a,b[d],c);return c}function xb(a,b,e,f){var h,i,j,k,l,m=ob(a);if(!f&&1===m.length){if(i=m[0]=m[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&c.getById&&9===b.nodeType&&n&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(ab,bb),b)||[])[0],!b)return e;a=a.slice(i.shift().value.length)}h=V.needsContext.test(a)?0:i.length;while(h--){if(j=i[h],d.relative[k=j.type])break;if((l=d.find[k])&&(f=l(j.matches[0].replace(ab,bb),$.test(i[0].type)&&mb(b.parentNode)||b))){if(i.splice(h,1),a=f.length&&pb(i),!a)return G.apply(e,f),e;break}}}return g(a,m)(f,b,!n,e,$.test(a)&&mb(b.parentNode)||b),e}return c.sortStable=s.split("").sort(z).join("")===s,c.detectDuplicates=!!j,k(),c.sortDetached=gb(function(a){return 1&a.compareDocumentPosition(l.createElement("div"))}),gb(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||hb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&gb(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||hb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),gb(function(a){return null==a.getAttribute("disabled")})||hb(J,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),db}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=a.document,A=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,B=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:A.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=z.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return y.find(a);this.length=1,this[0]=d}return this.context=z,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};B.prototype=n.fn,y=n(z);var C=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!n(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function E(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return E(a,"nextSibling")},prev:function(a){return E(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(D[a]||(e=n.unique(e)),C.test(a)&&(e=e.reverse())),this.pushStack(e)}});var F=/\S+/g,G={};function H(a){var b=G[a]={};return n.each(a.match(F)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?G[a]||H(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&n.each(arguments,function(a,c){var d;while((d=n.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){if(a===!0?!--n.readyWait:!n.isReady){if(!z.body)return setTimeout(n.ready);n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(z,[n]),n.fn.trigger&&n(z).trigger("ready").off("ready"))}}});function J(){z.addEventListener?(z.removeEventListener("DOMContentLoaded",K,!1),a.removeEventListener("load",K,!1)):(z.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(z.addEventListener||"load"===event.type||"complete"===z.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===z.readyState)setTimeout(n.ready);else if(z.addEventListener)z.addEventListener("DOMContentLoaded",K,!1),a.addEventListener("load",K,!1);else{z.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&z.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!n.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}J(),n.ready()}}()}return I.promise(b)};var L="undefined",M;for(M in n(l))break;l.ownLast="0"!==M,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c=z.getElementsByTagName("body")[0];c&&(a=z.createElement("div"),a.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",b=z.createElement("div"),c.appendChild(a).appendChild(b),typeof b.style.zoom!==L&&(b.style.cssText="border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1",(l.inlineBlockNeedsLayout=3===b.offsetWidth)&&(c.style.zoom=1)),c.removeChild(a),a=b=null)}),function(){var a=z.createElement("div");if(null==l.deleteExpando){l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}}a=null}(),n.acceptData=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(n.acceptData(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f
-}}function S(a,b,c){if(n.acceptData(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d]));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=n._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var T=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,U=["Top","Right","Bottom","Left"],V=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)},W=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},X=/^(?:checkbox|radio)$/i;!function(){var a=z.createDocumentFragment(),b=z.createElement("div"),c=z.createElement("input");if(b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a>",l.leadingWhitespace=3===b.firstChild.nodeType,l.tbody=!b.getElementsByTagName("tbody").length,l.htmlSerialize=!!b.getElementsByTagName("link").length,l.html5Clone="<:nav></:nav>"!==z.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,a.appendChild(c),l.appendChecked=c.checked,b.innerHTML="<textarea>x</textarea>",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,a.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){l.noCloneEvent=!1}),b.cloneNode(!0).click()),null==l.deleteExpando){l.deleteExpando=!0;try{delete b.test}catch(d){l.deleteExpando=!1}}a=b=c=null}(),function(){var b,c,d=z.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),l[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var Y=/^(?:input|select|textarea)$/i,Z=/^key/,$=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,ab=/^([^.]*)(?:\.(.+)|)$/;function bb(){return!0}function cb(){return!1}function db(){try{return z.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof n===L||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(F)||[""],h=b.length;while(h--)f=ab.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(F)||[""],j=b.length;while(j--)if(h=ab.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,m,o=[d||z],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||z,3!==d.nodeType&&8!==d.nodeType&&!_.test(p+n.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[n.expando]?b:new n.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),k=n.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!n.isWindow(d)){for(i=k.delegateType||p,_.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||z)&&o.push(l.defaultView||l.parentWindow||a)}m=0;while((h=o[m++])&&!b.isPropagationStopped())b.type=m>1?i:k.bindType||p,f=(n._data(h,"events")||{})[b.type]&&n._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&n.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&n.acceptData(d)&&g&&d[p]&&!n.isWindow(d)){l=d[g],l&&(d[g]=null),n.event.triggered=p;try{d[p]()}catch(r){}n.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((n.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?n(c,this).index(i)>=0:n.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[n.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=$.test(e)?this.mouseHooks:Z.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new n.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||z),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||z,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==db()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===db()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return n.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=n.extend(new n.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?n.event.trigger(e,null,b):n.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=z.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===L&&(a[d]=null),a.detachEvent(d,c))},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&(a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault())?bb:cb):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={isDefaultPrevented:cb,isPropagationStopped:cb,isImmediatePropagationStopped:cb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=bb,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=bb,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!n.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),l.submitBubbles||(n.event.special.submit={setup:function(){return n.nodeName(this,"form")?!1:void n.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=n.nodeName(b,"input")||n.nodeName(b,"button")?b.form:void 0;c&&!n._data(c,"submitBubbles")&&(n.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),n._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&n.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return n.nodeName(this,"form")?!1:void n.event.remove(this,"._submit")}}),l.changeBubbles||(n.event.special.change={setup:function(){return Y.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(n.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),n.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),n.event.simulate("change",this,a,!0)})),!1):void n.event.add(this,"beforeactivate._change",function(a){var b=a.target;Y.test(b.nodeName)&&!n._data(b,"changeBubbles")&&(n.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||n.event.simulate("change",this.parentNode,a,!0)}),n._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return n.event.remove(this,"._change"),!Y.test(this.nodeName)}}),l.focusinBubbles||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a),!0)};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=n._data(d,b);e||d.addEventListener(a,c,!0),n._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=n._data(d,b)-1;e?n._data(d,b,e):(d.removeEventListener(a,c,!0),n._removeData(d,b))}}}),n.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=cb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return n().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=n.guid++)),this.each(function(){n.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=cb),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});function eb(a){var b=fb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var fb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gb=/ jQuery\d+="(?:null|\d+)"/g,hb=new RegExp("<(?:"+fb+")[\\s/>]","i"),ib=/^\s+/,jb=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,kb=/<([\w:]+)/,lb=/<tbody/i,mb=/<|&#?\w+;/,nb=/<(?:script|style|link)/i,ob=/checked\s*(?:[^=]|=\s*.checked.)/i,pb=/^$|\/(?:java|ecma)script/i,qb=/^true\/(.*)/,rb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,sb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:l.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},tb=eb(z),ub=tb.appendChild(z.createElement("div"));sb.optgroup=sb.option,sb.tbody=sb.tfoot=sb.colgroup=sb.caption=sb.thead,sb.th=sb.td;function vb(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==L?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==L?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,vb(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function wb(a){X.test(a.type)&&(a.defaultChecked=a.checked)}function xb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function yb(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function zb(a){var b=qb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ab(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}function Bb(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Cb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(yb(b).text=a.text,zb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&X.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}n.extend({clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!hb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ub.innerHTML=a.outerHTML,ub.removeChild(f=ub.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=vb(f),h=vb(a),g=0;null!=(e=h[g]);++g)d[g]&&Cb(e,d[g]);if(b)if(c)for(h=h||vb(a),d=d||vb(f),g=0;null!=(e=h[g]);g++)Bb(e,d[g]);else Bb(a,f);return d=vb(f,"script"),d.length>0&&Ab(d,!i&&vb(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k,m=a.length,o=eb(b),p=[],q=0;m>q;q++)if(f=a[q],f||0===f)if("object"===n.type(f))n.merge(p,f.nodeType?[f]:f);else if(mb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(kb.exec(f)||["",""])[1].toLowerCase(),k=sb[i]||sb._default,h.innerHTML=k[1]+f.replace(jb,"<$1></$2>")+k[2],e=k[0];while(e--)h=h.lastChild;if(!l.leadingWhitespace&&ib.test(f)&&p.push(b.createTextNode(ib.exec(f)[0])),!l.tbody){f="table"!==i||lb.test(f)?"<table>"!==k[1]||lb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)n.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}n.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),l.appendChecked||n.grep(vb(p,"input"),wb),q=0;while(f=p[q++])if((!d||-1===n.inArray(f,d))&&(g=n.contains(f.ownerDocument,f),h=vb(o.appendChild(f),"script"),g&&Ab(h),c)){e=0;while(f=h[e++])pb.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.deleteExpando,m=n.event.special;null!=(d=a[h]);h++)if((b||n.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k?delete d[i]:typeof d.removeAttribute!==L?d.removeAttribute(i):d[i]=null,c.push(f))}}}),n.fn.extend({text:function(a){return W(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||z).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(vb(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&Ab(vb(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(vb(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return W(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(gb,""):void 0;if(!("string"!=typeof a||nb.test(a)||!l.htmlSerialize&&hb.test(a)||!l.leadingWhitespace&&ib.test(a)||sb[(kb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(jb,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(vb(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(vb(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,k=this.length,m=this,o=k-1,p=a[0],q=n.isFunction(p);if(q||k>1&&"string"==typeof p&&!l.checkClone&&ob.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(k&&(i=n.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=n.map(vb(i,"script"),yb),f=g.length;k>j;j++)d=i,j!==o&&(d=n.clone(d,!0,!0),f&&n.merge(g,vb(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,n.map(g,zb),j=0;f>j;j++)d=g[j],pb.test(d.type||"")&&!n._data(d,"globalEval")&&n.contains(h,d)&&(d.src?n._evalUrl&&n._evalUrl(d.src):n.globalEval((d.text||d.textContent||d.innerHTML||"").replace(rb,"")));i=c=null}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],g=n(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Db,Eb={};function Fb(b,c){var d=n(c.createElement(b)).appendTo(c.body),e=a.getDefaultComputedStyle?a.getDefaultComputedStyle(d[0]).display:n.css(d[0],"display");return d.detach(),e}function Gb(a){var b=z,c=Eb[a];return c||(c=Fb(a,b),"none"!==c&&c||(Db=(Db||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Db[0].contentWindow||Db[0].contentDocument).document,b.write(),b.close(),c=Fb(a,b),Db.detach()),Eb[a]=c),c}!function(){var a,b,c=z.createElement("div"),d="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;padding:0;margin:0;border:0";c.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=c.getElementsByTagName("a")[0],a.style.cssText="float:left;opacity:.5",l.opacity=/^0.5/.test(a.style.opacity),l.cssFloat=!!a.style.cssFloat,c.style.backgroundClip="content-box",c.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===c.style.backgroundClip,a=c=null,l.shrinkWrapBlocks=function(){var a,c,e,f;if(null==b){if(a=z.getElementsByTagName("body")[0],!a)return;f="border:0;width:0;height:0;position:absolute;top:0;left:-9999px",c=z.createElement("div"),e=z.createElement("div"),a.appendChild(c).appendChild(e),b=!1,typeof e.style.zoom!==L&&(e.style.cssText=d+";width:1px;padding:1px;zoom:1",e.innerHTML="<div></div>",e.firstChild.style.width="5px",b=3!==e.offsetWidth),a.removeChild(c),a=c=e=null}return b}}();var Hb=/^margin/,Ib=new RegExp("^("+T+")(?!px)[a-z%]+$","i"),Jb,Kb,Lb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Jb=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Kb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Jb(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),Ib.test(g)&&Hb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):z.documentElement.currentStyle&&(Jb=function(a){return a.currentStyle},Kb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Jb(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Ib.test(g)&&!Lb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Mb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h=z.createElement("div"),i="border:0;width:0;height:0;position:absolute;top:0;left:-9999px",j="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;padding:0;margin:0;border:0";h.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",b=h.getElementsByTagName("a")[0],b.style.cssText="float:left;opacity:.5",l.opacity=/^0.5/.test(b.style.opacity),l.cssFloat=!!b.style.cssFloat,h.style.backgroundClip="content-box",h.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===h.style.backgroundClip,b=h=null,n.extend(l,{reliableHiddenOffsets:function(){if(null!=c)return c;var a,b,d,e=z.createElement("div"),f=z.getElementsByTagName("body")[0];if(f)return e.setAttribute("className","t"),e.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=z.createElement("div"),a.style.cssText=i,f.appendChild(a).appendChild(e),e.innerHTML="<table><tr><td></td><td>t</td></tr></table>",b=e.getElementsByTagName("td"),b[0].style.cssText="padding:0;margin:0;border:0;display:none",d=0===b[0].offsetHeight,b[0].style.display="",b[1].style.display="none",c=d&&0===b[0].offsetHeight,f.removeChild(a),e=f=null,c},boxSizing:function(){return null==d&&k(),d},boxSizingReliable:function(){return null==e&&k(),e},pixelPosition:function(){return null==f&&k(),f},reliableMarginRight:function(){var b,c,d,e;if(null==g&&a.getComputedStyle){if(b=z.getElementsByTagName("body")[0],!b)return;c=z.createElement("div"),d=z.createElement("div"),c.style.cssText=i,b.appendChild(c).appendChild(d),e=d.appendChild(z.createElement("div")),e.style.cssText=d.style.cssText=j,e.style.marginRight=e.style.width="0",d.style.width="1px",g=!parseFloat((a.getComputedStyle(e,null)||{}).marginRight),b.removeChild(c)}return g}});function k(){var b,c,h=z.getElementsByTagName("body")[0];h&&(b=z.createElement("div"),c=z.createElement("div"),b.style.cssText=i,h.appendChild(b).appendChild(c),c.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:absolute;display:block;padding:1px;border:1px;width:4px;margin-top:1%;top:1%",n.swap(h,null!=h.style.zoom?{zoom:1}:{},function(){d=4===c.offsetWidth}),e=!0,f=!1,g=!0,a.getComputedStyle&&(f="1%"!==(a.getComputedStyle(c,null)||{}).top,e="4px"===(a.getComputedStyle(c,null)||{width:"4px"}).width),h.removeChild(b),c=h=null)}}(),n.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Nb=/alpha\([^)]*\)/i,Ob=/opacity\s*=\s*([^)]*)/,Pb=/^(none|table(?!-c[ea]).+)/,Qb=new RegExp("^("+T+")(.*)$","i"),Rb=new RegExp("^([+-])=("+T+")","i"),Sb={position:"absolute",visibility:"hidden",display:"block"},Tb={letterSpacing:0,fontWeight:400},Ub=["Webkit","O","Moz","ms"];function Vb(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Ub.length;while(e--)if(b=Ub[e]+c,b in a)return b;return d}function Wb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=n._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&V(d)&&(f[g]=n._data(d,"olddisplay",Gb(d.nodeName)))):f[g]||(e=V(d),(c&&"none"!==c||!e)&&n._data(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Xb(a,b,c){var d=Qb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Yb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+U[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+U[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+U[f]+"Width",!0,e))):(g+=n.css(a,"padding"+U[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+U[f]+"Width",!0,e)));return g}function Zb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Jb(a),g=l.boxSizing()&&"border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Kb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Ib.test(e))return e;d=g&&(l.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Yb(a,b,c||(g?"border":"content"),d,f)+"px"}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Kb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":l.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;if(b=n.cssProps[h]||(n.cssProps[h]=Vb(i,h)),g=n.cssHooks[b]||n.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Rb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||n.cssNumber[h]||(c+="px"),l.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]="",i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Vb(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Kb(a,b,d)),"normal"===f&&b in Tb&&(f=Tb[b]),""===c||c?(e=parseFloat(f),c===!0||n.isNumeric(e)?e||0:f):f}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?0===a.offsetWidth&&Pb.test(n.css(a,"display"))?n.swap(a,Sb,function(){return Zb(a,b,d)}):Zb(a,b,d):void 0},set:function(a,c,d){var e=d&&Jb(a);return Xb(a,c,d?Yb(a,b,d,l.boxSizing()&&"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),l.opacity||(n.cssHooks.opacity={get:function(a,b){return Ob.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=n.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===n.trim(f.replace(Nb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Nb.test(f)?f.replace(Nb,e):f+" "+e)}}),n.cssHooks.marginRight=Mb(l.reliableMarginRight,function(a,b){return b?n.swap(a,{display:"inline-block"},Kb,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+U[d]+b]=f[d]||f[d-2]||f[0];return e}},Hb.test(a)||(n.cssHooks[a+b].set=Xb)}),n.fn.extend({css:function(a,b){return W(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Jb(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)
-},a,b,arguments.length>1)},show:function(){return Wb(this,!0)},hide:function(){return Wb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){V(this)?n(this).show():n(this).hide()})}});function $b(a,b,c,d,e){return new $b.prototype.init(a,b,c,d,e)}n.Tween=$b,$b.prototype={constructor:$b,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=$b.propHooks[this.prop];return a&&a.get?a.get(this):$b.propHooks._default.get(this)},run:function(a){var b,c=$b.propHooks[this.prop];return this.pos=b=this.options.duration?n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):$b.propHooks._default.set(this),this}},$b.prototype.init.prototype=$b.prototype,$b.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},$b.propHooks.scrollTop=$b.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},n.fx=$b.prototype.init,n.fx.step={};var _b,ac,bc=/^(?:toggle|show|hide)$/,cc=new RegExp("^(?:([+-])=|)("+T+")([a-z%]*)$","i"),dc=/queueHooks$/,ec=[jc],fc={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=cc.exec(b),f=e&&e[3]||(n.cssNumber[a]?"":"px"),g=(n.cssNumber[a]||"px"!==f&&+d)&&cc.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function gc(){return setTimeout(function(){_b=void 0}),_b=n.now()}function hc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=U[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function ic(a,b,c){for(var d,e=(fc[b]||[]).concat(fc["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function jc(a,b,c){var d,e,f,g,h,i,j,k,m=this,o={},p=a.style,q=a.nodeType&&V(a),r=n._data(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,m.always(function(){m.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=n.css(a,"display"),k=Gb(a.nodeName),"none"===j&&(j=k),"inline"===j&&"none"===n.css(a,"float")&&(l.inlineBlockNeedsLayout&&"inline"!==k?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",l.shrinkWrapBlocks()||m.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],bc.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||n.style(a,d)}if(!n.isEmptyObject(o)){r?"hidden"in r&&(q=r.hidden):r=n._data(a,"fxshow",{}),f&&(r.hidden=!q),q?n(a).show():m.done(function(){n(a).hide()}),m.done(function(){var b;n._removeData(a,"fxshow");for(b in o)n.style(a,b,o[b])});for(d in o)g=ic(q?r[d]:0,d,m),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function kc(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function lc(a,b,c){var d,e,f=0,g=ec.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=_b||gc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:_b||gc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(kc(k,j.opts.specialEasing);g>f;f++)if(d=ec[f].call(j,a,k,j.opts))return d;return n.map(k,ic,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(lc,{tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],fc[c]=fc[c]||[],fc[c].unshift(b)},prefilter:function(a,b){b?ec.unshift(a):ec.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(V).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=lc(this,n.extend({},a),f);(e||n._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=n._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&dc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=n._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(hc(b,!0),a,d,e)}}),n.each({slideDown:hc("show"),slideUp:hc("hide"),slideToggle:hc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=n.timers,c=0;for(_b=n.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||n.fx.stop(),_b=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){ac||(ac=setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){clearInterval(ac),ac=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(a,b){return a=n.fx?n.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e=z.createElement("div");e.setAttribute("className","t"),e.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=e.getElementsByTagName("a")[0],c=z.createElement("select"),d=c.appendChild(z.createElement("option")),b=e.getElementsByTagName("input")[0],a.style.cssText="top:1px",l.getSetAttribute="t"!==e.className,l.style=/top/.test(a.getAttribute("style")),l.hrefNormalized="/a"===a.getAttribute("href"),l.checkOn=!!b.value,l.optSelected=d.selected,l.enctype=!!z.createElement("form").enctype,c.disabled=!0,l.optDisabled=!d.disabled,b=z.createElement("input"),b.setAttribute("value",""),l.input=""===b.getAttribute("value"),b.value="t",b.setAttribute("type","radio"),l.radioValue="t"===b.value,a=b=c=d=e=null}();var mc=/\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(mc,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.text(a)}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(l.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)if(d=e[g],n.inArray(n.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>=0:void 0}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var nc,oc,pc=n.expr.attrHandle,qc=/^(?:checked|selected)$/i,rc=l.getSetAttribute,sc=l.input;n.fn.extend({attr:function(a,b){return W(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===L?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?oc:nc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void n.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(F);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)?sc&&rc||!qc.test(c)?a[d]=!1:a[n.camelCase("default-"+c)]=a[d]=!1:n.attr(a,c,""),a.removeAttribute(rc?c:d)},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),oc={set:function(a,b,c){return b===!1?n.removeAttr(a,c):sc&&rc||!qc.test(c)?a.setAttribute(!rc&&n.propFix[c]||c,c):a[n.camelCase("default-"+c)]=a[c]=!0,c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=pc[b]||n.find.attr;pc[b]=sc&&rc||!qc.test(b)?function(a,b,d){var e,f;return d||(f=pc[b],pc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,pc[b]=f),e}:function(a,b,c){return c?void 0:a[n.camelCase("default-"+b)]?b.toLowerCase():null}}),sc&&rc||(n.attrHooks.value={set:function(a,b,c){return n.nodeName(a,"input")?void(a.defaultValue=b):nc&&nc.set(a,b,c)}}),rc||(nc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},pc.id=pc.name=pc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},n.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:nc.set},n.attrHooks.contenteditable={set:function(a,b,c){nc.set(a,""===b?!1:b,c)}},n.each(["width","height"],function(a,b){n.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),l.style||(n.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var tc=/^(?:input|select|textarea|button|object)$/i,uc=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return W(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return a=n.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),n.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):tc.test(a.nodeName)||uc.test(a.nodeName)&&a.href?0:-1}}}}),l.hrefNormalized||n.each(["href","src"],function(a,b){n.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this}),l.enctype||(n.propFix.enctype="encoding");var vc=/[\t\r\n\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(F)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(vc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(F)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(vc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?n.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=n(this),f=a.match(F)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===L||"boolean"===c)&&(this.className&&n._data(this,"__className__",this.className),this.className=this.className||a===!1?"":n._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(vc," ").indexOf(b)>=0)return!0;return!1}}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var wc=n.now(),xc=/\?/,yc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;n.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=n.trim(b+"");return e&&!n.trim(e.replace(yc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():n.error("Invalid JSON: "+b)},n.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var zc,Ac,Bc=/#.*$/,Cc=/([?&])_=[^&]*/,Dc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Ec=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Fc=/^(?:GET|HEAD)$/,Gc=/^\/\//,Hc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Ic={},Jc={},Kc="*/".concat("*");try{Ac=location.href}catch(Lc){Ac=z.createElement("a"),Ac.href="",Ac=Ac.href}zc=Hc.exec(Ac.toLowerCase())||[];function Mc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(F)||[];if(n.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Nc(a,b,c,d){var e={},f=a===Jc;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Oc(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&n.extend(!0,a,c),a}function Pc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Qc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ac,type:"GET",isLocal:Ec.test(zc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Kc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Oc(Oc(a,n.ajaxSettings),b):Oc(n.ajaxSettings,a)},ajaxPrefilter:Mc(Ic),ajaxTransport:Mc(Jc),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Dc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||Ac)+"").replace(Bc,"").replace(Gc,zc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||"*").toLowerCase().match(F)||[""],null==k.crossDomain&&(c=Hc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===zc[1]&&c[2]===zc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(zc[3]||("http:"===zc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),Nc(Ic,k,b,v),2===t)return v;h=k.global,h&&0===n.active++&&n.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Fc.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(xc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Cc.test(e)?e.replace(Cc,"$1_="+wc++):e+(xc.test(e)?"&":"?")+"_="+wc++)),k.ifModified&&(n.lastModified[e]&&v.setRequestHeader("If-Modified-Since",n.lastModified[e]),n.etag[e]&&v.setRequestHeader("If-None-Match",n.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Kc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Nc(Jc,k,b,v)){v.readyState=1,h&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Pc(k,v,c)),u=Qc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(n.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(n.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(m.trigger("ajaxComplete",[v,k]),--n.active||n.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){if(n.isFunction(a))return this.each(function(b){n(this).wrapAll(a.call(this,b))});if(this[0]){var b=n(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}:function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!l.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||n.css(a,"display"))},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var Rc=/%20/g,Sc=/\[\]$/,Tc=/\r?\n/g,Uc=/^(?:submit|button|image|reset|file)$/i,Vc=/^(?:input|select|textarea|keygen)/i;function Wc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||Sc.test(a)?d(a,e):Wc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Wc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Wc(c,a[c],b,e);return d.join("&").replace(Rc,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&Vc.test(this.nodeName)&&!Uc.test(a)&&(this.checked||!X.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(Tc,"\r\n")}}):{name:b.name,value:c.replace(Tc,"\r\n")}}).get()}}),n.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&$c()||_c()}:$c;var Xc=0,Yc={},Zc=n.ajaxSettings.xhr();a.ActiveXObject&&n(a).on("unload",function(){for(var a in Yc)Yc[a](void 0,!0)}),l.cors=!!Zc&&"withCredentials"in Zc,Zc=l.ajax=!!Zc,Zc&&n.ajaxTransport(function(a){if(!a.crossDomain||l.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Xc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Yc[g],b=void 0,f.onreadystatechange=n.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Yc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function $c(){try{return new a.XMLHttpRequest}catch(b){}}function _c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=z.head||n("head")[0]||z.documentElement;return{send:function(d,e){b=z.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var ad=[],bd=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=ad.pop()||n.expando+"_"+wc++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(bd.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&bd.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(bd,"$1"+e):b.jsonp!==!1&&(b.url+=(xc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,ad.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||z;var d=v.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=n.buildFragment([a],b,e),e&&e.length&&n(e).remove(),n.merge([],d.childNodes))};var cd=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&cd)return cd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=a.slice(h,a.length),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&n.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};var dd=a.document.documentElement;function ed(a){return n.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&n.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,n.contains(b,e)?(typeof e.getBoundingClientRect!==L&&(d=e.getBoundingClientRect()),c=ed(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===n.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(c=a.offset()),c.top+=n.css(a[0],"borderTopWidth",!0),c.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-n.css(d,"marginTop",!0),left:b.left-c.left-n.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||dd;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||dd})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);n.fn[a]=function(d){return W(this,function(a,d,e){var f=ed(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?n(f).scrollLeft():e,c?e:n(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=Mb(l.pixelPosition,function(a,c){return c?(c=Kb(a,b),Ib.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return W(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var fd=a.jQuery,gd=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=gd),b&&a.jQuery===n&&(a.jQuery=fd),n},typeof b===L&&(a.jQuery=a.$=n),n});
\ No newline at end of file
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/lightbox.min.js b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/lightbox.min.js
deleted file mode 100644
index 25cf95e84..000000000
--- a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/lightbox.min.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/**
- * Lightbox v2.7.1
- * by Lokesh Dhakar - http://lokeshdhakar.com/projects/lightbox2/
- *
- * @license http://creativecommons.org/licenses/by/2.5/
- * - Free for use in both personal and commercial projects
- * - Attribution requires leaving author name, author link, and the license info intact
- */
-(function(){var a=jQuery,b=function(){function a(){this.fadeDuration=500,this.fitImagesInViewport=!0,this.resizeDuration=700,this.positionFromTop=50,this.showImageNumberLabel=!0,this.alwaysShowNavOnTouchDevices=!1,this.wrapAround=!1}return a.prototype.albumLabel=function(a,b){return"Image "+a+" of "+b},a}(),c=function(){function b(a){this.options=a,this.album=[],this.currentImageIndex=void 0,this.init()}return b.prototype.init=function(){this.enable(),this.build()},b.prototype.enable=function(){var b=this;a("body").on("click","a[rel^=lightbox], area[rel^=lightbox], a[data-lightbox], area[data-lightbox]",function(c){return b.start(a(c.currentTarget)),!1})},b.prototype.build=function(){var b=this;a("<div id='lightboxOverlay' class='lightboxOverlay'></div><div id='lightbox' class='lightbox'><div class='lb-outerContainer'><div class='lb-container'><img class='lb-image' src='' /><div class='lb-nav'><a class='lb-prev' href='' ></a><a class='lb-next' href='' ></a></div><div class='lb-loader'><a class='lb-cancel'></a></div></div></div><div class='lb-dataContainer'><div class='lb-data'><div class='lb-details'><span class='lb-caption'></span><span class='lb-number'></span></div><div class='lb-closeContainer'><a class='lb-close'></a></div></div></div></div>").appendTo(a("body")),this.$lightbox=a("#lightbox"),this.$overlay=a("#lightboxOverlay"),this.$outerContainer=this.$lightbox.find(".lb-outerContainer"),this.$container=this.$lightbox.find(".lb-container"),this.containerTopPadding=parseInt(this.$container.css("padding-top"),10),this.containerRightPadding=parseInt(this.$container.css("padding-right"),10),this.containerBottomPadding=parseInt(this.$container.css("padding-bottom"),10),this.containerLeftPadding=parseInt(this.$container.css("padding-left"),10),this.$overlay.hide().on("click",function(){return b.end(),!1}),this.$lightbox.hide().on("click",function(c){return"lightbox"===a(c.target).attr("id")&&b.end(),!1}),this.$outerContainer.on("click",function(c){return"lightbox"===a(c.target).attr("id")&&b.end(),!1}),this.$lightbox.find(".lb-prev").on("click",function(){return b.changeImage(0===b.currentImageIndex?b.album.length-1:b.currentImageIndex-1),!1}),this.$lightbox.find(".lb-next").on("click",function(){return b.changeImage(b.currentImageIndex===b.album.length-1?0:b.currentImageIndex+1),!1}),this.$lightbox.find(".lb-loader, .lb-close").on("click",function(){return b.end(),!1})},b.prototype.start=function(b){function c(a){d.album.push({link:a.attr("href"),title:a.attr("data-title")||a.attr("title")})}var d=this,e=a(window);e.on("resize",a.proxy(this.sizeOverlay,this)),a("select, object, embed").css({visibility:"hidden"}),this.sizeOverlay(),this.album=[];var f,g=0,h=b.attr("data-lightbox");if(h){f=a(b.prop("tagName")+'[data-lightbox="'+h+'"]');for(var i=0;i<f.length;i=++i)c(a(f[i])),f[i]===b[0]&&(g=i)}else if("lightbox"===b.attr("rel"))c(b);else{f=a(b.prop("tagName")+'[rel="'+b.attr("rel")+'"]');for(var j=0;j<f.length;j=++j)c(a(f[j])),f[j]===b[0]&&(g=j)}var k=e.scrollTop()+this.options.positionFromTop,l=e.scrollLeft();this.$lightbox.css({top:k+"px",left:l+"px"}).fadeIn(this.options.fadeDuration),this.changeImage(g)},b.prototype.changeImage=function(b){var c=this;this.disableKeyboardNav();var d=this.$lightbox.find(".lb-image");this.$overlay.fadeIn(this.options.fadeDuration),a(".lb-loader").fadeIn("slow"),this.$lightbox.find(".lb-image, .lb-nav, .lb-prev, .lb-next, .lb-dataContainer, .lb-numbers, .lb-caption").hide(),this.$outerContainer.addClass("animating");var e=new Image;e.onload=function(){var f,g,h,i,j,k,l;d.attr("src",c.album[b].link),f=a(e),d.width(e.width),d.height(e.height),c.options.fitImagesInViewport&&(l=a(window).width(),k=a(window).height(),j=l-c.containerLeftPadding-c.containerRightPadding-20,i=k-c.containerTopPadding-c.containerBottomPadding-120,(e.width>j||e.height>i)&&(e.width/j>e.height/i?(h=j,g=parseInt(e.height/(e.width/h),10),d.width(h),d.height(g)):(g=i,h=parseInt(e.width/(e.height/g),10),d.width(h),d.height(g)))),c.sizeContainer(d.width(),d.height())},e.src=this.album[b].link,this.currentImageIndex=b},b.prototype.sizeOverlay=function(){this.$overlay.width(a(window).width()).height(a(document).height())},b.prototype.sizeContainer=function(a,b){function c(){d.$lightbox.find(".lb-dataContainer").width(g),d.$lightbox.find(".lb-prevLink").height(h),d.$lightbox.find(".lb-nextLink").height(h),d.showImage()}var d=this,e=this.$outerContainer.outerWidth(),f=this.$outerContainer.outerHeight(),g=a+this.containerLeftPadding+this.containerRightPadding,h=b+this.containerTopPadding+this.containerBottomPadding;e!==g||f!==h?this.$outerContainer.animate({width:g,height:h},this.options.resizeDuration,"swing",function(){c()}):c()},b.prototype.showImage=function(){this.$lightbox.find(".lb-loader").hide(),this.$lightbox.find(".lb-image").fadeIn("slow"),this.updateNav(),this.updateDetails(),this.preloadNeighboringImages(),this.enableKeyboardNav()},b.prototype.updateNav=function(){var a=!1;try{document.createEvent("TouchEvent"),a=this.options.alwaysShowNavOnTouchDevices?!0:!1}catch(b){}this.$lightbox.find(".lb-nav").show(),this.album.length>1&&(this.options.wrapAround?(a&&this.$lightbox.find(".lb-prev, .lb-next").css("opacity","1"),this.$lightbox.find(".lb-prev, .lb-next").show()):(this.currentImageIndex>0&&(this.$lightbox.find(".lb-prev").show(),a&&this.$lightbox.find(".lb-prev").css("opacity","1")),this.currentImageIndex<this.album.length-1&&(this.$lightbox.find(".lb-next").show(),a&&this.$lightbox.find(".lb-next").css("opacity","1"))))},b.prototype.updateDetails=function(){var b=this;"undefined"!=typeof this.album[this.currentImageIndex].title&&""!==this.album[this.currentImageIndex].title&&this.$lightbox.find(".lb-caption").html(this.album[this.currentImageIndex].title).fadeIn("fast").find("a").on("click",function(){location.href=a(this).attr("href")}),this.album.length>1&&this.options.showImageNumberLabel?this.$lightbox.find(".lb-number").text(this.options.albumLabel(this.currentImageIndex+1,this.album.length)).fadeIn("fast"):this.$lightbox.find(".lb-number").hide(),this.$outerContainer.removeClass("animating"),this.$lightbox.find(".lb-dataContainer").fadeIn(this.options.resizeDuration,function(){return b.sizeOverlay()})},b.prototype.preloadNeighboringImages=function(){if(this.album.length>this.currentImageIndex+1){var a=new Image;a.src=this.album[this.currentImageIndex+1].link}if(this.currentImageIndex>0){var b=new Image;b.src=this.album[this.currentImageIndex-1].link}},b.prototype.enableKeyboardNav=function(){a(document).on("keyup.keyboard",a.proxy(this.keyboardAction,this))},b.prototype.disableKeyboardNav=function(){a(document).off(".keyboard")},b.prototype.keyboardAction=function(a){var b=27,c=37,d=39,e=a.keyCode,f=String.fromCharCode(e).toLowerCase();e===b||f.match(/x|o|c/)?this.end():"p"===f||e===c?0!==this.currentImageIndex?this.changeImage(this.currentImageIndex-1):this.options.wrapAround&&this.album.length>1&&this.changeImage(this.album.length-1):("n"===f||e===d)&&(this.currentImageIndex!==this.album.length-1?this.changeImage(this.currentImageIndex+1):this.options.wrapAround&&this.album.length>1&&this.changeImage(0))},b.prototype.end=function(){this.disableKeyboardNav(),a(window).off("resize",this.sizeOverlay),this.$lightbox.fadeOut(this.options.fadeDuration),this.$overlay.fadeOut(this.options.fadeDuration),a("select, object, embed").css({visibility:"visible"})},b}();a(function(){{var a=new b;new c(a)}})}).call(this);
-//# sourceMappingURL=lightbox.min.map
\ No newline at end of file
diff --git a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/lightbox.min.map b/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/lightbox.min.map
deleted file mode 100644
index fa32e3ac2..000000000
--- a/doc/_static/sphinxcontrib-images/LightBox2/lightbox2/js/lightbox.min.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"lightbox.min.js","sources":["lightbox.js"],"names":["$","jQuery","LightboxOptions","this","fadeDuration","fitImagesInViewport","resizeDuration","positionFromTop","showImageNumberLabel","alwaysShowNavOnTouchDevices","wrapAround","prototype","albumLabel","curImageNum","albumSize","Lightbox","options","album","currentImageIndex","init","enable","build","self","on","event","start","currentTarget","appendTo","$lightbox","$overlay","$outerContainer","find","$container","containerTopPadding","parseInt","css","containerRightPadding","containerBottomPadding","containerLeftPadding","hide","end","target","attr","changeImage","length","$link","addToAlbum","push","link","title","$window","window","proxy","sizeOverlay","visibility","$links","imageNumber","dataLightboxValue","prop","i","j","top","scrollTop","left","scrollLeft","fadeIn","disableKeyboardNav","$image","addClass","preloader","Image","onload","$preloader","imageHeight","imageWidth","maxImageHeight","maxImageWidth","windowHeight","windowWidth","width","height","sizeContainer","src","document","postResize","newWidth","newHeight","showImage","oldWidth","outerWidth","oldHeight","outerHeight","animate","updateNav","updateDetails","preloadNeighboringImages","enableKeyboardNav","alwaysShowNav","createEvent","e","show","html","location","href","text","removeClass","preloadNext","preloadPrev","keyboardAction","off","KEYCODE_ESC","KEYCODE_LEFTARROW","KEYCODE_RIGHTARROW","keycode","keyCode","key","String","fromCharCode","toLowerCase","match","fadeOut","call"],"mappings":";;;;;;;;CASA,WAEE,GAAIA,GAAIC,OAEJC,EAAkB,WACpB,QAASA,KACPC,KAAKC,aAA8B,IACnCD,KAAKE,qBAA8B,EACnCF,KAAKG,eAA8B,IACnCH,KAAKI,gBAA8B,GACnCJ,KAAKK,sBAA8B,EACnCL,KAAKM,6BAA8B,EACnCN,KAAKO,YAA8B,EAQrC,MAJAR,GAAgBS,UAAUC,WAAa,SAASC,EAAaC,GAC3D,MAAO,SAAWD,EAAc,OAASC,GAGpCZ,KAILa,EAAW,WACb,QAASA,GAASC,GAChBb,KAAKa,QAAoBA,EACzBb,KAAKc,SACLd,KAAKe,kBAAoB,OACzBf,KAAKgB,OA2WP,MAxWAJ,GAASJ,UAAUQ,KAAO,WACxBhB,KAAKiB,SACLjB,KAAKkB,SAKPN,EAASJ,UAAUS,OAAS,WAC1B,GAAIE,GAAOnB,IACXH,GAAE,QAAQuB,GAAG,QAAS,+EAAgF,SAASC,GAE7G,MADAF,GAAKG,MAAMzB,EAAEwB,EAAME,iBACZ,KAMXX,EAASJ,UAAUU,MAAQ,WACzB,GAAIC,GAAOnB,IACXH,GAAE,mjBAAmjB2B,SAAS3B,EAAE,SAGhkBG,KAAKyB,UAAkB5B,EAAE,aACzBG,KAAK0B,SAAkB7B,EAAE,oBACzBG,KAAK2B,gBAAkB3B,KAAKyB,UAAUG,KAAK,sBAC3C5B,KAAK6B,WAAkB7B,KAAKyB,UAAUG,KAAK,iBAG3C5B,KAAK8B,oBAAsBC,SAAS/B,KAAK6B,WAAWG,IAAI,eAAgB,IACxEhC,KAAKiC,sBAAwBF,SAAS/B,KAAK6B,WAAWG,IAAI,iBAAkB,IAC5EhC,KAAKkC,uBAAyBH,SAAS/B,KAAK6B,WAAWG,IAAI,kBAAmB,IAC9EhC,KAAKmC,qBAAuBJ,SAAS/B,KAAK6B,WAAWG,IAAI,gBAAiB,IAG1EhC,KAAK0B,SAASU,OAAOhB,GAAG,QAAS,WAE/B,MADAD,GAAKkB,OACE,IAGTrC,KAAKyB,UAAUW,OAAOhB,GAAG,QAAS,SAASC,GAIzC,MAHmC,aAA/BxB,EAAEwB,EAAMiB,QAAQC,KAAK,OACvBpB,EAAKkB,OAEA,IAGTrC,KAAK2B,gBAAgBP,GAAG,QAAS,SAASC,GAIxC,MAHmC,aAA/BxB,EAAEwB,EAAMiB,QAAQC,KAAK,OACvBpB,EAAKkB,OAEA,IAGTrC,KAAKyB,UAAUG,KAAK,YAAYR,GAAG,QAAS,WAM1C,MAJED,GAAKqB,YADwB,IAA3BrB,EAAKJ,kBACUI,EAAKL,MAAM2B,OAAS,EAEpBtB,EAAKJ,kBAAoB,IAErC,IAGTf,KAAKyB,UAAUG,KAAK,YAAYR,GAAG,QAAS,WAM1C,MAJED,GAAKqB,YADHrB,EAAKJ,oBAAsBI,EAAKL,MAAM2B,OAAS,EAChC,EAEAtB,EAAKJ,kBAAoB,IAErC,IAGTf,KAAKyB,UAAUG,KAAK,yBAAyBR,GAAG,QAAS,WAEvD,MADAD,GAAKkB,OACE,KAKXzB,EAASJ,UAAUc,MAAQ,SAASoB,GAelC,QAASC,GAAWD,GAClBvB,EAAKL,MAAM8B,MACTC,KAAMH,EAAMH,KAAK,QACjBO,MAAOJ,EAAMH,KAAK,eAAiBG,EAAMH,KAAK,WAjBlD,GAAIpB,GAAUnB,KACV+C,EAAUlD,EAAEmD,OAEhBD,GAAQ3B,GAAG,SAAUvB,EAAEoD,MAAMjD,KAAKkD,YAAalD,OAE/CH,EAAE,yBAAyBmC,KACzBmB,WAAY,WAGdnD,KAAKkD,cAELlD,KAAKc,QACL,IAWIsC,GAXAC,EAAc,EAUdC,EAAoBZ,EAAMH,KAAK,gBAGnC,IAAIe,EAAmB,CACrBF,EAASvD,EAAE6C,EAAMa,KAAK,WAAa,mBAAqBD,EAAoB,KAC5E,KAAK,GAAIE,GAAI,EAAGA,EAAIJ,EAAOX,OAAQe,IAAMA,EACvCb,EAAW9C,EAAEuD,EAAOI,KAChBJ,EAAOI,KAAOd,EAAM,KACtBW,EAAcG,OAIlB,IAA0B,aAAtBd,EAAMH,KAAK,OAEbI,EAAWD,OACN,CAELU,EAASvD,EAAE6C,EAAMa,KAAK,WAAa,SAAWb,EAAMH,KAAK,OAAS,KAClE,KAAK,GAAIkB,GAAI,EAAGA,EAAIL,EAAOX,OAAQgB,IAAMA,EACvCd,EAAW9C,EAAEuD,EAAOK,KAChBL,EAAOK,KAAOf,EAAM,KACtBW,EAAcI,GAOtB,GAAIC,GAAOX,EAAQY,YAAc3D,KAAKa,QAAQT,gBAC1CwD,EAAOb,EAAQc,YACnB7D,MAAKyB,UAAUO,KACb0B,IAAKA,EAAM,KACXE,KAAMA,EAAO,OACZE,OAAO9D,KAAKa,QAAQZ,cAEvBD,KAAKwC,YAAYa,IAInBzC,EAASJ,UAAUgC,YAAc,SAASa,GACxC,GAAIlC,GAAOnB,IAEXA,MAAK+D,oBACL,IAAIC,GAAShE,KAAKyB,UAAUG,KAAK,YAEjC5B,MAAK0B,SAASoC,OAAO9D,KAAKa,QAAQZ,cAElCJ,EAAE,cAAciE,OAAO,QACvB9D,KAAKyB,UAAUG,KAAK,uFAAuFQ,OAE3GpC,KAAK2B,gBAAgBsC,SAAS,YAG9B,IAAIC,GAAY,GAAIC,MACpBD,GAAUE,OAAS,WACjB,GAAIC,GAAYC,EAAaC,EAAYC,EAAgBC,EAAeC,EAAcC,CACtFX,GAAOzB,KAAK,MAAOpB,EAAKL,MAAMuC,GAAaR,MAE3CwB,EAAaxE,EAAEqE,GAEfF,EAAOY,MAAMV,EAAUU,OACvBZ,EAAOa,OAAOX,EAAUW,QAEpB1D,EAAKN,QAAQX,sBAIfyE,EAAiB9E,EAAEmD,QAAQ4B,QAC3BF,EAAiB7E,EAAEmD,QAAQ6B,SAC3BJ,EAAiBE,EAAcxD,EAAKgB,qBAAuBhB,EAAKc,sBAAwB,GACxFuC,EAAiBE,EAAevD,EAAKW,oBAAsBX,EAAKe,uBAAyB,KAGpFgC,EAAUU,MAAQH,GAAmBP,EAAUW,OAASL,KACtDN,EAAUU,MAAQH,EAAkBP,EAAUW,OAASL,GAC1DD,EAAcE,EACdH,EAAcvC,SAASmC,EAAUW,QAAUX,EAAUU,MAAQL,GAAa,IAC1EP,EAAOY,MAAML,GACbP,EAAOa,OAAOP,KAEdA,EAAcE,EACdD,EAAaxC,SAASmC,EAAUU,OAASV,EAAUW,OAASP,GAAc,IAC1EN,EAAOY,MAAML,GACbP,EAAOa,OAAOP,MAIpBnD,EAAK2D,cAAcd,EAAOY,QAASZ,EAAOa,WAG5CX,EAAUa,IAAe/E,KAAKc,MAAMuC,GAAaR,KACjD7C,KAAKe,kBAAoBsC,GAI3BzC,EAASJ,UAAU0C,YAAc,WAC/BlD,KAAK0B,SACFkD,MAAM/E,EAAEmD,QAAQ4B,SAChBC,OAAOhF,EAAEmF,UAAUH,WAIxBjE,EAASJ,UAAUsE,cAAgB,SAASP,EAAYD,GAQtD,QAASW,KACP9D,EAAKM,UAAUG,KAAK,qBAAqBgD,MAAMM,GAC/C/D,EAAKM,UAAUG,KAAK,gBAAgBiD,OAAOM,GAC3ChE,EAAKM,UAAUG,KAAK,gBAAgBiD,OAAOM,GAC3ChE,EAAKiE,YAXP,GAAIjE,GAAOnB,KAEPqF,EAAYrF,KAAK2B,gBAAgB2D,aACjCC,EAAYvF,KAAK2B,gBAAgB6D,cACjCN,EAAYX,EAAavE,KAAKmC,qBAAuBnC,KAAKiC,sBAC1DkD,EAAYb,EAActE,KAAK8B,oBAAsB9B,KAAKkC,sBAS1DmD,KAAaH,GAAYK,IAAcJ,EACzCnF,KAAK2B,gBAAgB8D,SACnBb,MAAOM,EACPL,OAAQM,GACPnF,KAAKa,QAAQV,eAAgB,QAAS,WACvC8E,MAGFA,KAKJrE,EAASJ,UAAU4E,UAAY,WAC7BpF,KAAKyB,UAAUG,KAAK,cAAcQ,OAClCpC,KAAKyB,UAAUG,KAAK,aAAakC,OAAO,QAExC9D,KAAK0F,YACL1F,KAAK2F,gBACL3F,KAAK4F,2BACL5F,KAAK6F,qBAIPjF,EAASJ,UAAUkF,UAAY,WAI7B,GAAII,IAAgB,CACpB,KACEd,SAASe,YAAY,cACrBD,EAAiB9F,KAAKa,QAAmC,6BAAG,GAAM,EAClE,MAAOmF,IAEThG,KAAKyB,UAAUG,KAAK,WAAWqE,OAE3BjG,KAAKc,MAAM2B,OAAS,IAClBzC,KAAKa,QAAQN,YACXuF,GACF9F,KAAKyB,UAAUG,KAAK,sBAAsBI,IAAI,UAAW,KAE3DhC,KAAKyB,UAAUG,KAAK,sBAAsBqE,SAEtCjG,KAAKe,kBAAoB,IAC3Bf,KAAKyB,UAAUG,KAAK,YAAYqE,OAC5BH,GACF9F,KAAKyB,UAAUG,KAAK,YAAYI,IAAI,UAAW,MAG/ChC,KAAKe,kBAAoBf,KAAKc,MAAM2B,OAAS,IAC/CzC,KAAKyB,UAAUG,KAAK,YAAYqE,OAC5BH,GACF9F,KAAKyB,UAAUG,KAAK,YAAYI,IAAI,UAAW,SAQzDpB,EAASJ,UAAUmF,cAAgB,WACjC,GAAIxE,GAAOnB,IAI6C,oBAA7CA,MAAKc,MAAMd,KAAKe,mBAAmB+B,OAAsE,KAA7C9C,KAAKc,MAAMd,KAAKe,mBAAmB+B,OACxG9C,KAAKyB,UAAUG,KAAK,eACjBsE,KAAKlG,KAAKc,MAAMd,KAAKe,mBAAmB+B,OACxCgB,OAAO,QACPlC,KAAK,KAAKR,GAAG,QAAS,WACrB+E,SAASC,KAAOvG,EAAEG,MAAMuC,KAAK,UAI/BvC,KAAKc,MAAM2B,OAAS,GAAKzC,KAAKa,QAAQR,qBACxCL,KAAKyB,UAAUG,KAAK,cAAcyE,KAAKrG,KAAKa,QAAQJ,WAAWT,KAAKe,kBAAoB,EAAGf,KAAKc,MAAM2B,SAASqB,OAAO,QAEtH9D,KAAKyB,UAAUG,KAAK,cAAcQ,OAGpCpC,KAAK2B,gBAAgB2E,YAAY,aAEjCtG,KAAKyB,UAAUG,KAAK,qBAAqBkC,OAAO9D,KAAKa,QAAQV,eAAgB,WAC3E,MAAOgB,GAAK+B,iBAKhBtC,EAASJ,UAAUoF,yBAA2B,WAC5C,GAAI5F,KAAKc,MAAM2B,OAASzC,KAAKe,kBAAoB,EAAG,CAClD,GAAIwF,GAAc,GAAIpC,MACtBoC,GAAYxB,IAAM/E,KAAKc,MAAMd,KAAKe,kBAAoB,GAAG8B,KAE3D,GAAI7C,KAAKe,kBAAoB,EAAG,CAC9B,GAAIyF,GAAc,GAAIrC,MACtBqC,GAAYzB,IAAM/E,KAAKc,MAAMd,KAAKe,kBAAoB,GAAG8B,OAI7DjC,EAASJ,UAAUqF,kBAAoB,WACrChG,EAAEmF,UAAU5D,GAAG,iBAAkBvB,EAAEoD,MAAMjD,KAAKyG,eAAgBzG,QAGhEY,EAASJ,UAAUuD,mBAAqB,WACtClE,EAAEmF,UAAU0B,IAAI,cAGlB9F,EAASJ,UAAUiG,eAAiB,SAASpF,GAC3C,GAAIsF,GAAqB,GACrBC,EAAqB,GACrBC,EAAqB,GAErBC,EAAUzF,EAAM0F,QAChBC,EAAUC,OAAOC,aAAaJ,GAASK,aACvCL,KAAYH,GAAeK,EAAII,MAAM,SACvCpH,KAAKqC,MACY,MAAR2E,GAAeF,IAAYF,EACL,IAA3B5G,KAAKe,kBACPf,KAAKwC,YAAYxC,KAAKe,kBAAoB,GACjCf,KAAKa,QAAQN,YAAcP,KAAKc,MAAM2B,OAAS,GACxDzC,KAAKwC,YAAYxC,KAAKc,MAAM2B,OAAS,IAEtB,MAARuE,GAAeF,IAAYD,KAChC7G,KAAKe,oBAAsBf,KAAKc,MAAM2B,OAAS,EACjDzC,KAAKwC,YAAYxC,KAAKe,kBAAoB,GACjCf,KAAKa,QAAQN,YAAcP,KAAKc,MAAM2B,OAAS,GACxDzC,KAAKwC,YAAY,KAMvB5B,EAASJ,UAAU6B,IAAM,WACvBrC,KAAK+D,qBACLlE,EAAEmD,QAAQ0D,IAAI,SAAU1G,KAAKkD,aAC7BlD,KAAKyB,UAAU4F,QAAQrH,KAAKa,QAAQZ,cACpCD,KAAK0B,SAAS2F,QAAQrH,KAAKa,QAAQZ,cACnCJ,EAAE,yBAAyBmC,KACzBmB,WAAY,aAITvC,IAITf,GAAE,WACA,CAAA,GAAIgB,GAAW,GAAId,EACJ,IAAIa,GAASC,QAG7ByG,KAAKtH"}
\ No newline at end of file
diff --git a/doc/_static/underscore-1.3.1.js b/doc/_static/underscore-1.3.1.js
deleted file mode 100644
index 208d4cd89..000000000
--- a/doc/_static/underscore-1.3.1.js
+++ /dev/null
@@ -1,999 +0,0 @@
-// Underscore.js 1.3.1
-// (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
-// Underscore is freely distributable under the MIT license.
-// Portions of Underscore are inspired or borrowed from Prototype,
-// Oliver Steele's Functional, and John Resig's Micro-Templating.
-// For all details and documentation:
-// http://documentcloud.github.com/underscore
-
-(function() {
-
- // Baseline setup
- // --------------
-
- // Establish the root object, `window` in the browser, or `global` on the server.
- var root = this;
-
- // Save the previous value of the `_` variable.
- var previousUnderscore = root._;
-
- // Establish the object that gets returned to break out of a loop iteration.
- var breaker = {};
-
- // Save bytes in the minified (but not gzipped) version:
- var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
-
- // Create quick reference variables for speed access to core prototypes.
- var slice = ArrayProto.slice,
- unshift = ArrayProto.unshift,
- toString = ObjProto.toString,
- hasOwnProperty = ObjProto.hasOwnProperty;
-
- // All **ECMAScript 5** native function implementations that we hope to use
- // are declared here.
- var
- nativeForEach = ArrayProto.forEach,
- nativeMap = ArrayProto.map,
- nativeReduce = ArrayProto.reduce,
- nativeReduceRight = ArrayProto.reduceRight,
- nativeFilter = ArrayProto.filter,
- nativeEvery = ArrayProto.every,
- nativeSome = ArrayProto.some,
- nativeIndexOf = ArrayProto.indexOf,
- nativeLastIndexOf = ArrayProto.lastIndexOf,
- nativeIsArray = Array.isArray,
- nativeKeys = Object.keys,
- nativeBind = FuncProto.bind;
-
- // Create a safe reference to the Underscore object for use below.
- var _ = function(obj) { return new wrapper(obj); };
-
- // Export the Underscore object for **Node.js**, with
- // backwards-compatibility for the old `require()` API. If we're in
- // the browser, add `_` as a global object via a string identifier,
- // for Closure Compiler "advanced" mode.
- if (typeof exports !== 'undefined') {
- if (typeof module !== 'undefined' && module.exports) {
- exports = module.exports = _;
- }
- exports._ = _;
- } else {
- root['_'] = _;
- }
-
- // Current version.
- _.VERSION = '1.3.1';
-
- // Collection Functions
- // --------------------
-
- // The cornerstone, an `each` implementation, aka `forEach`.
- // Handles objects with the built-in `forEach`, arrays, and raw objects.
- // Delegates to **ECMAScript 5**'s native `forEach` if available.
- var each = _.each = _.forEach = function(obj, iterator, context) {
- if (obj == null) return;
- if (nativeForEach && obj.forEach === nativeForEach) {
- obj.forEach(iterator, context);
- } else if (obj.length === +obj.length) {
- for (var i = 0, l = obj.length; i < l; i++) {
- if (i in obj && iterator.call(context, obj[i], i, obj) === breaker) return;
- }
- } else {
- for (var key in obj) {
- if (_.has(obj, key)) {
- if (iterator.call(context, obj[key], key, obj) === breaker) return;
- }
- }
- }
- };
-
- // Return the results of applying the iterator to each element.
- // Delegates to **ECMAScript 5**'s native `map` if available.
- _.map = _.collect = function(obj, iterator, context) {
- var results = [];
- if (obj == null) return results;
- if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
- each(obj, function(value, index, list) {
- results[results.length] = iterator.call(context, value, index, list);
- });
- if (obj.length === +obj.length) results.length = obj.length;
- return results;
- };
-
- // **Reduce** builds up a single result from a list of values, aka `inject`,
- // or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available.
- _.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) {
- var initial = arguments.length > 2;
- if (obj == null) obj = [];
- if (nativeReduce && obj.reduce === nativeReduce) {
- if (context) iterator = _.bind(iterator, context);
- return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator);
- }
- each(obj, function(value, index, list) {
- if (!initial) {
- memo = value;
- initial = true;
- } else {
- memo = iterator.call(context, memo, value, index, list);
- }
- });
- if (!initial) throw new TypeError('Reduce of empty array with no initial value');
- return memo;
- };
-
- // The right-associative version of reduce, also known as `foldr`.
- // Delegates to **ECMAScript 5**'s native `reduceRight` if available.
- _.reduceRight = _.foldr = function(obj, iterator, memo, context) {
- var initial = arguments.length > 2;
- if (obj == null) obj = [];
- if (nativeReduceRight && obj.reduceRight === nativeReduceRight) {
- if (context) iterator = _.bind(iterator, context);
- return initial ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator);
- }
- var reversed = _.toArray(obj).reverse();
- if (context && !initial) iterator = _.bind(iterator, context);
- return initial ? _.reduce(reversed, iterator, memo, context) : _.reduce(reversed, iterator);
- };
-
- // Return the first value which passes a truth test. Aliased as `detect`.
- _.find = _.detect = function(obj, iterator, context) {
- var result;
- any(obj, function(value, index, list) {
- if (iterator.call(context, value, index, list)) {
- result = value;
- return true;
- }
- });
- return result;
- };
-
- // Return all the elements that pass a truth test.
- // Delegates to **ECMAScript 5**'s native `filter` if available.
- // Aliased as `select`.
- _.filter = _.select = function(obj, iterator, context) {
- var results = [];
- if (obj == null) return results;
- if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context);
- each(obj, function(value, index, list) {
- if (iterator.call(context, value, index, list)) results[results.length] = value;
- });
- return results;
- };
-
- // Return all the elements for which a truth test fails.
- _.reject = function(obj, iterator, context) {
- var results = [];
- if (obj == null) return results;
- each(obj, function(value, index, list) {
- if (!iterator.call(context, value, index, list)) results[results.length] = value;
- });
- return results;
- };
-
- // Determine whether all of the elements match a truth test.
- // Delegates to **ECMAScript 5**'s native `every` if available.
- // Aliased as `all`.
- _.every = _.all = function(obj, iterator, context) {
- var result = true;
- if (obj == null) return result;
- if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context);
- each(obj, function(value, index, list) {
- if (!(result = result && iterator.call(context, value, index, list))) return breaker;
- });
- return result;
- };
-
- // Determine if at least one element in the object matches a truth test.
- // Delegates to **ECMAScript 5**'s native `some` if available.
- // Aliased as `any`.
- var any = _.some = _.any = function(obj, iterator, context) {
- iterator || (iterator = _.identity);
- var result = false;
- if (obj == null) return result;
- if (nativeSome && obj.some === nativeSome) return obj.some(iterator, context);
- each(obj, function(value, index, list) {
- if (result || (result = iterator.call(context, value, index, list))) return breaker;
- });
- return !!result;
- };
-
- // Determine if a given value is included in the array or object using `===`.
- // Aliased as `contains`.
- _.include = _.contains = function(obj, target) {
- var found = false;
- if (obj == null) return found;
- if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1;
- found = any(obj, function(value) {
- return value === target;
- });
- return found;
- };
-
- // Invoke a method (with arguments) on every item in a collection.
- _.invoke = function(obj, method) {
- var args = slice.call(arguments, 2);
- return _.map(obj, function(value) {
- return (_.isFunction(method) ? method || value : value[method]).apply(value, args);
- });
- };
-
- // Convenience version of a common use case of `map`: fetching a property.
- _.pluck = function(obj, key) {
- return _.map(obj, function(value){ return value[key]; });
- };
-
- // Return the maximum element or (element-based computation).
- _.max = function(obj, iterator, context) {
- if (!iterator && _.isArray(obj)) return Math.max.apply(Math, obj);
- if (!iterator && _.isEmpty(obj)) return -Infinity;
- var result = {computed : -Infinity};
- each(obj, function(value, index, list) {
- var computed = iterator ? iterator.call(context, value, index, list) : value;
- computed >= result.computed && (result = {value : value, computed : computed});
- });
- return result.value;
- };
-
- // Return the minimum element (or element-based computation).
- _.min = function(obj, iterator, context) {
- if (!iterator && _.isArray(obj)) return Math.min.apply(Math, obj);
- if (!iterator && _.isEmpty(obj)) return Infinity;
- var result = {computed : Infinity};
- each(obj, function(value, index, list) {
- var computed = iterator ? iterator.call(context, value, index, list) : value;
- computed < result.computed && (result = {value : value, computed : computed});
- });
- return result.value;
- };
-
- // Shuffle an array.
- _.shuffle = function(obj) {
- var shuffled = [], rand;
- each(obj, function(value, index, list) {
- if (index == 0) {
- shuffled[0] = value;
- } else {
- rand = Math.floor(Math.random() * (index + 1));
- shuffled[index] = shuffled[rand];
- shuffled[rand] = value;
- }
- });
- return shuffled;
- };
-
- // Sort the object's values by a criterion produced by an iterator.
- _.sortBy = function(obj, iterator, context) {
- return _.pluck(_.map(obj, function(value, index, list) {
- return {
- value : value,
- criteria : iterator.call(context, value, index, list)
- };
- }).sort(function(left, right) {
- var a = left.criteria, b = right.criteria;
- return a < b ? -1 : a > b ? 1 : 0;
- }), 'value');
- };
-
- // Groups the object's values by a criterion. Pass either a string attribute
- // to group by, or a function that returns the criterion.
- _.groupBy = function(obj, val) {
- var result = {};
- var iterator = _.isFunction(val) ? val : function(obj) { return obj[val]; };
- each(obj, function(value, index) {
- var key = iterator(value, index);
- (result[key] || (result[key] = [])).push(value);
- });
- return result;
- };
-
- // Use a comparator function to figure out at what index an object should
- // be inserted so as to maintain order. Uses binary search.
- _.sortedIndex = function(array, obj, iterator) {
- iterator || (iterator = _.identity);
- var low = 0, high = array.length;
- while (low < high) {
- var mid = (low + high) >> 1;
- iterator(array[mid]) < iterator(obj) ? low = mid + 1 : high = mid;
- }
- return low;
- };
-
- // Safely convert anything iterable into a real, live array.
- _.toArray = function(iterable) {
- if (!iterable) return [];
- if (iterable.toArray) return iterable.toArray();
- if (_.isArray(iterable)) return slice.call(iterable);
- if (_.isArguments(iterable)) return slice.call(iterable);
- return _.values(iterable);
- };
-
- // Return the number of elements in an object.
- _.size = function(obj) {
- return _.toArray(obj).length;
- };
-
- // Array Functions
- // ---------------
-
- // Get the first element of an array. Passing **n** will return the first N
- // values in the array. Aliased as `head`. The **guard** check allows it to work
- // with `_.map`.
- _.first = _.head = function(array, n, guard) {
- return (n != null) && !guard ? slice.call(array, 0, n) : array[0];
- };
-
- // Returns everything but the last entry of the array. Especcialy useful on
- // the arguments object. Passing **n** will return all the values in
- // the array, excluding the last N. The **guard** check allows it to work with
- // `_.map`.
- _.initial = function(array, n, guard) {
- return slice.call(array, 0, array.length - ((n == null) || guard ? 1 : n));
- };
-
- // Get the last element of an array. Passing **n** will return the last N
- // values in the array. The **guard** check allows it to work with `_.map`.
- _.last = function(array, n, guard) {
- if ((n != null) && !guard) {
- return slice.call(array, Math.max(array.length - n, 0));
- } else {
- return array[array.length - 1];
- }
- };
-
- // Returns everything but the first entry of the array. Aliased as `tail`.
- // Especially useful on the arguments object. Passing an **index** will return
- // the rest of the values in the array from that index onward. The **guard**
- // check allows it to work with `_.map`.
- _.rest = _.tail = function(array, index, guard) {
- return slice.call(array, (index == null) || guard ? 1 : index);
- };
-
- // Trim out all falsy values from an array.
- _.compact = function(array) {
- return _.filter(array, function(value){ return !!value; });
- };
-
- // Return a completely flattened version of an array.
- _.flatten = function(array, shallow) {
- return _.reduce(array, function(memo, value) {
- if (_.isArray(value)) return memo.concat(shallow ? value : _.flatten(value));
- memo[memo.length] = value;
- return memo;
- }, []);
- };
-
- // Return a version of the array that does not contain the specified value(s).
- _.without = function(array) {
- return _.difference(array, slice.call(arguments, 1));
- };
-
- // Produce a duplicate-free version of the array. If the array has already
- // been sorted, you have the option of using a faster algorithm.
- // Aliased as `unique`.
- _.uniq = _.unique = function(array, isSorted, iterator) {
- var initial = iterator ? _.map(array, iterator) : array;
- var result = [];
- _.reduce(initial, function(memo, el, i) {
- if (0 == i || (isSorted === true ? _.last(memo) != el : !_.include(memo, el))) {
- memo[memo.length] = el;
- result[result.length] = array[i];
- }
- return memo;
- }, []);
- return result;
- };
-
- // Produce an array that contains the union: each distinct element from all of
- // the passed-in arrays.
- _.union = function() {
- return _.uniq(_.flatten(arguments, true));
- };
-
- // Produce an array that contains every item shared between all the
- // passed-in arrays. (Aliased as "intersect" for back-compat.)
- _.intersection = _.intersect = function(array) {
- var rest = slice.call(arguments, 1);
- return _.filter(_.uniq(array), function(item) {
- return _.every(rest, function(other) {
- return _.indexOf(other, item) >= 0;
- });
- });
- };
-
- // Take the difference between one array and a number of other arrays.
- // Only the elements present in just the first array will remain.
- _.difference = function(array) {
- var rest = _.flatten(slice.call(arguments, 1));
- return _.filter(array, function(value){ return !_.include(rest, value); });
- };
-
- // Zip together multiple lists into a single array -- elements that share
- // an index go together.
- _.zip = function() {
- var args = slice.call(arguments);
- var length = _.max(_.pluck(args, 'length'));
- var results = new Array(length);
- for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
- return results;
- };
-
- // If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**),
- // we need this function. Return the position of the first occurrence of an
- // item in an array, or -1 if the item is not included in the array.
- // Delegates to **ECMAScript 5**'s native `indexOf` if available.
- // If the array is large and already in sort order, pass `true`
- // for **isSorted** to use binary search.
- _.indexOf = function(array, item, isSorted) {
- if (array == null) return -1;
- var i, l;
- if (isSorted) {
- i = _.sortedIndex(array, item);
- return array[i] === item ? i : -1;
- }
- if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item);
- for (i = 0, l = array.length; i < l; i++) if (i in array && array[i] === item) return i;
- return -1;
- };
-
- // Delegates to **ECMAScript 5**'s native `lastIndexOf` if available.
- _.lastIndexOf = function(array, item) {
- if (array == null) return -1;
- if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) return array.lastIndexOf(item);
- var i = array.length;
- while (i--) if (i in array && array[i] === item) return i;
- return -1;
- };
-
- // Generate an integer Array containing an arithmetic progression. A port of
- // the native Python `range()` function. See
- // [the Python documentation](http://docs.python.org/library/functions.html#range).
- _.range = function(start, stop, step) {
- if (arguments.length <= 1) {
- stop = start || 0;
- start = 0;
- }
- step = arguments[2] || 1;
-
- var len = Math.max(Math.ceil((stop - start) / step), 0);
- var idx = 0;
- var range = new Array(len);
-
- while(idx < len) {
- range[idx++] = start;
- start += step;
- }
-
- return range;
- };
-
- // Function (ahem) Functions
- // ------------------
-
- // Reusable constructor function for prototype setting.
- var ctor = function(){};
-
- // Create a function bound to a given object (assigning `this`, and arguments,
- // optionally). Binding with arguments is also known as `curry`.
- // Delegates to **ECMAScript 5**'s native `Function.bind` if available.
- // We check for `func.bind` first, to fail fast when `func` is undefined.
- _.bind = function bind(func, context) {
- var bound, args;
- if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
- if (!_.isFunction(func)) throw new TypeError;
- args = slice.call(arguments, 2);
- return bound = function() {
- if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments)));
- ctor.prototype = func.prototype;
- var self = new ctor;
- var result = func.apply(self, args.concat(slice.call(arguments)));
- if (Object(result) === result) return result;
- return self;
- };
- };
-
- // Bind all of an object's methods to that object. Useful for ensuring that
- // all callbacks defined on an object belong to it.
- _.bindAll = function(obj) {
- var funcs = slice.call(arguments, 1);
- if (funcs.length == 0) funcs = _.functions(obj);
- each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); });
- return obj;
- };
-
- // Memoize an expensive function by storing its results.
- _.memoize = function(func, hasher) {
- var memo = {};
- hasher || (hasher = _.identity);
- return function() {
- var key = hasher.apply(this, arguments);
- return _.has(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments));
- };
- };
-
- // Delays a function for the given number of milliseconds, and then calls
- // it with the arguments supplied.
- _.delay = function(func, wait) {
- var args = slice.call(arguments, 2);
- return setTimeout(function(){ return func.apply(func, args); }, wait);
- };
-
- // Defers a function, scheduling it to run after the current call stack has
- // cleared.
- _.defer = function(func) {
- return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
- };
-
- // Returns a function, that, when invoked, will only be triggered at most once
- // during a given window of time.
- _.throttle = function(func, wait) {
- var context, args, timeout, throttling, more;
- var whenDone = _.debounce(function(){ more = throttling = false; }, wait);
- return function() {
- context = this; args = arguments;
- var later = function() {
- timeout = null;
- if (more) func.apply(context, args);
- whenDone();
- };
- if (!timeout) timeout = setTimeout(later, wait);
- if (throttling) {
- more = true;
- } else {
- func.apply(context, args);
- }
- whenDone();
- throttling = true;
- };
- };
-
- // Returns a function, that, as long as it continues to be invoked, will not
- // be triggered. The function will be called after it stops being called for
- // N milliseconds.
- _.debounce = function(func, wait) {
- var timeout;
- return function() {
- var context = this, args = arguments;
- var later = function() {
- timeout = null;
- func.apply(context, args);
- };
- clearTimeout(timeout);
- timeout = setTimeout(later, wait);
- };
- };
-
- // Returns a function that will be executed at most one time, no matter how
- // often you call it. Useful for lazy initialization.
- _.once = function(func) {
- var ran = false, memo;
- return function() {
- if (ran) return memo;
- ran = true;
- return memo = func.apply(this, arguments);
- };
- };
-
- // Returns the first function passed as an argument to the second,
- // allowing you to adjust arguments, run code before and after, and
- // conditionally execute the original function.
- _.wrap = function(func, wrapper) {
- return function() {
- var args = [func].concat(slice.call(arguments, 0));
- return wrapper.apply(this, args);
- };
- };
-
- // Returns a function that is the composition of a list of functions, each
- // consuming the return value of the function that follows.
- _.compose = function() {
- var funcs = arguments;
- return function() {
- var args = arguments;
- for (var i = funcs.length - 1; i >= 0; i--) {
- args = [funcs[i].apply(this, args)];
- }
- return args[0];
- };
- };
-
- // Returns a function that will only be executed after being called N times.
- _.after = function(times, func) {
- if (times <= 0) return func();
- return function() {
- if (--times < 1) { return func.apply(this, arguments); }
- };
- };
-
- // Object Functions
- // ----------------
-
- // Retrieve the names of an object's properties.
- // Delegates to **ECMAScript 5**'s native `Object.keys`
- _.keys = nativeKeys || function(obj) {
- if (obj !== Object(obj)) throw new TypeError('Invalid object');
- var keys = [];
- for (var key in obj) if (_.has(obj, key)) keys[keys.length] = key;
- return keys;
- };
-
- // Retrieve the values of an object's properties.
- _.values = function(obj) {
- return _.map(obj, _.identity);
- };
-
- // Return a sorted list of the function names available on the object.
- // Aliased as `methods`
- _.functions = _.methods = function(obj) {
- var names = [];
- for (var key in obj) {
- if (_.isFunction(obj[key])) names.push(key);
- }
- return names.sort();
- };
-
- // Extend a given object with all the properties in passed-in object(s).
- _.extend = function(obj) {
- each(slice.call(arguments, 1), function(source) {
- for (var prop in source) {
- obj[prop] = source[prop];
- }
- });
- return obj;
- };
-
- // Fill in a given object with default properties.
- _.defaults = function(obj) {
- each(slice.call(arguments, 1), function(source) {
- for (var prop in source) {
- if (obj[prop] == null) obj[prop] = source[prop];
- }
- });
- return obj;
- };
-
- // Create a (shallow-cloned) duplicate of an object.
- _.clone = function(obj) {
- if (!_.isObject(obj)) return obj;
- return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
- };
-
- // Invokes interceptor with the obj, and then returns obj.
- // The primary purpose of this method is to "tap into" a method chain, in
- // order to perform operations on intermediate results within the chain.
- _.tap = function(obj, interceptor) {
- interceptor(obj);
- return obj;
- };
-
- // Internal recursive comparison function.
- function eq(a, b, stack) {
- // Identical objects are equal. `0 === -0`, but they aren't identical.
- // See the Harmony `egal` proposal: http://wiki.ecmascript.org/doku.php?id=harmony:egal.
- if (a === b) return a !== 0 || 1 / a == 1 / b;
- // A strict comparison is necessary because `null == undefined`.
- if (a == null || b == null) return a === b;
- // Unwrap any wrapped objects.
- if (a._chain) a = a._wrapped;
- if (b._chain) b = b._wrapped;
- // Invoke a custom `isEqual` method if one is provided.
- if (a.isEqual && _.isFunction(a.isEqual)) return a.isEqual(b);
- if (b.isEqual && _.isFunction(b.isEqual)) return b.isEqual(a);
- // Compare `[[Class]]` names.
- var className = toString.call(a);
- if (className != toString.call(b)) return false;
- switch (className) {
- // Strings, numbers, dates, and booleans are compared by value.
- case '[object String]':
- // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is
- // equivalent to `new String("5")`.
- return a == String(b);
- case '[object Number]':
- // `NaN`s are equivalent, but non-reflexive. An `egal` comparison is performed for
- // other numeric values.
- return a != +a ? b != +b : (a == 0 ? 1 / a == 1 / b : a == +b);
- case '[object Date]':
- case '[object Boolean]':
- // Coerce dates and booleans to numeric primitive values. Dates are compared by their
- // millisecond representations. Note that invalid dates with millisecond representations
- // of `NaN` are not equivalent.
- return +a == +b;
- // RegExps are compared by their source patterns and flags.
- case '[object RegExp]':
- return a.source == b.source &&
- a.global == b.global &&
- a.multiline == b.multiline &&
- a.ignoreCase == b.ignoreCase;
- }
- if (typeof a != 'object' || typeof b != 'object') return false;
- // Assume equality for cyclic structures. The algorithm for detecting cyclic
- // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.
- var length = stack.length;
- while (length--) {
- // Linear search. Performance is inversely proportional to the number of
- // unique nested structures.
- if (stack[length] == a) return true;
- }
- // Add the first object to the stack of traversed objects.
- stack.push(a);
- var size = 0, result = true;
- // Recursively compare objects and arrays.
- if (className == '[object Array]') {
- // Compare array lengths to determine if a deep comparison is necessary.
- size = a.length;
- result = size == b.length;
- if (result) {
- // Deep compare the contents, ignoring non-numeric properties.
- while (size--) {
- // Ensure commutative equality for sparse arrays.
- if (!(result = size in a == size in b && eq(a[size], b[size], stack))) break;
- }
- }
- } else {
- // Objects with different constructors are not equivalent.
- if ('constructor' in a != 'constructor' in b || a.constructor != b.constructor) return false;
- // Deep compare objects.
- for (var key in a) {
- if (_.has(a, key)) {
- // Count the expected number of properties.
- size++;
- // Deep compare each member.
- if (!(result = _.has(b, key) && eq(a[key], b[key], stack))) break;
- }
- }
- // Ensure that both objects contain the same number of properties.
- if (result) {
- for (key in b) {
- if (_.has(b, key) && !(size--)) break;
- }
- result = !size;
- }
- }
- // Remove the first object from the stack of traversed objects.
- stack.pop();
- return result;
- }
-
- // Perform a deep comparison to check if two objects are equal.
- _.isEqual = function(a, b) {
- return eq(a, b, []);
- };
-
- // Is a given array, string, or object empty?
- // An "empty" object has no enumerable own-properties.
- _.isEmpty = function(obj) {
- if (_.isArray(obj) || _.isString(obj)) return obj.length === 0;
- for (var key in obj) if (_.has(obj, key)) return false;
- return true;
- };
-
- // Is a given value a DOM element?
- _.isElement = function(obj) {
- return !!(obj && obj.nodeType == 1);
- };
-
- // Is a given value an array?
- // Delegates to ECMA5's native Array.isArray
- _.isArray = nativeIsArray || function(obj) {
- return toString.call(obj) == '[object Array]';
- };
-
- // Is a given variable an object?
- _.isObject = function(obj) {
- return obj === Object(obj);
- };
-
- // Is a given variable an arguments object?
- _.isArguments = function(obj) {
- return toString.call(obj) == '[object Arguments]';
- };
- if (!_.isArguments(arguments)) {
- _.isArguments = function(obj) {
- return !!(obj && _.has(obj, 'callee'));
- };
- }
-
- // Is a given value a function?
- _.isFunction = function(obj) {
- return toString.call(obj) == '[object Function]';
- };
-
- // Is a given value a string?
- _.isString = function(obj) {
- return toString.call(obj) == '[object String]';
- };
-
- // Is a given value a number?
- _.isNumber = function(obj) {
- return toString.call(obj) == '[object Number]';
- };
-
- // Is the given value `NaN`?
- _.isNaN = function(obj) {
- // `NaN` is the only value for which `===` is not reflexive.
- return obj !== obj;
- };
-
- // Is a given value a boolean?
- _.isBoolean = function(obj) {
- return obj === true || obj === false || toString.call(obj) == '[object Boolean]';
- };
-
- // Is a given value a date?
- _.isDate = function(obj) {
- return toString.call(obj) == '[object Date]';
- };
-
- // Is the given value a regular expression?
- _.isRegExp = function(obj) {
- return toString.call(obj) == '[object RegExp]';
- };
-
- // Is a given value equal to null?
- _.isNull = function(obj) {
- return obj === null;
- };
-
- // Is a given variable undefined?
- _.isUndefined = function(obj) {
- return obj === void 0;
- };
-
- // Has own property?
- _.has = function(obj, key) {
- return hasOwnProperty.call(obj, key);
- };
-
- // Utility Functions
- // -----------------
-
- // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
- // previous owner. Returns a reference to the Underscore object.
- _.noConflict = function() {
- root._ = previousUnderscore;
- return this;
- };
-
- // Keep the identity function around for default iterators.
- _.identity = function(value) {
- return value;
- };
-
- // Run a function **n** times.
- _.times = function (n, iterator, context) {
- for (var i = 0; i < n; i++) iterator.call(context, i);
- };
-
- // Escape a string for HTML interpolation.
- _.escape = function(string) {
- return (''+string).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;').replace(/'/g, '&#x27;').replace(/\//g,'&#x2F;');
- };
-
- // Add your own custom functions to the Underscore object, ensuring that
- // they're correctly added to the OOP wrapper as well.
- _.mixin = function(obj) {
- each(_.functions(obj), function(name){
- addToWrapper(name, _[name] = obj[name]);
- });
- };
-
- // Generate a unique integer id (unique within the entire client session).
- // Useful for temporary DOM ids.
- var idCounter = 0;
- _.uniqueId = function(prefix) {
- var id = idCounter++;
- return prefix ? prefix + id : id;
- };
-
- // By default, Underscore uses ERB-style template delimiters, change the
- // following template settings to use alternative delimiters.
- _.templateSettings = {
- evaluate : /<%([\s\S]+?)%>/g,
- interpolate : /<%=([\s\S]+?)%>/g,
- escape : /<%-([\s\S]+?)%>/g
- };
-
- // When customizing `templateSettings`, if you don't want to define an
- // interpolation, evaluation or escaping regex, we need one that is
- // guaranteed not to match.
- var noMatch = /.^/;
-
- // Within an interpolation, evaluation, or escaping, remove HTML escaping
- // that had been previously added.
- var unescape = function(code) {
- return code.replace(/\\\\/g, '\\').replace(/\\'/g, "'");
- };
-
- // JavaScript micro-templating, similar to John Resig's implementation.
- // Underscore templating handles arbitrary delimiters, preserves whitespace,
- // and correctly escapes quotes within interpolated code.
- _.template = function(str, data) {
- var c = _.templateSettings;
- var tmpl = 'var __p=[],print=function(){__p.push.apply(__p,arguments);};' +
- 'with(obj||{}){__p.push(\'' +
- str.replace(/\\/g, '\\\\')
- .replace(/'/g, "\\'")
- .replace(c.escape || noMatch, function(match, code) {
- return "',_.escape(" + unescape(code) + "),'";
- })
- .replace(c.interpolate || noMatch, function(match, code) {
- return "'," + unescape(code) + ",'";
- })
- .replace(c.evaluate || noMatch, function(match, code) {
- return "');" + unescape(code).replace(/[\r\n\t]/g, ' ') + ";__p.push('";
- })
- .replace(/\r/g, '\\r')
- .replace(/\n/g, '\\n')
- .replace(/\t/g, '\\t')
- + "');}return __p.join('');";
- var func = new Function('obj', '_', tmpl);
- if (data) return func(data, _);
- return function(data) {
- return func.call(this, data, _);
- };
- };
-
- // Add a "chain" function, which will delegate to the wrapper.
- _.chain = function(obj) {
- return _(obj).chain();
- };
-
- // The OOP Wrapper
- // ---------------
-
- // If Underscore is called as a function, it returns a wrapped object that
- // can be used OO-style. This wrapper holds altered versions of all the
- // underscore functions. Wrapped objects may be chained.
- var wrapper = function(obj) { this._wrapped = obj; };
-
- // Expose `wrapper.prototype` as `_.prototype`
- _.prototype = wrapper.prototype;
-
- // Helper function to continue chaining intermediate results.
- var result = function(obj, chain) {
- return chain ? _(obj).chain() : obj;
- };
-
- // A method to easily add functions to the OOP wrapper.
- var addToWrapper = function(name, func) {
- wrapper.prototype[name] = function() {
- var args = slice.call(arguments);
- unshift.call(args, this._wrapped);
- return result(func.apply(_, args), this._chain);
- };
- };
-
- // Add all of the Underscore functions to the wrapper object.
- _.mixin(_);
-
- // Add all mutator Array functions to the wrapper.
- each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
- var method = ArrayProto[name];
- wrapper.prototype[name] = function() {
- var wrapped = this._wrapped;
- method.apply(wrapped, arguments);
- var length = wrapped.length;
- if ((name == 'shift' || name == 'splice') && length === 0) delete wrapped[0];
- return result(wrapped, this._chain);
- };
- });
-
- // Add all accessor Array functions to the wrapper.
- each(['concat', 'join', 'slice'], function(name) {
- var method = ArrayProto[name];
- wrapper.prototype[name] = function() {
- return result(method.apply(this._wrapped, arguments), this._chain);
- };
- });
-
- // Start chaining a wrapped Underscore object.
- wrapper.prototype.chain = function() {
- this._chain = true;
- return this;
- };
-
- // Extracts the result from a wrapped and chained object.
- wrapper.prototype.value = function() {
- return this._wrapped;
- };
-
-}).call(this);
diff --git a/doc/_static/underscore.js b/doc/_static/underscore.js
deleted file mode 100644
index 5b55f32be..000000000
--- a/doc/_static/underscore.js
+++ /dev/null
@@ -1,31 +0,0 @@
-// Underscore.js 1.3.1
-// (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
-// Underscore is freely distributable under the MIT license.
-// Portions of Underscore are inspired or borrowed from Prototype,
-// Oliver Steele's Functional, and John Resig's Micro-Templating.
-// For all details and documentation:
-// http://documentcloud.github.com/underscore
-(function(){function q(a,c,d){if(a===c)return a!==0||1/a==1/c;if(a==null||c==null)return a===c;if(a._chain)a=a._wrapped;if(c._chain)c=c._wrapped;if(a.isEqual&&b.isFunction(a.isEqual))return a.isEqual(c);if(c.isEqual&&b.isFunction(c.isEqual))return c.isEqual(a);var e=l.call(a);if(e!=l.call(c))return false;switch(e){case "[object String]":return a==String(c);case "[object Number]":return a!=+a?c!=+c:a==0?1/a==1/c:a==+c;case "[object Date]":case "[object Boolean]":return+a==+c;case "[object RegExp]":return a.source==
-c.source&&a.global==c.global&&a.multiline==c.multiline&&a.ignoreCase==c.ignoreCase}if(typeof a!="object"||typeof c!="object")return false;for(var f=d.length;f--;)if(d[f]==a)return true;d.push(a);var f=0,g=true;if(e=="[object Array]"){if(f=a.length,g=f==c.length)for(;f--;)if(!(g=f in a==f in c&&q(a[f],c[f],d)))break}else{if("constructor"in a!="constructor"in c||a.constructor!=c.constructor)return false;for(var h in a)if(b.has(a,h)&&(f++,!(g=b.has(c,h)&&q(a[h],c[h],d))))break;if(g){for(h in c)if(b.has(c,
-h)&&!f--)break;g=!f}}d.pop();return g}var r=this,G=r._,n={},k=Array.prototype,o=Object.prototype,i=k.slice,H=k.unshift,l=o.toString,I=o.hasOwnProperty,w=k.forEach,x=k.map,y=k.reduce,z=k.reduceRight,A=k.filter,B=k.every,C=k.some,p=k.indexOf,D=k.lastIndexOf,o=Array.isArray,J=Object.keys,s=Function.prototype.bind,b=function(a){return new m(a)};if(typeof exports!=="undefined"){if(typeof module!=="undefined"&&module.exports)exports=module.exports=b;exports._=b}else r._=b;b.VERSION="1.3.1";var j=b.each=
-b.forEach=function(a,c,d){if(a!=null)if(w&&a.forEach===w)a.forEach(c,d);else if(a.length===+a.length)for(var e=0,f=a.length;e<f;e++){if(e in a&&c.call(d,a[e],e,a)===n)break}else for(e in a)if(b.has(a,e)&&c.call(d,a[e],e,a)===n)break};b.map=b.collect=function(a,c,b){var e=[];if(a==null)return e;if(x&&a.map===x)return a.map(c,b);j(a,function(a,g,h){e[e.length]=c.call(b,a,g,h)});if(a.length===+a.length)e.length=a.length;return e};b.reduce=b.foldl=b.inject=function(a,c,d,e){var f=arguments.length>2;a==
-null&&(a=[]);if(y&&a.reduce===y)return e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(a,b,i){f?d=c.call(e,d,a,b,i):(d=a,f=true)});if(!f)throw new TypeError("Reduce of empty array with no initial value");return d};b.reduceRight=b.foldr=function(a,c,d,e){var f=arguments.length>2;a==null&&(a=[]);if(z&&a.reduceRight===z)return e&&(c=b.bind(c,e)),f?a.reduceRight(c,d):a.reduceRight(c);var g=b.toArray(a).reverse();e&&!f&&(c=b.bind(c,e));return f?b.reduce(g,c,d,e):b.reduce(g,c)};b.find=b.detect=
-function(a,c,b){var e;E(a,function(a,g,h){if(c.call(b,a,g,h))return e=a,true});return e};b.filter=b.select=function(a,c,b){var e=[];if(a==null)return e;if(A&&a.filter===A)return a.filter(c,b);j(a,function(a,g,h){c.call(b,a,g,h)&&(e[e.length]=a)});return e};b.reject=function(a,c,b){var e=[];if(a==null)return e;j(a,function(a,g,h){c.call(b,a,g,h)||(e[e.length]=a)});return e};b.every=b.all=function(a,c,b){var e=true;if(a==null)return e;if(B&&a.every===B)return a.every(c,b);j(a,function(a,g,h){if(!(e=
-e&&c.call(b,a,g,h)))return n});return e};var E=b.some=b.any=function(a,c,d){c||(c=b.identity);var e=false;if(a==null)return e;if(C&&a.some===C)return a.some(c,d);j(a,function(a,b,h){if(e||(e=c.call(d,a,b,h)))return n});return!!e};b.include=b.contains=function(a,c){var b=false;if(a==null)return b;return p&&a.indexOf===p?a.indexOf(c)!=-1:b=E(a,function(a){return a===c})};b.invoke=function(a,c){var d=i.call(arguments,2);return b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck=
-function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return Math.max.apply(Math,a);if(!c&&b.isEmpty(a))return-Infinity;var e={computed:-Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b>=e.computed&&(e={value:a,computed:b})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);if(!c&&b.isEmpty(a))return Infinity;var e={computed:Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b<e.computed&&(e={value:a,computed:b})});
-return e.value};b.shuffle=function(a){var b=[],d;j(a,function(a,f){f==0?b[0]=a:(d=Math.floor(Math.random()*(f+1)),b[f]=b[d],b[d]=a)});return b};b.sortBy=function(a,c,d){return b.pluck(b.map(a,function(a,b,g){return{value:a,criteria:c.call(d,a,b,g)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;return c<d?-1:c>d?1:0}),"value")};b.groupBy=function(a,c){var d={},e=b.isFunction(c)?c:function(a){return a[c]};j(a,function(a,b){var c=e(a,b);(d[c]||(d[c]=[])).push(a)});return d};b.sortedIndex=function(a,
-c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b.toArray=function(a){return!a?[]:a.toArray?a.toArray():b.isArray(a)?i.call(a):b.isArguments(a)?i.call(a):b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=b.head=function(a,b,d){return b!=null&&!d?i.call(a,0,b):a[0]};b.initial=function(a,b,d){return i.call(a,0,a.length-(b==null||d?1:b))};b.last=function(a,b,d){return b!=null&&!d?i.call(a,Math.max(a.length-b,0)):a[a.length-1]};b.rest=
-b.tail=function(a,b,d){return i.call(a,b==null||d?1:b)};b.compact=function(a){return b.filter(a,function(a){return!!a})};b.flatten=function(a,c){return b.reduce(a,function(a,e){if(b.isArray(e))return a.concat(c?e:b.flatten(e));a[a.length]=e;return a},[])};b.without=function(a){return b.difference(a,i.call(arguments,1))};b.uniq=b.unique=function(a,c,d){var d=d?b.map(a,d):a,e=[];b.reduce(d,function(d,g,h){if(0==h||(c===true?b.last(d)!=g:!b.include(d,g)))d[d.length]=g,e[e.length]=a[h];return d},[]);
-return e};b.union=function(){return b.uniq(b.flatten(arguments,true))};b.intersection=b.intersect=function(a){var c=i.call(arguments,1);return b.filter(b.uniq(a),function(a){return b.every(c,function(c){return b.indexOf(c,a)>=0})})};b.difference=function(a){var c=b.flatten(i.call(arguments,1));return b.filter(a,function(a){return!b.include(c,a)})};b.zip=function(){for(var a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.pluck(a,""+e);return d};b.indexOf=function(a,c,
-d){if(a==null)return-1;var e;if(d)return d=b.sortedIndex(a,c),a[d]===c?d:-1;if(p&&a.indexOf===p)return a.indexOf(c);for(d=0,e=a.length;d<e;d++)if(d in a&&a[d]===c)return d;return-1};b.lastIndexOf=function(a,b){if(a==null)return-1;if(D&&a.lastIndexOf===D)return a.lastIndexOf(b);for(var d=a.length;d--;)if(d in a&&a[d]===b)return d;return-1};b.range=function(a,b,d){arguments.length<=1&&(b=a||0,a=0);for(var d=arguments[2]||1,e=Math.max(Math.ceil((b-a)/d),0),f=0,g=Array(e);f<e;)g[f++]=a,a+=d;return g};
-var F=function(){};b.bind=function(a,c){var d,e;if(a.bind===s&&s)return s.apply(a,i.call(arguments,1));if(!b.isFunction(a))throw new TypeError;e=i.call(arguments,2);return d=function(){if(!(this instanceof d))return a.apply(c,e.concat(i.call(arguments)));F.prototype=a.prototype;var b=new F,g=a.apply(b,e.concat(i.call(arguments)));return Object(g)===g?g:b}};b.bindAll=function(a){var c=i.call(arguments,1);c.length==0&&(c=b.functions(a));j(c,function(c){a[c]=b.bind(a[c],a)});return a};b.memoize=function(a,
-c){var d={};c||(c=b.identity);return function(){var e=c.apply(this,arguments);return b.has(d,e)?d[e]:d[e]=a.apply(this,arguments)}};b.delay=function(a,b){var d=i.call(arguments,2);return setTimeout(function(){return a.apply(a,d)},b)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(i.call(arguments,1)))};b.throttle=function(a,c){var d,e,f,g,h,i=b.debounce(function(){h=g=false},c);return function(){d=this;e=arguments;var b;f||(f=setTimeout(function(){f=null;h&&a.apply(d,e);i()},c));g?h=true:
-a.apply(d,e);i();g=true}};b.debounce=function(a,b){var d;return function(){var e=this,f=arguments;clearTimeout(d);d=setTimeout(function(){d=null;a.apply(e,f)},b)}};b.once=function(a){var b=false,d;return function(){if(b)return d;b=true;return d=a.apply(this,arguments)}};b.wrap=function(a,b){return function(){var d=[a].concat(i.call(arguments,0));return b.apply(this,d)}};b.compose=function(){var a=arguments;return function(){for(var b=arguments,d=a.length-1;d>=0;d--)b=[a[d].apply(this,b)];return b[0]}};
-b.after=function(a,b){return a<=0?b():function(){if(--a<1)return b.apply(this,arguments)}};b.keys=J||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var c=[],d;for(d in a)b.has(a,d)&&(c[c.length]=d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in a)b.isFunction(a[d])&&c.push(d);return c.sort()};b.extend=function(a){j(i.call(arguments,1),function(b){for(var d in b)a[d]=b[d]});return a};b.defaults=function(a){j(i.call(arguments,
-1),function(b){for(var d in b)a[d]==null&&(a[d]=b[d])});return a};b.clone=function(a){return!b.isObject(a)?a:b.isArray(a)?a.slice():b.extend({},a)};b.tap=function(a,b){b(a);return a};b.isEqual=function(a,b){return q(a,b,[])};b.isEmpty=function(a){if(b.isArray(a)||b.isString(a))return a.length===0;for(var c in a)if(b.has(a,c))return false;return true};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=o||function(a){return l.call(a)=="[object Array]"};b.isObject=function(a){return a===Object(a)};
-b.isArguments=function(a){return l.call(a)=="[object Arguments]"};if(!b.isArguments(arguments))b.isArguments=function(a){return!(!a||!b.has(a,"callee"))};b.isFunction=function(a){return l.call(a)=="[object Function]"};b.isString=function(a){return l.call(a)=="[object String]"};b.isNumber=function(a){return l.call(a)=="[object Number]"};b.isNaN=function(a){return a!==a};b.isBoolean=function(a){return a===true||a===false||l.call(a)=="[object Boolean]"};b.isDate=function(a){return l.call(a)=="[object Date]"};
-b.isRegExp=function(a){return l.call(a)=="[object RegExp]"};b.isNull=function(a){return a===null};b.isUndefined=function(a){return a===void 0};b.has=function(a,b){return I.call(a,b)};b.noConflict=function(){r._=G;return this};b.identity=function(a){return a};b.times=function(a,b,d){for(var e=0;e<a;e++)b.call(d,e)};b.escape=function(a){return(""+a).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;").replace(/\//g,"&#x2F;")};b.mixin=function(a){j(b.functions(a),
-function(c){K(c,b[c]=a[c])})};var L=0;b.uniqueId=function(a){var b=L++;return a?a+b:b};b.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var t=/.^/,u=function(a){return a.replace(/\\\\/g,"\\").replace(/\\'/g,"'")};b.template=function(a,c){var d=b.templateSettings,d="var __p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+a.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(d.escape||t,function(a,b){return"',_.escape("+
-u(b)+"),'"}).replace(d.interpolate||t,function(a,b){return"',"+u(b)+",'"}).replace(d.evaluate||t,function(a,b){return"');"+u(b).replace(/[\r\n\t]/g," ")+";__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return __p.join('');",e=new Function("obj","_",d);return c?e(c,b):function(a){return e.call(this,a,b)}};b.chain=function(a){return b(a).chain()};var m=function(a){this._wrapped=a};b.prototype=m.prototype;var v=function(a,c){return c?b(a).chain():a},K=function(a,c){m.prototype[a]=
-function(){var a=i.call(arguments);H.call(a,this._wrapped);return v(c.apply(b,a),this._chain)}};b.mixin(b);j("pop,push,reverse,shift,sort,splice,unshift".split(","),function(a){var b=k[a];m.prototype[a]=function(){var d=this._wrapped;b.apply(d,arguments);var e=d.length;(a=="shift"||a=="splice")&&e===0&&delete d[0];return v(d,this._chain)}});j(["concat","join","slice"],function(a){var b=k[a];m.prototype[a]=function(){return v(b.apply(this._wrapped,arguments),this._chain)}});m.prototype.chain=function(){this._chain=
-true;return this};m.prototype.value=function(){return this._wrapped}}).call(this);
diff --git a/doc/_static/up-pressed.png b/doc/_static/up-pressed.png
deleted file mode 100644
index 99e721096..000000000
Binary files a/doc/_static/up-pressed.png and /dev/null differ
diff --git a/doc/_static/up.png b/doc/_static/up.png
deleted file mode 100644
index 26de002e8..000000000
Binary files a/doc/_static/up.png and /dev/null differ
diff --git a/doc/_static/websupport.js b/doc/_static/websupport.js
deleted file mode 100644
index 28d65db4a..000000000
--- a/doc/_static/websupport.js
+++ /dev/null
@@ -1,808 +0,0 @@
-/*
- * websupport.js
- * ~~~~~~~~~~~~~
- *
- * sphinx.websupport utilties for all documentation.
- *
- * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
- */
-
-(function($) {
- $.fn.autogrow = function() {
- return this.each(function() {
- var textarea = this;
-
- $.fn.autogrow.resize(textarea);
-
- $(textarea)
- .focus(function() {
- textarea.interval = setInterval(function() {
- $.fn.autogrow.resize(textarea);
- }, 500);
- })
- .blur(function() {
- clearInterval(textarea.interval);
- });
- });
- };
-
- $.fn.autogrow.resize = function(textarea) {
- var lineHeight = parseInt($(textarea).css('line-height'), 10);
- var lines = textarea.value.split('\n');
- var columns = textarea.cols;
- var lineCount = 0;
- $.each(lines, function() {
- lineCount += Math.ceil(this.length / columns) || 1;
- });
- var height = lineHeight * (lineCount + 1);
- $(textarea).css('height', height);
- };
-})(jQuery);
-
-(function($) {
- var comp, by;
-
- function init() {
- initEvents();
- initComparator();
- }
-
- function initEvents() {
- $(document).on("click", 'a.comment-close', function(event) {
- event.preventDefault();
- hide($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.vote', function(event) {
- event.preventDefault();
- handleVote($(this));
- });
- $(document).on("click", 'a.reply', function(event) {
- event.preventDefault();
- openReply($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.close-reply', function(event) {
- event.preventDefault();
- closeReply($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.sort-option', function(event) {
- event.preventDefault();
- handleReSort($(this));
- });
- $(document).on("click", 'a.show-proposal', function(event) {
- event.preventDefault();
- showProposal($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.hide-proposal', function(event) {
- event.preventDefault();
- hideProposal($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.show-propose-change', function(event) {
- event.preventDefault();
- showProposeChange($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.hide-propose-change', function(event) {
- event.preventDefault();
- hideProposeChange($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.accept-comment', function(event) {
- event.preventDefault();
- acceptComment($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.delete-comment', function(event) {
- event.preventDefault();
- deleteComment($(this).attr('id').substring(2));
- });
- $(document).on("click", 'a.comment-markup', function(event) {
- event.preventDefault();
- toggleCommentMarkupBox($(this).attr('id').substring(2));
- });
- }
-
- /**
- * Set comp, which is a comparator function used for sorting and
- * inserting comments into the list.
- */
- function setComparator() {
- // If the first three letters are "asc", sort in ascending order
- // and remove the prefix.
- if (by.substring(0,3) == 'asc') {
- var i = by.substring(3);
- comp = function(a, b) { return a[i] - b[i]; };
- } else {
- // Otherwise sort in descending order.
- comp = function(a, b) { return b[by] - a[by]; };
- }
-
- // Reset link styles and format the selected sort option.
- $('a.sel').attr('href', '#').removeClass('sel');
- $('a.by' + by).removeAttr('href').addClass('sel');
- }
-
- /**
- * Create a comp function. If the user has preferences stored in
- * the sortBy cookie, use those, otherwise use the default.
- */
- function initComparator() {
- by = 'rating'; // Default to sort by rating.
- // If the sortBy cookie is set, use that instead.
- if (document.cookie.length > 0) {
- var start = document.cookie.indexOf('sortBy=');
- if (start != -1) {
- start = start + 7;
- var end = document.cookie.indexOf(";", start);
- if (end == -1) {
- end = document.cookie.length;
- by = unescape(document.cookie.substring(start, end));
- }
- }
- }
- setComparator();
- }
-
- /**
- * Show a comment div.
- */
- function show(id) {
- $('#ao' + id).hide();
- $('#ah' + id).show();
- var context = $.extend({id: id}, opts);
- var popup = $(renderTemplate(popupTemplate, context)).hide();
- popup.find('textarea[name="proposal"]').hide();
- popup.find('a.by' + by).addClass('sel');
- var form = popup.find('#cf' + id);
- form.submit(function(event) {
- event.preventDefault();
- addComment(form);
- });
- $('#s' + id).after(popup);
- popup.slideDown('fast', function() {
- getComments(id);
- });
- }
-
- /**
- * Hide a comment div.
- */
- function hide(id) {
- $('#ah' + id).hide();
- $('#ao' + id).show();
- var div = $('#sc' + id);
- div.slideUp('fast', function() {
- div.remove();
- });
- }
-
- /**
- * Perform an ajax request to get comments for a node
- * and insert the comments into the comments tree.
- */
- function getComments(id) {
- $.ajax({
- type: 'GET',
- url: opts.getCommentsURL,
- data: {node: id},
- success: function(data, textStatus, request) {
- var ul = $('#cl' + id);
- var speed = 100;
- $('#cf' + id)
- .find('textarea[name="proposal"]')
- .data('source', data.source);
-
- if (data.comments.length === 0) {
- ul.html('<li>No comments yet.</li>');
- ul.data('empty', true);
- } else {
- // If there are comments, sort them and put them in the list.
- var comments = sortComments(data.comments);
- speed = data.comments.length * 100;
- appendComments(comments, ul);
- ul.data('empty', false);
- }
- $('#cn' + id).slideUp(speed + 200);
- ul.slideDown(speed);
- },
- error: function(request, textStatus, error) {
- showError('Oops, there was a problem retrieving the comments.');
- },
- dataType: 'json'
- });
- }
-
- /**
- * Add a comment via ajax and insert the comment into the comment tree.
- */
- function addComment(form) {
- var node_id = form.find('input[name="node"]').val();
- var parent_id = form.find('input[name="parent"]').val();
- var text = form.find('textarea[name="comment"]').val();
- var proposal = form.find('textarea[name="proposal"]').val();
-
- if (text == '') {
- showError('Please enter a comment.');
- return;
- }
-
- // Disable the form that is being submitted.
- form.find('textarea,input').attr('disabled', 'disabled');
-
- // Send the comment to the server.
- $.ajax({
- type: "POST",
- url: opts.addCommentURL,
- dataType: 'json',
- data: {
- node: node_id,
- parent: parent_id,
- text: text,
- proposal: proposal
- },
- success: function(data, textStatus, error) {
- // Reset the form.
- if (node_id) {
- hideProposeChange(node_id);
- }
- form.find('textarea')
- .val('')
- .add(form.find('input'))
- .removeAttr('disabled');
- var ul = $('#cl' + (node_id || parent_id));
- if (ul.data('empty')) {
- $(ul).empty();
- ul.data('empty', false);
- }
- insertComment(data.comment);
- var ao = $('#ao' + node_id);
- ao.find('img').attr({'src': opts.commentBrightImage});
- if (node_id) {
- // if this was a "root" comment, remove the commenting box
- // (the user can get it back by reopening the comment popup)
- $('#ca' + node_id).slideUp();
- }
- },
- error: function(request, textStatus, error) {
- form.find('textarea,input').removeAttr('disabled');
- showError('Oops, there was a problem adding the comment.');
- }
- });
- }
-
- /**
- * Recursively append comments to the main comment list and children
- * lists, creating the comment tree.
- */
- function appendComments(comments, ul) {
- $.each(comments, function() {
- var div = createCommentDiv(this);
- ul.append($(document.createElement('li')).html(div));
- appendComments(this.children, div.find('ul.comment-children'));
- // To avoid stagnating data, don't store the comments children in data.
- this.children = null;
- div.data('comment', this);
- });
- }
-
- /**
- * After adding a new comment, it must be inserted in the correct
- * location in the comment tree.
- */
- function insertComment(comment) {
- var div = createCommentDiv(comment);
-
- // To avoid stagnating data, don't store the comments children in data.
- comment.children = null;
- div.data('comment', comment);
-
- var ul = $('#cl' + (comment.node || comment.parent));
- var siblings = getChildren(ul);
-
- var li = $(document.createElement('li'));
- li.hide();
-
- // Determine where in the parents children list to insert this comment.
- for(i=0; i < siblings.length; i++) {
- if (comp(comment, siblings[i]) <= 0) {
- $('#cd' + siblings[i].id)
- .parent()
- .before(li.html(div));
- li.slideDown('fast');
- return;
- }
- }
-
- // If we get here, this comment rates lower than all the others,
- // or it is the only comment in the list.
- ul.append(li.html(div));
- li.slideDown('fast');
- }
-
- function acceptComment(id) {
- $.ajax({
- type: 'POST',
- url: opts.acceptCommentURL,
- data: {id: id},
- success: function(data, textStatus, request) {
- $('#cm' + id).fadeOut('fast');
- $('#cd' + id).removeClass('moderate');
- },
- error: function(request, textStatus, error) {
- showError('Oops, there was a problem accepting the comment.');
- }
- });
- }
-
- function deleteComment(id) {
- $.ajax({
- type: 'POST',
- url: opts.deleteCommentURL,
- data: {id: id},
- success: function(data, textStatus, request) {
- var div = $('#cd' + id);
- if (data == 'delete') {
- // Moderator mode: remove the comment and all children immediately
- div.slideUp('fast', function() {
- div.remove();
- });
- return;
- }
- // User mode: only mark the comment as deleted
- div
- .find('span.user-id:first')
- .text('[deleted]').end()
- .find('div.comment-text:first')
- .text('[deleted]').end()
- .find('#cm' + id + ', #dc' + id + ', #ac' + id + ', #rc' + id +
- ', #sp' + id + ', #hp' + id + ', #cr' + id + ', #rl' + id)
- .remove();
- var comment = div.data('comment');
- comment.username = '[deleted]';
- comment.text = '[deleted]';
- div.data('comment', comment);
- },
- error: function(request, textStatus, error) {
- showError('Oops, there was a problem deleting the comment.');
- }
- });
- }
-
- function showProposal(id) {
- $('#sp' + id).hide();
- $('#hp' + id).show();
- $('#pr' + id).slideDown('fast');
- }
-
- function hideProposal(id) {
- $('#hp' + id).hide();
- $('#sp' + id).show();
- $('#pr' + id).slideUp('fast');
- }
-
- function showProposeChange(id) {
- $('#pc' + id).hide();
- $('#hc' + id).show();
- var textarea = $('#pt' + id);
- textarea.val(textarea.data('source'));
- $.fn.autogrow.resize(textarea[0]);
- textarea.slideDown('fast');
- }
-
- function hideProposeChange(id) {
- $('#hc' + id).hide();
- $('#pc' + id).show();
- var textarea = $('#pt' + id);
- textarea.val('').removeAttr('disabled');
- textarea.slideUp('fast');
- }
-
- function toggleCommentMarkupBox(id) {
- $('#mb' + id).toggle();
- }
-
- /** Handle when the user clicks on a sort by link. */
- function handleReSort(link) {
- var classes = link.attr('class').split(/\s+/);
- for (var i=0; i<classes.length; i++) {
- if (classes[i] != 'sort-option') {
- by = classes[i].substring(2);
- }
- }
- setComparator();
- // Save/update the sortBy cookie.
- var expiration = new Date();
- expiration.setDate(expiration.getDate() + 365);
- document.cookie= 'sortBy=' + escape(by) +
- ';expires=' + expiration.toUTCString();
- $('ul.comment-ul').each(function(index, ul) {
- var comments = getChildren($(ul), true);
- comments = sortComments(comments);
- appendComments(comments, $(ul).empty());
- });
- }
-
- /**
- * Function to process a vote when a user clicks an arrow.
- */
- function handleVote(link) {
- if (!opts.voting) {
- showError("You'll need to login to vote.");
- return;
- }
-
- var id = link.attr('id');
- if (!id) {
- // Didn't click on one of the voting arrows.
- return;
- }
- // If it is an unvote, the new vote value is 0,
- // Otherwise it's 1 for an upvote, or -1 for a downvote.
- var value = 0;
- if (id.charAt(1) != 'u') {
- value = id.charAt(0) == 'u' ? 1 : -1;
- }
- // The data to be sent to the server.
- var d = {
- comment_id: id.substring(2),
- value: value
- };
-
- // Swap the vote and unvote links.
- link.hide();
- $('#' + id.charAt(0) + (id.charAt(1) == 'u' ? 'v' : 'u') + d.comment_id)
- .show();
-
- // The div the comment is displayed in.
- var div = $('div#cd' + d.comment_id);
- var data = div.data('comment');
-
- // If this is not an unvote, and the other vote arrow has
- // already been pressed, unpress it.
- if ((d.value !== 0) && (data.vote === d.value * -1)) {
- $('#' + (d.value == 1 ? 'd' : 'u') + 'u' + d.comment_id).hide();
- $('#' + (d.value == 1 ? 'd' : 'u') + 'v' + d.comment_id).show();
- }
-
- // Update the comments rating in the local data.
- data.rating += (data.vote === 0) ? d.value : (d.value - data.vote);
- data.vote = d.value;
- div.data('comment', data);
-
- // Change the rating text.
- div.find('.rating:first')
- .text(data.rating + ' point' + (data.rating == 1 ? '' : 's'));
-
- // Send the vote information to the server.
- $.ajax({
- type: "POST",
- url: opts.processVoteURL,
- data: d,
- error: function(request, textStatus, error) {
- showError('Oops, there was a problem casting that vote.');
- }
- });
- }
-
- /**
- * Open a reply form used to reply to an existing comment.
- */
- function openReply(id) {
- // Swap out the reply link for the hide link
- $('#rl' + id).hide();
- $('#cr' + id).show();
-
- // Add the reply li to the children ul.
- var div = $(renderTemplate(replyTemplate, {id: id})).hide();
- $('#cl' + id)
- .prepend(div)
- // Setup the submit handler for the reply form.
- .find('#rf' + id)
- .submit(function(event) {
- event.preventDefault();
- addComment($('#rf' + id));
- closeReply(id);
- })
- .find('input[type=button]')
- .click(function() {
- closeReply(id);
- });
- div.slideDown('fast', function() {
- $('#rf' + id).find('textarea').focus();
- });
- }
-
- /**
- * Close the reply form opened with openReply.
- */
- function closeReply(id) {
- // Remove the reply div from the DOM.
- $('#rd' + id).slideUp('fast', function() {
- $(this).remove();
- });
-
- // Swap out the hide link for the reply link
- $('#cr' + id).hide();
- $('#rl' + id).show();
- }
-
- /**
- * Recursively sort a tree of comments using the comp comparator.
- */
- function sortComments(comments) {
- comments.sort(comp);
- $.each(comments, function() {
- this.children = sortComments(this.children);
- });
- return comments;
- }
-
- /**
- * Get the children comments from a ul. If recursive is true,
- * recursively include childrens' children.
- */
- function getChildren(ul, recursive) {
- var children = [];
- ul.children().children("[id^='cd']")
- .each(function() {
- var comment = $(this).data('comment');
- if (recursive)
- comment.children = getChildren($(this).find('#cl' + comment.id), true);
- children.push(comment);
- });
- return children;
- }
-
- /** Create a div to display a comment in. */
- function createCommentDiv(comment) {
- if (!comment.displayed && !opts.moderator) {
- return $('<div class="moderate">Thank you! Your comment will show up '
- + 'once it is has been approved by a moderator.</div>');
- }
- // Prettify the comment rating.
- comment.pretty_rating = comment.rating + ' point' +
- (comment.rating == 1 ? '' : 's');
- // Make a class (for displaying not yet moderated comments differently)
- comment.css_class = comment.displayed ? '' : ' moderate';
- // Create a div for this comment.
- var context = $.extend({}, opts, comment);
- var div = $(renderTemplate(commentTemplate, context));
-
- // If the user has voted on this comment, highlight the correct arrow.
- if (comment.vote) {
- var direction = (comment.vote == 1) ? 'u' : 'd';
- div.find('#' + direction + 'v' + comment.id).hide();
- div.find('#' + direction + 'u' + comment.id).show();
- }
-
- if (opts.moderator || comment.text != '[deleted]') {
- div.find('a.reply').show();
- if (comment.proposal_diff)
- div.find('#sp' + comment.id).show();
- if (opts.moderator && !comment.displayed)
- div.find('#cm' + comment.id).show();
- if (opts.moderator || (opts.username == comment.username))
- div.find('#dc' + comment.id).show();
- }
- return div;
- }
-
- /**
- * A simple template renderer. Placeholders such as <%id%> are replaced
- * by context['id'] with items being escaped. Placeholders such as <#id#>
- * are not escaped.
- */
- function renderTemplate(template, context) {
- var esc = $(document.createElement('div'));
-
- function handle(ph, escape) {
- var cur = context;
- $.each(ph.split('.'), function() {
- cur = cur[this];
- });
- return escape ? esc.text(cur || "").html() : cur;
- }
-
- return template.replace(/<([%#])([\w\.]*)\1>/g, function() {
- return handle(arguments[2], arguments[1] == '%' ? true : false);
- });
- }
-
- /** Flash an error message briefly. */
- function showError(message) {
- $(document.createElement('div')).attr({'class': 'popup-error'})
- .append($(document.createElement('div'))
- .attr({'class': 'error-message'}).text(message))
- .appendTo('body')
- .fadeIn("slow")
- .delay(2000)
- .fadeOut("slow");
- }
-
- /** Add a link the user uses to open the comments popup. */
- $.fn.comment = function() {
- return this.each(function() {
- var id = $(this).attr('id').substring(1);
- var count = COMMENT_METADATA[id];
- var title = count + ' comment' + (count == 1 ? '' : 's');
- var image = count > 0 ? opts.commentBrightImage : opts.commentImage;
- var addcls = count == 0 ? ' nocomment' : '';
- $(this)
- .append(
- $(document.createElement('a')).attr({
- href: '#',
- 'class': 'sphinx-comment-open' + addcls,
- id: 'ao' + id
- })
- .append($(document.createElement('img')).attr({
- src: image,
- alt: 'comment',
- title: title
- }))
- .click(function(event) {
- event.preventDefault();
- show($(this).attr('id').substring(2));
- })
- )
- .append(
- $(document.createElement('a')).attr({
- href: '#',
- 'class': 'sphinx-comment-close hidden',
- id: 'ah' + id
- })
- .append($(document.createElement('img')).attr({
- src: opts.closeCommentImage,
- alt: 'close',
- title: 'close'
- }))
- .click(function(event) {
- event.preventDefault();
- hide($(this).attr('id').substring(2));
- })
- );
- });
- };
-
- var opts = {
- processVoteURL: '/_process_vote',
- addCommentURL: '/_add_comment',
- getCommentsURL: '/_get_comments',
- acceptCommentURL: '/_accept_comment',
- deleteCommentURL: '/_delete_comment',
- commentImage: '/static/_static/comment.png',
- closeCommentImage: '/static/_static/comment-close.png',
- loadingImage: '/static/_static/ajax-loader.gif',
- commentBrightImage: '/static/_static/comment-bright.png',
- upArrow: '/static/_static/up.png',
- downArrow: '/static/_static/down.png',
- upArrowPressed: '/static/_static/up-pressed.png',
- downArrowPressed: '/static/_static/down-pressed.png',
- voting: false,
- moderator: false
- };
-
- if (typeof COMMENT_OPTIONS != "undefined") {
- opts = jQuery.extend(opts, COMMENT_OPTIONS);
- }
-
- var popupTemplate = '\
- <div class="sphinx-comments" id="sc<%id%>">\
- <p class="sort-options">\
- Sort by:\
- <a href="#" class="sort-option byrating">best rated</a>\
- <a href="#" class="sort-option byascage">newest</a>\
- <a href="#" class="sort-option byage">oldest</a>\
- </p>\
- <div class="comment-header">Comments</div>\
- <div class="comment-loading" id="cn<%id%>">\
- loading comments... <img src="<%loadingImage%>" alt="" /></div>\
- <ul id="cl<%id%>" class="comment-ul"></ul>\
- <div id="ca<%id%>">\
- <p class="add-a-comment">Add a comment\
- (<a href="#" class="comment-markup" id="ab<%id%>">markup</a>):</p>\
- <div class="comment-markup-box" id="mb<%id%>">\
- reStructured text markup: <i>*emph*</i>, <b>**strong**</b>, \
- <code>``code``</code>, \
- code blocks: <code>::</code> and an indented block after blank line</div>\
- <form method="post" id="cf<%id%>" class="comment-form" action="">\
- <textarea name="comment" cols="80"></textarea>\
- <p class="propose-button">\
- <a href="#" id="pc<%id%>" class="show-propose-change">\
- Propose a change &#9657;\
- </a>\
- <a href="#" id="hc<%id%>" class="hide-propose-change">\
- Propose a change &#9663;\
- </a>\
- </p>\
- <textarea name="proposal" id="pt<%id%>" cols="80"\
- spellcheck="false"></textarea>\
- <input type="submit" value="Add comment" />\
- <input type="hidden" name="node" value="<%id%>" />\
- <input type="hidden" name="parent" value="" />\
- </form>\
- </div>\
- </div>';
-
- var commentTemplate = '\
- <div id="cd<%id%>" class="sphinx-comment<%css_class%>">\
- <div class="vote">\
- <div class="arrow">\
- <a href="#" id="uv<%id%>" class="vote" title="vote up">\
- <img src="<%upArrow%>" />\
- </a>\
- <a href="#" id="uu<%id%>" class="un vote" title="vote up">\
- <img src="<%upArrowPressed%>" />\
- </a>\
- </div>\
- <div class="arrow">\
- <a href="#" id="dv<%id%>" class="vote" title="vote down">\
- <img src="<%downArrow%>" id="da<%id%>" />\
- </a>\
- <a href="#" id="du<%id%>" class="un vote" title="vote down">\
- <img src="<%downArrowPressed%>" />\
- </a>\
- </div>\
- </div>\
- <div class="comment-content">\
- <p class="tagline comment">\
- <span class="user-id"><%username%></span>\
- <span class="rating"><%pretty_rating%></span>\
- <span class="delta"><%time.delta%></span>\
- </p>\
- <div class="comment-text comment"><#text#></div>\
- <p class="comment-opts comment">\
- <a href="#" class="reply hidden" id="rl<%id%>">reply &#9657;</a>\
- <a href="#" class="close-reply" id="cr<%id%>">reply &#9663;</a>\
- <a href="#" id="sp<%id%>" class="show-proposal">proposal &#9657;</a>\
- <a href="#" id="hp<%id%>" class="hide-proposal">proposal &#9663;</a>\
- <a href="#" id="dc<%id%>" class="delete-comment hidden">delete</a>\
- <span id="cm<%id%>" class="moderation hidden">\
- <a href="#" id="ac<%id%>" class="accept-comment">accept</a>\
- </span>\
- </p>\
- <pre class="proposal" id="pr<%id%>">\
-<#proposal_diff#>\
- </pre>\
- <ul class="comment-children" id="cl<%id%>"></ul>\
- </div>\
- <div class="clearleft"></div>\
- </div>\
- </div>';
-
- var replyTemplate = '\
- <li>\
- <div class="reply-div" id="rd<%id%>">\
- <form id="rf<%id%>">\
- <textarea name="comment" cols="80"></textarea>\
- <input type="submit" value="Add reply" />\
- <input type="button" value="Cancel" />\
- <input type="hidden" name="parent" value="<%id%>" />\
- <input type="hidden" name="node" value="" />\
- </form>\
- </div>\
- </li>';
-
- $(document).ready(function() {
- init();
- });
-})(jQuery);
-
-$(document).ready(function() {
- // add comment anchors for all paragraphs that are commentable
- $('.sphinx-has-comment').comment();
-
- // highlight search words in search results
- $("div.context").each(function() {
- var params = $.getQueryParameters();
- var terms = (params.q) ? params.q[0].split(/\s+/) : [];
- var result = $(this);
- $.each(terms, function() {
- result.highlightText(this.toLowerCase(), 'highlighted');
- });
- });
-
- // directly open comment window if requested
- var anchor = document.location.hash;
- if (anchor.substring(0, 9) == '#comment-') {
- $('#ao' + anchor.substring(9)).click();
- document.location.hash = '#s' + anchor.substring(9);
- }
-});
diff --git a/doc/searchindex.js b/doc/searchindex.js
deleted file mode 100644
index e22e6ffb8..000000000
--- a/doc/searchindex.js
+++ /dev/null
@@ -1 +0,0 @@
-Search.setIndex({envversion:47,filenames:["Manual","Section_accelerate","Section_commands","Section_errors","Section_example","Section_history","Section_howto","Section_intro","Section_modify","Section_packages","Section_perf","Section_python","Section_start","Section_tools","accelerate_cuda","accelerate_gpu","accelerate_intel","accelerate_kokkos","accelerate_omp","accelerate_opt","angle_charmm","angle_class2","angle_coeff","angle_cosine","angle_cosine_delta","angle_cosine_periodic","angle_cosine_shift","angle_cosine_shift_exp","angle_cosine_squared","angle_dipole","angle_fourier","angle_fourier_simple","angle_harmonic","angle_hybrid","angle_none","angle_quartic","angle_sdk","angle_style","angle_table","angle_zero","atom_modify","atom_style","balance","body","bond_class2","bond_coeff","bond_fene","bond_fene_expand","bond_harmonic","bond_harmonic_shift","bond_harmonic_shift_cut","bond_hybrid","bond_morse","bond_none","bond_nonlinear","bond_quartic","bond_style","bond_table","bond_write","bond_zero","boundary","box","change_box","clear","comm_modify","comm_style","compute","compute_ackland_atom","compute_angle","compute_angle_local","compute_angmom_chunk","compute_basal_atom","compute_body_local","compute_bond","compute_bond_local","compute_centro_atom","compute_chunk_atom","compute_cluster_atom","compute_cna_atom","compute_com","compute_com_chunk","compute_contact_atom","compute_coord_atom","compute_damage_atom","compute_dihedral","compute_dihedral_local","compute_dilatation_atom","compute_dipole_chunk","compute_displace_atom","compute_dpd","compute_dpd_atom","compute_erotate_asphere","compute_erotate_rigid","compute_erotate_sphere","compute_erotate_sphere_atom","compute_event_displace","compute_fep","compute_group_group","compute_gyration","compute_gyration_chunk","compute_heat_flux","compute_hexorder_atom","compute_improper","compute_improper_local","compute_inertia_chunk","compute_ke","compute_ke_atom","compute_ke_atom_eff","compute_ke_eff","compute_ke_rigid","compute_meso_e_atom","compute_meso_rho_atom","compute_meso_t_atom","compute_modify","compute_msd","compute_msd_chunk","compute_msd_nongauss","compute_omega_chunk","compute_orientorder_atom","compute_pair","compute_pair_local","compute_pe","compute_pe_atom","compute_plasticity_atom","compute_pressure","compute_property_atom","compute_property_chunk","compute_property_local","compute_rdf","compute_reduce","compute_saed","compute_slice","compute_smd_contact_radius","compute_smd_damage","compute_smd_hourglass_error","compute_smd_internal_energy","compute_smd_plastic_strain","compute_smd_plastic_strain_rate","compute_smd_rho","compute_smd_tlsph_defgrad","compute_smd_tlsph_dt","compute_smd_tlsph_num_neighs","compute_smd_tlsph_shape","compute_smd_tlsph_strain","compute_smd_tlsph_strain_rate","compute_smd_tlsph_stress","compute_smd_triangle_mesh_vertices","compute_smd_ulsph_num_neighs","compute_smd_ulsph_strain","compute_smd_ulsph_strain_rate","compute_smd_ulsph_stress","compute_smd_vol","compute_sna_atom","compute_stress_atom","compute_tally","compute_temp","compute_temp_asphere","compute_temp_body","compute_temp_chunk","compute_temp_com","compute_temp_cs","compute_temp_deform","compute_temp_deform_eff","compute_temp_drude","compute_temp_eff","compute_temp_partial","compute_temp_profile","compute_temp_ramp","compute_temp_region","compute_temp_region_eff","compute_temp_rotate","compute_temp_sphere","compute_ti","compute_torque_chunk","compute_vacf","compute_vcm_chunk","compute_voronoi_atom","compute_xrd","create_atoms","create_bonds","create_box","delete_atoms","delete_bonds","dielectric","dihedral_charmm","dihedral_class2","dihedral_coeff","dihedral_cosine_shift_exp","dihedral_fourier","dihedral_harmonic","dihedral_helix","dihedral_hybrid","dihedral_multi_harmonic","dihedral_nharmonic","dihedral_none","dihedral_opls","dihedral_quadratic","dihedral_style","dihedral_table","dihedral_zero","dimension","displace_atoms","dump","dump_custom_vtk","dump_h5md","dump_image","dump_modify","dump_molfile","echo","fix","fix_adapt","fix_adapt_fep","fix_addforce","fix_addtorque","fix_append_atoms","fix_atc","fix_atom_swap","fix_ave_atom","fix_ave_chunk","fix_ave_correlate","fix_ave_correlate_long","fix_ave_histo","fix_ave_spatial","fix_ave_spatial_sphere","fix_ave_time","fix_aveforce","fix_balance","fix_bond_break","fix_bond_create","fix_bond_swap","fix_box_relax","fix_colvars","fix_deform","fix_deposit","fix_drag","fix_drude","fix_drude_transform","fix_dt_reset","fix_efield","fix_enforce2d","fix_eos_cv","fix_eos_table","fix_evaporate","fix_external","fix_freeze","fix_gcmc","fix_gld","fix_gle","fix_gravity","fix_heat","fix_imd","fix_indent","fix_ipi","fix_langevin","fix_langevin_drude","fix_langevin_eff","fix_lb_fluid","fix_lb_momentum","fix_lb_pc","fix_lb_rigid_pc_sphere","fix_lb_viscous","fix_lineforce","fix_meso","fix_meso_stationary","fix_modify","fix_momentum","fix_move","fix_msst","fix_neb","fix_nh","fix_nh_eff","fix_nph_asphere","fix_nph_body","fix_nph_sphere","fix_nphug","fix_npt_asphere","fix_npt_body","fix_npt_sphere","fix_nve","fix_nve_asphere","fix_nve_asphere_noforce","fix_nve_body","fix_nve_eff","fix_nve_limit","fix_nve_line","fix_nve_noforce","fix_nve_sphere","fix_nve_tri","fix_nvt_asphere","fix_nvt_body","fix_nvt_sllod","fix_nvt_sllod_eff","fix_nvt_sphere","fix_oneway","fix_orient_fcc","fix_phonon","fix_pimd","fix_planeforce","fix_poems","fix_pour","fix_press_berendsen","fix_print","fix_property_atom","fix_qbmsst","fix_qeq","fix_qeq_comb","fix_qeq_reax","fix_qmmm","fix_qtb","fix_reax_bonds","fix_reaxc_species","fix_recenter","fix_restrain","fix_rigid","fix_saed_vtk","fix_setforce","fix_shake","fix_shardlow","fix_smd","fix_smd_adjust_dt","fix_smd_integrate_tlsph","fix_smd_integrate_ulsph","fix_smd_move_triangulated_surface","fix_smd_setvel","fix_smd_tlsph_reference_configuration","fix_smd_wall_surface","fix_spring","fix_spring_rg","fix_spring_self","fix_srd","fix_store_force","fix_store_state","fix_temp_berendsen","fix_temp_csvr","fix_temp_rescale","fix_temp_rescale_eff","fix_tfmc","fix_thermal_conductivity","fix_ti_rs","fix_ti_spring","fix_tmd","fix_ttm","fix_tune_kspace","fix_vector","fix_viscosity","fix_viscous","fix_wall","fix_wall_gran","fix_wall_piston","fix_wall_reflect","fix_wall_region","fix_wall_srd","group","group2ndx","if","improper_class2","improper_coeff","improper_cossq","improper_cvff","improper_distance","improper_fourier","improper_harmonic","improper_hybrid","improper_none","improper_ring","improper_style","improper_umbrella","improper_zero","include","info","jump","kspace_modify","kspace_style","label","lattice","log","mass","min_modify","min_style","minimize","molecule","neb","neigh_modify","neighbor","newton","next","package","pair_adp","pair_airebo","pair_awpmd","pair_beck","pair_body","pair_bop","pair_born","pair_brownian","pair_buck","pair_buck_long","pair_charmm","pair_class2","pair_coeff","pair_colloid","pair_comb","pair_coul","pair_coul_diel","pair_cs","pair_dipole","pair_dpd","pair_dpd_conservative","pair_dpd_fdt","pair_dsmc","pair_eam","pair_edip","pair_eff","pair_eim","pair_gauss","pair_gayberne","pair_gran","pair_gromacs","pair_hbond_dreiding","pair_hybrid","pair_kim","pair_lcbop","pair_line_lj","pair_list","pair_lj","pair_lj96","pair_lj_cubic","pair_lj_expand","pair_lj_long","pair_lj_sf","pair_lj_smooth","pair_lj_smooth_linear","pair_lj_soft","pair_lubricate","pair_lubricateU","pair_mdf","pair_meam","pair_meam_spline","pair_meam_sw_spline","pair_mgpt","pair_mie","pair_modify","pair_morse","pair_nb3b_harmonic","pair_nm","pair_none","pair_peri","pair_polymorphic","pair_quip","pair_reax","pair_reax_c","pair_resquared","pair_sdk","pair_smd_hertz","pair_smd_tlsph","pair_smd_triangulated_surface","pair_smd_ulsph","pair_smtbq","pair_snap","pair_soft","pair_sph_heatconduction","pair_sph_idealgas","pair_sph_lj","pair_sph_rhosum","pair_sph_taitwater","pair_sph_taitwater_morris","pair_srp","pair_style","pair_sw","pair_table","pair_tersoff","pair_tersoff_mod","pair_tersoff_zbl","pair_thole","pair_tri_lj","pair_vashishta","pair_write","pair_yukawa","pair_yukawa_colloid","pair_zbl","pair_zero","partition","prd","print","processors","python","quit","read_data","read_dump","read_restart","region","replicate","rerun","reset_timestep","restart","run","run_style","set","shell","special_bonds","suffix","tad","temper","thermo","thermo_modify","thermo_style","timer","timestep","tutorial_drude","tutorial_github","uncompute","undump","unfix","units","variable","velocity","write_coeff","write_data","write_dump","write_restart"],objects:{},objnames:{},objtypes:{},terms:{"00a":338,"00b":338,"02214e23":100,"03275e":513,"0892e":12,"0b1":11,"0e20":[354,490,514],"0e4":[267,347,416],"0e5":267,"0x98b5e0":205,"100k":1,"1024x1024":205,"10e":404,"10f":3,"10g":514,"10th":[482,488,501],"10x":[3,378,379,381,382,392],"10x10x10":166,"10x20x20":374,"11e":[],"15g":[206,514],"16g":[218,224],"16x":1,"18986e":379,"18e":[],"1_12":374,"1_3":374,"1_6":374,"1_prop":6,"1st":[2,6,8,12,20,22,38,45,57,60,61,63,76,96,172,184,186,198,210,211,218,219,220,221,222,223,224,228,232,241,269,301,311,340,352,356,376,382,387,388,392,399,401,410,412,413,420,421,430,431,436,437,438,443,447,458,468,469,470,471,472,475,481,487,495,496,499,514],"1x2x2":484,"2000k":205,"20x":392,"23899e":379,"2400k":205,"256k":[],"25x":[],"298k":403,"2_3":374,"2k_ss":412,"2nd":[2,3,6,11,12,15,17,38,46,47,57,60,63,76,82,97,160,167,198,206,218,219,220,221,222,223,224,228,230,232,241,269,313,318,326,352,355,362,370,379,380,381,382,386,388,401,412,418,419,436,458,467,468,469,470,471,472,475,487,494,496,499,514],"2pi":198,"2theta":177,"2x1x2":484,"2x2x1":484,"2x2x2":484,"2x4x10":484,"2x5":412,"300k":[247,313,502,515],"310k":502,"32k":[],"3419e":267,"3806504e":[6,100],"38e":[],"3n_k":246,"3nk":303,"3nkb":308,"3rd":[4,9,15,17,20,38,57,76,116,126,198,218,219,221,222,223,224,228,241,313,314,352,380,384,386,401,412,418,419,458,468,469,470,471,472,475,487,494,499,514],"3x3":[100,374],"4857990943e":412,"4_94":11,"4th":[6,38,57,88,114,115,128,174,184,198,206,326,352,372,385,387,388,392,410,413,420,436,443,447,458,468,469,470,472,475,487,494,499,502,519],"4x10":370,"4x2x10":484,"4x6x10":484,"50k":1,"53xx":18,"54xx":18,"55e":[],"58i":210,"5_1":392,"5_12":374,"5_6":374,"5kx":[212,238],"5nlog_2":12,"5th":[128,379,504],"6021765e":513,"6863e22":446,"6x6":6,"72360e":267,"7797e":267,"7842e":12,"8032044e":513,"8706e":457,"8706q":457,"8730m":457,"8730n":457,"8e12":220,"8x1":6,"8x2":[6,12],"948q":457,"9e18":[12,40],"9e9":446,"9jan09":[347,416],"9th":381,"__main__":485,"__pthread_key_cr":12,"_boundingbox":203,"_compute_group_group":154,"_compute_heat_flux":154,"_compute_t":8,"_j1m1m1":152,"_j2m2m2":152,"_manifold_rattl":509,"_pair_lj":9,"_serial":12,"abstract":17,"boolean":[3,352,354],"break":[],"byte":[3,12,220,504],"case":[1,2,3,6,8,11,12,13,15,16,17,18,40,41,42,46,47,62,64,66,76,78,114,115,120,126,128,129,155,156,157,158,159,161,164,165,166,167,168,170,171,172,176,178,180,181,182,184,201,202,203,204,205,206,212,213,217,218,219,221,222,223,224,225,226,228,230,232,236,238,242,245,248,249,251,252,253,254,256,267,269,270,271,272,273,274,275,276,277,288,289,290,292,294,295,299,300,302,303,304,305,312,313,315,318,320,321,323,326,329,332,333,334,336,337,341,343,344,346,347,349,350,351,352,354,370,371,372,374,376,378,379,380,381,383,385,386,388,397,400,402,404,410,412,415,416,418,419,420,432,433,434,436,439,441,443,447,450,453,455,459,466,469,470,472,479,480,482,485,487,489,490,494,495,497,499,501,503,504,505,506,508,509,513,514,515,518,519],"catch":[1,3,485],"char":[6,8,457],"class":[1,3,5,6,7,8,9,11,12,13,22,37,45,56,186,197,243,302,356,365,398,419,449,450,467,475,485,487],"default":[],"export":[205,399],"final":[3,5,6,7,8,9,11,12,17,42,62,96,153,206,217,218,219,221,222,223,224,226,230,232,245,268,269,274,303,307,313,314,318,338,340,341,348,354,379,381,387,388,392,410,413,420,432,436,443,447,448,468,469,470,472,475,482,495,501,508,509,514,517],"float":[3,6,8,12,41,43,76,125,202,206,218,224,250,302,314,331,412,454,456,485,487,497,504,514],"function":[],"import":[1,2,3,6,9,11,17,76,116,178,189,209,230,245,248,253,254,269,308,332,333,334,336,341,351,353,432,439,485,487,496,504,508],"int":[3,6,8,11,112,243,245,253,255,308,341,504],"long":[],"new":[],"null":[3,6,100,101,118,124,153,178,209,225,231,234,237,266,302,311,315,318,322,323,326,327,347,387,388,401,410,413,416,419,420,421,436,437,438,443,447,449,450,458,468,470,471,472,475,487,490,495,497,515],"public":[0,7,8,12,243,252,413,448,457],"return":[2,3,6,8,11,14,15,16,17,18,19,42,76,119,120,129,146,147,151,176,178,206,218,222,223,232,243,269,354,368,370,416,484,485,486,494,497,503,514],"short":[1,3,6,7,9,13,16,176,269,313,329,342,372,382,383,386,388,392,393,395,396,397,401,402,404,412,419,422,424,428,432,435,436,441,444,452,457,469,473,482,485,495,497,501,508,509],"static":[],"switch":[1,3,6,10,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,35,38,40,41,44,46,47,48,49,50,52,54,55,57,100,121,124,152,155,165,177,184,185,187,188,189,190,192,193,195,196,198,205,208,212,216,225,232,239,244,248,252,253,256,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,305,313,315,316,332,334,338,339,345,349,355,357,358,360,361,364,366,368,370,372,375,381,385,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,410,411,413,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,439,442,443,444,446,449,451,452,459,468,469,470,471,472,473,475,477,478,479,481,482,484,487,489,490,494,496,500,502,509,514,517,519],"throw":504,"true":[6,12,13,17,120,127,202,203,218,226,228,232,269,270,294,295,296,300,313,336,340,352,354,386,412,416,457,468,485,489,497,514],"try":[1,3,8,12,17,19,218,250,256,337,338,339,344,485,509,514],"var":[3,11,12,178,352,370,498,514],"void":[4,6,7,8,42,181,226,243,490],"while":[1,3,9,11,12,13,14,18,76,116,152,161,176,189,202,207,216,223,230,232,236,246,247,252,253,254,256,269,290,303,304,308,310,342,372,379,386,392,403,410,449,450,470,472,475,482,485,496,501,508],a10:354,a123:354,a12:451,a2m:[6,100],a_0:[256,341,392],a_0_real:256,a_1:341,a_2:341,a_3:341,a_4:341,a_c:400,a_cc:400,a_f:472,a_i:[],a_ij:392,a_j:[],a_pi:392,a_sigma:392,a_ss:400,aacut:[],aat:185,aatom1:127,aatom2:127,aatom3:127,ab_23_cd:354,abbrevi:12,abc:[3,12,354,485,514],aberdeen:[89,90,240,317],abf:231,abf_integr:13,abi:207,abil:[3,230,269,300,313,412],abl:[3,8,9,11,12,40,95,202,207,229,238,244,337,344,386,485,514,518],ablat:341,abort:502,about:[0,1,3,6,8,9,11,12,13,17,40,42,43,64,66,83,120,127,128,130,172,178,202,203,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,234,236,237,238,239,242,243,244,245,248,249,250,251,253,254,255,256,257,258,259,260,261,262,263,265,268,274,278,279,280,281,282,283,284,285,286,287,293,294,295,297,298,299,300,301,302,304,305,306,307,308,309,310,311,312,313,314,315,316,326,327,329,330,332,333,334,335,336,337,338,339,340,341,343,344,345,346,348,349,350,351,352,369,372,378,379,381,386,391,397,402,419,446,450,478,485,488,489,494,495,497,502,506,509,514,517,519],abov:[1,2,6,7,8,10,11,12,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,38,41,42,43,44,45,46,47,48,49,50,51,52,54,55,57,60,66,67,72,75,76,77,78,81,82,95,96,98,99,100,104,105,107,108,124,126,128,130,152,153,155,156,157,158,159,160,161,164,165,166,167,168,170,171,172,176,177,178,180,181,184,185,186,187,188,189,190,191,192,193,195,196,198,202,203,204,205,206,209,210,211,212,213,218,219,221,222,223,224,226,229,230,232,233,238,241,243,245,249,251,253,254,255,259,268,269,274,296,299,301,306,312,313,318,326,329,332,333,334,335,352,354,355,356,357,358,359,360,361,362,364,366,372,374,376,380,381,385,386,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,422,424,425,426,427,428,429,430,431,432,433,434,435,436,439,440,441,442,444,446,447,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,473,474,475,477,478,479,480,481,482,483,484,485,487,488,489,490,491,494,495,496,497,498,501,502,505,508,509,514,515,518,519],abscissa:469,absenc:213,absent:508,absolut:[3,206,216,231,232,236,318,331,371,372,379,416,424,488],absorb:341,absoult:372,ac3:177,academ:245,acc:336,acceler:[],accelri:[6,13],accept:[7,12,96,176,178,206,216,229,232,245,336,396,428,495,502,509],acceptor:418,access:[0,3,6,7,8,9,11,12,16,39,41,59,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,97,98,99,100,101,102,103,104,106,107,110,111,112,114,115,116,117,118,119,120,122,123,124,125,126,127,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,173,174,175,176,177,199,209,210,211,212,213,214,215,216,217,218,219,221,222,223,224,225,226,227,228,229,230,231,232,233,234,237,238,239,242,243,244,245,246,247,248,249,250,251,253,255,256,257,258,259,260,261,262,263,265,266,267,268,269,274,278,279,280,281,282,283,284,285,286,287,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,323,326,327,328,329,330,331,332,333,334,335,337,338,339,340,341,343,344,345,346,347,348,349,350,351,367,371,386,414,416,418,419,436,449,450,459,484,485,488,493,505,514],accident:509,accidenti:364,accler:[9,16],accommod:214,accomod:269,accompani:8,accomplish:[16,232,257,285],accord:[6,67,76,89,133,139,142,160,205,216,227,228,256,269,295,303,318,320,338,339,341,346,347,349,350,351,382,386,412,416,427,430,447,454,456,457,459,461,462,464,465,466,501,514],accordingli:[11,14,113,156,157,171,176,182,382,433,434,466],account:[],accuml:[3,313,337,344],accumul:[1,6,8,15,76,89,154,209,219,220,253,313,318,343,369,386,493,513],accur:[1,3,6,9,15,17,38,42,57,161,226,267,308,313,316,329,337,344,350,352,372,392,412,415,416,441,451,467,469,470,472,501,506,514],accuraci:[1,3,6,12,42,201,202,206,226,247,269,305,316,342,352,371,372,378,388,412,441,449,450,469,476,496,501,506,508,514,518],accuractli:506,ach:371,achiev:[1,3,6,10,16,17,18,29,42,226,245,247,269,270,295,296,303,371,419,496],achiv:18,acid:9,ackland1:410,ackland2:410,ackland:[],acknowledg:[],acml:12,aco:514,acolor:[205,206],acoust:295,acquir:[3,6,61,64,65,181,182,228,230,232,269,445,480,492,508],across:[1,2,3,6,9,12,13,15,42,60,64,69,72,74,76,85,103,120,127,129,166,180,182,218,221,222,223,226,237,249,313,314,319,337,341,344,350,354,381,386,482,487,490,491,495,504,506],act:[3,6,120,163,236,248,251,252,253,254,256,259,268,313,323,336,338,339,341,350,351,352,379,394,405,415,416,418,451,466],acta:[130,177,387],actinid:[9,439],action:[2,6,11,12,76,246,251,339,508],activ:[5,8,11,12,13,14,56,62,96,176,231,246,250,253,259,268,293,313,321,340,369,432,467,481,511,514],actual:[1,3,6,8,12,57,65,134,161,202,203,206,210,211,225,227,228,236,253,254,290,294,299,300,308,318,329,331,332,333,334,336,342,351,352,371,382,415,417,422,427,433,434,466,484,485,496,497,505,514],adam:[371,372],adapt:[],add:[0,1,3,5,6,7,8,9,11,12,13,14,15,16,17,18,19,41,43,76,96,100,113,126,129,131,176,178,179,202,203,204,205,209,210,211,212,213,215,217,218,219,221,222,223,224,228,231,236,238,243,247,248,249,251,253,255,256,260,267,268,269,270,271,272,273,274,275,276,277,288,289,290,291,292,294,302,312,313,315,316,326,328,332,334,335,339,340,341,343,345,346,350,352,372,374,378,380,388,393,395,398,402,412,419,424,436,441,442,444,450,452,485,487,488,493,495,497,499,506,508,509],add_molecul:215,add_speci:215,add_to_nodeset:215,addforc:[],addit:[],addition:[6,8,16,151,329,351,415,451],additionali:203,addres:9,address:[7,8,11,205,252,509],addtorqu:[],adequ:[329,342,371,381,496],adher:29,adhikari:256,adiabat:[],adiam:[205,206],adjac:[40,176,178,381,441,469,470,501,502],adjiman:440,adjust:[2,3,6,16,17,42,62,130,140,156,157,158,161,162,165,166,171,172,177,182,202,205,218,226,230,232,250,253,257,261,265,266,269,270,274,290,294,297,299,300,303,304,305,306,311,313,321,329,333,337,342,344,345,346,348,349,351,371,372,379,381,386,388,409,433,434,457,472,497,515],adjust_dt:[],adjust_radiu:321,adjust_radius_factor:321,admiss:274,adof:[158,218],adopt:[312,508],adp:[],adri:[9,309,449,450],adust:172,advanc:[3,250,392,482,493],advantag:[1,6,8,11,14,18,40,41,42,226,386,411,496,501],advect:[3,6,329],advertis:8,advis:[381,448],afer:3,affect:[1,6,10,14,15,16,17,41,63,64,76,97,129,153,162,176,182,205,206,211,218,219,221,222,223,224,227,228,229,230,232,233,243,249,251,253,259,266,270,271,272,273,275,276,277,283,288,289,290,292,313,314,327,341,351,364,371,377,378,379,381,382,383,386,412,433,434,441,484,485,487,489,490,492,495,497],affin:[16,17,18,232,386,401],afil:247,aforement:18,afresh:[301,495,514],afshar:406,after:[],afterrun:495,afterward:3,afterword:42,ag1:177,ag2:177,again:[6,11,12,16,17,65,152,158,164,172,202,206,232,249,299,355,370,381,433,434,482,484,485,487,489,494,501,503,514,517],against:[11,12,13,67,233,381,449,450],aggreg:[6,12,69,72,74,85,103,120,127,249,265,311,313,327,482,515],aggress:[249,501],agilio:[9,13],agre:[3,8,198,379,388,421,450],agreement:[5,7],ahd:418,ahead:348,aidan:[0,5,7,9,13,374],aij:13,aim:6,airebo:[],ajaramil:[7,9,13],aka:205,akohlmei:[7,9,13,207,250],aktulga:[7,9,306,450],al2o3:457,al2o3_001:[130,314],al3:177,ala:[256,457],alain:9,alat:[294,436],alb:[447,470,472],albeit:312,albert:9,alchem:[96,172],alcohol:344,alcu:[387,392],alcu_eam:447,alderton:405,alejandr:[269,270],alessandro:13,algebra:439,algorithm:[0,1,6,7,8,9,42,64,206,215,226,229,232,256,258,259,283,296,304,313,316,317,336,337,341,344,349,377,378,379,383,386,408,412,434,439,454,456,482,484,501],alia:[9,12,16],alias:[1,372],aliceblu:206,align:[6,9,12,29,42,76,180,198,222,226,251,374,487,490,508],alkali:412,all:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,22,33,37,39,40,41,42,43,45,51,55,56,58,59,60,62,63,64,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,171,172,173,174,175,176,177,178,179,180,181,182,184,186,191,197,198,199,202,203,204,205,206,207,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,237,238,239,240,241,242,243,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,262,264,265,267,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,293,294,295,296,298,299,300,301,302,303,304,305,306,308,309,310,311,312,313,314,315,316,317,318,319,320,321,325,326,328,329,330,331,332,333,336,337,338,339,340,341,342,343,344,346,347,348,349,350,351,352,353,354,355,356,360,365,367,369,370,371,372,373,374,376,379,380,381,382,383,385,386,387,388,389,391,392,393,395,396,397,398,399,401,402,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,428,432,433,434,435,436,437,438,439,440,441,442,443,444,446,447,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,478,479,480,481,482,484,485,486,487,488,489,490,491,492,494,495,496,497,498,499,500,501,502,504,505,506,508,509,513,514,515,517,518,519],allen:[29,96,405,415],allentildeslei:96,allign:3,allindex:353,alloc:[3,5,6,8,9,11,12,63,243,343,380,382,386,445,450,487,495],allocat:3,alloi:[],allosw:76,allow:[1,2,3,6,8,9,11,12,13,14,15,16,17,18,22,37,39,40,41,42,56,58,59,60,61,62,64,65,66,82,101,118,120,154,156,157,158,171,176,177,178,180,186,197,198,199,202,203,205,206,207,209,210,212,214,215,216,218,219,220,221,222,223,224,226,228,229,230,231,232,233,237,238,243,245,246,247,248,250,253,256,259,260,264,266,269,270,294,298,299,300,301,302,303,307,313,314,316,318,320,321,325,329,336,337,338,339,341,342,343,344,345,346,352,354,356,365,367,371,372,374,379,380,381,382,385,386,388,389,392,393,394,395,396,397,402,410,412,416,417,418,419,424,428,433,434,439,441,447,450,451,454,456,457,466,473,476,478,480,482,485,487,489,490,491,492,493,494,497,499,500,501,504,505,509,514,515],almost:[2,3,12,63,251,303,341,372,383,386,466],alo:402,alon:[6,7,229,309,449,450,485],alond:13,along:[6,8,12,29,41,76,96,130,176,177,178,201,202,205,218,229,251,256,257,261,266,268,303,313,316,318,322,326,327,336,340,341,347,350,352,374,377,378,379,381,402,405,416,419,422,424,428,436,449,450,469,487,490,497,498,514],alonso:[437,438],alpha:[6,12,52,210,256,303,304,308,379,387,390,393,402,406,408,410,411,413,418,423,424,436,442,446,471,473,505,508],alpha_:[],alpha_c:432,alpha_i:458,alpha_ialpha_j:[],alpha_lj:432,alphabet:[2,3,22,37,45,56,66,186,197,209,356,365,380,399,467,487],alphanumer:[3,66,209,302,310,354,380,514],alreadi:[3,7,8,9,12,16,17,18,43,58,178,179,181,204,214,218,222,223,226,228,232,260,301,303,329,352,353,380,381,406,417,419,426,434,466,476,479,483,487,488,492,497,513,514],also:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,22,29,36,37,38,40,41,42,43,45,55,56,57,61,62,64,66,70,76,77,78,80,82,87,88,96,98,99,101,104,114,115,116,117,118,119,124,126,128,129,131,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,170,171,172,173,174,175,178,179,180,181,182,184,186,197,198,200,201,202,203,204,205,206,207,209,210,211,212,214,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,238,243,244,245,246,247,249,250,253,254,255,256,266,267,269,270,271,272,273,274,275,276,277,282,285,286,288,289,290,291,292,294,295,296,298,299,300,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,322,323,326,327,329,332,333,334,335,336,340,341,342,343,345,347,350,352,353,354,356,362,365,369,371,372,374,375,376,379,380,381,382,383,385,386,392,396,397,399,403,404,405,406,410,411,412,415,416,418,419,420,428,432,433,436,439,441,443,445,446,447,448,451,452,454,461,462,464,465,467,468,469,470,471,472,473,475,482,484,485,486,487,488,489,490,491,492,494,495,496,497,499,500,501,502,505,506,507,508,509,510,512,513,514,515,517,519],alter:[3,6,8,9,11,12,42,62,155,156,157,158,159,161,164,165,166,167,170,171,178,182,202,203,205,207,210,211,218,227,228,229,230,232,268,269,308,311,313,315,323,329,337,344,351,378,381,419,487,492,494,497,514,515,519],altern:[1,6,8,9,11,12,17,18,100,178,202,209,219,232,240,250,254,269,302,313,336,337,344,357,361,371,378,379,387,388,402,407,408,410,411,413,421,424,432,436,437,438,443,447,448,458,468,470,472,475,485,487,488,500,502,505],although:[29,43,198,259,269,300,304,313,336,370,494,508,519],aluminum:479,alwai:[0,6,11,12,17,18,55,60,66,76,176,206,218,219,220,222,223,224,228,231,245,247,251,305,308,313,329,346,350,351,355,371,372,377,379,380,382,383,386,395,398,410,427,439,449,450,457,459,469,470,472,479,482,487,488,490,492,499,501,504,508,514,515],amap:206,amatrix:247,amaz:11,amazingli:13,amber2lmp:[],amber:[],ambient:205,ambigu:[3,66,209,514],amd:[17,386,439],amend:[],amino:9,amit:9,among:[16,153,216,256],amorph:[178,471],amount:[1,3,6,12,62,97,127,176,180,201,205,216,220,230,231,245,249,253,269,294,300,313,321,329,334,337,342,344,352,371,386,406,445,487,490],amplitud:[232,266,322,347,364,490,514],amu:245,amzallag:457,analag:[6,514],analalog:6,analog:[6,118,152,180,198,416],analys:[7,492],analysi:[7,9,13,66,67,78,207,309,310,319,353,439,458,487,497],analyt:[1,3,9,13,130,172,177,316,371,392,420,421,426,439,447,469],analyz:[6,8,9,13,381,439],andersen:316,anderson:[298,406],andr:[7,9,13],andrew:13,andzelm:466,ang:294,angl:[],angle1:312,angle2:312,angle_coeff:[],angle_cosineshift:27,angle_cosineshiftexp:[26,187],angle_cutof:418,angle_cutoff:418,angle_hybrid:[29,68],angle_info:450,angle_styl:[],angle_typ:41,angleangl:[3,355,362,487],angleangletors:[3,185,487],anglecoeff:[3,39],angletors:[3,185,191,487],angletyp:228,angmom:[],angmomi:[125,202,203,331],angmomx:[125,202,203,331],angmomz:[125,202,203,331],angstrom:[6,10,62,76,130,167,177,178,201,202,203,205,206,214,222,223,232,233,245,250,251,266,306,311,346,348,349,351,372,374,377,383,387,388,397,410,432,436,443,448,449,450,472,479,490,496,513,515],angular:[6,29,41,64,66,70,91,92,93,94,117,125,152,156,157,170,171,178,202,203,209,253,259,265,266,271,272,273,275,276,277,279,280,281,284,286,287,288,289,292,311,313,316,322,331,387,392,401,416,433,434,436,439,447,467,470,471,487,497,514,515],angularm:280,anharmon:[27,54,187,308,501],ani:[1,3,6,7,8,9,10,11,12,13,14,15,16,17,22,29,38,39,40,41,42,43,45,56,57,59,61,62,64,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,181,182,184,186,198,199,201,202,203,204,205,206,209,212,213,214,216,218,219,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,238,242,245,248,249,251,253,256,259,265,266,269,274,294,296,298,299,300,302,304,305,306,308,310,311,313,315,316,318,322,323,326,328,329,330,331,340,341,346,347,348,349,350,351,352,353,354,356,367,370,371,372,374,376,377,379,380,381,383,384,385,386,388,392,396,397,401,402,405,406,410,411,413,415,419,420,421,428,439,441,447,449,450,451,458,466,467,468,469,470,471,472,473,474,475,480,481,482,484,485,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,505,506,508,509,510,512,513,514,515,517,518,519],anihil:432,anim:[2,4,7,11,13,205,381],anion:[413,457],aniso:[3,230,232,269,270,271,272,273,274,275,276,277,300,313],anisotrop:[253,415,451],ann:440,annoi:509,annot:[7,468,470,471,472,475,487],annual:[482,501],anoth:[1,3,6,7,8,9,11,12,17,29,41,66,76,77,96,128,131,204,205,209,210,216,218,221,222,223,224,229,232,233,246,249,253,254,259,269,270,274,299,302,313,314,332,333,334,341,351,354,377,379,381,382,385,402,406,412,413,415,418,419,423,424,432,449,451,459,466,469,470,471,472,481,482,485,488,494,496,502,508,509,514,519],ansi:[9,12,16],answer:[3,4,8,12,313,383,384],anthoni:339,antiquewhit:206,antisymmetr:[9,41,389],antisymmetri:412,antonelli:[338,339],antonio:446,anymor:339,anyon:7,anyparticl:95,anyth:[8,11,178,232,252,468,470,472,498,509],anywai:[181,386,508,517],anywher:[12,178,399,436,458,514],aoff:[380,487],aparam:[96,210,211],apart:[3,179,259,326,382,391,459,487,496],aperiod:295,api:[9,11,12,207,420,485],appar:3,appear:[2,3,6,11,12,13,40,41,42,77,82,96,101,118,120,127,128,152,161,178,179,181,202,203,205,206,218,222,223,226,230,233,236,245,250,299,310,311,340,352,354,355,371,379,380,381,400,410,436,441,457,469,475,483,484,485,487,488,489,492,494,508,514,519],append:[],appendix:[29,405,457],appl:[230,269,270,475],appli:[2,3,4,5,6,8,9,12,17,18,29,33,42,51,60,62,64,66,76,77,96,97,116,128,152,153,158,164,166,168,172,177,178,180,184,186,191,197,201,202,203,205,206,209,210,211,212,213,215,218,225,226,230,231,232,234,237,238,240,241,243,244,245,246,247,248,250,251,253,254,255,256,260,269,270,274,275,276,277,283,288,289,292,293,294,296,300,303,311,312,313,315,316,318,319,322,326,327,328,330,332,333,334,335,337,339,340,341,344,352,371,374,379,380,381,391,393,395,397,402,405,412,416,417,418,419,421,422,424,430,434,439,441,444,449,452,453,454,455,456,466,473,478,487,488,490,491,492,496,497,499,504,508,514,515,517,518],applic:[1,6,9,12,17,207,215,229,233,234,243,245,247,250,294,299,302,312,318,326,337,344,371,386,472,497,508],applyt:3,appopri:[9,17],approach:[6,7,14,202,215,246,295,296,308,313,336,337,339,341,344,371,392,402,404,408,409,415,419,439,451,453,455,466,476],appropri:[1,2,3,6,8,9,11,12,13,15,17,33,38,43,51,57,58,64,78,97,100,128,129,156,157,158,186,191,197,198,201,202,203,206,218,219,222,223,224,229,230,232,243,244,247,256,264,266,267,269,271,272,273,274,275,276,277,288,289,290,292,296,299,300,303,308,313,317,329,332,333,334,337,344,346,347,349,350,351,362,372,381,388,392,396,400,401,402,411,416,419,421,428,432,439,448,449,450,468,469,470,471,472,475,476,487,488,489,491,492,500,501,504,514,515],approri:248,approxim:[6,9,130,134,177,245,247,256,296,314,316,336,371,377,378,379,394,404,412,415,433,434,439,441,448,451,457,473,478,501,508],april:11,aprpopri:482,apu:[433,434],aqua:[205,206],aquamarin:206,ar_therm:215,ar_ttm:215,ara:13,arbitrari:[6,41,61,128,202,203,205,207,231,232,248,269,296,300,304,468,485,498,514],arbitrarili:[11,62,128,152,201,230,269,402,514],arcco:3,arch:[1,9,12,14,15,17],architect:369,architectur:[16,386,439],archiv:[6,7,9,11,12,331,399,494],arcsin:3,area:[6,42,100,124,128,176,226,232,256,337,344,409,416,446,474,484,497],aren:[128,354],arflag:12,arg:[3,11,12,22,41,42,45,56,62,66,76,96,129,166,172,176,178,181,182,186,201,202,203,204,206,209,210,211,212,214,216,218,219,220,221,222,223,224,225,226,227,228,231,232,233,238,243,245,248,249,250,251,259,266,271,272,273,299,312,313,314,315,319,322,323,325,336,339,346,347,348,349,351,352,356,369,381,386,393,394,395,397,398,399,404,405,408,412,417,419,424,428,432,433,434,435,444,452,454,456,467,473,484,485,487,490,492,494,496,498,500,505,506,514,515,518,519],argon:245,argonn:12,argument:[2,3,6,8,11,12,17,20,21,22,23,24,25,26,27,28,29,30,31,32,35,38,41,42,43,44,45,46,47,48,49,50,52,54,55,57,62,66,78,96,100,118,121,124,128,152,153,155,160,165,166,167,172,176,178,179,180,182,184,185,186,187,188,189,190,192,193,195,196,198,202,203,206,209,210,211,212,214,217,218,219,220,221,222,223,224,225,226,230,231,232,239,241,243,244,245,247,248,252,253,259,266,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,298,299,301,305,310,313,314,315,316,329,332,334,341,343,345,347,349,352,354,355,356,357,358,360,361,362,364,366,369,370,372,373,374,376,381,385,386,387,388,390,391,392,393,394,395,396,397,398,399,400,401,402,404,405,406,408,410,411,413,414,415,416,417,418,419,420,421,422,424,425,426,427,428,429,430,431,432,433,435,436,437,438,441,442,443,444,446,447,449,450,451,452,457,458,459,467,468,469,470,471,472,473,475,477,478,479,481,482,483,484,485,486,487,488,490,492,495,496,497,498,502,504,505,514,515,518],aris:[12,478],arithmet:[3,6,114,371,397,400,427,441,473,474],arkansa:9,arl:[9,89,90,240,317],armi:[89,90,240,317],armv8:17,arnold:371,around:[1,3,4,6,9,12,43,60,61,62,70,75,76,77,78,82,128,152,156,173,176,178,180,201,205,206,213,214,230,232,233,251,266,269,300,302,304,308,313,322,326,329,346,347,350,370,380,457,487,490,497,498,508,514],aroung:3,arrai:[],arrang:152,arrheniu:501,art:[9,482,501],artefact:247,articl:[6,457],articul:[7,9,298],artifact:[97,176,508],artifici:[267,303,461,462,464],arun:13,arxiv:[152,204,458],ascend:[42,206,250,259,313,492],asci:7,ascii:[13,203,314,340,381,410,413,436,487],ash:[433,434],asid:[8,178,436],asin:514,ask:[3,11,509],askari:446,askoos:13,asoci:205,aspect:[6,7,62,232,245,415,451,474,487,497,501],aspect_ratio:314,asper:4,aspher:[],asq:[433,434],assembl:4,assign:[1,2,3,6,7,11,12,14,15,17,18,33,39,40,41,42,51,59,60,62,64,66,70,76,77,80,87,99,104,115,117,122,125,126,130,152,153,158,173,175,177,178,181,191,201,202,203,204,205,206,207,209,210,211,214,218,221,226,228,229,230,233,235,245,250,253,254,255,256,266,269,271,272,273,274,275,276,277,286,288,289,290,291,292,296,299,300,302,304,310,313,314,332,333,334,335,352,362,372,374,376,380,381,385,386,392,410,413,415,418,419,450,451,479,484,485,487,488,489,490,491,496,497,502,505,514,515],assignemnt:[6,496],assing:302,assingn:469,assist:[7,267],associ:[3,5,6,8,12,22,37,40,41,45,56,62,70,79,80,87,88,96,98,99,104,110,112,114,115,117,142,173,186,197,202,203,205,206,210,211,212,216,230,232,238,243,245,246,252,256,266,269,298,308,312,313,314,327,329,353,354,356,365,374,379,381,385,386,399,402,406,408,409,410,412,418,419,421,424,428,453,455,466,467,469,485,488,495,507,508,511,514],associd:71,assum:[2,3,4,6,9,11,12,16,17,18,40,62,71,76,97,107,113,115,155,156,157,158,159,160,161,163,164,165,166,167,168,170,171,172,176,178,181,206,210,211,216,218,219,221,222,223,224,230,232,242,250,252,256,259,271,272,273,275,276,277,279,281,284,286,287,288,289,292,294,295,299,300,301,304,313,315,318,326,337,340,341,346,349,352,359,371,372,380,381,386,392,394,396,399,400,409,412,418,419,423,428,433,434,474,482,484,485,487,489,492,497,501,504,505,508,509,515],assumpt:[176,250,387,441],astar:436,astart:459,asterisk:[22,45,64,82,96,128,172,182,186,206,210,211,259,313,356,376,399,418,466,481,484,497,513],astop:[379,459],asu:410,asub:436,asubrama:13,asum:302,asymmetr:[139,349,392,410],asynchron:[15,16],atan2:514,atan:514,atc:[],atc_fe_output:215,athomp:[0,7,9,13],atm2pa:6,atmospher:513,atol:12,atom1:[298,312,380,487],atom2:[298,312,380,487],atom3:[298,312,380,487],atom4:[312,380,487],atom:[],atom_element_map:215,atom_forc:450,atom_info:450,atom_modifi:[],atom_styl:[],atom_vec:8,atom_vec_atom:8,atom_vec_electron:8,atom_veloc:450,atom_weight:215,atomey:[6,7,11,13,202,205,206],atomfil:[3,6,76,302,352,385,497,514],atomic_charg:215,atomic_numb:447,atomid:487,atomist:[6,215,336,439],atomperbin:3,atomt:206,atomvec:8,attach:[6,223,296,318,326,487],attatch:339,attempt:[3,6,42,62,76,201,216,226,227,228,229,233,245,299,300,329,349,371,375,381,419,485,502,505,514],attend:215,attent:[15,18],attogram:513,attrac:436,attract:[],attribut:[3,6,7,8,9,11,40,41,43,61,66,76,96,125,126,127,129,156,172,202,203,205,206,209,210,211,217,218,221,222,223,229,230,269,271,272,273,274,275,276,277,279,280,288,289,290,292,300,313,314,331,332,333,334,374,380,392,412,419,487,488,489,497,505,514],atw:[433,434],atwat:471,atwt:436,atyp:[127,172,228,402,424,428,432],au1:177,au3:177,aug:[],augment:[9,12,125,230,302,436],augt1:436,auo:310,auoh:310,author:[3,8,9,13,204,410,411,508],auto:[3,6,8,9,11,12,100,174,209,219,220,318,343,371,380,386,484],autocorrel:[66,100,253],autom:[9,12,205],automag:7,automat:[3,6,9,12,14,15,16,17,18,19,36,140,198,214,220,245,247,256,313,318,342,371,386,401,410,419,436,439,453,454,455,456,479,487,500,508,509,514],auxiliari:[1,6,9,11,12,13,202,295,313,488,492,517],avail:[1,3,5,6,7,8,9,11,12,13,15,16,17,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,44,46,47,48,49,50,52,54,55,57,64,66,89,90,96,121,124,125,152,155,165,176,184,185,187,188,189,190,192,193,195,196,198,202,205,209,210,212,218,221,222,223,224,225,230,231,232,239,240,241,244,246,248,250,253,269,270,271,272,273,274,275,276,277,278,279,286,288,289,290,292,305,307,313,314,315,316,317,332,334,339,345,349,355,357,358,360,361,364,366,369,372,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,407,408,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,434,436,437,441,442,443,444,446,447,449,450,451,452,458,459,468,469,470,471,472,473,475,477,478,479,488,490,496,500,514],availab:[],avalo:[317,408],ave_chunk:6,aveforc:[],avendano:440,averag:[3,6,7,12,15,42,66,67,76,89,90,96,100,101,114,116,128,130,154,158,166,174,177,202,203,206,209,211,215,217,218,219,220,221,222,223,224,225,226,230,245,247,249,253,259,269,270,274,295,300,303,309,310,313,314,318,355,388,408,412,436,473,488,492,505,508,514],averi:329,avesq:129,avg:12,avi:205,avoid:[1,3,6,12,36,40,62,178,179,198,205,214,219,221,224,236,245,247,254,294,296,304,308,313,314,343,350,384,392,412,432,436,450,469,473,489,495,496,508],awai:[3,6,64,128,202,205,218,229,233,248,251,268,294,318,326,340,346,382,402,424,428,492],awar:[386,411,484],awpmd:[],axel:[7,9,13,18],axi:[3,6,42,76,101,130,142,156,177,178,180,201,205,218,226,245,248,251,266,299,322,326,341,347,360,366,374,487,490,497],axial:274,azimuth:[205,248],azur:206,b_k:458,ba2:177,babadi:451,back:[1,6,7,11,12,13,14,15,17,159,160,161,165,166,167,168,170,178,182,202,203,206,207,210,211,231,236,243,250,251,253,254,269,275,276,277,288,289,290,292,302,311,313,332,333,334,338,339,348,349,351,370,371,372,381,416,485,487,488,489,490,491,494,500,501,514,515],backbon:[229,316,364],backcolor:[206,518],backend:17,background:[9,96,97,124,153,206,226,232,253,329,337,341,344,381,400,433,434,436],backtrack:[377,379],backward:[12,207,381,501,514],baczewski:246,bad:[3,12,62,64,251,381,487,492,504],badli:[3,230,269],bal:336,balanc:[],balasubramanian:291,ball:[152,433,434],ballenegg:371,bammann:215,band:[4,6,7,9,152,209,268,378,381,392,439,457],bandwidth:[1,10,18,41],bandwith:205,bar:[96,205,513],barashev:410,bare:[236,252,254],barost:[236,508],barostat:[],barostt:6,barr:401,barrat:308,barrett:71,barrier:[3,4,6,268,366,381,401,414,501],bartel:295,bartok2010:458,bartok2013:458,bartok:[9,152,448,458],bartok_2010:448,bartok_phd:448,bary:513,barycent:325,basal:[],base:[3,4,6,8,9,11,12,13,14,15,20,66,67,76,83,96,100,114,123,130,158,160,177,178,180,202,204,205,206,209,215,222,223,226,227,228,232,233,237,245,250,253,257,259,283,295,296,299,302,304,306,313,314,318,319,329,336,372,386,388,390,392,406,412,415,418,419,420,422,424,433,437,438,444,446,447,457,468,471,472,475,482,484,487,488,489,491,494,497,498,501,502,505,509,513,514,515,519],bash:399,bashford:[6,20,184,397,499],basi:[3,6,12,41,152,158,178,214,253,255,295,329,346,374,422,497,514],basic:[6,7,8,12,17,42,125,153,205,206,215,226,269,270,294,350,387,389,439,481,489,508],basin:[95,381,482,501],bask:[410,436,447],bath:[9,303,308],batom1:[74,127,129,202,206],batom2:[74,127,129,202,206],bayli:[6,184,499],bb13:185,bcc:[3,4,7,67,75,78,374,436,438],bcolor:[3,205,206],bdiam:[3,205,206],be2:177,bead:[5,7,10,13,41,46,47,170,213,229,296,466],beam:233,bear:[6,246],becau:13,becaus:[0,1,3,6,8,12,16,17,18,41,42,43,62,67,76,77,82,101,118,128,140,152,158,163,168,178,179,180,184,202,203,204,205,206,207,212,218,226,227,228,229,230,232,238,244,245,246,247,252,253,254,255,266,269,270,283,290,299,303,304,308,313,326,331,336,337,340,341,344,348,349,350,351,352,358,371,377,379,381,382,385,386,397,399,402,404,406,412,413,415,416,417,418,419,423,432,433,434,436,441,451,466,467,469,473,474,484,485,487,489,490,491,494,496,497,499,501,502,508,509,513,514,515,517,519],beck:[],becker:[387,410],beckman:250,becom:[1,2,3,6,7,8,18,40,42,55,60,62,76,180,202,203,205,206,226,227,228,229,232,245,247,256,268,269,310,311,332,333,346,347,349,350,351,371,372,377,381,388,400,402,410,412,415,424,441,447,451,468,475,478,487,488,490,497,509,514],been:[1,2,3,6,7,8,9,11,12,13,16,20,21,23,24,25,26,27,28,29,30,31,32,35,38,40,41,42,43,44,46,47,48,49,50,52,54,55,57,60,62,63,66,69,74,76,96,121,124,125,126,127,129,131,155,156,157,158,159,160,161,165,166,167,168,170,171,179,180,181,182,184,185,187,188,189,190,192,193,195,196,198,201,202,203,205,206,207,212,214,216,217,218,219,221,222,223,224,225,226,229,230,231,232,233,239,244,245,248,250,251,253,254,256,257,258,259,260,264,266,267,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,298,299,300,303,305,307,310,311,313,315,316,325,330,332,333,334,341,342,343,345,346,347,348,349,351,352,355,357,358,360,361,364,366,370,371,372,379,382,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,409,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,434,437,438,439,442,443,444,446,449,450,451,452,459,466,468,469,470,471,472,473,474,475,477,478,479,480,482,484,485,487,488,489,490,491,493,497,501,504,505,514,515,517,518],befor:[1,2,3,6,8,9,12,14,17,22,29,40,41,42,45,58,62,70,76,79,80,87,88,98,99,104,114,115,116,117,126,158,161,166,167,173,178,179,181,182,186,200,201,206,210,211,212,213,214,216,218,221,222,223,224,225,226,230,235,236,244,245,250,252,253,254,256,259,266,269,275,276,277,288,289,292,295,302,303,304,307,308,313,314,315,330,332,333,334,340,346,347,348,352,356,376,377,379,381,386,413,416,432,436,439,467,476,482,484,485,488,489,490,491,492,494,495,497,501,504,505,508,509,514,515,517,518,519],began:[5,12],begin:[3,8,12,38,40,57,76,129,131,179,198,201,202,206,210,211,215,217,218,219,221,222,223,224,226,232,241,283,298,311,314,329,331,334,343,348,351,352,368,370,371,372,373,375,378,380,381,382,385,386,410,439,441,447,454,456,457,459,466,469,479,482,487,494,501,503,505,513,514,517],behalf:3,behav:[3,27,187,378,379],behavior:[3,182,198,202,203,205,207,229,230,233,245,246,247,250,253,254,255,269,299,303,308,329,332,333,341,378,392,412,436,479,481,489,493,513,514,517],behaviour:[6,253],behind:[8,252,267,303,329,371],beig:206,belak:7,believ:11,bellott:[6,20,184,397,499],bellow:360,belong:[2,3,41,76,132,181,216,218,222,245,259,313,352,380,453,487],below:[1,2,3,4,5,6,8,9,10,11,12,15,16,17,22,38,40,41,42,43,45,55,57,62,63,66,69,72,74,76,82,85,100,103,124,125,128,129,130,152,153,158,164,166,172,176,177,178,181,182,184,186,197,198,201,202,203,205,206,209,210,212,213,215,218,219,220,221,222,223,225,226,228,229,230,232,233,238,241,243,245,248,249,251,253,254,259,266,267,269,274,275,276,277,288,289,292,294,299,302,303,304,311,312,313,315,316,323,326,329,330,331,332,333,334,337,338,339,341,344,346,347,352,354,356,369,371,374,376,377,379,380,381,383,386,387,388,389,392,393,394,397,398,399,400,402,405,410,412,413,415,416,417,418,419,422,424,425,426,427,428,429,430,431,432,433,434,435,436,440,441,446,449,450,451,452,458,459,466,467,469,474,475,477,478,479,480,481,482,485,487,488,489,490,492,494,495,497,499,500,501,503,504,505,507,508,509,514,515,519],bench:[1,6,9,10,11,12],benchmark:[1,7,10,11,12,13,14,15,16,17,18,42,226,371,500],beneath:233,benedict:439,benefici:[64,383],benefit:[1,246,473,496],bennet:96,beowulf:7,berardi:[415,451],beraun:341,berendsen:[],berensen:313,berger:9,berkelei:176,berkowitz:371,berlin:[7,9,318],bern:[3,296,304,305,401,415,457,467,496],bernendsen:6,beryllium:412,besid:[8,315,490],best:[1,6,8,14,15,16,17,18,19,269,290,291,312,313,386,392,402,424,428,441,469,488,496,501],beta:[6,303,387,390,410,411,413,436,470,471,472,505,514],beta_:392,beta_k:458,beta_pi:392,beta_sigma:392,beta_t:471,better:[3,6,7,8,12,14,16,27,152,187,211,226,245,256,269,283,304,311,313,329,372,381,386,470,509],betwe:391,between:[],beutler:432,bewteen:[120,219,329,337,344,419,422,484],beyon:496,beyond:[3,5,6,12,17,64,76,96,176,202,206,221,222,245,269,371,383,414,430,441,501,505,514],bflag1:[43,205],bflag2:[43,205],bgq:[17,439],bi3:177,bi5:177,bia:[3,6,8,124,153,156,157,158,159,160,161,165,166,167,168,170,171,209,218,231,232,245,253,254,269,275,276,277,288,289,290,292,308,332,333,334,336,515],bias:[6,9,231,515],biaxial:156,biersack:[436,467,472,479],big:[3,4,12,202,303,308,329,382,400,509],bigbig:[3,12],bigger:3,bigint:[3,243],bilay:[4,10,326],bilayer1:326,bilayer2:326,bill:7,billion:[3,7,10,12,40,245,495],bin2d:76,bin3d:76,bin:[3,6,11,12,40,66,70,76,80,87,99,104,115,117,126,128,158,166,173,175,202,206,218,221,222,223,295,303,308,329,382,383,386,409,445,488,518],binari:[3,6,7,9,12,13,16,33,37,51,56,191,197,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,242,243,244,245,246,247,248,249,250,251,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,318,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351,362,365,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,442,444,446,447,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,474,475,477,478,479,480,488,489,494,517,519],binary2txt:[],binchunk:218,bind:[9,17,18,204,222,392,457],binsiz:[40,206,382,386],binstyl:166,bio:[41,382],biolog:[6,7],biologi:190,biomolecul:[298,313,371,372,397],biomolecular:496,biophys:250,biosym:13,bird:409,bisect:[42,226,474],bisector:[6,402,424,428],bispectrum:[66,152,458],bisqu:206,bit:[3,11,12,17,40,243,254,441,469,473,495,508,509],bitmap:[3,469,476],bitrat:[205,206],bitzek:378,bkgd_dyn:436,bla:12,black:206,blais:[9,13],blanchedalmond:206,blank:[2,3,12,38,57,119,198,205,241,298,313,380,381,392,411,436,443,458,468,469,470,471,472,475,484,485,487,514],blast:341,blend:436,block:[2,3,6,100,152,178,180,181,299,350,374,386,392,412,447,458,490,501,508,509],blocksiz:386,blow:[3,283,346,350,459],blown:3,blue:[2,205,206,229],bluegen:[202,371,439],blueviolet:206,bni:76,board:[372,405],bodi:[],body_nparticl:8,bodyflag:487,bodyforc:256,bodyforcei:256,bodyforcex:256,bodyforcez:256,bodystyl:[259,313],boff:[380,487],bogaert:336,bogu:[3,161,230],bogusz:97,bohr:[410,412,439,472,513],boltzmann:[6,7,9,96,100,124,155,158,159,160,161,164,165,166,167,168,170,218,229,253,256,257,258,259,260,274,345,406,502,513],bond:[],bond_coeff:[],bond_graph_cutoff:450,bond_harmon:[8,49,50],bond_harmonicshift:50,bond_info:450,bond_interact:215,bond_styl:[],bond_typ:182,bondangl:[3,21,33,487],bondbond13:[3,185,487],bondbond:[3,21,33,487],bondchk:450,bondcoeff:[3,59],bondtyp:[227,228,380],bonet:[317,408],bonu:[3,517],book:[478,509],bookkeep:441,bookmark:0,boost:[1,3,12,67,382],bop:[],border:[3,7,16,64,341,515],boresch:96,boreschkarplu:96,born:[],boron:412,borrow:318,bose:308,botero:[7,9,13,412],both:[1,3,4,6,7,8,9,11,12,14,15,16,17,27,37,40,41,55,56,60,62,64,65,66,72,74,76,92,96,97,120,125,127,128,140,154,156,157,158,163,166,168,171,176,178,180,181,182,187,197,198,202,205,208,209,210,211,216,218,219,221,222,223,224,227,228,229,230,231,232,237,245,247,249,251,253,254,256,257,265,266,269,270,275,276,277,283,288,289,292,298,299,302,303,310,313,316,318,326,329,333,337,338,339,341,344,346,347,349,350,351,354,355,365,372,376,379,380,381,382,384,386,388,392,393,394,395,396,397,398,400,405,406,410,411,412,415,416,418,419,420,424,426,428,429,430,432,433,434,439,440,441,442,444,449,451,452,468,470,471,472,475,482,484,485,487,488,489,490,494,499,504,505,508,514,517,518,519],bottleneck:[1,3,485,506],bottom:[8,9,161,176,206,232,244,256,290,337,344,374,499],bottomwal:225,bounc:[3,329],bound:[3,6,17,26,27,42,43,60,62,76,167,180,187,201,202,203,206,221,222,226,232,233,237,245,254,269,299,329,346,347,348,349,350,351,371,379,412,487,490,501,508,514,515],boundar:3,boundari:[],boundary_dynam:215,boundary_faceset:215,boundary_integr:215,bount:11,bourgogn:9,box:[],boxcolor:[205,206],boxxlo:11,bpa:386,bpclermont:[9,13],bptype:466,br1:177,bracket:[2,3,6,42,66,76,129,131,209,217,218,219,221,222,223,224,226,343,505,514],bragg:[130,177],branc:[],branch:[],branicio2009:475,branicio:[78,475],breakabl:[7,45,56],breakag:[83,227],breakdown:[1,12,15,97,119,449,450,482,501],brennan:[9,89,90,240,317,408,466],brenner:[388,467],brick:[3,42,64,65,166,180,226,487,489,491,514],brief:[1,5,6,7,8,12,252,269,388,392,450,501],briefli:[6,10,296,401,457,509],brilliantov:416,bristol:[5,7],brittl:446,broader:485,broadli:8,broken:[2,55,69,74,75,83,114,119,127,182,227,269,392,489,499,506,517],brook:6,brought:201,brown:[7,9,13,15,16,130,153,206],brownain:394,brownian:[],brownw:7,brows:0,browser:[4,205],bryantsev:418,bsd:12,bstyle:[41,43],btype:[58,74,127,179,202,402,424,428,432,466],buc:395,buck:[],buckingham:[7,9,210,211,304,372,393,395,396,404,435,467],buckplusattr:457,buffer:[3,8,203,205,206,504],bufi:205,bug:[],bui:205,build:[],builder:[7,13],built:[1,2,3,4,6,8,9,11,12,13,14,15,16,17,20,21,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,41,44,46,47,48,49,50,51,52,54,55,56,57,67,71,83,86,89,90,92,95,96,107,108,109,110,111,112,116,121,123,124,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,162,164,165,169,170,172,176,177,184,185,187,188,189,190,191,192,193,195,196,197,198,202,203,204,207,209,212,213,214,216,220,225,227,228,229,231,232,233,238,239,240,241,242,244,245,246,247,248,250,252,253,255,256,257,258,259,260,262,263,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,294,295,296,298,299,302,303,304,305,306,307,308,309,310,313,315,316,317,318,319,320,321,322,323,325,329,332,334,335,336,337,338,339,341,342,344,345,347,348,349,353,354,355,357,358,359,360,361,362,364,365,366,372,381,382,383,386,387,388,390,391,392,393,394,395,396,397,398,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,442,443,444,445,446,447,448,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,482,485,488,490,496,500,501,502],bulatov:[437,438],bulk:[4,6,75,256,294,300,403,436,439,441,446,453,455,457,491],bullet:7,bump:253,bunch:8,bundl:[9,205,207,509],burlywood:206,bussi1:333,bussi2:333,bussi:[247,333],button:509,buyl:[9,204],bybe:9,bypass:6,c1060:14,c11:[219,436],c12:219,c13:219,c1n:219,c2050:14,c21:219,c22:219,c23:219,c2n:219,c31:219,c32:219,c33:219,c34:219,c3n:219,c41:219,c42:219,c43:219,c44:219,c_0:[341,464,465],c_1:[72,74,129,130,177,202,206,246,302,314,352],c_2:[74,129,130,174,176,177,202,314,343,352],c_3:[129,314],c_6:176,c_cluster:6,c_cstherm:6,c_dist:129,c_doubl:11,c_e:341,c_flux:100,c_foo:514,c_forc:129,c_gauss:414,c_hb:418,c_id:[6,66,76,96,129,131,202,203,217,218,219,220,221,222,223,224,314,331,343,505,514],c_ij:6,c_ijkl:6,c_index:129,c_k:246,c_ke:337,c_msdmol:131,c_my_stress:217,c_mycentro:[218,222],c_mychunk1:126,c_mychunk2:126,c_mychunk:[6,70,80,87,99,104,115,117,158,173,175],c_mycom:221,c_mycomput:218,c_myd:203,c_myf:[202,518],c_myrdf:[128,224],c_mytemp:[8,219,220,221,224,343,505,514],c_n:[],c_n_k:246,c_p:153,c_pe:122,c_peratom:[122,153],c_pi:392,c_press:129,c_prop:6,c_radiu:176,c_reax:[449,450],c_sa:314,c_sigma:392,c_size:6,c_stress:202,c_tatom:[],c_tdrude:[236,254,508],c_thermo_press:[8,219,220,221,224],c_thermo_temp:224,c_xrd:221,ca2:177,cach:[17,40,441,500],cacul:316,cadetblu:206,cai:508,calcal:9,calcforc:256,calclat:100,calcluat:[116,122,124,153,402],calcualt:[100,218],calcul:[],caldwel:[6,184,499],calhoun:296,call:[],callabl:[3,11],callback:[3,8,11,154,209,243,485],caller:3,calori:513,caltech:[6,7,9,13,412],calucl:6,calul:[11,12,158,372],cambridg:[9,448],campa:[],campana:295,can:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,237,238,239,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,374,375,376,377,379,380,381,382,383,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,494,495,496,497,498,499,500,501,502,503,504,505,506,508,509,513,514,515,516,517,518,519],cancel:[209,313,515],candid:[182,216,245],cannot:[1,2,3,6,9,11,12,13,15,16,17,39,40,41,42,55,59,60,61,62,72,76,91,93,97,129,131,154,156,158,179,181,182,199,201,202,203,204,205,206,217,218,219,221,222,223,224,226,229,230,232,233,245,246,247,253,254,255,259,266,269,271,273,275,277,279,280,281,286,288,292,299,300,303,308,310,313,314,315,319,329,337,341,343,344,346,347,350,351,352,354,367,371,374,379,381,384,385,386,395,396,398,410,415,417,424,428,430,432,441,444,449,451,452,453,455,466,467,469,482,484,485,487,488,490,491,493,496,497,499,501,504,513,514],canon:[9,209,216,245,247,269,270,288,289,290,291,292,296,333,336,339,439,446],cao1:296,cao2:296,cao:296,capabl:[5,7,9,11,14,17,18,348,354,372,386,388,398],capac:[9,41,112,164,240,308,341,461,487,497],capit:[235,487],capolungo:[130,177,314],captur:[6,342,388,396,412,416,428,436,508],carbid:402,carbon:[7,205,364,388,401,421,436],card:[12,14,16,22,45,82,96,128,186,210,211,313,356,376,399,418,481,489,494,517,519],care:[3,6,62,76,178,181,201,218,222,223,227,228,233,247,252,256,269,299,313,336,391,485,487,490,491,496,497],carefulli:[11,12,55,310,352,419,421,492],carlo:[4,6,7,9,209,216,229,245,313,336,409,467],caro:[216,410],carpent:[7,13],carri:[16,262,302,341,416,450],cart:[3,484],carter:[9,17],cartesian:[3,6,65,387,484],carv:181,cascad:[237,341],cash:7,cast:[247,514],cat:[15,205],catastroph:304,cate:256,categori:[],cation:[413,457],cauchi:[145,150],caus:[1,2,3,6,8,12,16,17,178,180,181,182,202,206,214,230,237,245,269,283,294,299,311,313,316,346,348,349,350,351,354,370,372,379,381,385,418,424,430,433,434,441,481,485,486,487,488,491,492,494,495,514,519],caution:[1,372],cautiou:[227,228],cautious:388,caveat:[388,496],cbecker:[387,410],cc1:[6,14,70,80,87,99,104,115,117,126,158,173,175,218,222],cc2:14,ccc:[411,468,470,472,475],ccflag:[9,12,16,17,18,19,202],ccm6:410,ccsi:[411,468,470,472,475],ccu:392,cd2:177,cdeam:410,cdennist:9,cdll:11,cdof:[6,158,218],cdte:392,cdte_bop:392,cdtese:392,cdzn:392,cdznte:392,ce3:177,ce4:177,ceas:378,ceil:514,cell:[3,6,62,97,128,130,176,177,178,202,214,230,231,245,250,267,269,270,274,295,303,306,317,341,371,372,374,409,412,439,505],cella:[6,505],cellalpha:[6,505],cellb:[6,505],cellbeta:[6,505],cellc:[6,505],cellgamma:[6,505],center:[3,6,25,43,66,70,76,79,80,87,95,98,99,109,114,115,116,126,128,130,158,159,160,163,166,170,173,175,178,205,206,209,210,211,213,218,221,222,223,230,232,233,234,236,245,246,251,253,254,259,265,269,275,276,277,288,289,290,292,299,304,310,311,313,314,318,326,327,329,331,332,333,334,336,337,339,346,350,355,374,380,391,411,412,415,416,422,433,434,436,437,438,449,450,468,470,471,472,474,475,490,497,508,514],centimet:513,central:[3,64,75,81,82,101,118,128,134,152,176,259,294,316,327,359,380,439,443,449,450,475,487],centro:[],centroid:[3,296,474,497],cerda:371,ceriotti2:247,ceriotti:[13,247,252],certain:[1,2,3,6,8,12,17,40,76,125,129,131,182,202,203,205,217,218,219,221,222,223,224,229,243,244,313,315,330,343,354,362,370,382,419,441,450,473,489,493,508,514],certainli:251,cerutti:372,cfg:[3,6,7,9,13,202,204,205,206,207],cfile:450,cfl:[140,319],cfor:318,cg_type:452,cgiko:2,cgikot:2,cgkio:2,cgko:2,cgkot:2,cgo:2,cgot:2,ch2:316,ch2lmp:[],ch3:316,ch5md:204,chain3:382,chain:[],challeng:[6,318],chalopin:308,champaign:[250,371,372,433],chan:439,chandler:[387,410],chandrasekhar:[6,424],chang:[],change_box:[],changeabl:202,channel:[4,212],chapter:[296,372],charact:[2,3,6,12,38,42,57,66,198,202,203,205,206,207,209,226,241,302,310,354,380,385,412,423,447,449,450,457,469,484,485,489,494,495,514,517,518,519],character:[6,71,75,118,128,152,458,482,501],characterist:[254,329,338],charg:[1,3,4,5,6,7,9,11,15,41,87,96,97,125,130,177,178,202,203,207,209,210,211,216,233,238,245,302,304,305,306,310,331,344,371,372,380,393,395,401,402,404,405,410,412,413,419,424,428,432,444,449,450,457,467,472,473,475,476,478,479,487,488,492,497,499,508,513,514],charmm2lammp:13,charmm:[],chartreus:206,cheap:329,cheaper:[237,415,451],check:[3,6,8,9,11,12,15,17,39,40,42,59,76,100,198,199,216,222,226,227,228,233,242,245,251,252,299,312,316,329,337,339,344,352,354,367,370,379,380,381,382,383,386,409,420,423,441,450,480,482,484,485,487,495,501,504,505,514],checkf:198,checkout:509,checkqeq:450,checku:198,chem:[6,13,20,21,25,40,41,44,46,47,96,97,118,124,153,184,185,195,220,231,236,246,247,254,256,268,269,270,290,291,296,300,303,305,313,317,318,329,332,333,336,337,338,339,346,355,364,366,371,372,378,381,388,393,397,398,401,402,403,405,406,408,412,414,415,417,418,424,428,429,432,436,440,441,444,457,466,473,496,499,501,508],chemic:[9,130,172,177,202,203,215,216,245,304,309,310,336,372,449,450,462],chemistri:[303,304,306,388,392,412,449,450],chen:341,cheng:401,chenoweth:[449,450],chenoweth_2008:[449,450],chi:[103,167,201,294,304,306,367,413,415,515],chiefli:448,child:8,chip:[7,9,12,17,18,386,500],chipot:231,chiral:364,chmod:[11,12],cho:436,chocol:[7,206],choic:[3,6,9,12,15,16,18,41,42,55,96,153,156,157,171,182,198,218,222,223,226,229,232,233,247,253,256,267,269,296,300,304,313,336,365,372,377,378,381,383,386,419,432,441,445,487,496,497,500,501,507,508,513],choos:[1,3,6,7,8,9,12,16,17,18,29,40,55,96,129,168,169,205,227,228,229,230,233,242,253,256,267,269,271,272,273,274,275,276,277,299,300,317,329,333,347,371,372,378,476,482,484,496,502],chose:[470,472],chosen:[2,3,6,12,17,152,178,181,190,198,205,211,216,230,233,242,245,246,254,256,267,269,274,296,299,310,329,333,336,337,342,344,345,351,372,373,378,386,407,408,412,416,423,426,452,470,482,496,501,502,508],chri:176,christian:[7,9,14,17],christoph:7,chunk:[],chunkid:[70,80,87,99,104,115,117,126,158,173,175,218],chute:[4,9,10,248],ciccotti:316,cieplak:[6,184,499],cii:219,cij:219,ciko:2,circl:[43,76,325],circular:[3,6,156,200],circumst:18,circumv:[101,118,308],citat:[],cite:[3,7,8,12,253,457],civ:9,ckio:2,cko:2,cl1:177,clarendon:[29,405],clarifi:[7,470,472],clariti:354,clark:444,class2:[],classic:[0,3,5,6,7,8,9,243,296,303,308,341,366,412],classifi:[467,475],claus:485,clean:[6,12,14,15,17,495],cleanli:[486,518],clear:[],clearli:7,clebsch:152,clermont:[9,13],clever:491,click:[2,11,22,37,45,56,178,186,197,205,250,356,365,381,399,467,509],client:[250,252],climb:[268,381,501],clinic:[7,13],clo:[167,201,515],clock:[12,482,501],clockwis:347,clone:509,close:[3,6,11,12,13,40,42,71,76,153,181,202,228,229,230,247,254,256,269,290,313,316,347,350,370,372,375,377,378,381,386,388,392,402,403,422,436,441,449,453,455,469,472,491,497,508,509,511],closer:[3,10,42,128,176,201,202,226,230,234,338,381],closest:[228,294,313,344,415,451,466,476],cloud:[457,508],clovertown:18,clsuter:77,clump1:[298,313],clump2:[298,313],clump3:[298,313],clump:313,cluster:[],clutter:3,cmap:487,cmatrix:247,cmax:436,cmd:[11,12,296,498],cmdarg:11,cmin:436,cmm:[],cmoput:145,cn1:219,cn2:219,cna:[],cnn:219,cnr:[9,13],cnt:[419,491],co2:[41,177,316,380],coars:[7,9,10,29,36,41,55,190,298,313,329,417,452,496,499],coarser:[372,514],coarsest:152,code:[],coeff:[3,7,8,12,21,22,33,45,51,184,185,186,191,355,356,362,399,419,423,441,454,456,459,487,516],coeffcient:487,coeffici:[],coefficienct:406,coefficient0:410,coefficient1:410,coeffieci:[6,390,422],coeffincientn:410,coexist:[245,412],cohes:[6,413,436],coincid:[134,350,397,433,434,482],colberg:204,cold:[6,163,245,249,382,508],coldest:337,coleman8:9,coleman:[9,130,177,314],colin:9,collabor:[7,8,15],collect:[3,6,7,8,9,13,41,43,70,80,87,92,99,104,109,115,117,126,158,166,173,175,178,202,203,206,218,231,259,265,298,308,311,313,352,371,380,382,400,487,494,500,506,519],collid:[237,329,351],colliex:177,collinear:[3,298],collis:[3,256,329,347,351,409,416,479],colllis:329,colloid:[],colombo:40,colon:[207,352,488],color1:206,color2:206,color:[3,9,42,202,205,206,226,246,303,308],column:[3,6,9,12,13,43,66,69,70,71,72,74,76,80,82,85,87,88,90,99,101,103,104,115,117,118,120,122,125,126,127,128,129,131,152,153,158,166,173,175,176,177,198,202,203,206,209,217,218,219,221,222,223,224,259,266,267,303,313,330,331,341,351,414,418,449,450,488,502,504,514],columnar:176,colvar:[],colvarmodul:12,com:[],comamnd:232,comand:229,comannd:386,comb3:[],comb:[],comb_1:305,comb_2:305,combiant:403,combin:[3,6,7,9,11,13,36,41,66,69,74,85,96,103,114,120,127,156,157,171,202,205,215,221,250,259,269,296,302,317,333,342,350,353,355,371,372,374,378,386,400,402,403,408,412,413,419,431,432,458,468,470,472,473,475,478,490,495,500,508,514,516],come:[],comfort:[12,13],comit:509,comm:[0,3,11,12,64,78,204,250,252,253,372,381,386,406,441,446,469,489],comm_modifi:[],comm_modift:64,comm_styl:[],comm_world:11,command:[],comment:[2,4,7,11,12,38,57,184,198,202,241,254,313,341,380,381,387,410,411,413,423,436,443,450,457,458,468,469,470,471,472,475,484,485,487,508,509,514],commerci:7,commit:[9,509],commmand:[3,6,12,62,119,291,422,481,482,484,501,518],common:[],commonli:[3,6,9,12,17,25,60,62,116,118,180,202,205,207,366,417,426,458,470,472,487,490,499],commun:[1,3,6,7,8,9,10,11,12,14,15,16,18,41,42,61,64,65,76,176,181,182,205,206,226,227,228,230,231,232,250,252,256,258,259,260,269,295,302,304,305,306,313,317,329,341,352,369,371,382,383,384,386,408,409,445,480,484,485,496,497,514,517,519],communc:371,comp:[7,204,252,253,316,372,381,412,441,446,451,465,469,471],compact:[66,209,399,467],compani:[5,7],compar:[1,3,4,6,8,12,17,40,95,122,130,161,177,186,197,206,236,304,352,354,371,372,379,381,436,457,482,501,502,508,513],comparison:[],comparison_of_nvidia_graphics_processing_unit:14,compass:[7,9,21,22,37,44,45,56,185,186,197,355,356,365,398,467],compat:[3,5,7,8,9,11,12,13,17,18,42,76,129,131,189,202,207,211,217,218,219,221,222,223,224,226,295,307,333,336,343,346,349,371,386,420,439,441,469,484,485,514],compens:[6,227,228,311,382,412],compet:340,competit:372,compil:[3,7,8,9,12,13,14,15,16,17,18,19,176,202,204,205,207,250,340,372,386,439,487,488,492,514],compl:17,complain:[11,12,17],complement:436,complementari:[7,402,424],complet:[3,6,9,11,12,15,42,62,76,206,222,226,231,259,296,299,302,329,340,342,353,354,370,381,386,413,454,456,474,482,487,492,495,499,501,504,508,514],complex:[4,6,8,11,12,13,25,41,43,65,101,118,152,154,166,178,179,256,325,350,369,381,412,439,469,485,487,490,514],compli:[336,340],complic:[6,7,9,12,13,216,245,485],complier:12,compon:[3,6,8,12,64,66,70,71,78,87,88,97,98,99,100,101,104,105,108,113,115,116,117,118,119,120,121,122,124,125,129,139,142,143,144,145,148,149,150,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,173,174,175,201,202,203,205,206,212,213,217,218,219,220,221,222,223,224,225,229,230,232,233,238,243,248,252,253,256,259,261,265,266,268,269,270,274,275,276,277,288,289,290,292,293,295,296,297,300,311,313,315,316,318,322,323,326,329,332,333,334,336,343,344,349,350,351,371,374,378,379,380,381,386,406,412,416,433,434,454,456,457,458,487,488,497,505,514,515],componenet:6,composit:[6,216,256,410],compound:[401,412,413,475],compres:[76,126,218],compress:[],compris:[41,350,451,474],compton:[130,177],comptu:3,compuat:372,comput:[],computation:[3,6,227,228,341,392],computational:508,compute_arrai:8,compute_fep:[],compute_group_group:[],compute_inn:8,compute_ke_atom:8,compute_loc:8,compute_modifi:[],compute_peratom:8,compute_sa:[130,314],compute_scalar:8,compute_temp:8,compute_ti:[],compute_vector:8,compute_xrd:177,concaten:[2,3,518],concav:350,concentr:[76,410],concept:[6,158,168,218,496],conceptu:[3,6,76,166,230,232,381,402,419,436,492],concern:[6,78,96,204,246],concetr:76,concis:[11,340],conclud:12,concret:8,concurr:[16,372,514],conden:[341,470,472],condens:[6,160,341,388,404,410,424,475],condit:[],conducit:6,conduct:[],cone:490,confer:439,confid:[3,501],config:[12,202,484],configfil:231,configur:[1,2,6,12,15,17,38,62,134,180,198,201,202,205,209,230,231,232,233,237,245,252,253,283,296,304,340,369,379,381,388,392,411,436,439,468,470,472,475,482,487,489,490,501,509],confin:[487,501],conflict:[3,12,41,203,441,485,509],conform:[3,6,13,62,229,230,268,312,318,340,364,381,412,499],confus:[3,475],conjuct:[9,406],conjug:[7,8,253,378,412,449,450],conjunct:[6,7,76,95,96,126,161,166,172,178,182,206,210,211,253,256,260,283,299,300,304,305,306,308,313,317,329,337,344,349,371,372,381,393,395,399,402,406,412,418,424,441,444,452,473,487,490,494,508,519],connect:[3,6,9,96,163,181,229,250,298,313,316,326,381,403,416,449,450,466,472,484,485,487,491,508],conner:388,connor:388,conput:3,consecut:[3,11,12,40,76,178,206,210,211,233,250,251,402,424,428,482,488,490],consequ:[1,6,216,341,423,501],conserv:[],consid:[6,75,76,83,96,127,160,163,164,181,202,203,206,210,211,217,219,222,226,228,229,233,257,270,295,313,336,337,340,341,344,372,399,412,419,450,451,457,466,482,483,485,488,489,490,492,495,497,505,508,514],consider:[6,8,253,254,332,333,334,386,496],consist:[3,6,8,9,11,12,41,43,69,74,85,103,115,120,123,124,127,158,161,163,178,190,201,207,212,213,218,232,233,236,238,243,246,253,254,255,266,269,271,272,273,274,275,276,277,278,279,281,282,283,284,286,287,288,289,290,291,292,300,303,308,310,312,313,332,333,334,335,345,371,372,374,380,381,386,388,392,394,400,402,412,415,419,422,433,434,436,439,441,451,454,456,457,469,476,485,487,488,489,490,491,492,499,508,514],consistent_fe_initi:215,consit:313,constant:[],constitu:[3,6,259,313,346,350,400,451],constitut:[454,456],constrain:[3,6,8,155,156,157,158,159,161,164,165,166,167,168,170,171,209,218,233,245,246,251,259,263,298,299,311,313,316,327,337,344,379,380,412,492,499,508],constraint:[],construct:[6,8,12,14,38,55,57,64,67,71,75,77,78,82,101,118,130,152,177,230,269,295,312,350,382,386,405,439,441,466,468,469,490,491,506,514],constructor:[8,11],consult:450,consum:[1,308,445,514],consumpt:369,contact:[],contact_stiff:[453,455],contain:[0,1,2,3,4,6,8,9,11,12,13,17,18,19,38,41,42,57,66,96,100,128,130,152,154,158,166,176,177,178,180,184,186,197,198,202,203,205,206,207,209,210,211,215,217,218,219,221,222,223,224,226,231,233,238,241,247,251,252,253,256,267,283,294,295,298,299,301,302,303,306,310,313,314,319,329,336,340,341,350,351,354,370,372,380,381,384,385,387,388,389,392,401,402,405,410,411,412,419,420,436,439,443,447,448,449,450,458,468,469,470,471,472,473,475,482,483,484,485,487,488,489,490,492,494,496,499,501,502,504,505,508,509,514,517,519],content:[4,8,9,12,18,450,503,505],context:[3,6,8,12,17,128,129,206,227,228,233,298,310,345,378,478,487,494,503,513,514,515],contibut:75,contigu:484,contin:16,continu:[0,2,3,5,6,9,12,13,14,42,76,88,114,115,174,206,209,210,211,216,218,219,220,221,222,223,224,226,229,230,231,232,233,245,246,247,249,250,251,253,254,255,261,266,267,269,271,272,273,274,275,276,277,288,289,290,291,292,297,299,302,303,313,314,318,328,329,331,338,339,341,347,350,354,370,385,386,392,406,409,426,429,449,450,451,454,456,471,482,485,487,489,490,495,501,502,504,505,514,517],continuum:[6,7,9,215,341,454,456],contour_integr:215,contract:[62,230,232,269,300,313],contradictori:3,contrain:316,contraint:283,contrari:[247,254],contrast:[1,6,43,56,67,160,163,203,232,352,454,456,478,518],contrib:341,contribut:[3,4,5,6,7,8,9,12,13,17,66,68,70,72,73,75,76,79,80,82,84,86,87,93,96,97,98,99,100,102,104,113,115,117,119,120,121,122,124,126,129,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,211,216,217,218,219,221,222,223,224,230,245,253,256,259,260,264,270,290,291,298,299,307,310,313,314,316,343,371,379,381,389,406,409,410,412,419,433,434,439,441,449,450,457,499,505,508,509],contributor:12,control:[3,5,6,7,8,9,11,13,16,27,29,42,96,100,134,152,187,202,203,205,209,215,216,226,230,231,232,249,250,253,254,269,271,272,273,274,275,276,277,300,305,313,320,321,332,333,334,341,345,369,371,383,412,415,439,449,450,453,455,468,472,482,484,496,502,503],control_typ:215,controlfil:450,convect:100,conveni:[6,12,29,202,207,224,314,374,458,473,509,514],convent:[3,8,29,189,196,197,203,206,312,326,353,410,412,514],converg:[3,6,42,97,202,203,205,207,212,226,229,230,238,243,274,303,305,308,312,316,377,378,379,381,401,402,424,457,482,494,501],convers:[3,8,152,205,206,216,219,300,371,402,403,404,412,424,428,432,444,485,501,513],convert:[2,3,4,5,6,7,8,12,13,20,21,24,28,32,35,36,62,66,76,100,178,185,202,205,206,219,224,267,299,302,352,355,357,361,364,374,381,387,410,439,470,472,479,485,487,488,489,494,504,508,513,514,517,519],convex:[43,350],convinc:[7,12],cook:9,cooki:7,cool:[7,168,249,311],cooordin:[202,203],cooper:[5,7],coord123:126,coord1:[3,126,218,222,223],coord2:[3,126,218,222,223],coord3:[3,126,218,222,223],coord:[],coordb:457,coordbb:457,coordiat:379,coordin:[1,3,4,6,7,8,11,13,14,15,17,41,42,43,62,64,65,66,70,72,76,79,80,82,87,88,96,98,99,104,114,115,117,125,126,128,146,152,161,167,173,175,176,178,182,201,202,203,204,205,206,207,209,212,217,218,221,222,223,226,227,228,229,230,231,232,233,236,238,239,243,245,248,249,250,251,252,253,254,266,268,269,271,272,273,275,276,277,290,293,294,295,298,299,300,310,311,313,315,316,318,323,326,327,328,329,331,339,340,341,348,349,351,352,374,379,380,381,386,387,388,391,411,457,482,487,488,489,490,492,495,497,501,508,514,515],coordn:[126,218],coorind:[],copi:[0,3,4,8,9,11,12,15,17,41,131,205,341,381,399,449,485,509],copper:479,coproccesor:16,coprocessor:[1,7,9,16,17,386,500],coproprocessor:17,copy_arrai:8,copyright:[7,8,298],coral:206,core:[],core_shel:160,coreshel:[],cornel:[6,184,499],corner123i:125,corner123x:125,corner123z:125,corner1i:125,corner1x:125,corner1z:125,corner2i:125,corner2x:125,corner2z:125,corner3i:125,corner3x:125,corner3z:125,corner:[3,6,41,125,205,350,351,374,474,487,509],cornflowerblu:206,cornsilk:206,corp:9,corpor:16,corr:401,correct:[3,6,9,11,12,16,17,62,87,96,97,113,114,119,122,128,160,165,172,203,205,232,245,247,253,269,270,290,298,300,303,340,346,350,371,381,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,404,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,475,477,478,479,480,487,502,505,508,509],correction_max_iter:215,correctli:[3,8,11,17,76,88,113,114,115,155,156,157,159,161,163,164,165,166,167,170,171,174,202,206,212,233,238,243,254,263,269,270,306,313,316,326,328,347,350,381,382,386,404,434,439,484,485,487,497,509,513,515],correl:[],correpond:241,correspond:[1,2,4,6,8,9,10,11,12,14,20,21,22,23,24,25,26,27,28,29,30,31,32,35,38,41,43,44,45,46,47,48,49,50,52,54,55,57,75,76,96,107,108,121,124,125,126,127,130,131,139,142,143,144,145,146,148,149,150,152,155,156,165,172,176,177,184,185,186,187,188,189,190,192,193,195,196,198,201,202,203,205,206,210,211,212,218,220,221,222,223,225,228,230,232,239,243,244,248,253,256,257,265,266,267,269,271,272,273,274,275,276,277,278,279,283,286,288,289,290,292,295,296,300,305,313,315,316,332,334,336,345,346,347,349,350,351,353,355,356,357,358,360,361,364,366,372,376,378,380,381,387,388,390,393,394,395,396,397,398,399,400,401,402,405,406,410,411,412,413,414,415,416,417,418,419,422,424,425,426,427,428,429,430,431,432,433,436,437,439,441,442,443,444,446,447,449,450,451,452,457,458,459,468,469,470,471,472,473,475,477,478,479,482,484,485,487,488,490,500,501,502,504,505,508,514],correspondingli:[433,434,496],corrupt:3,cosin:[],cosineshift:27,cosmo:[247,252],cossq:[],cost:[1,6,10,11,12,17,40,42,76,121,130,153,177,205,206,218,222,223,226,227,228,242,269,305,341,371,372,384,402,424,428,439,441,468,484,496],costheta0:[468,470,472,475],costheta:447,costli:[11,97,247,382],couett:4,coul:[],could:[2,3,6,9,11,12,17,33,42,51,62,70,76,80,87,96,99,104,115,117,121,124,126,158,168,173,175,191,202,203,205,206,210,211,218,219,222,226,232,243,252,302,303,304,308,311,313,315,329,330,336,340,341,342,346,350,352,354,362,368,370,377,379,382,386,389,414,418,419,422,449,450,483,484,485,487,489,491,494,495,502,503,508,514,515],coulomb:[3,5,6,7,8,9,10,12,14,15,18,77,97,119,120,128,153,179,183,304,306,342,371,372,379,386,393,395,396,397,398,401,402,403,404,405,412,416,417,419,424,428,432,435,441,444,449,450,452,457,467,472,473,475,478,492,499,505,508,513],coulommb:6,cound:3,count:[1,3,6,8,11,12,16,42,66,72,82,100,126,128,129,166,176,182,212,213,216,218,221,222,223,225,226,233,238,242,245,251,269,283,299,316,332,333,350,372,379,380,381,383,386,414,418,441,505,514],counter:[3,347,482,493,495,501],counteract:245,counterbal:249,counterbalanc:29,counterpart:[202,313,482],counterproduct:18,coupl:[],courant:319,cours:[3,8,138,140,172,202,210,211,246,312,326,340,346,348,349,351,352,372,433,459,484,487,500,508,514,517],courtesi:374,cov:457,coval:[6,9,29,412,436,457,508],covari:247,cover:[6,76,198,206,215,256,412,474],coverag:[76,222],cpc:252,cpp:[1,3,6,8,9,11,12,13,96,202,210,211,243,316],cpu:[1,3,9,10,12,14,15,16,17,18,66,76,206,220,236,254,342,369,372,386,399,467,482,500,501,504,505,506,514],cpuremain:505,cr2:177,cr3:177,crack:[4,382],crada:[5,7],crai:[5,7,13,18,202],crash:[3,12,382,508],craympi:386,creat:[],create_atom:[],create_bond:[],create_box:[],create_elementset:215,create_faceset:215,create_group:204,create_nodeset:215,createatom:[],creation:[],crimson:206,critchlei:298,criteria:[3,128,179,205,206,227,228,229,264,379,446,474,489,492,514],criterion:[12,42,133,178,181,216,226,229,245,283,305,319,347,352,379,381,401,412,416,457,492,501,502],criterioni:501,critic:[6,49,50,267,336,341,379],crmax:76,crmin:76,cross:[3,12,22,76,98,156,176,186,202,203,205,217,222,228,232,266,268,290,313,322,326,328,337,344,356,374,381,397,406,409,410,417,418,419,424,426,428,447,452,454,456,470,472,479,487,491,497,517],crossov:1,crossterm:487,crozier:[0,7,13],crucial:303,crystal:[3,4,6,13,78,118,294,295,339,374,382,487,491,505,508],crystallin:[6,114,295,374,471,508],crystallis:336,crystallogr:[130,177],crystallograph:[374,505],crystallographi:[130,177,374],cs1:177,cs_chunk:6,cs_im:[41,487],cs_re:[41,487],csanyi:[152,448,458],cscl:436,csequ:6,csh:[11,12,399],cshrc:[11,12],csic:[411,468,470,472,475],csinfo:6,csisi:[411,468,470,472,475],csld:[],cst:410,cstherm:6,cstyle:484,csvr:[],ctcm:[387,410],ctemp_cor:236,cterm:318,ctr:9,ctype:11,cu1:177,cu2:177,cu3au:436,cube:[6,42,176,181,226,236,350,374,508],cubic:[],cuda:[],cuda_arch:[9,15],cuda_get:15,cuda_hom:[9,15],cuda_prec:[9,15],cufft:14,cuh:392,cummul:[3,6,224,227,228,229,231,242,247,253,255,329,332,333,334,335,337,344,418,505],cumul:[6,216,218,221,222,223,237,245,253,267,269,274,283,313,314,381],curli:2,current:[0,1,3,5,6,7,8,9,10,11,12,13,15,16,17,18,41,42,43,58,62,64,66,76,78,88,96,113,114,120,128,129,142,153,158,166,168,174,176,179,182,201,202,203,204,205,206,207,210,211,215,218,222,223,224,226,227,228,229,230,231,232,233,237,238,243,245,247,250,251,253,259,266,269,270,275,276,277,283,288,289,290,292,298,299,304,305,307,310,311,312,313,316,317,318,319,320,321,322,323,325,327,328,329,332,333,334,340,341,344,345,346,347,348,349,351,352,354,369,370,371,372,375,376,378,379,380,381,386,392,399,401,405,410,412,413,416,419,420,423,433,434,436,437,438,441,447,449,450,453,454,455,456,459,470,472,473,476,482,483,484,485,487,488,489,490,491,493,494,495,497,499,501,502,504,505,509,514,515,516,517,518,519],curv:[6,178,245,295],curvatur:[415,451,479],custom:[],cut0:485,cut1:496,cut2:496,cut:[],cuthi:[294,306],cutinn:[394,433,434],cutlo:[294,306],cutmax:447,cutoff1:[398,405,424,428,432,435,444,452],cutoff2:[393,395,396,398,404,405,424,428,432,435,444,452,473],cutoff:[3,6,8,10,16,18,40,46,47,55,56,64,75,77,78,82,96,101,118,120,127,128,152,176,179,181,182,228,229,234,241,294,303,304,306,308,310,313,317,329,342,346,350,352,369,371,372,379,382,383,384,386,387,388,389,390,391,392,393,394,395,396,397,398,400,402,403,404,405,406,407,408,409,410,411,412,413,414,415,417,418,419,420,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,449,450,451,452,457,458,459,460,461,462,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,485,489,492,496,508,514],cutoff_glob:[],cutoff_inn:[],cutoffa:411,cutoffc:411,cuu3:410,cval:177,cvd:336,cvel:318,cvff:[],cwiggl:[3,266,346,349,351,514],cyan:[2,205,206],cycl:[3,245,267,269,270,274],cyclic:[3,198],cygwin:12,cylind:[3,4,76,205,218,251,299,347,350,490],cylindr:[6,251,326,347],cypress:386,cyrot:392,cyrstal:295,d3q15:256,d3q19:256,d_double_doubl:15,d_e:341,d_flag2:302,d_flag:302,d_name:[125,202,302,331,497],d_single_doubl:15,d_single_singl:15,d_sx:302,d_sy:302,d_sz:302,daan:339,dai:12,daili:12,daivi:290,damag:[],dammak:308,damp:[3,6,209,214,253,254,255,260,269,270,274,300,303,304,308,313,332,333,345,347,348,378,379,381,393,395,397,402,405,412,416,424,432,444,452,467,473,501,508],damp_com:254,damp_drud:254,dampen:[313,508],dampflag:[347,416],dan:17,danger:[3,12,245,352,406,505],dangl:181,daniel:9,darden:[372,405],darkblu:206,darkcyan:206,darken:205,darkgoldenrod:206,darkgrai:206,darkgreen:206,darkkhaki:206,darkmagenta:206,darkolivegreen:206,darkorang:206,darkorchid:206,darkr:206,darksalmon:206,darkseagreen:206,darkslateblu:206,darkslategrai:206,darkturquois:206,darkviolet:206,dasgupta:304,dash:[416,504],dat:[6,100,198,215,483],data2xmovi:[],data:[],data_atom:8,data_atom_hybrid:8,data_bodi:8,data_vel:8,data_vel_hybrid:8,databas:[],datafil:[12,13,314],dataset:314,datatyp:3,date:[0,4,6,12,13,201,449,450,514],datom1:127,datom2:127,datom3:127,datom4:127,datum:[3,6,43,69,72,74,85,103,120,127,202,219],davenport:435,davi:346,david:[9,19,371,372,470,472],daw:[410,447],dbg:14,dcd:[3,6,7,202,204,205,206,207,296,488,492],ddim:201,deactiv:432,dealt:252,debug:[6,7,11,12,13,14,17,58,130,134,177,178,296,301,369,371,386,420,441,476,485,486,494,497,504,514],deby:[],decai:[101,402,479],decid:[3,6,12,16,76,266,302,313,342,502,509],decipher:374,deck:302,declar:204,declin:329,decod:205,decompos:[96,458],decomposit:[3,5,7,18,65,215,296,317],decoupl:[6,508],decreas:[3,202,203,212,213,220,229,232,238,243,245,253,340,371],decrement:318,deepli:368,deeppink:206,deepskyblu:206,def:[12,13,485],defaul:64,defect:[6,75,176,439],defgrad:[],defin:[2,3,5,6,7,8,11,12,17,20,21,22,23,24,25,26,27,28,29,30,31,32,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,52,54,55,56,57,58,59,60,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,185,186,187,188,189,190,192,193,195,196,197,198,199,200,201,202,203,204,205,206,209,210,211,212,213,214,215,216,217,218,219,221,222,223,224,225,226,227,228,229,230,232,233,236,237,238,240,243,244,245,248,251,252,253,254,255,256,264,266,268,269,270,271,272,273,274,275,276,277,279,280,281,284,286,287,288,289,290,291,292,294,295,296,298,299,300,302,304,306,311,313,314,315,316,319,323,327,329,331,332,333,334,335,337,338,339,341,343,344,346,347,348,349,350,351,352,354,355,356,357,358,359,360,361,364,365,366,367,369,371,372,374,376,378,379,380,381,382,383,384,385,386,388,389,390,391,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,411,412,414,415,416,417,418,419,420,422,424,425,426,427,428,429,430,431,432,433,434,435,439,440,441,442,443,444,446,447,449,450,451,452,453,454,455,456,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,484,485,487,488,490,491,492,493,496,497,498,499,501,502,504,505,508,510,511,512,513,514,515,516],definit:[2,3,6,8,12,13,83,86,128,152,206,218,219,220,221,222,223,224,232,240,251,274,314,331,343,346,349,351,353,365,369,380,389,392,400,407,408,412,422,447,454,456,458,474,485,487,489,496,498,513,514],defint:505,deform:[],deg2theta:177,deg:508,degener:[3,298],degrad:[8,18,295,372,496],degre:[3,6,8,20,21,24,28,29,32,35,36,38,69,85,101,103,105,107,108,110,112,113,118,124,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,177,178,184,185,188,189,196,198,201,205,218,229,236,245,247,248,253,254,259,269,270,274,275,276,277,288,289,290,292,296,298,312,313,316,332,333,334,339,355,357,361,364,366,379,405,410,418,497,505,508,515],degress:[158,218],del:501,delai:[3,6,12,382,409,505],deleg:419,delet:[2,3,7,8,12,55,60,63,66,176,181,182,209,218,219,221,222,223,224,227,229,242,245,269,314,332,333,352,354,370,380,382,385,441,466,487,488,489,490,498,499,504,509,510,512,514,515],delete_atom:[],delete_bond:[],delete_el:215,deli:201,delimit:[485,514],deloc:[270,412,457],delr:436,delt_lo:501,delta:[],delta_1:392,delta_3:392,delta_7:392,delta_conf:3,delta_ij:[436,447],delta_mu:[],delta_pi:392,delta_r:447,delta_sigma:392,delta_ua:[],delx:201,delz:201,dem:[],demand:308,demo:11,demon:293,demonstr:[303,436],den:299,dendrim:418,denniston:[9,256,258,259,260,295],denomin:[7,183],denot:[130,236,254,295,306,308,402,417,419,450,454,456],dens:[76,229,412],densiti:[3,6,7,9,18,41,42,62,111,128,138,152,164,176,178,210,211,215,218,222,223,226,232,243,256,259,262,263,295,299,300,302,304,341,346,374,376,380,387,388,392,410,436,437,438,447,451,457,461,463,464,465,487,496,497,505,513],density_continu:456,density_summ:456,depart:[0,7],departur:[267,303],deped:8,depend:[1,2,3,6,8,9,11,12,16,17,18,20,21,22,23,24,25,26,27,28,29,30,31,32,35,38,40,41,42,44,45,46,47,48,49,50,52,54,55,57,64,66,69,72,74,75,76,85,101,103,114,120,121,124,125,126,127,131,152,154,155,161,165,166,172,178,179,184,185,186,187,188,189,190,192,193,195,196,197,198,201,202,203,205,206,209,210,211,212,213,216,218,220,221,222,224,225,226,228,230,232,238,239,244,247,248,249,251,253,254,256,258,259,266,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,294,305,308,310,313,315,316,317,323,329,332,333,334,336,338,340,341,343,345,346,349,350,351,352,354,355,356,357,358,360,361,364,366,372,374,379,380,382,383,384,386,387,388,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,436,437,439,440,442,443,444,446,447,449,450,451,452,457,458,459,467,468,469,470,471,472,473,475,477,478,479,482,484,487,489,490,493,497,499,501,504,505,507,514,515],dependend:6,depflag:12,dephas:[482,501],depos:233,deposit:[],deprec:[3,304,449],depth:[52,156,205,341,415,451],dequidt:9,der:[96,119,400,401,432,449,450,478,508],deriv:[6,7,8,9,38,57,66,96,152,172,198,219,230,232,245,253,266,269,271,272,273,274,275,276,277,294,300,304,308,338,339,341,346,347,350,378,380,388,392,400,405,412,413,417,426,430,431,436,439,449,450,467,469,478,508],derjagin:478,derlet:294,descend:206,descent:[7,378],descib:[41,205,304],describ:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,38,40,41,42,43,57,65,66,72,75,76,78,97,122,125,128,130,142,152,153,156,157,158,162,163,166,169,171,172,176,177,178,180,181,190,195,198,202,203,204,209,210,211,218,219,220,221,222,223,224,226,229,230,231,232,233,235,236,241,246,247,250,251,252,253,254,255,256,258,259,260,264,268,269,270,274,282,291,294,296,301,302,303,304,305,306,313,318,326,329,330,331,332,333,334,335,336,337,338,339,344,346,347,349,354,371,372,374,377,378,379,380,381,385,388,389,391,393,394,395,397,398,399,400,401,402,405,410,412,413,415,416,417,419,422,424,425,426,427,428,429,430,431,432,433,434,435,436,439,440,446,447,448,449,450,451,452,457,458,459,466,467,468,469,470,471,472,473,475,477,478,479,480,482,484,485,487,488,489,490,491,497,500,501,504,509,514,515,517],descript:[],descriptor:[152,202,420],deserno:372,design:[0,3,6,7,8,11,13,14,15,17,130,160,163,177,215,229,235,236,269,270,294,295,314,336,341,389,390,391,394,397,402,404,412,432,433,434,437,438,447,450,469],desir:[2,3,6,7,9,11,12,14,15,16,33,41,51,62,76,97,100,124,129,153,160,178,191,201,218,224,230,232,243,245,246,253,254,255,259,269,290,298,299,300,301,304,308,313,316,329,332,333,334,335,340,347,362,368,371,372,374,377,379,380,381,406,410,418,433,434,468,470,472,483,484,485,487,491,496,501,502,504,505,514,515,517],desk:7,desktop:[4,6,7,10,12,205],despit:508,destabil:392,destre:364,destroi:[9,11,40,227,228],detail:[1,2,3,4,6,7,8,9,11,12,13,14,15,16,17,18,19,22,37,41,42,43,56,66,70,71,72,76,80,83,87,99,100,104,113,115,117,119,121,123,124,126,129,131,152,153,155,156,157,158,161,171,172,173,175,178,179,182,183,186,197,201,202,203,205,206,209,210,211,215,218,219,220,221,222,224,226,228,229,230,231,232,233,243,245,246,247,248,250,251,253,255,256,260,266,267,268,269,270,271,272,273,274,275,276,277,281,283,288,289,290,291,292,295,298,299,300,302,303,305,306,307,313,316,317,329,332,333,334,335,336,337,339,340,341,342,343,344,345,352,354,356,365,371,372,375,379,380,382,383,386,387,388,389,391,392,394,396,397,398,399,400,401,402,405,406,412,413,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,434,435,436,440,441,446,449,450,451,457,458,459,467,474,477,478,480,485,487,488,489,490,492,493,496,497,499,502,505,506,509,514,515,519],detect:[2,3,12,43,64,66,95,101,244,299,340,381,401,418,423,482,484,487,498,501,514],determ:386,determin:[1,3,6,8,9,12,15,40,41,43,52,60,61,62,64,65,72,76,96,113,119,121,124,130,131,139,153,166,167,176,177,178,201,202,203,205,206,207,208,212,213,214,217,218,219,220,221,222,223,224,225,226,230,232,233,236,238,245,248,249,251,253,254,259,264,266,267,269,275,276,277,288,289,290,292,294,296,299,300,303,310,311,312,313,314,315,319,321,323,329,332,333,334,336,342,343,346,347,348,349,350,351,352,365,371,372,374,380,382,383,386,388,389,396,401,405,409,410,414,416,419,420,428,436,439,441,450,451,457,466,469,473,478,484,487,488,490,492,494,497,501,503,504,506,513,514,515],determinist:317,detil:120,devan:[9,452],devanathan:472,develop:[0,3,5,6,7,8,9,11,12,14,15,16,17,18,19,43,250,274,298,303,304,307,388,392,412,438,439,457,475,489],devemi:9,deviat:[267,274,294,414],deviator:9,devic:[1,3,12,15,17,250,386],device_typ:386,devin:[305,401],devis:438,dfactor:205,dff:508,dfft_fftw2:12,dfft_fftw3:12,dfft_fftw:12,dfft_none:12,dfft_singl:[3,12,372],dfft_xxx:12,dfftw:12,dfftw_size:12,dft:[9,307,439],dhi:[62,201,232,299],dhug:[267,303],dhugoniot:[267,303],dia:436,diagnost:[],diagon:[3,6,92,152,153,154,230,269,300,313,344,454,456],diagonalstyl:458,diagram:[42,130,177,197,226,296],diallo:418,diam:[205,206,299,380],diamet:[3,6,41,43,125,178,202,203,205,206,210,211,253,299,302,313,329,331,345,347,380,400,415,416,426,451,474,478,487,488,497],diamond:[374,412,436],diamter:[41,299],dick:6,dicsuss:266,dictat:[216,267],did:[3,12,379,406,409,410,416,441,470,472,495],didn:3,die:18,diel:[],dielectr:[],diff:[3,6,12,174,343,371],differ:[1,2,3,4,6,7,8,9,11,12,14,15,16,17,18,22,37,38,40,42,43,55,56,57,64,67,72,75,76,96,101,105,107,108,132,152,154,155,156,157,158,159,161,164,165,166,167,168,170,171,172,178,179,181,186,197,198,201,202,205,206,209,211,214,216,218,221,226,227,228,229,230,231,232,236,241,244,245,246,247,248,249,250,253,254,256,266,269,270,271,272,273,275,276,277,279,281,284,286,287,288,289,292,294,296,298,300,303,304,305,308,311,313,316,318,326,327,329,332,333,334,337,338,339,341,344,345,346,347,350,354,355,365,368,370,371,372,374,375,377,378,380,381,383,384,385,386,387,388,392,396,397,399,400,401,406,407,408,410,412,415,416,417,419,422,424,425,427,428,435,436,437,438,440,441,443,447,449,450,451,452,453,454,456,457,458,459,467,468,469,470,472,474,475,478,481,482,484,485,487,489,490,491,492,495,496,497,499,501,502,504,505,506,508,513,514,515,517],differenti:[1,3,6,29,198,371,402,447,471],difficult:[230,296,386,418,496],difficulti:[101,118,316,449],diffract:[],diffus:[],digit:[2,3,206,354,439,514],dih_table1:198,dih_table2:198,dihder:[],dihedr:[],dihedral_coeff:[],dihedral_cosineshift:27,dihedral_styl:[],dihedralcoeff:[3,199],dihedraltyp:228,dihydrid:412,dij:316,dilat:[],dim1:3,dim2:3,dim:[3,62,76,155,159,160,161,164,165,166,167,168,170,178,201,222,232,251,347,374,436,490,513,514,515],dimdim:514,dimems:295,dimens:[],dimensinon:76,dimension:[3,40,101,124,130,152,155,158,159,160,161,164,165,166,167,168,170,177,200,218,222,268,295,341,374,377,381,447,487,497],dimensionless:[116,133,134,136,139,141,143,148,152,341,372,458,478],diment:3,dimentionless:147,dimer:[6,313,436],dimgrai:206,dimstr:[42,226],dinola:[300,332],dintel_offload_noaffin:16,dipol:[],dipolar:[4,29,41,202,203,331,508],dir1:498,dir2:498,dir:[1,3,4,8,10,11,12,267,294,303,328,447,449,450,485,498,514],dirac:152,direc:447,direct:[],directli:[3,6,8,9,11,12,96,125,152,154,202,203,204,205,212,238,247,251,256,295,314,333,345,347,348,349,350,374,378,386,387,388,393,395,396,402,405,410,412,424,428,441,444,452,466,485,497,498,499,505,514],directoi:14,directori:[],disabl:[3,12,16,341,423,485,500,514],disadvantag:[6,226],disallow:[202,232,269],disappear:489,discard:[2,3,42,76,220,222,226,342,350,484,489,490],discontinu:[198,379,430],discourag:436,discov:[13,342],discret:[6,8,41,43,205,206,253,256],discuss:[],disk:[6,93,94,101,171,200,233,245,299,485],disloc:[75,439],disord:[40,75,439],disp:[],dispar:451,disperion:[405,428],dispers:[3,6,7,9,176,295,371,372,396,405,428,433,441,450,469,475],displac:[],displace_atom:[],displace_box:62,displacemet:490,displai:[11,13,22,37,45,56,186,197,202,205,356,365,399,467],dispters:3,disregard:439,dissip:[6,9,41,89,90,240,246,253,295,317,338,339,394,406,407,408,416,433,434,467],dissolut:227,dist:[6,74,100,120,129,202,296,312,409,466,482,515],distanc:[],distinct:[6,236,310,371,451],distinguish:[6,95,152,259,412,486,514],distort:[176,387],distrbut:387,distribut:[],distro:[123,399,446,447],ditto:[8,12,14,15,16,17,18,43,127,228,479,485],div:8,divd:129,diverg:[3,12,40,313,339,388,489,508,517],divid:[3,6,16,42,100,124,129,138,140,153,175,176,186,197,206,218,219,221,226,232,294,337,344,349,371,379,381,413,450,457,475,496,504,514],divis:[6,256,392,422,432,484,505,514],dl_poli:[6,7],dlambda:172,dlammps_async_imd:250,dlammps_bigbig:[12,40],dlammps_ffmpeg:[3,12,205],dlammps_gzip:[3,12,202,205,340,487,488,492],dlammps_jpeg:[3,12,205],dlammps_longlong_to_long:12,dlammps_memalign:[9,12,16],dlammps_png:[3,12,205],dlammps_smallbig:12,dlammps_smallsmal:12,dlammps_xdr:[12,202],dlen:497,dlmp_intel_offload:[9,12,16],dlo:[62,201,232,299],dlopen:6,dlvo:[7,400,478],dm_lb:256,dmax:[329,377],dmpvtk:203,dmpvtp:203,dna:7,doc:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,22,37,41,43,56,60,62,66,70,72,80,87,96,99,104,113,115,116,117,119,121,123,124,126,129,131,153,156,157,158,171,173,175,178,179,180,186,197,201,202,203,204,205,206,207,209,210,211,216,217,218,219,220,221,222,223,224,233,245,253,254,264,269,270,275,276,277,281,288,289,290,291,292,299,302,313,326,329,332,333,334,343,347,350,352,354,356,365,370,379,380,381,386,387,388,391,399,401,402,410,411,413,418,419,421,422,436,437,438,441,443,446,447,448,458,467,468,470,472,474,475,485,487,488,489,490,492,495,496,497,504,505,509,514,515,517,518],docuement:451,dodd:43,dodgerblu:206,doe:[0,1,2,3,5,6,7,8,9,11,12,14,15,16,17,18,33,38,40,42,43,51,55,57,62,65,66,71,75,76,77,96,97,100,115,119,122,128,129,130,154,156,158,160,161,166,168,172,177,178,179,180,182,184,186,191,197,198,201,202,203,204,205,206,209,215,216,218,222,225,226,228,229,230,232,236,238,241,242,245,246,249,251,253,254,256,259,265,269,270,271,272,273,275,276,277,288,289,290,291,292,300,301,302,306,308,311,313,329,332,334,336,337,341,344,345,346,349,350,351,352,357,358,359,361,362,364,370,371,372,373,374,380,381,382,387,388,389,390,391,392,394,396,397,398,400,401,402,403,405,406,409,410,411,412,414,415,416,417,419,420,421,422,423,426,427,429,430,431,433,434,436,437,438,439,441,447,448,449,450,451,453,454,455,456,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,473,474,475,477,478,479,480,482,483,484,485,487,488,489,490,491,494,495,497,498,499,500,501,504,505,508,509,514,519],doegenomestolif:7,doesn:[3,7,8,12,178,202,203,216,222,223,326,380,382,386,388,401,411,421,449,450,468,470,471,472,475,487,489],dof:[3,8,124,156,157,158,171,218,313,515],dof_per_atom:[158,218],dof_per_chunk:[158,218],doff:[380,487],doi:[6,231],domain:[3,6,7,12,13,18,40,42,43,61,64,65,76,130,167,177,180,201,204,205,206,209,216,226,230,232,233,249,252,256,269,270,296,308,313,317,341,346,347,371,372,381,386,409,441,482,484,487,491,504],domin:[1,412,501],don:[0,8,9,12,13,128,181,212,238,254,350,436,457,485,487,509],donadio:333,done:[1,3,6,7,8,12,14,15,16,17,18,38,40,42,57,62,65,76,172,175,178,181,198,202,205,206,215,216,218,220,221,222,223,224,226,227,228,229,230,232,233,241,243,245,250,251,253,254,261,269,275,276,277,288,289,290,292,293,295,296,297,299,302,310,313,314,316,329,332,333,334,336,338,339,352,354,370,371,372,379,381,382,385,386,388,396,410,419,420,421,428,434,435,436,441,449,466,469,474,482,483,484,485,488,491,492,495,505,506,508,509,514,515],donor:418,dot:[153,174,212,238,248,268],doti:[392,447],doubl:[1,2,3,6,8,9,11,12,14,15,16,17,40,96,232,243,301,350,354,370,372,385,386,392,413,417,439,449,450,483,487,491,495,500,514,515],dover:215,down:[3,6,7,8,11,40,76,230,245,253,329,345,386,412,441,457,486,506],downhil:[377,378],download:[5,7,8,9,11,12,13,17,250,420,448],downsid:6,downward:310,dozen:[8,9,12,119,209,449,450],dpack_arrai:12,dpack_memcpi:12,dpack_point:12,dpd:[],dpde:262,dpdtheta:[41,89,90,408],dpdtheta_i:[240,241],dproduct:389,dr_ewald:[130,314],drag:[],dragforc:256,drai:[267,303],drain:[249,345,379],dramat:[9,62,201,227,228,229,230,232,269,329,332,333,372,386,441,457,484],drautz:392,draw:205,drawback:302,drawn:[43,202,205,206,246,482],drayleigh:[267,303],dreid:[],drfourth:116,drho:[125,387,410],drift:[6,114,116,246,247,253,254,265,311,329,496,504,508],drive:[11,12,213,230,232,248,269,294,300,313,348,381],driven:[6,190],driver:[6,12,14,15,209,243,250],drop:[3,206,406],droplet:419,drsquar:116,drude:[],dry:242,dsecriptor:420,dsf:[],dsmc:[],dstyle:299,dt_collis:256,dt_lb:256,dt_md:256,dt_srd:329,dtilt:[62,232],dtneb:501,dtqm:303,dtype:[127,228],dual:[16,17,329,386],dudarev:177,due:[1,3,6,9,12,16,17,19,41,55,58,60,61,64,70,75,76,79,80,87,88,95,97,98,99,104,113,114,115,116,117,122,128,130,138,152,153,155,156,157,159,161,164,165,166,167,168,170,171,173,177,178,181,182,202,203,205,209,212,213,221,225,227,228,229,230,231,232,233,238,239,242,243,246,247,250,251,253,254,255,256,259,260,261,265,266,267,268,269,274,283,294,297,299,311,312,313,315,326,328,329,330,332,333,334,335,336,338,339,341,345,346,348,349,350,352,372,377,379,381,382,383,403,406,407,408,410,414,415,419,433,434,441,447,449,451,452,466,469,470,472,476,478,479,482,484,487,488,489,496,501,504,505,506,508,514,515],duffi:341,duin:[9,304,309,449,450],duke:372,dummi:[12,29,471],dump0:203,dump10000:203,dump1:492,dump20000:203,dump2:492,dump2vtk_tri:146,dump:[],dump_0:203,dump_1:203,dump_atom:8,dump_custom:8,dump_h5md:204,dump_modifi:[],dump_p:203,dumpcustom:8,dumptimestep:492,dunbrack:[6,20,184,397,499],dunweg:[253,255],duplic:[2,3,14,15,17,42,43,179,203,226,247,294,487,513],dupont:[5,7,13],durat:[37,56,155,156,157,159,160,161,163,164,165,166,167,170,171,197,206,218,245,308,341,365,416,467],dure:[2,3,6,8,9,12,16,17,38,40,42,57,76,96,138,140,154,160,179,182,198,202,203,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,234,237,238,239,241,242,243,244,245,246,247,248,249,250,251,253,254,255,256,257,258,259,260,261,262,263,265,266,268,269,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,318,322,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,372,379,381,385,386,406,432,439,441,450,469,482,483,485,487,490,492,494,495,497,499,501,502,505,506,514,518,519],dvector:8,dvlo:478,dvx:6,dx_lb:256,dy3:177,dyamic:12,dyanam:6,dyanmic:501,dynam:[],dynamo:[5,387,410,436],dyne:513,dyre:429,dysam:490,e28637:29,e_1:392,e_2:392,e_b:413,e_data:203,e_e:412,e_hbond:418,e_i:[6,392,413],e_j:[6,392],e_k:[392,412],e_kl:6,e_lj:[388,405],e_n:[392,412],e_nn:412,e_pr:412,e_rebo:388,e_tors:388,e_tot:439,e_vol:439,eaa:355,eaat:185,each:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,40,41,42,43,44,46,47,48,49,50,51,52,54,55,56,57,58,60,62,64,65,66,67,68,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,88,90,92,94,96,98,99,101,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,121,122,123,124,125,126,127,128,129,130,131,132,146,152,153,154,156,157,158,159,160,161,162,165,166,167,168,170,171,172,173,174,175,176,177,178,181,182,184,185,186,187,188,189,190,191,192,193,195,196,197,198,201,202,203,204,205,206,207,208,209,210,211,212,213,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,241,242,243,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,261,262,263,265,266,267,268,269,271,272,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,290,291,292,294,295,296,297,298,299,300,301,302,304,305,306,308,310,313,314,315,316,317,318,322,323,325,326,327,328,329,330,331,332,333,334,336,339,340,341,342,343,344,345,346,347,349,350,351,352,354,355,357,358,359,360,361,362,364,365,366,370,371,372,374,378,379,380,381,382,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,412,413,414,415,416,417,418,419,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,439,440,441,442,443,444,446,447,449,450,451,452,453,457,458,459,460,461,462,463,464,465,466,467,468,469,472,473,474,475,476,477,478,479,480,481,482,484,485,487,488,489,490,491,492,494,495,496,497,499,501,502,504,505,506,507,508,513,514,515,517,519],eacn:[42,226],eam0d:295,eam3d:295,eam:[],eam_databas:13,eam_gener:13,eangl:505,earli:[42,218,221,222,223,224,226,307,314],earlier:[7,8,12,62,206,381,416,436,441,501],earliest:501,earth:412,easi:[6,7,8,9,10,11,13,96,153,202,210,211,212,213,222,225,238,248,249,251,253,254,315,323,332,333,334,346,349,351,380,487,490,495,497,515],easier:[8,9,13,16,202,203,205,295],easili:[8,11,205,206,345,381,484,494,503,514],eastwood:[371,372],eat:185,eatom:352,eaxmpl:6,eba:21,ebb13:185,ebb:21,ebond:[236,254,504,505,514],ebt:185,ec_ii:436,ec_ij:436,ec_jj:436,echo:[],eco:[449,450],ecoa:[449,450],ecoul:[119,154,236,254,449,450,505],ecp:[412,487],edg:[2,3,6,42,43,62,76,130,176,177,180,181,204,205,214,222,251,315,346,349,350,351,352,374,487,490,497],edge_histo:176,edge_threshold:176,edih:505,edim:337,edip:[],edit:[3,8,9,12,13,14,15,16,17,18,19,508,509],editor:13,edu:[7,9,11,13,410,433,446,449,450],edward:[9,17],eebt:185,eff:[],effect:[1,2,3,6,8,9,11,12,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,32,35,38,40,41,44,46,47,48,49,50,52,54,55,57,70,76,79,80,87,88,98,99,104,114,115,116,117,121,124,153,155,160,165,166,173,176,182,184,185,187,188,189,190,192,193,195,196,197,198,201,202,203,205,206,210,211,212,215,216,219,223,224,225,227,228,229,230,232,233,239,241,244,245,246,247,248,249,250,251,253,254,268,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,293,294,296,299,300,302,303,304,305,308,312,313,315,316,328,329,332,333,334,336,337,339,341,344,345,346,347,348,349,350,351,352,355,357,358,360,361,364,366,371,372,374,378,379,380,381,382,387,388,390,392,393,394,395,396,397,398,400,401,402,405,406,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,439,441,442,443,444,446,451,452,453,455,457,459,467,468,469,470,471,472,473,474,475,477,478,479,482,484,485,489,490,492,496,497,499,505,506,513,514,517],efffect:491,efficaci:40,effici:[0,1,3,6,7,8,9,10,12,15,17,18,40,61,64,71,124,154,202,203,204,205,206,219,220,230,232,236,247,269,296,298,299,308,313,316,329,371,372,377,382,386,392,400,402,419,424,428,439,451,469,494,519],effort:[5,7,488],efftemp:[107,108,164],efi:[449,450],efield:[],eflux:249,eforc:203,eggebrecht:[402,457],ehb:[449,450],eigensolv:3,eigenvalu:[295,296,371],eigtol:3,eik:172,eim:[],eimp:505,einstein:[6,308,339],either:[1,2,3,6,8,9,10,11,12,14,15,16,17,22,33,42,45,51,62,66,76,114,119,125,128,130,152,153,158,160,161,176,177,178,181,186,191,198,202,203,204,205,206,209,217,219,221,223,224,226,229,230,231,232,233,245,251,252,256,260,266,267,269,270,274,290,294,302,310,313,315,316,318,326,329,336,343,347,350,354,356,369,371,372,374,378,379,383,386,392,394,400,410,419,420,422,433,434,436,439,441,445,447,466,470,472,474,482,485,487,489,490,491,494,496,499,502,504,514],ejtehadi:[400,415,451],elaplong:[210,211,251,490,505,514],elaps:[3,201,210,211,212,213,225,232,238,248,249,251,253,254,266,299,315,323,332,333,334,346,347,349,351,459,482,490,492,493,497,501,505,514],elast:[],elastic_t:4,elba:29,electr:[6,209,215,238,254,371,372,413,449,450,479,508,513],electrolyt:[9,478],electron:[3,6,7,9,13,41,107,108,125,130,162,164,169,203,209,215,235,236,254,255,270,282,291,306,335,341,378,380,387,389,401,405,410,412,413,436,439,447,448,457,472,475,479,487,507,508,513],electron_integr:215,electron_temperatur:215,electron_unit:412,electroneg:[6,304,305,306,401,413,457],electroneg_compon:457,electronic_dens:3,electronic_specific_heat:3,electronic_thermal_conduct:3,electrostat:[6,9,16,18,216,245,304,306,307,342,371,372,400,405,412,424,432,434,450,457,478],eleftheri:313,elem1:[413,436,458],elem2:[413,436,458],elem:457,element1:[310,387,410,457],element2:[310,387,410,457],element:[3,6,7,8,9,12,13,43,66,88,98,114,116,124,129,131,146,152,153,154,155,156,157,158,159,160,161,165,166,167,168,170,171,174,202,203,204,205,206,207,209,210,215,219,221,224,295,310,336,343,387,388,392,401,410,411,412,413,419,420,421,436,437,438,439,443,447,448,449,450,457,458,468,470,471,472,475,505,508,514,518],elementn:[387,410],elementset:215,elev:501,elif:[152,354],elig:[3,216,227,228,242,245,418],elimin:[3,6,76,176,246,253,254,313,316,338,339,482],elj:405,ellad:9,elliot:9,elliott:9,ellips:[4,6,9,76,91,156,200],ellipsoid:[3,4,6,7,9,13,41,43,76,91,125,142,156,178,200,201,202,203,253,266,271,275,279,280,288,313,329,376,379,415,434,451,467,487,497,517],ellipsoidflag:487,elong:[236,254,505],elp:[449,450],els:[3,7,8,12,76,119,128,129,131,204,205,217,218,219,221,222,223,224,245,269,313,329,341,342,343,352,354,371,419,486,498,514,518],elsewher:[8,266,329,436,448,449,450,499,505,514],elt:436,emac:[],email:[0,3,5,7,8,9,11,413],emb:[3,9,350],emb_lin_neg:436,embed:[3,4,5,7,9,11,12,13,29,97,154,176,341,387,410,413,432,436,437,438,447,467,476,485],embt:185,emi:[7,9],emil:9,emol:[449,450,505],emphas:416,empir:[9,215,333,388,412],emploi:[295,304,308,471],empti:[3,60,76,176,180,313,371,382,423,487,498,499,514],enabl:[3,6,8,9,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,32,33,35,37,38,40,41,44,46,47,48,49,50,51,52,54,55,56,57,63,64,65,67,71,83,86,92,96,97,107,108,109,110,111,112,116,119,121,123,124,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,160,162,164,165,169,170,172,176,177,184,185,187,188,189,190,191,192,193,195,196,197,198,202,203,204,206,207,209,210,211,212,213,214,216,220,223,225,227,228,229,231,232,233,238,239,242,243,244,245,246,247,248,250,251,252,253,254,255,256,257,258,259,260,262,263,265,267,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,294,295,296,298,299,303,304,305,306,307,308,309,310,312,313,315,316,318,319,320,321,322,323,325,326,328,329,332,334,335,336,337,338,339,341,342,344,345,346,347,348,349,350,353,355,357,358,360,361,362,364,365,366,372,379,381,385,386,387,388,390,391,392,393,394,395,396,397,398,400,401,402,403,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,436,437,438,439,441,442,443,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,485,488,489,490,494,496,506,514,519],enclos:[2,6,12,180,202,301,354,436,457,483,485,495,514],encod:[13,40,43,202,205,206,302,419],encompass:[3,6,41,43,60,62,128,179,325,343,467,490],encount:[3,8,12,62,118,221,385,492,514],encourag:[7,8,307,327],end12i:125,end12x:125,end12z:125,end1i:125,end1x:125,end1z:125,end2i:125,end2x:125,end2z:125,end:[1,2,3,5,6,8,11,12,15,16,17,18,19,38,41,42,43,58,60,62,76,125,181,182,185,201,202,203,205,206,207,210,211,219,221,223,224,229,232,246,251,253,255,268,269,270,283,300,312,313,318,329,332,333,334,335,337,340,341,344,348,351,352,370,371,380,381,385,386,406,410,415,422,435,439,451,454,456,458,459,476,482,485,487,488,489,490,492,494,495,499,503,505,508,514,519],end_of_step:8,endbondtors:[3,185,191,487],endif:8,energet:[229,388,450],energi:[],energy_compon:457,energy_update_freq:450,enforc:[6,9,60,61,115,201,202,203,204,205,207,209,216,229,232,269,293,295,305,313,316,354,371,424,484,514,515],enforce2d:[],eng:[11,69,74,120,202,243,352,354,401,438],eng_previ:354,engil:9,engilitycorp:9,engin:[215,232,298,318,338,410,437],engr:[],enhanc:[211,215,482],enlarg:[62,205],enough:[3,41,64,95,178,179,181,182,226,254,299,303,308,313,342,346,347,350,382,386,402,445,487,491,492],enpub:410,enrti:[],ensembl:[],ensight:6,ensur:[3,6,152,202,203,216,220,230,245,246,269,319,340,372,392,409,432,468,475],enter:[60,168,413,439,475,501],enthalpi:[135,271,272,273,410,504,505,514],entir:[0,2,3,6,11,14,15,42,43,66,89,90,97,121,122,124,128,130,153,158,177,178,206,209,210,211,218,222,223,226,229,231,242,245,246,249,253,254,265,269,271,272,273,274,275,276,277,294,296,298,311,313,327,341,343,354,386,405,428,441,469,487,495,496],entireti:474,entiti:[6,8,41,43,202,313],entri:[3,8,12,38,43,57,69,74,85,103,120,127,130,139,142,143,144,145,146,148,149,150,176,198,203,206,210,221,222,223,231,241,303,352,380,392,411,436,443,450,458,468,469,470,471,472,475,514],entropi:501,entry1:[38,57,206,399,469],entry2:206,entryn:206,enumer:[179,202,480],enumuer:6,env:386,environ:[1,3,6,11,12,16,17,18,205,247,252,294,386,387,392,399,401,411,412,447,470,484,498,514],epair:[119,206,414,418,449,450,505],epen:[449,450],epfl:[247,252],epp:405,epq:405,eps0:478,eps14:432,epsilon0:472,epsilon:[3,6,36,46,47,51,54,55,96,184,210,211,245,313,329,346,350,377,379,391,397,398,400,402,403,404,405,415,417,418,419,422,423,424,425,426,427,428,429,430,431,432,435,440,444,451,452,462,468,473,474,477,478,496,508,513],epsilon_0:479,epsilon_14:397,epsilon_:451,epsilon_d:403,epsilon_i:[415,441,451],epsilon_i_:451,epsilon_i_a:[415,451],epsilon_i_b:[415,451],epsilon_i_c:[415,451],epsilon_ij:441,epsilon_j:[415,441,451],epsilon_j_:451,epsilon_j_a:[415,451],epsilon_j_b:[415,451],epsilon_j_c:[415,451],epsilon_lj:451,epton:446,eqch:173,eqeq:[449,450],eqp:405,eqq:405,equal:[2,3,6,8,11,12,17,40,42,55,66,69,72,74,76,81,85,95,96,100,103,120,122,127,129,131,153,156,172,174,176,178,201,205,206,209,210,211,212,213,216,219,220,221,224,225,226,230,232,233,238,245,246,248,249,251,253,254,256,259,260,266,267,274,285,294,296,299,301,303,304,305,308,310,312,313,315,318,323,325,332,333,334,337,338,339,341,343,344,346,349,351,352,354,370,374,379,381,382,383,385,386,401,406,408,414,415,418,422,433,439,440,447,449,450,451,453,454,455,457,458,459,469,474,475,479,483,484,485,487,489,490,494,495,498,501,503,505,514,515],equat:[3,6,7,8,9,100,118,124,130,177,186,197,209,230,236,237,240,241,247,253,254,256,259,267,268,269,270,274,290,294,296,303,304,308,316,317,329,337,341,344,346,347,349,351,364,371,372,400,405,406,408,412,413,416,421,433,434,436,441,451,454,456,461,462,464,465,479,508],equi:270,equidist:268,equil:[3,304,375,494,519],equilater:497,equilibr:[3,4,5,6,7,9,62,100,178,209,216,219,229,230,245,267,269,270,290,291,300,303,304,305,306,337,338,339,344,401,402,449,450,483,497],equilibria:344,equilibribum:[227,228],equilibrium:[1,3,4,6,7,21,24,26,27,28,29,32,35,36,38,39,44,48,49,50,52,54,57,59,62,161,162,185,187,230,232,245,246,247,254,256,269,274,290,303,304,308,312,316,318,326,329,336,337,339,344,355,357,361,364,401,436,443,457,508],equilibrium_angl:8,equilibrium_dist:8,equilibrium_start:215,equival:[6,12,13,29,62,64,136,137,145,150,176,180,206,221,224,230,232,245,253,269,290,300,312,313,349,388,406,412,457,470,472,473,487,490,495,496,505,508],equlibrium:6,equliibr:[304,306],er3:177,eradiu:[41,125,203,412,487],eras:[315,338],erat:[232,434],erc:402,erfc:[402,424,441],erforc:[125,203],erg:513,erhart:[216,410,470,472],ermscal:389,ernst:9,eror:3,eros:436,erose_form:436,erot:[],errata:[470,472],erratum:346,erron:3,error:[],erta:416,ervel:[125,203,487],escap:[233,508],especi:[8,16,166,178,209,216,226,245,303,308,311,312,386,484],espresso:[9,307],essenti:[8,11,12,27,97,140,159,160,161,164,165,166,167,168,170,187,219,274,295,345,372,388,402,424,472,492,505],essex:29,establish:[96,249],estim:[1,3,6,10,12,38,42,57,100,153,215,226,237,267,329,336,371,372,377,441,450,469,501,505],esu:513,esub:436,eta:[6,256,269,303,304,306,345,411,413,415,447,471,475,513],eta_dot:269,eta_ij:447,eta_ji:413,etag:[41,487],etail:505,etap:269,etap_dot:269,etc:[1,2,3,4,6,7,8,9,10,11,12,13,15,16,40,41,43,55,64,72,98,99,100,105,121,122,125,127,153,155,158,159,160,161,162,164,165,166,167,168,170,172,178,180,181,182,191,202,203,205,206,209,210,215,216,217,218,221,222,223,224,227,228,232,233,243,245,246,253,269,299,310,314,341,342,350,354,370,371,379,380,381,382,384,410,411,419,432,434,439,445,449,450,468,470,472,475,482,485,487,488,489,494,496,497,501,502,503,504,505,506,508,513,514,517,519],ethernet:18,etol:[379,381,482,501],etot0:303,etot:[6,105,107,108,122,153,164,206,236,254,267,303,504,505],eu2:177,eu3:177,euler:[379,381],eulerian:215,euqat:460,europhi:256,ev_tal:8,evalu:[2,3,9,11,12,38,57,76,96,97,100,119,129,131,152,154,158,168,176,178,201,202,203,205,206,210,211,212,213,215,217,218,219,220,221,222,223,224,225,232,238,246,248,249,251,252,253,254,295,301,304,315,319,323,332,333,334,343,346,349,351,352,354,371,372,377,379,386,439,441,447,453,455,457,469,482,483,485,489,490,492,494,495,496,497,501,503,505,514,515],evalut:[354,485],evan:[166,290],evanseck:[6,20,184,397,499],evapor:[],evaul:[8,379],evdwl:[119,154,449,450,505],even:[3,6,8,12,15,17,18,34,40,42,53,58,60,62,64,66,75,76,97,119,131,176,179,180,194,198,202,203,206,209,210,211,216,217,218,221,222,223,224,226,227,228,230,232,233,236,251,254,267,269,270,295,299,308,310,313,314,325,329,337,341,344,346,350,352,363,371,377,379,381,386,391,412,413,416,419,422,441,451,475,476,480,487,488,490,492,493,494,496,497,499,502,504,505,506,508,519],evenli:[3,42,58,153,198,226,256,422,476],event:[],eventu:[3,6,12,15,180,304,501],ever:[9,55,57,252,329],evera:[400,415,451,467],everi:[0,1,2,3,6,8,9,11,12,15,16,40,42,76,77,100,125,131,140,166,181,202,203,204,205,206,207,209,210,211,212,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,237,242,243,245,247,249,250,251,256,257,265,269,270,274,293,294,295,299,300,301,302,303,304,305,306,308,310,311,313,314,316,318,329,331,332,333,334,335,336,337,340,341,342,343,344,352,354,370,372,381,382,383,386,406,409,419,432,449,450,457,463,481,482,483,487,489,491,492,494,495,496,501,502,503,505,509,514,519],everyth:[8,119,509],everywher:[128,426],eviri:412,evolut:[247,256,296,482],evolv:[256,296,342],ewald:[2,3,5,6,7,8,9,12,97,122,130,153,342,371,372,379,393,395,396,402,405,412,424,428,444,452,467,469,473],ewald_disp:405,ewalddisp:3,exact:[22,42,45,76,134,172,181,186,226,229,246,247,253,254,255,299,308,309,329,341,356,371,399,489,494,501,514,517,519],exactli:[3,6,12,14,17,38,42,43,57,62,76,77,100,128,156,162,169,178,198,210,211,221,226,232,237,241,246,253,254,255,270,282,283,291,295,302,303,329,334,335,348,386,399,406,410,416,419,433,441,469,489,490,497,501,514],exager:508,examin:[6,8,17,229,295],examp:[485,514],exampl:[],exce:[3,6,16,17,18,42,61,76,180,217,218,221,222,223,224,226,230,232,237,242,269,295,310,314,320,321,329,379,386,487,514],exceed:[3,42,62,226,232,269,329,495],excel:412,except:[1,2,5,6,8,10,11,14,20,21,22,23,24,25,26,27,28,29,30,31,32,35,37,38,41,42,44,45,46,47,48,49,50,52,54,55,56,57,62,63,66,76,98,99,120,121,124,129,153,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,178,182,184,185,186,187,188,189,190,192,193,195,196,197,198,201,202,203,206,209,212,218,219,221,225,226,230,232,239,244,245,248,251,253,255,269,270,271,272,273,274,275,276,277,278,279,282,283,286,288,289,290,291,292,296,305,306,313,315,316,326,329,332,334,335,341,345,349,352,353,354,355,356,357,358,360,361,364,365,366,371,372,374,376,380,381,382,384,385,386,387,388,390,393,394,395,396,397,398,399,400,401,402,404,405,406,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,434,437,442,443,444,446,449,450,451,452,459,467,468,469,470,471,472,473,475,477,478,479,482,484,485,487,489,490,492,495,496,497,498,499,501,505,508,513,514,515,518],excess:[220,412],exchang:[2,3,6,8,64,65,209,215,216,245,253,305,313,337,341,344,371,386,412,502],exchange:371,excit:412,exclud:[3,6,9,12,16,17,66,76,113,124,152,158,165,166,182,202,218,222,227,228,257,265,298,311,313,336,347,352,379,380,382,394,416,419,422,433,434,441,466,499],exclus:[1,3,12,16,96,386,401,439,441,496,506],excurs:[269,482],exectubl:12,execut:[1,2,3,4,6,8,9,11,12,17,63,179,205,250,307,354,370,373,385,483,485,495,498,501,514],exempl:457,exemplari:246,exemplifi:412,exert:[6,251,254,308,348,349,350,372],exhaust:[215,385,514],exhibit:[101,269,378,412,496],exist:[3,6,7,8,11,12,13,16,37,56,58,62,72,75,134,178,179,197,204,205,206,209,214,225,228,230,233,245,298,299,301,302,352,353,355,357,358,359,361,365,375,380,386,407,408,419,449,466,476,483,485,487,488,489,498,499,500,509,514,515,517],exit:[2,3,11,12,42,60,202,226,241,370,385,485,486,495,504,514],exlanatori:3,exp:[],expand:[],expans:[12,152,202,498,514],expect:[1,3,8,12,13,14,15,16,17,18,19,42,43,76,113,159,170,176,198,226,238,245,247,266,294,300,302,303,308,313,352,372,382,399,436,439,441,482,485,487,489,492,496,501,514],expens:[6,76,206,294,298,313,341,352,371,372,382,386,485],experi:[6,13,15,17,225,233,250,259,268,300,312,313,377,381,406,441,496,501],experienc:[6,12,258,259],experiment:[245,371,386,501],expert:12,expertis:7,explain:[1,3,6,8,9,11,12,16,18,42,62,66,69,72,74,76,77,78,81,82,85,95,103,158,166,198,202,203,205,206,209,218,219,224,226,228,230,232,269,294,302,313,326,352,354,370,371,374,380,381,385,391,410,422,457,459,474,485,488,489,492,494,497,508,509,514,519],explan:[3,6,62,125,152,202,203,218,268,294,419,481,484,485,487,496],explanatori:[3,8,129,202,203,217,218,221,222,223,313,380,484,514],explantori:[3,309],explic:440,explicit:[6,9,11,22,45,82,96,125,128,172,186,210,211,232,320,321,356,376,388,389,392,397,399,410,412,423,433,473,481,484,488,491,509],explicitli:[3,6,8,12,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,44,46,47,48,49,50,52,54,55,57,76,121,124,155,165,168,176,178,184,185,187,188,189,190,192,193,195,196,198,202,203,206,212,222,225,232,239,244,246,248,253,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,302,303,305,313,315,316,332,334,335,341,345,349,355,357,358,360,361,364,366,380,386,387,388,390,393,394,395,396,397,398,399,400,401,402,403,405,406,409,410,411,413,414,415,416,417,418,419,423,424,425,426,427,428,429,430,431,432,433,437,439,441,442,443,444,446,451,452,459,460,461,462,463,464,465,467,468,469,470,471,472,473,475,477,478,479,487,489,490,496,497,499,500,506,508,509],explictli:[16,500],exploit:[15,17,296],explor:[130,177],expon:[3,304,306,410,415,418,432,440,452],exponenti:[96,447,468,475,479,501,514],expos:11,exposit:[215,406,409],express:[6,152,164,178,210,211,230,266,294,304,341,347,354,392,410,412,426,436,457,458,467,514],expressiont:392,extend:[],extens:[3,6,9,17,45,46,47,54,56,66,68,73,84,91,92,93,96,97,100,102,105,108,109,119,121,129,131,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,203,209,212,213,216,224,225,231,234,238,243,244,245,247,248,249,251,253,255,267,269,274,283,294,295,311,312,313,315,318,323,326,328,332,333,334,335,336,338,339,341,343,346,350,351,415,436,439,450,451,458,504,505,513],extent:[1,3,42,43,46,60,76,176,180,202,214,222,226,251,348,351,371,374,388,453,455,469,484,487,490],exterior:[3,6,176,350],extern:[],extra:[3,6,8,11,12,16,17,41,42,47,64,76,113,121,122,124,130,153,155,156,157,159,161,164,165,166,167,168,170,171,177,178,179,180,184,206,221,226,228,269,301,302,303,313,329,379,380,383,384,405,416,419,422,436,441,484,485,487,490,499,508,514],extract:[3,6,11,13,36,66,68,73,84,96,102,119,127,129,131,210,211,306,381,402,413,436,458,485,492,504],extract_atom:11,extract_comput:[11,485],extract_fix:11,extract_glob:11,extract_vari:11,extramak:[12,15],extrapol:1,extrem:[1,3,6,17,61,205,220,230,232,269,339,412,471,508],extrema:432,extrins:215,f77:[5,7,12],f90:[5,7,12],f_1:6,f_5:[174,343],f_a:[470,471,472],f_ave:129,f_c:471,f_f:472,f_fix_id:303,f_foo:514,f_harm:339,f_i:[29,447],f_id:[6,76,129,131,202,203,209,217,218,219,220,221,222,223,224,264,331,343,505,514],f_ij:447,f_indent:224,f_int:338,f_j:29,f_jj:100,f_k:447,f_langevin:341,f_max:[303,308],f_msst:267,f_r:[254,470,471,472],f_sigma:392,f_solid:339,f_ss:6,f_temp:[],face:[3,6,60,62,76,166,176,180,214,222,223,346,348,349,350,351,374,415,436,451,487,490],face_threshold:176,facet:176,facil:[0,12],facilit:[6,13,43],fact:[6,8,16,247,299,329,339,416,449,457,499],factor:[1,3,6,12,18,24,28,32,35,36,40,42,47,48,60,61,62,77,96,100,113,120,127,128,130,152,172,177,180,184,195,201,202,205,206,210,211,219,226,230,232,233,245,250,253,255,256,267,269,270,274,296,300,304,312,316,319,321,329,333,337,344,345,346,350,361,372,374,380,386,388,389,392,393,395,397,402,403,404,406,407,408,412,416,419,423,424,436,439,441,443,444,450,452,459,468,473,484,487,490,491,496,499,501,502,505,508,513,514],factori:[3,485],factoriz:371,fail:[3,9,11,12,62,182,230,233,371,379,381,404,450,485],failur:[133,454,486,514],fairli:[11,441,496,501,509],faken:78,falcon:250,fall:[3,6,206,221,299,485,514],fals:[95,352,354,457,514],fame:8,famili:[475,484],familiar:[0,11,509],fan:447,far:[3,6,12,17,60,62,64,95,202,203,206,207,226,227,228,230,233,269,294,312,313,329,346,357,361,377,381,382,474,485,487,492,505],farago:253,farrel:[470,472],farther:202,fashion:[6,8,42,76,178,206,209,210,211,216,222,226,228,233,245,247,251,266,267,269,271,272,273,274,275,276,277,285,288,289,290,291,292,302,303,305,313,318,322,328,331,339,341,345,346,347,349,351,381,419,433,490,499,514,518],fasolino:421,fast:[6,7,9,12,13,17,40,202,203,280,303,342,371,372,394,433,434,439,467,469,489,494,496,505,515,519],faster:[1,6,9,11,12,14,15,17,18,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,42,44,46,47,48,49,50,52,54,55,57,64,66,116,121,124,155,165,184,185,187,188,189,190,192,193,195,196,198,202,203,206,212,225,226,232,239,244,248,252,253,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,300,304,305,313,315,316,329,332,334,336,338,341,345,349,355,357,358,360,361,364,366,371,372,383,384,386,387,388,390,392,393,394,395,396,397,398,399,400,401,402,405,406,410,411,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,442,443,444,446,451,452,459,467,468,469,470,471,472,473,475,477,478,479,482,490,496,500,508],fastest:[1,6,14,17,166,222,341,342,386,484],fatal:[3,504],fault:[75,450],faulti:12,fava:415,favor:229,favorit:7,fbmc:336,fcc:[],fcm:[285,514],fdirect:236,fdotr:420,fdt:[],fdti:96,fe2:177,fe3:177,fe_md_boundari:215,featu:8,featur:[],fecr:410,feedback:[7,250],feel:[7,250,251,259,294,350,352,381,441],felling:438,felt:350,femtosecond:513,fene:[],fennel:[402,424],fep:[],ferguson:[6,184,499],fermi:[1,9,10,12,15,164,386,472],fermion:412,fernando:435,ferrand:[9,13],few:[1,3,4,5,6,7,9,10,11,12,13,14,18,40,66,207,217,218,219,221,222,223,224,254,269,299,302,304,316,343,371,379,380,381,388,457,484,487,492,496,498,506,517],fewer:[1,3,11,15,16,64,259,496],fewest:3,fextern:243,feynman:296,fff:485,ffield:[401,413,449,450,457],ffmpeg:[3,12,205],ffplai:205,fft:[1,3,7,9,11,12,14,15,97,121,122,153,295,371,372,496],fft_inc:[12,372],fft_lib:12,fft_path:12,fftbench:[371,506],fftw2:12,fftw3:12,fftw:[9,12],fhg:[7,9],ficiti:466,fictiti:[6,212,213,238,243,247,296,312,402,424,428,466],field1:[488,492],field2:488,field:[],fifth:[6,326,443],figur:[1,3,8,12,303,484,485,509],fij:405,file0:294,file1:[11,13,294,340,354,380,492,494,498],file2:[11,13,340,354,380,492,494,498],file:[],file_from:204,filen:380,filenam:[3,12,13,38,42,57,198,202,203,205,206,207,215,218,219,220,221,222,223,224,226,231,241,294,298,301,304,305,306,309,310,313,314,340,341,368,369,370,380,381,387,388,392,402,410,411,413,421,436,437,438,443,447,448,449,450,457,458,468,469,470,471,472,475,483,484,485,488,489,494,498,505,514,517,518,519],filennam:494,filep:[3,202,203,206,489,494,519],filepo:310,fill:[7,9,178,205,299,341,374,382,392,439,450,490,509],filter:[206,215],final_integr:8,final_integrate_respa:8,finchham:[6,160,404],find:[0,3,4,6,7,8,9,11,12,13,14,16,38,40,57,64,76,78,96,129,181,198,207,216,229,230,241,242,245,268,294,299,300,308,312,377,379,381,382,402,419,424,428,436,457,467,469,508,509,514],find_custom:8,fine:[16,17,182,212,238,339,382,386,509,514],finer:[152,178,514],finest:371,finger:[178,201,266,490],finish:[6,11,42,226,354,368,370,371,383,385,386,474,492,514,515],finit:[],finni:[7,410,467],finvers:236,fiorin:[9,231],fire:[],firebrick:206,first:[0,1,2,3,5,6,8,9,10,11,12,14,15,16,17,21,38,40,42,43,46,47,55,57,60,62,64,65,76,88,97,100,114,115,116,118,124,128,129,139,142,145,146,150,153,163,166,172,174,176,177,179,180,181,185,198,202,203,204,205,206,207,209,210,218,219,221,222,223,224,226,229,232,241,245,246,251,256,266,267,268,269,294,296,301,302,303,305,310,313,316,318,326,327,329,330,331,338,339,340,341,343,347,352,354,355,362,374,379,380,381,382,385,386,387,388,391,392,393,395,397,399,401,402,410,412,413,416,417,419,420,421,422,423,424,428,433,434,436,438,439,441,443,447,449,450,457,458,466,468,469,470,471,472,475,479,482,483,484,485,487,488,489,492,494,496,499,500,501,504,505,508,509,514,515,516,517,519],fischer:[6,9,19,20,184,397,499],fit:[3,6,9,12,38,57,198,241,312,329,388,392,421,436,441,462,469,471,495,509,514],five:[78,164,303,380,392,437,487,501],fix:[],fix_adapt:[],fix_atom_swap:[],fix_bal:[],fix_deposit:3,fix_eo:[],fix_evapor:[],fix_flux:215,fix_gcmc:[],fix_gl:[],fix_gld:[],fix_grav:[],fix_id:[3,230,267,269,271,272,273,274,275,276,277,300,303],fix_manifoldforc:509,fix_modifi:[],fix_mov:[],fix_nh:8,fix_npt:[],fix_nv:509,fix_nvt:[],fix_poem:3,fix_pour:3,fix_qbmsst:[],fix_qeq:3,fix_rattl:316,fix_reax_bond:449,fix_rigid:[],fix_saed_vtk:314,fix_setforc:8,fix_shak:316,fix_shardlow:[],fix_srd:3,fix_styl:[],fix_temp_rescal:[],fixedpoint:[230,269],fixextern:243,fixid:215,fji:405,flag1:[235,384],flag2:[235,384],flag:[3,8,9,11,12,14,15,16,17,39,41,59,70,79,80,87,88,95,98,99,104,114,115,117,130,173,177,181,199,202,203,205,206,207,224,229,231,235,250,253,257,259,265,266,295,302,313,326,328,329,336,340,349,352,367,369,372,380,384,385,386,388,418,423,436,439,466,480,482,484,485,487,488,489,491,492,493,497,509,514],flag_buck:396,flag_coul:[396,405,428],flag_lj:[405,428],flagfld:[394,433,434],flaghi:[3,394,433,434],flaglog:[394,433,434],flagn:235,flagvf:[394,433,434],flat:[6,341,346,347,351],flavor:[2,7,12],fld:[],flen:389,flex_press:389,flexibl:[3,6,8,179,205,218,222,231,247,270,337,344,412,471,505],flip:[3,6,232,269,348,349],floor:514,flop:12,floralwhit:206,flow:[],fluctuat:[6,67,96,230,245,246,253,256,269,274,294,295,300,317,339,341,364,408],fluid:[],fluid_veloc:260,flush:[3,206,504],flux:[],flv:205,fly:[7,9,12,42,205,209,215,220,233,236,313,316,342,392,439,505,508],fmackai:9,fmag:234,fmass:296,fmax:[379,505],fmomentum:236,fmsec:[2,206,253,254,266,269,300,313,332,333,496,507,513,515],fname:370,fno:[9,12,16],fnorm:[379,505],fnpt:236,fnvt:236,foce:419,fock:389,focu:316,fogarti:[9,306,450],foil:[152,294,458],fold:[327,496],folk:7,follow:[0,1,2,3,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,35,36,38,41,42,43,44,46,47,48,49,50,52,54,55,57,62,66,67,75,76,78,89,100,101,107,108,118,125,128,129,131,152,153,156,157,158,164,166,171,174,176,178,179,184,187,188,189,190,192,193,195,196,198,202,204,205,206,209,215,216,217,218,219,220,221,222,223,224,226,231,232,233,236,237,240,241,243,245,246,247,250,252,253,254,256,259,267,269,274,275,276,277,288,289,290,292,295,296,298,301,302,303,304,306,308,310,312,313,314,316,331,332,333,334,337,338,339,340,341,343,344,352,353,357,358,359,360,361,364,366,369,374,376,379,380,381,386,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,404,405,406,407,408,409,410,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,440,441,442,443,444,446,447,448,449,450,451,452,454,456,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,473,474,475,477,478,479,480,482,484,485,487,488,490,492,494,495,496,499,501,502,503,508,509,514,515,518],foo:[4,8,11,12,202,205,243,485,498,514],foot:6,footprint:[12,386],fopenmp:[9,12,16,18],forc:[],force_uvm:17,forceatom:259,forcefield:[312,418],forcegroup:256,forcezero:377,ford:405,forestgreen:206,forev:76,forget:[254,508],forgiv:269,fork:[],form:[2,3,6,8,12,19,22,45,55,58,66,70,79,80,82,87,88,96,98,99,101,104,114,115,117,128,152,153,172,173,182,186,206,209,210,211,228,246,247,253,255,259,266,290,295,306,308,312,313,341,346,350,355,356,359,364,376,378,380,381,388,389,392,399,407,408,410,412,414,418,419,423,435,436,438,439,443,444,447,449,450,451,457,458,459,467,469,470,471,472,478,481,484,485,487,492,497,504,508,514],formal:[6,83,86,100,246,247,253,269,296,329,337,457],format:[2,3,6,7,8,9,12,13,22,38,42,45,57,58,72,82,186,198,202,203,204,205,206,207,218,221,222,223,224,226,228,241,295,298,302,304,306,309,313,314,325,340,341,352,353,356,376,380,381,387,388,392,399,410,413,423,436,438,448,449,450,452,458,469,475,476,484,485,487,488,489,492,503,504,505,514,516,517],former:[6,12,16,40,42,206,226,341,345,392,394,493,499,514],formerli:[7,13],formul:[1,6,9,41,67,153,212,238,253,269,290,304,306,312,316,340,371,388,392,410,412,415,436,446],formula:[2,3,6,7,13,21,22,37,45,55,56,75,78,96,98,99,100,105,107,108,117,124,130,131,153,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,177,178,183,185,186,197,201,202,210,211,212,213,218,219,220,221,224,225,232,238,248,249,251,253,254,266,294,295,301,310,315,323,327,329,332,333,334,343,346,349,351,352,354,355,356,358,365,374,380,388,389,391,392,397,398,399,400,405,406,410,411,415,416,417,418,420,423,424,426,427,428,430,431,433,434,436,440,441,442,451,452,459,467,468,469,470,471,472,475,477,478,483,487,490,497,504,505,513,514,515],forth:[1,6,11,12,13,14,15,385,485,490,494],fortran:[3,6,9,11,12,13,243,410,419,436,449,450],fortun:8,forward:[3,8,96,370,381,386],foster:[392,446,447],foul:181,found:[3,6,9,12,78,172,202,229,231,245,250,256,295,336,342,354,370,382,399,402,405,482,488,489,504],four:[6,11,55,88,114,115,152,174,267,341,364,380,381,439,482],fourier:[],fourth:[6,116,312,326,336,397,443,457],fox:[6,130,184,465,499],fphi:[38,57,469],fpic:12,fplo:[38,57,469],fprime:469,fqdn:252,fqq:405,frac:[],fraction:[1,3,6,8,12,16,40,42,86,121,153,181,201,205,206,216,227,228,229,230,267,299,303,310,311,329,334,335,374,381,386,392,394,416,433,434,492,497],fragment:[43,250,310],fraig:43,frame:[92,152,206,215,267,303,348,415],framer:[205,206],framework:[5,247,387,458],franc:9,fraunhof:9,free:[5,6,7,9,13,29,63,66,75,96,172,210,211,294,329,338,339,340,341,378,381,389,412,432,439,447,478,484],freedom:[3,6,8,105,107,108,110,112,113,124,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,218,229,236,245,247,253,254,259,269,270,274,275,276,277,288,289,290,292,296,298,313,316,332,333,334,339,379,405,505,508,515],freeli:[0,6,7,12,156,157,171,176,205],freez:[],frenkel:[245,339],freq:214,frequenc:[3,6,16,40,114,206,220,283,295,296,303,308,369,406,412,450,457,482,496,501,514,518],frequent:[3,67,71,75,77,78,82,97,101,118,152,206,227,228,242,337,344,441,473,494],fri:[267,303],friction:[4,5,6,9,10,43,209,247,253,303,308,313,341,345,347,416,497],friedrich:319,from:[],front:[267,303,348],frontend:[205,307],frozen:[6,124,182,244,246,254,382,414],fs2:[6,100],fscale:250,fstr:514,fstring:485,ftol:[379,381,482,501],fuchsia:206,fuction:402,fudg:316,fugac:245,fugacity_coeff:245,fulfil:6,full:[1,2,3,6,9,12,17,38,40,41,100,205,219,220,231,256,294,371,372,386,392,410,412,413,415,473,487,489,494,495,499,501,506,508,518],full_energi:[3,245],fuller:379,fulli:[3,6,83,247,252,294,379,381,402,447,448,487,509,516,517],fulton:410,fumi:393,func:[485,514],funcfl:410,functino:[],functionaliri:231,fund:[0,7],fundament:[329,513],funnel_flow:325,funrol:439,further:[3,4,6,8,12,13,64,66,68,73,76,84,95,102,116,119,128,205,206,209,218,221,222,223,224,227,233,237,256,260,296,304,314,317,319,329,341,343,352,372,377,379,380,381,382,387,391,401,439,457,482,501,502,514],furthermor:[27,187,408,412],furthest:64,futher:3,futur:[],g_ewald:3,g_ewald_6:3,g_ewald_disp:3,g_jik:447,g_p:341,ga3:177,gaa:392,gahler:378,gai:[3,415,467],gain:336,gainsboro:206,galindo:440,game:250,gamma0:29,gamma:[3,6,29,253,256,260,295,303,304,306,308,345,406,408,411,415,436,440,461,464,465,468,470,472,475,505],gamma_:[3,341,347],gamma_ijk:470,gamma_n:[347,416],gamma_p:[3,341],gamma_t:[347,416],gammaa:440,gammafactor:256,gammar:440,gan:[447,468,470,472,475],gan_sw:447,gan_tersoff:447,ganzenmuel:[7,9],ganzenmul:9,gao:[6,20,184,397,499],gap:[198,433,434,448,458],gap_2014_5_8_60_17_10_38_466:448,gap_exampl:448,gaseou:7,gass:245,gather:[11,495],gather_atom:11,gather_scatter_loop_unrol:[9,12],gathert_atom:11,gauch:190,gaug:12,gauss:[],gaussian:[6,41,66,100,114,116,246,247,253,296,312,329,333,351,371,406,409,412,414,448,467,482,514,515],gave:[3,441],gaybern:[],gcc:17,gcmc:[],gcore:236,gd3:177,gdot:434,gdrude:236,ge4:177,gec:[470,472],gen:[269,270],gener:[],genom:7,gentler:[346,349,351],gentli:411,geom:[6,371,409,482,515],geometr:[3,6,7,8,43,60,62,76,87,168,169,178,180,202,206,212,222,223,225,226,233,238,249,269,275,276,277,288,289,290,292,313,315,323,332,333,334,350,352,371,374,381,391,394,398,400,402,405,412,415,417,424,425,426,427,428,429,430,431,432,433,434,435,440,441,451,459,473,474,477,478,480,487,490,497,505,514],geometri:[3,6,7,9,13,25,39,42,59,76,87,166,178,199,222,226,227,228,230,233,251,317,367,374,441,487,490],georg:[7,9],georgia:13,gerar:514,gerber:432,germani:[9,14],germann:[274,426,482,501],germano:415,gerolf:13,get:[],get_natom:[11,485],get_rank:11,get_siz:11,getenv:514,gettimeofdai:12,gewald:[6,371],gezelt:[402,424],gf100:14,gf104:14,gf200:14,gflop:12,gflp:12,gfortran:9,ghost:[3,6,7,12,16,61,64,65,78,176,181,182,230,232,254,269,302,313,314,369,371,382,386,406,408,409,412,416,423,480,492,497,508],ghostwhit:206,ghz:[],giacomo:9,gif:[4,205],gifsicl:205,gigabit:18,gillan:458,gingold:[461,462,464],gio:2,git:[7,12,509],github:[],give:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,55,76,101,118,125,158,161,165,178,202,203,206,212,214,218,219,221,224,230,232,247,269,290,294,295,300,308,310,313,343,371,372,379,382,383,386,388,392,409,412,418,419,436,439,441,451,470,471,472,482,484,485,487,497,501,508,515],given:[3,4,5,6,7,9,11,12,16,17,22,27,37,45,56,64,66,67,71,76,118,125,135,136,137,139,140,143,144,145,146,147,148,149,150,151,152,153,172,176,180,186,187,197,198,202,203,204,206,209,216,218,220,222,227,228,230,232,233,237,245,246,247,248,250,256,263,266,268,269,274,293,294,295,296,303,304,310,312,316,325,326,327,329,331,336,341,342,345,346,347,350,356,365,371,372,386,387,388,392,393,395,396,398,399,400,401,402,403,406,407,408,409,410,412,413,415,418,424,425,426,428,436,437,438,439,440,441,443,444,447,451,452,454,456,457,458,467,479,482,485,487,489,490,497,501,513,518,519],gjf:253,gjwagn:7,gko:2,gld:[],gle4md:[247,252],gle:[],glitch:3,glob:498,global:[],glosli:[372,439],glotzer:[313,406],glue:11,gmail:[7,9,13],gmake:[12,17],gmask:[3,514],gnu:[0,7,9,12,17],gnuplot:[11,13],goal:[5,12,40],goddard:[6,9,25,304,305,306,366,412,418,449,450,499],goe:[12,55,152,178,201,266,322,379,382,405,411,417,426,429,459,479,490,494],gold:[75,206],goldenrod:206,goldman:303,gone:3,good:[1,3,6,10,12,17,42,78,130,176,177,226,253,267,269,300,304,310,316,336,371,381,382,387,400,409,410,439,441,469,475,482,496,501,505,509],googl:250,gordan:152,gordon:6,got:509,gould:[6,184,499],gov:[0,7,9,13,387,410,413,513],govern:256,gpa:388,gpl:[0,7,8,12],gpt:[9,439],gpu1:386,gpu:[],gpuid:386,gpun:386,grab:[3,6],gracefulli:3,grad:[6,212,238,268],gradient:[6,7,8,12,13,134,139,230,238,248,249,268,290,305,337,341,377,378,381,434,450,469],gradient_correct:456,graduat:298,graft:229,grai:206,grain:[5,6,7,9,10,29,36,41,55,71,178,181,190,209,294,298,313,329,417,439,452,496,499],gram:[218,222,223,410,513],grama:[9,306,450],gran:[],grand:[3,9,209,216,245],granflow:5,granular:[],graph:11,graphen:491,graphic:11,grasp:5,gravit:248,graviti:[],grdient:215,great:[3,13,303,509],greater:[1,3,10,64,76,95,176,206,230,246,269,294,334,348,386,391,393,395,396,422,441,482,484,487,490,496,501,514,515],greathous:13,greatli:[130,501],green:[2,6,100,142,143,205,206,295,296,337,392,509],green_kubo:6,greenyellow:206,greffet:308,greg:[7,9],grest:[46,47,229,329,372,396,416,428,499],grew:76,grid:[3,12,42,65,130,166,177,180,203,226,256,308,329,341,342,369,371,372,481,484,487,489,491,496],grigera:6,grime:41,grmask:[3,514],gromac:[],gronbech:[253,371],groot:406,ground:[6,89,90,240,317,412],group1:[160,181,382],group2:[97,154,160,179,181,382],group2ndx:[],group:[],group_id:11,groupbig:329,groupid1:[259,313],groupid2:[259,313],groupid:487,groupnam:382,grouptyp:245,grow:[3,6,8,214,232,233,251,253,269,294,343,416,487,499],grow_arrai:8,grow_reset:8,growth:[6,336],grueneisen:9,gsmooth_factor:436,gstyle:[3,484],gtl:7,gtx285:14,gtx450:14,gtx460:14,gtx470:14,gtx560:14,gtx580:14,guarante:[69,74,85,103,120,127,178,181,202,237,304,370,374,497],guess:[3,202,300,488,509],gui:[7,11,509],guid:[1,17,41,83,86,110,111,112,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,209,262,263,319,320,321,322,325,342,446,454,456,460,461,462,463,464,465,497],guidelin:[1,8,14,15,16,17,18,19,371,469],guidlin:17,gullet:436,gulp:6,gumbsch:378,gunnel:439,gunsteren:[300,332,432],gunzenmul:7,gunzip:12,guo:[6,20,184,190,397,499],gwald:3,gyrat:[],gzip:[3,12,202,203,205,206,340,381,487,488,492],h12:415,h2o:[41,380],h5cc:204,h5md1:204,haak:[300,332],had:[3,6,11,13,62,66,202,203,206,207,221,224,229,230,246,247,249,253,254,255,267,269,271,272,273,274,275,276,277,288,289,290,292,299,300,329,332,333,334,341,406,409,416,466,489,493,496,502,505],hafskjold:6,half:[1,3,6,8,9,16,17,40,42,61,62,180,205,217,226,232,253,269,341,346,350,382,386,389,392,400,412,439,453,455,487,489,490,497,508],halfwai:[42,205,206,422,509],halperin:101,halsei:416,halt:[42,206,226,249,354,504],halv:205,ham:[38,57],hamak:[346,350,400,451],hamilton:75,hamiltonian:[209,247,269,270,333,412,496],hammond:[371,372],han:410,hand:[3,6,9,19,55,154,178,196,201,205,256,266,374,402,412,487,490,497,500],handl:[3,16,205,231,306,386,389,412,433,450,475,485,501],hang:[3,12,484,485],happen:[3,6,8,12,15,18,64,128,182,206,216,219,382,386,485,488,495],happi:8,haptic:250,hara:471,hard:[1,259,306,312,313,409,449,457,490],harden:[9,459],harder:[346,350,508],hardi:[215,254,371,372,508],hardwar:[1,9,10,12,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,44,46,47,48,49,50,52,54,55,57,121,124,155,165,184,185,187,188,189,190,192,193,195,196,198,212,225,232,239,244,248,253,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,305,313,315,316,332,334,345,349,355,357,358,360,361,364,366,371,372,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,410,411,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,442,443,444,446,451,452,459,468,469,470,471,472,473,475,477,478,479,490,500],hardwir:[3,17,347],hardy2:372,harm:389,harmon:[],harmonic_1:58,harmonic_fix_wal:434,harpertown:18,harrison:388,hart:329,hartre:[389,410,412,439,513],hasan:9,hash:[40,487],hassl:312,hat:[6,268],have:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,32,35,38,40,41,42,43,44,46,47,48,49,50,52,54,55,57,60,62,66,67,69,70,71,74,75,76,77,78,80,82,87,88,95,99,100,101,104,114,115,116,117,118,121,124,125,126,127,128,142,152,153,154,155,156,157,158,159,161,165,167,170,171,173,174,175,176,178,179,180,181,182,184,185,187,188,189,190,192,193,195,196,198,201,202,203,204,205,206,207,212,214,216,217,218,219,222,223,224,225,226,227,228,229,230,232,233,238,239,242,244,245,246,247,248,249,250,251,253,254,255,256,259,264,266,267,269,271,272,273,274,275,276,277,278,279,283,286,288,289,290,291,292,294,296,298,299,300,302,303,304,305,308,311,313,315,316,323,325,329,330,332,333,334,335,336,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,357,358,360,361,362,364,366,371,372,374,377,378,379,380,381,382,383,386,387,388,389,390,392,393,394,395,396,397,398,400,401,402,405,406,407,408,409,410,411,413,414,415,416,417,418,419,420,424,425,426,427,428,429,430,431,432,433,434,436,437,438,439,441,442,443,444,446,447,449,450,451,452,456,457,459,468,469,470,471,472,473,474,475,477,478,479,481,482,484,485,487,488,489,490,491,492,493,494,495,496,497,499,501,502,504,505,506,508,509,513,514,515,517,518,519],haven:485,hayoun:308,hayr:253,hbcut:449,hbnewflag:449,hbond:[],hbond_cutoff:450,hcp:[67,71,78,374,436],hdf5:[9,204],he1:177,head:[6,21,185,355,414,418,449,450,502,509],header:[3,6,7,8,12,179,202,205,206,207,218,219,221,222,223,224,267,303,310,314,341,380,387,392,410,466,484,487,497,504],heal:496,heat:[],heatconduct:[],heavi:[302,329],heavili:[42,226],heavisid:341,hecht:329,heenen:9,height:[205,233,299,381,414],heisenberg:[],held:[6,76,329,381,416],helic:190,helium:390,helix:[],hello:485,help:[3,8,12,14,15,16,17,18,19,202,230,232,267,369,392,470,472,509,517],henc:[1,3,13,20,21,26,32,35,36,75,76,120,158,160,168,185,218,269,306,329,345,346,350,352,355,357,361,364,372,402,414,432,447],henderson:54,hendrik:9,henin:[9,231],henkelman1:[268,381],henkelman2:[268,381],henkelman:[268,378,381],here:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,22,37,41,42,45,56,66,72,74,75,76,130,158,176,177,186,189,197,202,205,206,209,218,226,229,232,245,246,254,256,294,303,306,308,314,341,346,349,351,352,354,356,365,370,379,381,385,386,388,389,392,399,413,415,418,419,423,435,439,447,451,454,456,457,467,469,479,485,489,492,508,509,514],herist:342,herrmann:329,hertizian:347,hertz:[],hertzian:[6,347,416,467],hertzsch:416,hess:371,hessian:[5,378],heterogen:116,heurist:[342,488],hex:[3,178,374],hexagon:[71,101,436],hexahedron:203,hexat:101,hexord:[],hey:[122,153],hf4:177,hfo:401,hftn:[378,379,381],hg1:177,hg2:177,hgrid:329,hibb:296,hidden:[17,485],hienergi:352,hierarch:[7,496],hierarchi:[372,396,397,424,425,428,435,440,496],higdon:[9,433,434],high:[1,3,6,7,9,12,19,42,118,198,202,205,226,230,237,254,267,337,341,344,372,378,379,386,388,392,412,415,439,451,469,479,484,496,501,508],higher:[1,14,152,181,206,218,224,227,228,233,251,299,308,336,349,351,379,388,412,420,457,514],highest:[233,354,380,381,514],highli:[3,6,7,178,205,232,253,269,283,303,313,377,379,412,482,501],highlight:[4,6,7,13],hight:414,hilger:[371,372],hill:296,hill_height:13,him:9,hing:9,hint:12,histo:[],histogram:[1,3,6,12,66,128,176,209,219,221,224],histor:413,histori:[],hit:[3,329,348],hmaktulga:[7,9],ho3:177,hoc:364,hocknei:[371,372],hofl:204,hoh:[6,402,424,428],hold:[6,33,62,76,191,218,232,261,297,312,313,326,379,381,416,432,478,498],holdem:312,holder2:372,holder:[371,372],hole:326,holian:[274,426],holm:[294,372],holonom:340,home:[11,12,207],homebrew:12,homepag:[203,205,250],homogen:[290,441],hone:296,honeydew:206,honor:207,hood:439,hook:[],hookean:416,hoomd:207,hoover:[6,7,8,168,209,236,253,254,269,270,271,272,273,274,275,276,277,288,289,290,291,292,296,300,308,313,332,333,334,339,406,508],hop:[229,381,392,457],hope:[5,13,17,42,43,226,495],hopefulli:[8,379],horizon:446,horn:6,host:[3,12,16,17,231,386],hot:[6,249,270],hotpink:206,hottest:337,hour:12,hourglass:[],hove:436,how:[],howev:[1,2,3,6,7,9,11,12,15,16,17,36,40,42,76,97,100,115,130,152,177,198,202,205,206,219,220,224,226,229,230,233,236,245,246,247,252,253,254,255,256,259,269,294,296,299,300,302,303,308,313,314,329,330,332,333,336,337,341,342,343,344,345,372,374,376,377,381,386,398,400,410,411,416,419,436,439,445,447,456,468,469,472,482,484,485,488,489,495,501,504,505,508,509,514,515],howto:[6,9,66,76,155,156,157,159,161,164,165,166,167,168,170,171,209,253,254,269,300,332,333,334,402,418,424,428,515],hoyt:215,hpc:[1,15],hsw:17,htm:410,html:[0,8,9,11,12,15,68,154,252,414,434,496,497],htmldoc:0,htst:501,http:[0,6,7,9,11,13,14,15,231,247,250,252,387,410,433,448,449,450,509],htype:[402,424,428,432],hubbard:403,huge:[10,12,180,283,329,487,492,504,509],huggin:[7,393,395,467],hugh:215,hugoniostat:[4,9,209,274],hugoniot:[267,274,303],hull:176,hummer:371,hundr:[7,14],hura:6,hwat:302,hwloc:[12,17],hybrid:[],hydrat:414,hydrocarbon:[388,401,412],hydrodyanm:41,hydrodynam:[7,9,41,110,112,256,258,259,260,394,433,434,454,456,467,497],hydrogen:[3,6,7,9,242,302,308,388,392,402,412,418,424,428,432,449,450,467,487,496,508],hydrostat:[3,9,230,269,274,300,313],hynninen:[403,414],hyoungki:438,hyper:296,hyperbol:403,hyperspher:152,hyperthread:[16,17],i_0:341,i_1:447,i_csid:6,i_flag1:302,i_mpi_pin_domain:16,i_myflag1:302,i_myflag2:302,i_n:447,i_nam:[125,202,302,331,497],ialloi:436,iatom1:127,iatom2:127,iatom3:127,iatom4:127,ibar:436,ibead:296,ibm:[202,371,439],icc:[9,12,439],icm:[9,250,509],ico:67,icosohedr:78,ictp:13,id1:[313,381,423,487,490],id2:[313,318,326,381,423,487,490],id_press:[230,267,269,271,272,273,274,275,276,277,300],id_temp:[229,230,267,269,271,272,273,274,275,276,277,288,289,290,292,300,332,333,334],idea:[1,3,6,11,12,42,153,205,206,226,251,294,318,329,337,372,441,495,508,509],ideal:[6,9,12,41,78,128,134,236,245,294,374,433,461,508,509],idealga:[],ident:[1,3,9,12,40,41,76,152,202,206,221,230,231,246,247,253,254,266,269,294,296,300,308,310,313,372,380,381,386,393,395,402,404,410,424,426,432,443,449,450,457,458,475,479,482,485,488,501,513,514,515,518],identi:386,identif:71,identifi:[1,3,6,12,38,41,57,75,154,176,178,198,241,302,310,329,352,418,423,436,469,482,484,487,490,501,502,504,506],idflag:299,idl:[18,501],idn:[313,381],idr:514,ielement:436,ieni:13,ifdef:[8,12],iff:254,iffp:485,ifort:9,ignor:[3,6,11,16,39,42,43,59,64,68,73,76,84,92,96,102,109,119,131,182,199,202,203,205,206,210,211,219,220,221,222,224,226,230,231,232,233,245,248,252,253,266,269,274,280,285,299,300,301,302,312,313,314,329,332,333,334,340,341,343,346,350,351,352,362,367,373,376,380,381,386,387,398,399,400,410,411,413,415,422,423,436,443,447,451,468,469,470,471,472,474,475,480,482,484,487,488,492,497,499,501,504,514],ihl:329,iii:[6,9,25,304,306,366,418,499],ijj:475,ijk:[360,364,366,392,447,475,484],ijl:364,ikeshoji:6,ikj:475,iko:2,ill:[158,168,218,304],illeg:3,illinoi:[250,371,372,433],illog:485,illustr:[1,4,6,8,9,11,12,16,17,18,19,294,296,381,419,485,514],ilmenau:[7,9,14],ilya:[7,9],imag:[],image2pip:205,imageint:3,imagemagick:[4,205],imagin:[326,340,392,411,419,420,422,437,438,443,447,468,470,471,472,475,499],imaginari:[6,101,245,296,487],imbal:[1,12,42,226,386,506],imbalanc:[42,226],imbu:329,imd:[],img:205,immedi:[0,2,3,8,12,178,227,228,233,316,325,330,331,348,484,485,487,489,501,514,518],immens:3,immers:[256,313],impact:[1,4,6,8,9,237,336,388,506],impart:[3,6,248,329,351],impei:[6,424],implement:[1,3,6,8,9,12,17,18,27,83,89,90,96,118,130,160,166,177,178,186,187,197,218,231,235,240,247,250,253,256,258,259,260,267,269,290,293,295,296,302,303,306,307,308,316,317,318,329,336,341,345,364,370,371,372,379,381,386,387,389,392,401,402,404,406,407,408,410,411,412,419,424,428,432,436,446,449,450,451,470,472,484,485,496,501,508,514,516,517],impli:[3,6,41,62,96,153,201,205,210,211,212,232,238,253,312,332,334,335,371,374,399,485],implicit:[],implicitli:8,implict:403,imporop:380,importannt:[],important:339,important_not:[],impos:[2,6,76,124,167,201,209,212,213,225,238,239,243,248,251,260,261,268,283,294,297,315,323,326,328,329,336,337,338,339,344,345,346,349,350,351,379,381,383,481,495],imposs:[1,3,302,487],improp:[],improper_coeff:[],improper_styl:[],impropercoeff:[3,367],impropertyp:228,imprort:108,improt:[210,211],improv:[0,1,9,16,40,42,206,226,269,295,386,418,424,439,441,450,468,471],imrop:363,in3:177,inaccur:[1,3,6,181,267,371],inaccuraci:350,inact:418,inappropri:178,incid:[130,177,233],includ:[],includelink:9,includig:[354,370],inclus:[],incom:250,incompat:[3,11,420],incomplet:[3,11,487],incompress:[270,412],inconsist:[3,182,229,488],inconveni:374,incorpor:[303,392,403,509],incorrect:[3,161,253,436],incorrectli:[3,374,416,514],increas:[1,3,6,18,38,57,60,62,121,130,153,198,202,203,205,206,220,227,228,229,232,241,245,253,300,311,312,313,337,340,344,371,372,381,386,388,412,415,450,469,471,485,496,501,514],increasingli:412,increment:[3,11,140,212,213,225,226,233,238,242,269,299,318,319,352,370,385,422,457,482,485,499,501,514],incur:[14,17,218,222,223,242,341,484],inde:161,indefatig:7,indefinit:338,indent:[],independ:[4,6,9,11,12,16,17,42,62,66,87,100,129,131,164,178,201,209,217,218,219,221,222,223,224,226,229,230,231,232,233,246,248,253,254,256,259,269,295,300,304,308,313,314,318,328,339,341,374,416,439,482,485,504,515],indetermin:[202,203,206],index:[0,3,6,8,11,12,38,40,41,57,58,72,74,129,131,176,198,202,206,217,219,241,250,252,296,314,341,352,353,354,376,385,441,449,450,469,476,487,502,514],indianr:206,indigo:206,indirectli:[6,302,514],indistinguish:253,indium:458,individu:[],induc:[],industri:7,ineffici:[3,6,41,67,71,75,77,78,82,101,118,152,166,205,232,269,295,371,383],inelig:216,inerti:434,inertia:[],inexpens:[247,496],inf:[2,3,12,344,490],infer:[3,105,107,108,172,212,213,226,227,228,238,250,298,329,337,344,374,399,413,487,499,505],infil:[3,13,313,484],infin:[3,379,492,505],infininti:205,infinit:[3,233,244,251,253,256,295,329,341,347,348,372,374,412,487,491,513],infinitesim:6,inflect:[403,426,467],influenc:[3,9,42,86,160,266,299,371,372,441,470,471,472],inform:[0,1,2,3,6,7,8,9,11,12,13,15,17,40,42,43,62,64,65,66,72,97,127,129,130,177,178,184,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,242,243,244,245,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,268,278,279,280,281,282,283,284,285,286,287,293,294,295,297,298,299,300,301,302,304,305,306,307,308,309,310,311,312,313,314,315,316,319,326,327,329,330,332,333,334,335,336,337,338,340,343,344,345,346,348,349,350,351,353,369,371,372,375,378,379,380,381,382,384,386,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,442,444,446,447,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,475,477,478,479,480,484,485,487,488,489,491,492,494,499,501,502,504,506,514,516,517,518,519],infrequ:[6,269,406,482,501],infti:[403,433,434],ingtegr:392,inher:[371,379,441],inherit:[6,473],inhomogen:[18,341,441],inidividu:379,init:[3,8,311,457],init_fil:341,init_list:8,init_on:8,init_styl:8,initi:[2,3,4,6,7,8,11,12,13,38,40,41,42,57,60,62,65,76,86,88,95,96,114,115,142,174,179,180,198,201,202,203,205,206,207,210,211,214,215,219,226,228,229,230,232,239,241,245,246,250,251,252,253,254,256,261,265,266,267,268,269,274,283,295,296,297,302,303,308,311,312,313,315,317,328,329,331,336,338,339,340,341,342,343,346,347,348,349,351,352,354,371,375,378,379,381,388,389,405,406,409,439,448,449,450,457,469,482,484,485,487,489,490,492,494,495,497,501,502,505,508,514,515,517,519],initial_integr:8,initial_integrate_respa:8,initialis:448,initialt:341,inlclud:11,inlcud:[],inlin:485,inner2:[397,417],inner:[3,8,16,58,202,251,354,370,377,378,379,381,385,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,444,446,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,474,475,476,477,478,479,480,496,501,514],inner_distance_cutoff:418,innergroup:259,innermost:[38,57,76,384,469,496],innernod:259,innner:430,inordin:342,inorgan:[6,475],inp:[231,354,458,475],input1:[69,72,74,85,103,120,125,126,127,129,131,331],input2:[69,72,74,85,103,120,125,126,127,129,131,331],input:[],input_doubl:3,inquir:319,insensit:12,insert:[3,5,7,8,9,12,62,178,209,233,245,251,299,371,458,466,485,491,508],insid:[2,3,6,8,11,76,141,147,178,202,203,206,217,222,223,233,234,242,245,251,256,259,299,313,329,346,348,349,350,351,352,369,374,426,485,486,487,489,490,497,501,514],insight:[6,13],instabl:[256,405,456],instal:[],instanc:[6,9,11,210,231,247,348,414,419,441,447,485,508],instantan:[6,66,229,230,246,247,269,274,295,300,303,308,310,313,336,493,505],instanti:[6,11,12,215,419,484],instead:[1,3,6,8,11,12,13,17,18,41,42,62,64,66,75,76,99,114,129,156,160,182,198,202,203,211,218,221,222,223,224,226,230,231,245,253,256,259,260,295,301,302,311,313,331,349,369,371,372,375,382,386,395,396,410,423,425,432,436,439,467,473,482,490,494,501,503,508,514],institut:[9,250,298],instruct:[],insuffici:[3,6,12],insult:269,insur:[3,6,11,12,17,40,41,64,78,113,115,178,179,198,202,203,205,206,212,227,228,233,238,239,242,243,245,248,253,265,301,302,311,313,329,341,346,350,351,352,354,370,380,382,386,400,415,419,445,451,469,480,484,485,487,488,492,495,496,504,505,514,515],int_max:3,inteatom:10,integ:[3,6,8,11,12,40,41,43,67,72,75,76,118,125,127,129,131,152,176,178,181,182,184,188,189,193,198,201,202,205,206,216,218,222,223,227,228,229,233,235,243,245,246,247,250,253,254,255,256,295,298,299,302,303,308,313,329,331,333,336,340,341,360,371,374,394,406,408,409,422,436,449,450,454,456,458,482,484,485,486,487,495,496,497,501,504,514,515],integr:[],integrate_ulsph:[],intel:[],intel_cpu:[12,16],intel_phi:[12,16],intend:[3,6,8,12,13,36,220,246,448,487],intens:[1,3,6,9,66,70,79,80,87,95,98,99,100,104,114,115,116,117,124,126,128,129,130,131,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175,177,209,218,219,221,222,223,224,226,227,228,229,237,242,249,259,267,269,274,310,313,314,329,337,341,343,344,504,505,513],intepol:514,inter:[14,18,43,64,65,158,181,182,202,229,253,255,268,305,313,371,381,392,497,508,514,517,519],interact:[1,3,6,7,8,9,10,11,12,14,15,16,17,22,29,33,34,37,40,41,43,45,51,53,55,56,58,60,64,66,69,74,77,82,85,96,97,101,103,118,119,120,122,124,127,128,134,135,136,137,139,140,141,142,143,144,145,147,148,149,150,152,153,154,156,157,171,172,176,179,180,181,182,183,184,186,190,191,194,197,202,203,209,210,211,227,228,229,244,245,250,251,253,255,259,283,294,296,298,299,304,306,312,313,320,321,329,330,336,341,345,346,347,350,351,356,357,358,359,361,363,365,371,372,379,380,381,382,383,384,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,444,445,446,447,450,451,452,454,456,457,458,459,466,467,468,469,470,471,472,473,474,475,476,477,478,479,482,485,487,489,491,492,496,497,499,504,505,508,517],interatom:[3,4,7,9,10,178,202,268,338,339,387,392,410,412,420,436,439,457,471,514],intercept:130,interchang:6,interconnect:18,interconvert:412,intereract:40,interesect:350,interest:[1,5,7,8,9,11,13,76,177,296,336,339,372,411,434,449,450,485,514],interf:[386,509],interfac:[],interfer:[12,269,388],interg:[6,508],intergr:[496,500],interi:434,interior:[3,6,42,350,490],interlac:436,interleav:[6,178,495],intermedi:[6,12,62,205,268,294,364,381,485,486,495,499],intermix:482,intermolecular:[154,388],intern:[],internal_element_set:215,internal_quadratur:215,internet:252,interpenetr:436,interpentr:[461,462,464],interpol:[6,15,38,57,111,198,205,206,215,241,256,294,371,372,381,392,441,450,463,469,470],interpret:[2,6,11,205,221,416,459,482,485,501,514],interrupt:303,intersect:[3,6,130,206,350,352,490],intersert:350,interspers:379,interstiti:[176,439],intertia:[3,104],interv:[3,6,100,204,219,253,269,303,308,309,321,457,463,482,501,514],intestieti:130,intial:[6,386,388],intiial:[42,492],intiti:[3,328],intra:313,intra_energi:245,intramolecular:[29,154,245],introduc:[6,9,101,118,205,269,303,308,313,364,371,387,402,412,424,428,432,468,501,514],introduct:[],intsal:[],intuit:374,inv:[130,177,314],invalid:[3,12,76,98,181,283,381,433,434,489],invari:[118,145,150,152],invent:316,invers:[],invert:[1,6,182,295],invis:350,invoc:[176,229,386,454,456,485],invok:[1,3,6,7,8,9,11,12,13,14,16,17,18,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,42,44,46,47,48,49,50,52,54,55,57,58,62,66,70,76,79,80,87,88,96,97,98,99,104,114,115,117,121,122,123,124,129,131,155,165,172,173,176,178,179,181,182,184,185,187,188,189,190,192,193,195,196,198,202,203,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,234,235,237,238,239,242,243,244,245,246,248,249,250,251,253,254,255,256,257,258,259,260,261,262,263,265,266,268,269,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,304,305,306,307,308,309,310,311,313,314,315,316,318,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,355,357,358,360,361,364,366,370,371,372,373,374,379,381,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,410,411,413,414,415,416,417,418,419,420,424,425,426,427,428,429,430,431,432,433,434,437,441,442,443,444,446,451,452,454,456,458,459,468,469,470,471,472,473,475,476,477,478,479,481,484,485,486,488,490,492,495,496,498,499,501,504,505,508,514,515],invokd:3,involv:[3,6,7,8,12,66,120,127,128,129,158,182,209,216,227,245,256,298,301,306,329,371,378,379,381,391,409,415,422,468,470,472,483,484,490,492,496,501,502],ioff:[380,487],ion:[6,7,9,160,293,326,341,372,392,403,413,414,436,439,457,467,472,479,487,508],ionic:[6,9,393,395,403,412,413,444,457,508],ioniz:[401,412],ionocoval:9,iparam:[3,228],ipi:[],ipp:[],ir3:177,ir4:177,irregular:[6,42,61,226,230,232,269,313],irrelev:443,irrespect:[433,434],irrevers:236,is_act:[3,514],is_avail:[3,514],is_defin:[3,514],isbn:478,isel:[371,372],isenthalp:[9,269,270,271,272,273],ismail:[371,372,396,428],isn:[3,8,11,12,249],iso:[3,230,236,254,269,270,271,272,273,274,275,276,277,300,308,313,508],isobar:[9,269,270,275,276,277,317,408],isodem:412,isoenerget:[9,317,408],isoenthalp:[317,408],isol:[3,181,352],isomorph:296,isotherm:[9,245,269,270,275,276,277,300,317,408],isotop:302,isotrop:[6,101,253,300,371,372,394,415,433,434],isovolum:314,isralewitz:318,issu:[1,3,6,9,11,12,13,14,15,17,18,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,44,46,47,48,49,50,52,54,55,57,62,76,78,88,114,121,124,155,165,184,185,187,188,189,190,192,193,195,196,198,205,212,215,225,229,230,232,233,238,239,244,245,248,253,267,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,296,300,302,305,313,315,316,328,332,333,334,339,345,349,351,354,355,357,358,360,361,364,366,372,380,381,384,387,388,390,393,394,395,396,397,398,400,401,402,405,406,410,411,413,414,415,416,417,418,424,425,426,427,428,429,430,431,432,433,437,442,443,444,446,451,452,459,466,468,469,470,471,472,473,475,477,478,479,487,489,490,496,499,504,505,514,515],ital:[449,450],itali:13,item:[6,7,8,42,202,206,226],iter:[3,6,12,40,42,66,204,212,213,225,226,230,236,238,243,251,295,304,305,313,316,336,352,354,370,377,378,379,381,385,457,482,492,496,501,505,514],ith:[76,129,131,217,218,219,220,221,222,223,224,331,343,505,514],itself:[2,3,6,7,8,9,11,12,13,18,43,62,100,119,169,202,204,205,206,207,219,220,231,236,254,264,268,307,313,341,352,354,380,381,402,413,415,419,420,469,485,491,494,495,499,514,519],itset:497,ityp:[3,58,127,128,178,214,228,306,476],itype1:128,itype2:128,itypen:128,ivector:8,ivori:206,ixcm:313,ixi:[43,104,313,380,514],ixx:[43,104,313,380,514],ixz:[43,104,313,380,514],iycm:313,iyi:[43,104,313,380,514],iyz:[43,104,313,380,514],izcm:313,izrailev:318,izumi:471,izz:[43,104,313,380,514],j0jt:100,j20:219,j_m:152,jac:[6,184,499],jackson:440,jacobi:3,jacobsen:378,jagreat:13,jame:[9,19],janssen:294,januari:436,jaramillo:[7,9,13,412],jarzynski:318,jatempl:9,jcc:9,jcp:346,jec:13,jeff:13,jello:269,jensen:[253,371],jeremi:[9,438],jerom:9,jewett:13,jiang:[254,508],jiao:[9,13],jiht:[7,9],jik:392,jim:7,jku:[7,9],jmake:12,jmm:152,joannopoulo:267,job:[12,63,316,495],jochim:[269,270],john:[7,9,13,204],johnson:[9,13],join:[6,490],joint:[3,298,418],jon:[9,75],jonathan:9,jone:[1,3,6,7,9,10,12,13,46,47,67,96,119,122,209,215,300,329,346,350,372,374,379,388,391,395,396,397,398,400,405,415,417,418,419,422,423,424,425,426,428,429,431,432,435,440,441,447,451,452,462,467,474,499,508],jonsson:[78,268,378,381,457],jorgensen:[6,195,402,424,428],joul:513,journal:[172,190,215,306,372,410,439,449,450,461,462,464],jparam:[3,228],jpeg:[3,12,205],jpeglib:12,jpg:[4,8,12,202,205,206,518],jpg_inc:12,jpg_lib:12,jpg_path:12,jpl:[7,9],jth:514,jtype1:128,jtype2:128,jtype:[3,58,128,228,476],jtypen:128,judg:501,judici:6,julien:9,jump:[],june:207,just:[3,6,8,11,12,13,17,19,22,29,43,45,62,64,100,119,122,128,153,156,157,171,182,186,202,205,218,222,223,232,236,242,259,266,300,302,313,336,341,352,354,356,380,381,386,388,391,399,419,447,474,485,489,491,492,494,495,506,508,509,514,518,519],justo:411,jusufi:[403,414],jut:350,jzimmer:9,k11:100,k22:100,k33:100,k_2:359,k_4:359,k_b:[],k_d:508,k_n:[],k_na:[],k_sigma:392,k_ub:20,kadiri:71,kalia:475,kamberaj:313,kapfer:118,kappa:[4,6,100,317,337,402,408,424,477,478],kappa_:341,karplu:96,karttunen:256,kate:[],kayser:403,kbit:206,kboltz:329,kbp:206,kbt:308,kcal2j:100,kcal:[250,496,508,513],kde:13,ke_eta_dot:269,ke_etap_dot:269,ke_omega_dot:269,keblinski:[402,457],kecom:158,keef:130,keep:[3,7,12,62,76,196,222,228,232,251,295,311,339,344,371,379,402,432,458,482,487,493,495,501,505,509,514],keflag:3,kei:[6,17,62,329,475,501],keir:13,kelchner:75,kelkar:344,kelvin:513,kemper:[305,401],kepler30:17,kepler32:17,kepler35:17,kepler37:17,kepler:[1,9,10,12,14,15,17,386],kept:[6,209,274,338,339,508],kernel:[7,13,17,41,111,141,147,215,246,247,321,439,460,461,462,463,464,465,487,497],kernel_radiu:[],keword:205,keyboard:12,keyword:[],keywrod:412,kforc:508,khaki:206,khersonskii:152,kick:[212,213,214,238,348],kilogram:513,kim:[],kimviri:[3,420],kind:[1,2,3,4,6,7,8,9,10,11,12,17,40,41,42,43,58,64,65,66,78,129,158,202,203,205,209,216,218,219,221,226,229,231,235,245,248,266,313,316,329,336,351,381,383,385,392,412,449,450,476,482,486,487,492,493,500,501,508,514],kinemat:[9,433,434],kinet:[3,6,8,66,91,92,93,94,96,100,105,106,107,108,109,124,153,155,156,157,158,159,160,161,163,164,165,166,167,168,170,171,209,216,218,230,236,245,249,253,265,267,269,270,271,272,273,274,275,276,277,300,303,329,337,344,345,379,412,482,501,505,508],kiss:[9,12],kjl:364,klahn:340,klapp:371,klein:[6,9,215,231,269,270,291,313,424,452],kloss:7,kmax:[3,130,314,371],knc:17,knock:341,know:[3,9,11,12,42,66,68,73,84,102,119,128,209,236,252,254,283,329,379,411,420,473,485,488,491,496,508,509],knowledg:[4,8,9,205,420],known:[3,12,152,205,295,304,313,338,484,501,515],kohlmey:[7,9,13,18,371,372],kokko:[],kokkos_arch:[9,17],kokkos_cuda:[9,12,17],kokkos_cuda_opt:17,kokkos_debug:17,kokkos_devic:17,kokkos_omp:[9,12,17],kokkos_pg:17,kokkos_phi:[9,12,17],kokkos_use_tpl:17,kokkow:[],kolafa:372,kollman:[6,184,499],kondor:448,kone:[338,339],kong2011:295,kong:[9,13,295],konglt:9,koning00a:338,koning00b:338,koning96:[338,339],koning97:339,koning99:338,kooser:13,koskinen:378,kosztin:318,krau:13,kremer:[46,47,499],kress:[437,438],kspace:[],kspace_modifi:[],kspace_styl:[],kspce:12,kspring:268,kstart:312,kstop:312,kth:[246,296],kub:20,kubo:[6,100,337],kumagai:471,kumar:[9,433,434],kuronen:447,kurt:298,l12:436,l_box:412,l_skin:341,la3:177,laa:9,lab:[5,7,9,12,123,446],label:[],laboratori:[0,89,90,240,267,303,317],lack:[3,267,412],lackmann:392,ladd:[290,339],lafitt:440,lag:341,lagrang:[142,143],lagrangian:[6,134,135,136,137,139,140,141,142,143,144,145,147,148,149,150,215,267,303,304,320,321,454,456,508],lagrangian_posit:[267,303],lagrangian_spe:[267,303],lai:481,lambda1:[470,471,472,475],lambda2:[470,471,472],lambda3:[470,472],lambda4:475,lambda:[96,123,130,172,177,256,314,338,339,341,387,411,432,468],lambda_fin:338,lambda_initi:338,lamda:[3,54,329],laminar:465,lamm:6,lammps2pdb:[6,13],lammps_clos:6,lammps_command:6,lammps_extract_atom:6,lammps_extract_comput:6,lammps_extract_fix:6,lammps_extract_glob:6,lammps_extract_vari:6,lammps_fil:6,lammps_gather_atom:3,lammps_get_coord:6,lammps_get_natom:6,lammps_n:[6,12],lammps_open:6,lammps_potenti:[399,401,498],lammps_put_coord:6,lammps_quest:[6,243],lammps_scatter_atom:3,lammps_set_vari:6,lammps_sppark:6,lammps_vers:6,lammpsplot:13,lammpspotenti:399,lammpstrj:[488,492,508],lammpsviri:[3,420],lamoureux:[6,236,473,508],landron:457,lane:1,lang:508,langevin:[],langevin_drud:[],langston:43,languag:[6,11,12,17,485,514],lanl:9,lapack:12,laps:342,laptop:7,larentzo:[9,89,90,240,317],larg:[0,1,3,4,5,6,7,8,9,10,12,13,14,16,18,40,41,42,61,62,75,76,121,128,153,158,161,166,178,179,180,190,198,201,202,203,205,206,218,222,223,226,229,230,232,233,237,245,256,269,283,290,295,298,299,300,302,303,308,310,311,312,313,316,326,329,337,341,342,344,346,350,364,371,372,377,379,382,386,400,406,412,415,416,423,439,441,445,451,469,482,485,487,489,490,494,496,501,504,506,508,515,519],larger:[1,2,3,6,11,12,13,40,42,57,62,75,76,128,178,180,205,219,221,224,233,249,256,269,290,291,299,304,308,312,313,314,317,325,329,336,341,345,346,347,350,371,372,377,378,379,381,382,383,386,392,400,402,403,412,416,424,428,434,441,445,466,467,474,487,491,492,495,496,501,514],largest:[3,6,12,40,76,176,178,237,371,379,383,466,469,487,489,495,496,507,514],laroch:308,laser:341,last:[1,2,3,5,6,11,12,15,38,43,57,62,64,76,122,129,153,176,198,202,203,205,206,207,208,218,219,221,222,223,224,226,237,268,311,314,326,329,354,369,379,380,381,382,386,390,391,392,393,400,401,406,407,408,410,414,415,417,418,422,425,427,429,430,431,434,440,442,451,457,459,466,469,473,474,477,478,482,483,485,488,492,494,495,499,501,502,505,506,514],lat:436,late:5,latenc:[10,250],later:[6,9,11,12,16,17,41,62,76,115,180,182,219,233,274,290,298,318,336,352,354,371,379,380,385,386,388,392,485,487,489,491,501,504,509,514,517],latest:[7,218,219,220,221,222,223,224,314,489],latex:8,latgen:295,latitud:152,lattc:436,latter:[2,6,9,11,12,14,15,16,17,42,43,96,156,206,210,211,217,218,219,222,223,226,230,251,260,269,271,272,273,275,276,277,298,300,302,306,313,329,343,345,350,370,380,392,394,395,396,397,398,405,422,424,428,432,439,444,452,457,473,482,484,485,490,493,504,505,514,518],lattic:[],launch:[1,3,6,11,12,17,18,386,484,485],laupretr:364,lavend:206,lavenderblush:206,lavgevin:232,law:[6,267,384,454,456],lawngreen:206,lawrenc:9,layer:[6,76,209,222,337,341,344],layout:[1,3,17,180,369,484,487,496],lb_fluid:256,lbl:[7,9,176],lbnl:9,lbtype:256,lcbop:[],ld_library_path:[11,12],ldfftw:12,ldrd:7,lead:[2,3,6,12,22,25,40,42,45,62,64,82,96,128,172,176,182,186,206,210,211,221,226,233,247,256,274,303,313,316,329,336,337,344,356,364,371,376,381,386,399,402,424,428,430,439,456,481,487,497,508,509,514,515],least:[3,6,12,18,76,130,177,204,216,222,247,298,345,382,386,419,469,474,485,514],leav:[3,7,11,12,17,21,42,60,153,168,185,226,230,233,269,271,272,273,275,276,277,299,300,313,316,355,441,487,491,499],lechman:329,lectur:318,led:[3,5],lee2:436,lee:[215,436],left:[6,11,12,42,119,154,197,205,206,229,251,293,329,352,354,374,487,489,494,509,514,519],leftmost:[42,226],legaci:[12,203],legal:7,lehoucq:446,leimkuhl:349,leiu:406,lemonchiffon:206,len:497,lenart:[403,414],length:[3,6,8,11,12,18,21,38,40,41,42,43,45,54,55,56,57,58,61,62,64,68,69,72,73,74,76,79,84,85,86,89,91,96,97,98,99,100,102,103,114,116,119,120,124,126,127,129,130,131,140,142,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,174,176,177,180,185,198,202,203,205,206,209,216,220,221,223,224,226,227,228,229,230,232,241,245,248,256,267,268,269,270,274,283,294,300,310,313,314,316,317,326,329,336,340,341,343,346,350,372,374,377,379,381,382,384,389,392,393,395,402,403,409,412,414,418,422,424,436,441,449,450,460,469,470,473,477,478,480,487,490,495,497,504,505,508,514],lengthi:245,lennard:[],lennardjones612_universal__mo_826355984548_001:210,lenoski:[437,438],less:[1,3,6,13,14,15,16,17,18,38,42,57,60,61,62,76,81,101,118,120,127,128,156,157,171,198,206,218,221,222,223,224,226,228,229,230,232,233,242,251,267,269,294,306,308,314,329,348,349,351,372,374,379,383,386,392,397,415,416,422,433,434,441,451,468,469,472,478,487,514,515],let:[1,12,38,57,161,189,198,219,241,316,329,347,386,400,469,496,500,508,517],lett:[152,166,247,254,256,267,308,318,338,339,378,392,410,412,415,432,458,508],letter:[2,12,42,60,62,206,226,235,236,254,296,354,385,448],leuven:9,level:[2,3,8,11,12,14,17,202,205,210,211,220,250,266,268,269,354,369,372,385,392,396,397,424,425,428,435,439,440,449,450,484,496,501,506,514],lever:466,levin:416,lewi:319,lexicon:7,lgr_po:[267,303],lgr_vel:[267,303],lgvdw:450,li1:177,liang:401,lib:[1,3,9,11,12,14,15,17,203,307,386,401,420,485,488],libatom:[9,448],libcolvar:12,libdir:11,libfftw3:12,libgpu:[9,15],libjpeg:12,liblammp:[11,12],liblammps_foo:[11,12],liblammps_g:[11,12],liblammpscuda:14,liblink:9,libmeam:9,libmpi:11,libmpi_stub:12,libmpich:12,libpackag:12,libpng:12,libpoem:9,librar:9,librari:[],libreax:9,librt:17,licens:[0,7,8,12,205],lie:[6,314],lieu:371,life:7,lifo:8,ligand:326,liggght:7,light:302,lightblu:206,lightcor:206,lightcyan:206,lightest:336,lightgoldenrodyellow:206,lightgreen:206,lightgrei:206,lightli:326,lightpink:206,lightsalmon:206,lightseagreen:206,lightskyblu:206,lightslategrai:206,lightsteelblu:206,lightweight:329,lightyellow:206,like:[3,4,6,7,8,9,11,12,14,16,17,18,40,43,55,62,162,169,205,207,212,230,231,233,236,238,250,253,254,255,267,269,270,275,276,277,282,283,288,289,290,291,292,294,300,302,303,304,308,313,314,317,329,331,332,333,334,335,336,337,344,345,346,349,350,351,354,371,374,378,381,386,392,400,405,406,408,412,413,416,418,419,429,430,436,458,469,472,473,477,478,484,485,487,488,489,490,492,497,502,505,506,508,509,514,515],likelihood:[130,177,229],likewis:[1,6,12,15,16,18,40,42,76,97,127,215,226,227,228,245,253,254,269,270,274,291,308,329,332,333,334,372,381,387,391,392,402,410,413,439,467,485,487,489,499,514],likhtman:220,lime:206,limegreen:206,limit:[],limit_eradiu:412,limit_veloc:[320,321],lindahl:371,line:[],linear:[],linearli:[6,10,129,206,232,295,346,348,349,351,380,381,383,487,514],lineflag:[6,487],lineforc:[],linen:206,linesearch:[8,12,377],ling:[9,13],lingo:[11,420],link:[5,6,7,8,9,11,12,13,14,15,17,22,37,45,56,66,186,197,203,205,209,228,250,254,298,307,309,318,326,356,365,389,399,436,448,449,450,467,473,485],linker:12,linkflag:[9,12,16,18],linux:[9,10,11,12,15,205,207,250],linuxamd64:488,liouvil:269,lip:13,lipid:[4,9,10,13,29,313],lipton:298,liquid:[6,7,9,29,40,41,42,62,96,101,153,164,176,226,230,232,245,269,300,303,308,336,405,439,441,444,471,496],lisal:[317,408,466],lism:9,list:[],listen:[250,252],listfil:423,liter:[487,498],literatur:[6,8,436,457,468],lithium:412,littl:[1,3,12,67,269,382,482,490],littmark:[436,467,472,479],liu:[418,450],livermor:9,lj1043:[],lj126:[],lj12_4:452,lj12_6:452,lj1d:295,lj6:3,lj93:[],lj96:[],lj9_6:452,lj_flag:388,llnl:[5,7,9],lmp1:11,lmp2:11,lmp2arc:[],lmp2cfg:[],lmp2vmd:[],lmp:[11,485,508],lmp_auto:12,lmp_cuda:[14,17],lmp_foo:12,lmp_g:[6,11,12,13,17,370],lmp_gpu:15,lmp_ibm:[12,370],lmp_inc:12,lmp_intel_cpu:[],lmp_intel_phi:[],lmp_kokkos_cuda:17,lmp_kokkos_omp:17,lmp_kokkos_phi:17,lmp_linux:[4,6,12],lmp_mac:12,lmp_machin:[1,12,14,15,16,386],lmp_mpi:[12,17,18,19,296],lmp_mvapich:17,lmp_omp:[],lmp_openmpi:17,lmp_opt:[],lmp_win_mpi:12,lmp_win_no:12,lmpptr:[11,485],lmpqst:243,lmpsdata:13,lmptype:[3,12,243],load:[1,3,4,6,7,9,11,12,16,17,18,42,205,207,209,226,250,303,386,401,484,485,506],loadabl:11,loca:206,local:[],localhost:250,localized_lambda:215,localonli:12,localvector:66,locat:[3,6,8,11,12,27,64,128,130,176,177,187,198,202,233,234,256,328,339,350,377,399,402,413,414,424,426,428,473,484,487,488,490,497,499],lock:[3,385,514],lockstep:[230,269,300,313],log:[],logarithm:[148,149,514],logfil:[0,3,6,12,301,375,483],logfreq2:514,logfreq:[206,494,503,514],logic:[7,10,11,12,17,42,178,226,352,354,482,484,485,488,496,501,514],lomdahl:[274,426],london:[13,245,450],lone:[449,450],longer:[1,3,4,6,8,12,13,55,128,202,206,217,218,219,220,221,222,223,224,227,245,253,294,298,303,313,316,336,346,350,352,377,386,388,416,457,484,492,496,501,511],longest:[42,226,227,382,474],longitudin:326,look:[1,3,6,8,11,12,18,55,64,202,205,208,399,458,469,508,509,514],lookup:[3,40,198,441,469],lookup_t:314,loop:[3,4,6,7,11,12,18,40,43,69,72,74,85,97,103,120,127,128,153,205,218,222,223,227,228,237,336,352,354,370,373,379,381,382,384,385,409,439,457,482,483,485,491,492,495,496,501,506,507,514,515],loopa:[354,370,385],loopb:[354,370,385],loopmax:457,loopvar:514,lopez:[269,270],lorant:304,lorentz:177,lose:[6,61,62,180,230,232,254,269,416,487],loss:[6,513],lossi:205,lossless:205,lost:[3,12,13,60,113,233,311,319,329,441,487,488,489,496,504],lot:[18,318,371],low:[1,3,6,7,12,42,161,176,202,205,226,236,254,290,308,313,337,344,372,439,450,469,478,501,508],lower:[2,3,6,9,11,12,42,60,62,76,97,154,167,201,205,206,219,220,221,222,223,226,230,236,250,253,254,256,269,303,308,337,344,346,347,352,353,371,374,385,403,436,501,510,512,515],lowercas:[],lowest:[57,152,354,380,497,501,502,514],ls_:146,lsfftw:12,lsurfac:341,lu3:177,lubric:[],lubricateu:[],lubricuteu:280,lucki:12,luigi:13,lumped_lambda_solv:215,lussetti:337,lustig:[7,13],lybrand:372,lyulin:364,m4v:205,m_c:[],m_d:508,m_eff:[347,416],m_fill:3,m_i:327,m_lambdai:446,m_taubi:446,m_u:256,m_v:256,m_yield_stress:446,mac:[12,14],mac_mpi:12,mach:[9,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,319,320,321,322,325,497],machin:[1,3,4,6,7,9,10,11,12,14,15,16,17,18,19,202,203,205,250,269,342,371,377,379,384,386,439,484,489,494,495,496,509,515,519],mackai:[9,256,258,259,260],mackerel:[6,20,184,254,397,499,508],maco:205,macro:17,macroparticl:409,macroscop:[7,248,267,446],made:[3,6,9,11,12,15,16,33,42,43,51,67,68,73,84,87,102,179,191,202,205,207,209,210,211,216,226,233,237,250,259,299,307,311,313,339,352,362,382,386,415,416,419,449,451,459,484,491,497,500,509,510,512,515,517],madura:[6,424],magazin:410,magda:346,magenta:206,magic:[3,11],maginn:[172,344],magnitu:331,magnitud:[6,75,116,120,125,154,178,201,202,203,206,233,234,248,249,251,253,318,326,328,329,336,347,372,379,405,416,497],mai:[],mail:[3,7,9,12,352,509],main:[3,6,8,11,12,203,250,256,313,338,339,410,457,473,485,502],mainboard:1,mainli:[386,444],maintain:[8,9,13,40,163,228,232,290,329,342,378,387,410,496,499,509],major:12,make:[],makefil:[3,7,9,11,12,13,14,15,16,17,18,19,202,203,372,386,439,485],makelist:12,maks:416,malloc:[3,12],manag:[5,8,12,202,250,296,331,496],manbi:458,mandadapu:215,mandatori:[8,202,231],manh:392,mani:[1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,38,40,41,42,43,57,64,66,72,76,97,100,113,114,128,154,158,178,179,198,201,202,203,204,205,206,207,209,210,211,212,216,217,218,219,220,221,222,223,224,226,227,228,229,230,232,233,241,242,245,246,249,250,256,257,265,267,269,270,274,283,293,294,295,299,300,302,304,305,306,308,310,313,314,316,329,340,341,343,352,354,371,379,381,382,384,386,399,401,409,412,414,418,419,457,458,467,469,470,472,485,487,489,491,492,494,495,496,497,499,500,501,502,506,514,515,519],manifold:509,manipul:[12,42,226,250,402,447,498],manner:[2,3,6,9,11,17,42,153,174,205,210,211,212,213,221,226,232,237,238,243,249,253,254,269,275,276,277,288,289,290,292,307,332,333,334,337,338,339,344,346,350,354,372,380,381,385,386,410,412,419,422,433,474,482,484,487,488,489,490,492,496,501,502],manolopoulo:252,mantissa:3,manual:[0,1,3,6,7,8,9,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,35,38,40,41,44,46,47,48,49,50,52,54,55,57,61,66,72,76,121,124,130,155,156,157,159,160,161,164,165,166,167,168,170,171,177,184,185,187,188,189,190,192,193,195,196,198,202,203,205,207,212,222,225,232,239,244,248,252,253,254,268,269,271,272,273,274,275,276,277,278,279,281,284,286,287,288,289,290,292,300,302,305,313,314,315,316,332,333,334,344,345,349,354,355,357,358,360,361,364,366,372,381,385,386,387,388,390,391,393,394,395,396,397,398,400,401,402,404,405,406,410,411,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,442,443,444,446,451,452,459,468,469,470,471,472,473,475,477,478,479,482,490,496,500,501,502,505,514],manybodi:[],map:[2,3,11,12,17,18,40,62,67,76,130,134,152,166,177,178,201,205,206,215,222,295,312,371,372,374,381,387,388,392,401,410,411,413,419,420,421,436,437,438,441,443,447,448,449,450,457,458,466,468,469,470,471,472,475,484,487,489,501,514],map_fil:295,mapflag:12,mara:[9,457],march:[9,436],margin:501,mari:13,mark:[417,432,454,456,457],marker:301,maroon:206,maroonmpi:11,marrink:417,marsaglia:[3,246,247,253,254,308],marseil:9,martin:[295,436],martinez:216,martyna:[269,270,313,496],mashayak:17,mask:[3,294,514],mask_direct:215,mass:[],mass_matrix:215,massdelta:316,massiv:[0,205,256,296,337,344],massless:[6,254,372,402,424,428,432,508],masstot:313,master:[3,381,482,501],mat:[71,215,401,471],match:[3,6,9,11,12,17,38,42,57,62,76,128,161,198,206,207,226,229,232,241,250,269,270,290,310,314,329,336,371,372,392,418,430,436,448,449,450,469,481,485,487,488,489,492,496,501,508,514],matchett:43,mater:[78,387,438,447,457],materi:[6,7,9,62,75,136,137,181,214,215,232,245,251,267,294,300,308,337,341,347,402,410,411,412,416,420,436,437,439,446,449,450,453,454,455,456,482,487,501,508,513],material_fil:215,math:[],mathemat:[130,152,177,178,201,210,211,212,213,225,230,238,246,248,249,251,253,254,301,315,323,332,333,334,346,349,351,458,483,490,497,515],mathrm:509,mathtt:[],matlab:[],matric:[9,152,247,295,415],matrix:[3,6,9,100,176,219,230,247,295,304,371,374,439],matter:[6,12,40,60,62,76,160,222,341,382,388,404,410,412,436,452,457,470,472,475,479],mattox:9,mattson:[89,90,124,153,240,317],max2theta:177,max:[3,6,8,12,15,18,76,129,206,221,226,228,230,233,299,316,329,354,374,377,379,381,382,386,457,482,487,501,505,514],max_alpha:8,max_cell_s:409,max_group:3,max_nn:321,max_travel:322,max_vel:[320,321],max_veloc:321,maxangl:245,maxbodi:3,maxbond:[3,228],maxedg:176,maxev:[379,482,501],maxfoo:8,maxim:[336,381],maximum:[3,6,8,12,15,17,25,42,43,46,54,55,60,62,64,101,118,128,129,130,133,176,177,179,180,201,202,214,219,220,221,226,228,232,233,237,245,283,294,299,304,316,319,320,321,329,342,371,372,377,381,382,386,389,392,409,414,433,434,457,487,490,495,505,514,515],maxit:[304,379,482,501,505],maxsize_restart:8,maxspeci:3,maxwel:[17,293],maxwell50:17,maxwell52:17,maxwell53:17,maxx:447,mayb:13,mayer:[7,393,395,457,467],mayo:[6,7,13,25,366,418,499],mbt:185,mbyte:[12,308],mcc:[449,450],mcdlt:[168,249],mcgraw:296,mdash:508,mdatom:245,mdf:[],mdnvt:245,mdregion:215,mdtemp:245,mdump:[42,226],meain:[],meam:[],meam_sw_splin:438,meamf:436,mean:[1,2,3,4,6,7,8,11,12,17,22,34,37,38,39,40,42,43,45,53,55,56,57,59,60,62,64,66,72,76,77,81,82,91,93,94,96,100,101,114,115,116,118,124,125,126,127,128,129,131,152,153,155,156,157,159,160,161,164,165,166,167,168,170,171,172,178,179,181,182,184,186,194,197,198,199,200,201,202,203,205,206,207,209,210,211,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,238,241,243,245,246,247,248,249,251,253,254,255,259,266,269,271,272,273,274,275,276,277,283,288,289,290,292,294,296,298,299,300,302,308,310,311,313,315,316,318,323,326,329,331,332,333,334,336,337,340,341,343,344,345,346,347,348,349,350,351,352,356,357,358,359,361,363,365,367,371,372,374,376,377,379,380,381,382,384,386,389,393,395,396,397,399,402,406,409,410,412,415,416,418,419,422,424,425,428,435,436,440,441,444,445,447,449,450,451,452,466,468,469,470,471,472,474,478,481,482,484,485,487,488,489,490,491,492,493,494,495,496,497,498,499,501,502,504,505,508,513,514,515,516,517,519],meaning:[128,136,137,139,142,146,419],meaningless:[71,336],meant:[6,313,473,491],measur:[],meaur:506,mech:446,mechan:[6,8,9,11,12,16,17,41,89,90,138,154,215,240,249,296,307,392,412,420,426,439,454,456,481,485,487],mechanic:307,mechanim:134,meck:118,media:205,medium:478,mediumaquamarin:206,mediumblu:206,mediumorchid:206,mediumpurpl:206,mediumseagreen:206,mediumslateblu:206,mediumspringgreen:206,mediumturquois:206,mediumvioletr:206,mee:336,meet:[3,12,179,205,206,228,229,342,492],mehl:387,mei:435,meloni:40,melros:[433,434],melt1:207,melt2:207,melt3:207,melt:[4,10,229,295,392,439,471],mem:15,member:[181,298,392],membran:[29,293,478],memori:[1,3,5,6,7,8,9,12,15,16,17,18,40,41,63,76,206,218,220,222,223,246,247,308,341,369,382,386,392,441,445,450,484,487],memory_usag:8,mendelev:410,mention:[1,6,7,11,41,43,232,249,256,274,346,374,381,388,449,450,489,514],menu:[205,250],mep:[268,381],mer:[4,10,229],mercuri:509,meremianin:152,merg:[],merz:[6,184,499],mescscop:446,mesh:[],meshless:9,meso:[],meso_:[],meso_cv:[],meso_rho:[],meso_t:[],mesocop:41,mesoparticl:[240,241,408],mesoscal:7,mesoscop:[7,110,111,112,262],mess:[3,497],messag:[],met:[8,42,128,226,354,370,372,379,381,385,474,495],metadynam:[9,13,231],metal:[3,5,7,9,10,41,62,76,167,178,214,215,222,223,232,233,249,251,303,304,308,345,346,348,349,351,372,374,383,387,388,392,401,410,411,412,413,419,421,436,437,438,439,447,448,457,468,470,471,472,475,490,504,505,507,513],meter:[383,513],methan:[303,308],methanol:4,methin:364,method:[1,3,4,5,6,7,8,9,11,12,13,16,17,19,38,40,41,42,57,67,96,100,122,153,198,209,210,211,215,219,220,226,231,241,243,253,256,260,264,267,269,295,296,303,304,305,306,308,313,316,317,318,336,337,338,339,344,371,372,377,378,379,381,386,387,389,392,401,402,410,412,413,436,437,438,441,447,457,467,469,475,482,484,485,487,488,490,501,508],methodolog:[6,78,153,296,371],metin:[7,9],metric:[3,10,67,490,505],metropoli:[216,245,502],mezei:96,mf1:207,mf2:207,mf3:207,mg2:177,mglob_default_function_attr:[9,12],mgoh:443,mgpt:[],miai:308,mic:[9,12,17],micel:[4,9,13,327],micelle2d:[],michael:[9,13,438],michel:13,mickel:118,micro:[3,507,513],microcanon:[278,279,281,282,284,286,287],microelast:446,micromet:513,micropor:245,microscal:433,microsec:513,microsecond:513,mid:[5,9,62,232,439,466],middl:[3,6,8,16,22,42,45,82,96,128,167,172,182,185,186,206,210,211,217,226,299,311,312,313,337,344,355,356,376,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,433,434,435,436,437,438,439,440,442,444,446,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,474,475,477,478,479,480,481,485,495,496,497,514],middlebondtors:[3,185,487],midnightblu:206,midpoint:466,mie:[],might:[3,6,7,8,12,14,25,76,160,243,245,247,313,457,485,495,509,514],migrat:[3,8,17,42,43,62,64,69,74,85,103,120,127,202,209,226,294,302,308,329,371,383,386,495,517,519],mikami:[6,269,270],mike:[7,9,13,15,16],mil:[9,410],mill:378,miller:313,million:[3,7,40,42,76,226],mimic:[6,43,55,254,267,299,402,414,424],mimim:[230,381],min2theta:177,min:[3,4,6,8,12,129,152,206,221,371,374,457,466,482,501,514],min_cap:3,min_cg:8,min_clearstor:8,min_dof:8,min_modifi:[],min_nn:321,min_popstor:8,min_post_forc:8,min_pre_forc:8,min_pushstor:8,min_setup:8,min_setup_pre_forc:8,min_step:8,min_stor:8,min_styl:[],minarea:176,mincap:450,mind:[7,246,295],mine:[12,97,168,169,209,352,511],minim:[],minima:[190,366],minimi:[381,474],minimizaiton:381,minimizi:308,minimum:[3,12,25,26,27,43,46,60,62,76,95,116,129,176,177,179,181,187,201,202,205,214,221,230,231,237,252,268,310,312,314,319,321,325,329,346,350,354,366,371,374,377,378,379,381,382,397,412,415,417,418,424,426,428,433,434,450,452,466,482,495,501,514,515],minlength:176,minmiz:[8,230],minn:9,minord:[3,371],mintcream:206,mintmir:[4,7,304,402,467],minu:[12,62,158,232,354,381,514],minut:[4,8],mirror:[64,348],misc:[],miscellan:[2,215],mise:[145,150],mishin:[387,467],mismatch:3,miss:[3,5,12,181,221,245,283,308,329,423,441,504,505],mistak:[3,514],mistakenli:3,mistyp:3,mistyros:206,mitchel:[6,123,160,371,372,404,446],mitchell2011:446,mitchell2011a:446,mitig:269,mitur:[],mivi2:308,mix:[1,3,6,9,14,15,16,76,127,160,221,222,342,371,372,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,480,485,487,500,508,517],mixtur:[6,41,269,302,313,329,351,400,436,487],mixture_ref_t:436,mjpeg:205,mkdir:498,mkl:12,mkmk:[],mkv:205,mldivide3:3,mlpark:7,mlutipl:224,mn2:177,mn3:177,mn4:177,mo3:177,mo5:[177,439],mo6:177,mobil:[6,116,153,155,156,157,159,164,171,205,313,352,353],moccasin:206,mod:[],mode:[1,3,4,6,9,10,11,12,13,14,15,16,17,18,64,70,80,87,97,99,104,115,117,126,128,129,154,158,173,175,176,177,202,203,205,206,221,224,231,232,243,247,269,296,308,318,329,369,371,383,386,402,412,439,457,484,489,494,496,505,513,514,519],model:[],model_ar_p_mors:420,modern:[12,253,255],modest:[1,384],modif:[6,13,96,436,439,451,472,508,509],modifi:[],modify_param:8,modin:215,modul:[3,9,11,12,13,231,308,485],modular:8,modulo:[3,514],modulu:[300,416,436,446,453,455],moementum:266,mofil:488,mol1:514,mol:[],molchunk:[70,80,87,99,104,115,117,158,173,175,218],mole:[216,410,513],moleclu:[227,228,233,242],molecul:[],molecular:[0,2,3,5,6,7,8,9,12,13,40,41,54,76,120,125,127,155,156,157,159,161,164,165,166,167,170,171,178,179,180,181,182,190,202,203,204,207,215,228,231,245,252,295,296,303,307,308,312,318,340,341,372,380,389,390,392,396,409,412,419,467,487,488,489,491,492,496,497,499,505,507,508,514],molfil:[],molfrac:[233,299],molnar:318,molp:121,moltempl:[],molybdenum:439,mom:[6,100,312,515],momementum:[156,157,271,272,275,276,279,280,281,288,289],momemtum:70,moment:[3,6,9,41,43,87,91,93,94,117,125,156,171,178,200,202,203,253,256,259,269,286,299,313,327,331,380,405,411,457,487,497,508,513],momenta:[247,280,344,412],momentum:[],momon:229,monaghan:[9,461,462,464],monitor:[3,6,9,12,107,108,161,230,232,233,242,250,253,267,269,299,301,303,313,316,329,379,381,405,505],mono:[78,433],monodispers:[3,347,394,416,433,434],monom:[13,55,229],monoton:[3,241,318,340,381,501],monoval:372,mont:[4,6,7,9,209,216,229,245,313,336,409,467],montalenti:[482,501],month:0,moor:[9,17,89,90,153,240,317],more:[0,1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,61,62,64,65,66,67,68,69,71,72,73,74,75,76,77,82,83,84,85,86,92,95,96,97,99,101,102,103,107,108,109,110,111,112,113,114,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,164,165,166,167,169,170,171,172,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,195,196,197,198,201,202,203,204,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,241,242,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,294,295,296,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,315,316,317,318,319,320,321,322,323,325,329,331,332,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364,365,366,369,371,372,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,441,442,443,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,482,483,484,485,487,488,490,491,492,493,494,495,496,497,498,499,500,501,502,504,506,508,509,514,515,517,518,519],morefoo:8,moreov:[227,228,473],moriarti:[9,439],moriarty1:439,moriarty2:[9,439],moriarty3:439,morri:[],morriss:[166,290],mors:[],morse_f:469,mosel:378,mosi2:436,moskalev:152,most:[0,1,2,3,4,5,6,7,8,10,11,12,15,17,18,19,37,40,42,56,76,114,120,166,197,202,203,205,206,218,221,222,223,224,226,227,228,230,249,269,270,296,300,301,302,303,304,313,314,342,344,352,354,365,372,378,382,384,386,388,412,415,436,448,449,450,472,482,483,484,496,501,502,505,506,509,514,517],mostli:[8,9,11,13,76,180,205,382,487,496,499,514,518],motiion:6,motion:[3,6,7,9,43,95,108,114,155,156,157,159,161,163,164,165,166,167,168,170,171,232,236,247,256,259,260,266,269,270,274,290,294,296,298,308,312,313,317,337,341,347,350,381,405,412,433,434,490,496,508],motiv:294,mous:250,mov:205,move:[],move_tri_surf:[],movement:[3,6,12,266,336,379,505],movi:[],mp2:388,mp4:205,mpeg:205,mpg:205,mpi4pi:11,mpi:[],mpi_allreduc:[313,485],mpi_barri:1,mpi_cart:484,mpi_cart_cr:484,mpi_cart_get:484,mpi_cart_rank:484,mpi_cart_shift:484,mpi_comm:6,mpi_comm_world:[],mpi_fastmgpt:439,mpi_get_processor_nam:484,mpi_inc:12,mpi_lib:12,mpi_lmp_bigint:3,mpi_lmp_tagint:3,mpi_path:12,mpi_wtim:12,mpicc:11,mpich2:12,mpich:[12,14,15,16,17,18,386],mpich_icc:16,mpicxx:[12,17],mpiexec:[12,14,15,16,17,18,386],mpiio:[],mpirun:[1,6,11,12,14,15,16,17,18,19,296,370,386],mplayer:205,mri:[449,450],msd:[],msi2lmp:[],msi:13,msm:[],msmse:[130,177,314],msse3:439,msst:[],mtchell2011:446,mtchell2011a:446,mtd:231,mth:[8,131,206,504],mtk:[269,270,274],mtotal:380,mu_j:29,muccioli:415,much:[1,3,6,11,40,154,202,203,205,220,230,303,336,382,383,386,388,415,451,482,485,501,506,508,509,514],mui:[125,202,203,238,331,487],mukherje:[7,9,298],mulder:340,muller:[6,100,209,337,344,440],mult:8,multi:[],multibodi:[3,9,64,298],multicent:412,multicor:[1,9,484,500],multidimension:13,multielectron:389,multilevel:[9,371,372],multiphys:11,multipl:[],multipli:[3,96,100,128,186,197,210,211,219,253,256,294,300,374,379,388,487,514],multiprocessor:386,multiscal:11,multisect:[42,226],multistag:96,multitud:7,mundi:291,munich:9,murdick:392,murti:471,murtola:371,muser:295,must:[1,2,3,6,7,8,9,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,57,58,59,60,62,64,65,76,91,93,95,96,115,119,121,124,127,128,129,130,131,156,160,167,171,176,177,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,195,196,198,199,200,201,202,203,204,205,206,207,210,211,212,214,215,216,217,218,219,221,222,223,224,225,226,227,228,229,230,232,233,236,238,241,243,245,246,247,249,250,251,252,253,254,256,257,258,259,260,264,265,266,267,268,269,270,271,273,274,275,277,279,280,281,283,286,288,292,294,298,299,300,301,302,303,304,306,308,310,311,312,313,314,315,316,317,323,325,326,328,329,332,333,334,336,337,339,340,341,343,344,346,347,348,349,350,351,352,354,355,356,357,358,359,360,361,362,364,366,367,371,372,374,376,379,380,381,382,383,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,454,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,482,483,484,485,487,488,489,490,492,494,495,496,497,498,501,502,504,505,508,513,514,515,517,519],mutli:6,mutlipl:487,mutual:[3,374,506],mutut:496,muvt:245,mux:[125,202,203,205,238,331,487],muz:[125,202,203,238,331,487],mv2_comm_world_local_rank:12,mvapich2:[17,386],mvapich:12,mxn:[12,296],my_ga:245,my_one_wat:245,my_post_process:498,my_qeq:304,my_setup:498,my_swap_region:216,myblock:[233,299],mybox:180,mychunk1:126,mychunk2:126,mychunk:[6,70,80,87,99,104,115,117,158,173,175],mycmap:487,mycom:221,mydump:[202,206],myer:[5,7],myfil:[484,514],myfix:[216,502],myflux:100,myforc:[202,203,518],myhug:274,myke:100,mymol:[41,316,380],mympi:11,mymultipli:[485,514],myn:485,mype:100,mypi:514,mypress:264,myramp:153,myrdf:[128,224],myreg:374,myregion:352,myrigid:[92,109,299],mysocket:252,myspher:[206,350],mystr:354,mystress:100,mytemp:[2,113,155,156,157,159,161,162,164,166,171,264,354,370,385,504,515],myvec:514,myz:487,n_dephas:482,n_element:204,n_f:[303,308],n_hbond:418,n_ij:416,n_ion:341,n_k:246,n_particl:89,na1:177,nabla:341,nacl:[4,6,436],nacl_cs_x0:6,nakano:[304,306,381,475],namd:[7,202,250],name1:[172,232],name2:[172,232],name:[0,1,2,3,4,5,6,8,9,11,12,13,33,43,51,58,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,191,201,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,271,272,273,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,342,343,344,345,346,347,348,349,350,351,352,353,354,362,369,370,372,373,375,380,381,385,387,388,392,395,410,411,413,415,416,419,420,421,423,436,437,438,443,447,449,450,457,458,468,470,471,472,473,475,476,480,484,485,487,488,489,490,494,497,500,502,503,505,508,509,514,515,516,517,518,519],namespac:[6,8,12],nan:3,nangl:[3,487],nangletyp:[380,487,497],nano:[313,507,513],nanoindent:75,nanolett:313,nanomet:[202,206,513],nanoparticl:[226,313],nanosec:513,nanosecond:513,nappli:243,narea:3,narrow:[6,198],narulkar:[470,472],nasa:7,nasr:295,natdef:3,nation:[0,7,9,12,123,446],nativ:[1,6,7,9,12,16,17,202,207,488],natoli:[9,19],natom1:127,natom2:127,natom:[3,6,11,40,380,485,487,504,505,514],nattempt:299,natur:[6,9,152,232,269,294,308,347,410,412,413,436,447,484,514],navajowhit:206,navi:[206,410],navier:256,nb3:177,nb3b:[],nb3bharmon:443,nb3d:9,nb5:177,nbin:[128,221,222,223,337,344],nbodi:[259,313,439],nbond:[3,125,487],nbondtyp:[206,380,487,497],nbot:392,nbounc:329,nbrhood_cutoff:450,nbtype:127,nbuild:505,ncall:243,ncbin:76,nchar:206,nchunk:[3,6,70,76,80,87,99,104,115,117,126,158,173,175,218],ncoeff:458,ncorr:220,ncorrel:220,ncount:[218,219,220],nd3:177,ndanger:505,nden:[6,100],ndihedr:[3,487],ndihedraltyp:[380,487],ndim:222,ndirango:313,ndof:[269,274],ndoubl:487,ndp:508,ndx2group:[],ndx:353,neal:313,nearbi:[7,65,179,233,266,305,329,350,382,388,433,434,467,478,508],nearest:[3,75,76,78,101,118,176,179,256,268,294,336,350,371,423,436,457,469,514],nearli:[4,6,9,18,55,62,226,253,329,412,439,441,482,485,491,499],neb:[],neb_combin:381,neb_fin:381,neb_log:501,neb_step:501,neb_styl:501,necessari:[6,11,12,13,15,17,33,64,96,186,191,197,207,226,230,231,245,246,307,317,329,342,352,371,386,432,439,441,457,487,488,492,495,496,497,501,508,518],necessarili:[12,308,336,357,358,359,361,374,441,515],necessit:302,need:[1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,33,37,38,40,41,42,43,51,55,56,57,61,64,66,67,71,75,77,78,82,91,100,101,113,115,118,121,124,140,152,153,155,156,157,158,159,161,164,165,166,167,168,170,171,178,180,182,184,186,191,197,198,201,202,204,205,206,210,211,212,213,215,216,218,219,220,221,222,223,224,226,227,228,230,231,232,236,238,241,243,244,245,249,250,252,253,254,256,262,263,269,283,295,299,300,302,308,312,313,318,325,329,337,340,341,343,344,345,346,352,362,365,371,372,380,381,382,383,386,387,388,389,390,392,393,394,395,396,397,398,400,401,402,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,474,475,477,478,480,482,485,487,488,489,490,492,494,495,497,499,500,501,502,508,509,514,516,517,518,519],needless:[6,382],neeed:[],neelov:372,neg:[3,6,12,27,47,69,74,98,113,120,127,152,153,180,182,187,189,198,205,230,232,233,246,274,294,318,326,340,344,346,351,371,378,413,427,436,467,487,490,506],neglect:[418,434],neglig:[6,11,96,269,468],neigh:[],neigh_modifi:[],neighbor:[],neighborhood:[26,101,134,458],neighbour:254,neighobr:[6,402,424,428],neither:[2,3,12,42,66,203,215,229,232,233,388,394,412,433,434,492],nelem:458,nelement:[387,410],nelson:[101,118],nemd:[],nest:[2,354,368,385,514],net:[3,6,11,40,87,95,97,159,170,249,294,304,313,434,450],netpbm:205,network:[12,202,227,228,250,484],neumann:371,neutral:[3,97,245,371,402,424,457],never:[7,12,66,76,209,219,230,245,269,294,316,331,342,346,349,351,371,382,410,436,458,475,484,487,501,504,514],neveri:[3,8,76,212,217,218,219,220,221,222,223,224,227,228,229,256,257,295,304,305,306,309,310,314,337,343,344,381,457,492,501],newatom:233,newer:[12,218,436,514],newfil:[368,370],newli:[233,299,508,515],newlin:206,newn:313,newt:165,newtemp:[66,113],newtion:[392,439,447],newton:[],newtonian:246,newtyp:[3,228],next:[],neyt:336,nfile:[3,38,57,198,202,203,206,241,469,489,494,519],nfirst:492,nfirt:492,nfreak:314,nfreq:[40,76,217,218,219,220,221,222,223,224,226,310,314,492],nghost:[3,12],ngp:116,ngpu:386,nguyen:[15,392],nharmon:[],nhc:296,nht:313,ni2:177,ni3:177,ni_000:[130,314],nialh_jea:410,nialhjea:[399,419],nice:[6,8,509],nickla:438,nicola:9,nimprop:[3,487],nimpropertyp:[380,487],nine:[139,146,413,457],ninteg:487,nissila:[256,457],nist:[387,410,513],niter:[42,226],nitrid:402,niu3:[399,410,419],nkb:303,nlast:492,nlen:220,nline:380,nlocal:[3,8,11,12,243],nlog:372,nlvalu:118,nmax:43,nmin:43,nmol:487,nmpimd:296,nn2:436,nneighmaxdef:3,nnn:[101,118],no_affin:[16,386],no_gradient_correct:456,no_histori:6,no_velocity_gradi:456,noced:379,nocheck:423,nocit:12,nocoeff:[39,59,199,367,480,487,516,517],nodal:[6,38,57,198,215,241,341,469],node:[1,3,10,12,14,15,16,17,18,42,130,134,177,204,226,250,256,341,386,423,484,500],node_area:256,node_group:215,nodeless:412,nodeset:215,nodeset_to_elementset:215,nodess:16,nof:198,noforc:[],nois:[6,246,247,253,254,255,256,303,308,313,333,341],nomenclatur:[6,76,222,374],nomin:[202,269],non:[],nonbond:[4,12,443,467],none:[],noneq:247,nonequilibrium:[338,339,412],nonetheless:253,nongauss:[],nongaussian:116,nonlinear:[],nonloc:[446,497],nonperiod:3,nonzero:3,noordhoek:401,nopreliminari:198,nor:[2,3,42,62,203,215,319,320,321,322,323,325,401,453,454,455,456,487,490],nord:[447,470,472],norder:484,nordlund:[447,470,472],norm:[6,12,66,129,209,218,222,223,314,320,321,379,381,466,504,505,513],normal:[3,6,11,12,40,42,61,64,66,71,75,76,78,97,100,113,114,124,128,129,163,166,176,178,179,180,198,206,209,218,219,221,222,223,226,230,232,233,244,245,249,253,254,266,269,283,294,296,297,302,304,308,310,311,318,329,330,332,333,334,341,346,347,350,351,355,357,358,359,361,376,378,379,381,386,400,401,415,416,419,439,466,479,481,482,485,487,489,490,492,493,497,501,504,505,506,508,513,514,518],norman:341,nornal:3,nose:[6,7,8,168,209,236,253,254,269,270,271,272,273,274,275,276,277,288,289,290,291,292,296,300,308,313,332,333,334,339,406,508],noskov:[473,508],noslip:[329,351],nosync:506,notabl:[5,40],notat:[6,64,66,75,152,172,209,266,269,410,475,514],note:[1,2,3,6,7,8,9,11,12,13,14,15,16,17,18,19,22,24,25,28,32,33,35,36,37,38,39,40,41,42,43,45,48,55,56,57,59,61,62,63,64,65,66,69,70,72,74,76,78,80,85,87,96,98,99,100,103,104,108,114,115,116,117,120,122,124,125,126,127,128,129,130,131,152,153,158,160,161,162,166,168,172,173,175,176,177,178,179,180,181,182,184,186,189,191,195,197,198,199,201,202,203,204,205,206,207,209,210,211,212,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,236,237,238,240,241,242,243,245,247,248,249,251,252,253,254,255,256,264,265,266,267,269,271,272,273,274,275,276,277,283,288,289,290,292,296,298,299,300,302,303,304,306,311,312,313,314,317,318,326,327,329,332,333,334,337,340,341,343,344,345,346,347,350,351,352,354,355,356,357,358,359,361,365,367,370,371,372,374,376,379,380,381,382,386,387,388,392,393,395,396,397,399,400,402,403,405,406,407,408,409,410,413,415,416,417,418,419,423,424,426,428,432,433,434,436,437,438,439,440,441,443,447,449,450,451,452,454,456,457,458,459,462,466,468,469,470,472,474,475,478,479,480,482,484,485,487,488,489,490,491,492,494,495,497,499,501,502,504,505,508,509,513,514,515,518,519],noth:[216,252,373,386,485,498,509],notic:[0,6,7,8,12,339,341,508],noutcol:8,noutput:295,noutrow:8,novemb:436,novik:13,novint:250,now:[2,3,6,10,11,12,13,47,64,65,76,202,210,211,228,246,250,251,302,313,347,350,372,374,410,412,416,449,450,459,483,488,508,509,515],nowait:250,nozforc:371,np3:177,np4:177,np6:177,npair:[128,219],nparticl:[3,41,43,391],npartit:505,npernod:[14,15,16,17,18,386],nph:[],nphi:[16,386],nphug:[],npoli:299,nproc:[3,11,202],npt:[],npt_aspher:[271,277,288],npt_bodi:[272,289],npt_sphere:[273,292],nrbin:[],nrecomput:409,nrepeat:[76,217,218,219,220,221,222,223,224,310,314,492],nreset:[230,269,270,274],nreset_ref:230,nrho:[387,410],nrl:410,nsall:9,nsampl:409,nsbin:76,nsbmax_most:3,nsec:507,nskip:[131,492],nsq:[3,383,445],nstart:[131,219,220,221,224,314,487,492],nstat:294,nstep:[3,13,230,269,352,463,485,488],nsteplast:485,nstop:[131,492],nswap:[337,344],nswaptyp:3,ntabl:[38,57,198,241,469],nterm:318,nth:[12,82,128,129,202,203,206,221,232,492,502],ntheta:392,nthread:[3,386],ntild:[],ntpc:386,ntptask:386,ntype1:127,ntype2:127,ntype:[3,152,178,202,206,304,306,412,418,447,487,497],nuclear:[9,107,108,164,247,270,303,308,380,412,479],nuclei:[107,108,162,164,169,203,255,270,282,291,335,389,412,487],nucleu:[107,108,304,472,508],nudg:[4,6,7,9,209,268,378,381],nulcear:9,num:[],num_of_collis:3,numa:[1,3,12,386,484],numactl:16,number:[1,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,22,27,38,39,40,41,42,43,45,57,58,59,66,67,68,69,70,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,89,96,99,100,101,102,103,104,113,114,115,117,118,120,123,124,125,126,127,128,129,130,131,141,147,152,155,156,157,158,159,160,161,163,164,165,166,167,168,170,171,172,173,175,176,177,178,179,180,181,182,186,187,197,198,199,201,202,203,204,205,206,207,209,210,211,214,216,218,219,220,221,222,223,224,226,227,228,229,231,232,233,241,242,243,245,246,247,249,250,251,252,253,254,255,256,259,266,269,270,274,283,294,295,296,298,299,302,303,304,308,310,313,316,317,321,329,330,331,333,336,337,338,339,341,342,343,344,346,348,349,351,352,354,356,367,369,371,372,374,376,377,379,380,381,382,383,386,387,388,392,394,399,401,406,409,410,411,412,413,418,419,420,421,422,436,437,438,439,441,443,447,448,449,450,451,454,456,457,458,466,468,469,470,471,472,474,475,476,479,480,481,482,484,485,487,488,489,490,491,493,494,495,496,497,499,501,502,504,505,506,508,513,514,515,519],number_of_a:3,number_of_b:3,number_of_typ:[],numbond:3,numer:[],numpi:11,nvalu:[218,222,223,224,485],nvaluelast:485,nvc_get_devic:15,nvcc:[1,9,12,17],nve:[],nve_aspher:[271,275,288],nve_bodi:[272,276,289],nve_spher:[273,277,292],nvida:17,nvidia:[1,3,9,12,14,15,17,386,500],nvt1:508,nvt2:508,nvt:[],nvt_aspher:[271,275,292],nvt_bodi:[272,276],nvt_sphere:[273,277],nvtfe:215,nwait:295,nwchem:7,nxnode:341,o_cor:160,o_shel:160,oascr:7,obei:[3,232,374,482],ober:7,obj_shared_foo:12,obj_target:12,object:[6,8,11,12,15,41,43,205,230,250,256,259,299,318,325,379,380,485,490],observ:[269,303,332,333,336,337,344],obsolet:13,obstacl:[4,251],obtain:[1,3,9,12,29,78,96,114,118,176,207,211,244,247,256,274,295,296,336,371,388,405,436,441,448,457,470,472,496],obviou:[12,479,514],obvious:[205,299,502,514],occ:414,occasion:[3,269,482],occlus:205,occup:[3,176,386,414],occur:[1,3,6,11,12,14,17,40,60,62,64,65,76,95,116,176,179,181,198,202,203,206,216,226,229,230,232,241,245,248,251,259,267,283,304,313,329,338,351,352,354,371,382,386,409,412,432,450,469,482,484,485,490,492,496,501,504,514],occurr:[364,487,501,514],oct:11,octahedr:25,octant:484,odd:[42,118,206,226,269,313,332,333,341,502],off:[1,3,6,12,14,15,17,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,37,38,40,41,44,45,46,47,48,49,50,51,52,54,55,56,57,62,64,69,74,76,119,120,121,124,125,127,152,153,155,161,165,176,177,182,184,185,186,187,188,189,190,191,192,193,195,196,197,198,202,203,205,206,209,212,216,224,225,228,229,232,239,244,245,246,248,250,253,254,259,269,271,272,273,274,275,276,277,278,279,283,286,288,289,290,292,298,300,301,305,313,315,316,329,332,334,344,345,346,349,350,355,356,357,358,360,361,362,364,365,366,371,372,379,381,382,384,386,387,388,390,393,394,395,396,397,398,400,401,402,404,405,406,410,411,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,434,436,437,441,442,443,444,446,450,451,452,454,456,457,459,466,467,468,469,470,471,472,473,475,477,478,479,482,483,484,487,489,490,494,496,499,500,501,506,511,513,514,517,519],offend:[3,485],offer:[6,14,18,181,378,402,457,482,496],offic:7,offload:[1,9,12,16,17,250,386],offset:[3,6,60,178,205,232,233,299,380,402,424,428,467,487],offsit:8,often:[1,3,6,7,12,13,14,15,16,17,18,37,56,76,172,197,205,212,221,224,226,230,243,250,269,296,314,365,374,378,379,381,382,383,386,401,406,424,469,470,472,482,501,508,509,513],ohio:438,old:[3,6,209,230,233,269,436,449,459,488,491,495,498,513,517],older:[3,5,12,13,17,206,218,230,269,459,514],oldlac:206,oleinik:392,olfason:[6,25,366,418,499],oliv:206,olivedrab:206,olivi:9,ollila:[256,258,259,260],olmst:[215,294],omega0:366,omega:[],omega_dot:269,omega_ij:[407,408],omega_ijk:472,omega_ik:470,omegai:[125,202,203,331],omegax:[125,202,203,331],omegaz:[125,202,203,331],omgea:6,omiss:[0,7],omit:[198,206,348,396,405,428],omp:[],omp_num_thread:[3,16,18,386],omp_proc_bind:17,ompi_comm_world_local_rank:12,ompi_icc:16,on_the_fli:215,onc:[0,1,2,3,6,8,11,12,16,41,42,62,63,66,76,100,115,184,204,205,206,209,210,211,226,227,228,233,243,245,247,254,295,299,302,313,329,337,342,344,352,377,380,381,382,415,417,419,420,447,451,484,485,494,501,504,508,509,514],onelevel:484,onewai:[],ongo:250,oniom:[9,307],onli:[1,2,3,6,7,8,9,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,54,55,56,57,59,62,63,64,66,67,69,70,71,72,74,75,76,77,78,80,83,85,86,87,89,90,92,95,96,97,99,101,103,104,107,108,109,110,111,112,113,114,115,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,161,162,164,165,166,168,169,170,171,172,173,175,176,177,178,181,182,184,185,187,188,189,190,191,192,193,195,196,197,198,199,202,203,204,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,236,238,239,240,241,242,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,302,303,304,305,306,307,308,309,310,313,314,315,316,317,318,319,320,321,322,323,325,329,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,357,358,359,360,361,362,364,365,366,367,369,371,372,374,376,379,380,381,382,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,484,485,487,488,490,491,492,494,495,496,497,498,499,501,502,503,504,505,506,508,509,514,515,517],only_group:176,onn:496,onset:[303,364],ontario:9,onto:[152,180,229,233,256,466],onward:2,open:[],opencl:[1,3,7,15,386],opengl:6,openkim:9,openmp:[1,3,4,7,9,10,12,16,17,18,369,386,500],openmpi:[12,14,15,16,17,18,386],opensourc:7,oper:[],opl:[],oppelstrup2:9,oppelstrup:[9,439],oppos:[6,40,200,202,203,312,348,372,380,487],opposit:[6,29,75,214,253,260,294,313,344,381,402,432,473,485],opt:[],optic:156,optim:[],option:[],optionn:17,orang:[2,205,206],orbit:[304,306,392,402,412,457,467],orchid:206,order:[1,2,3,6,9,11,12,14,27,29,38,40,42,57,62,66,69,74,76,85,96,98,99,101,103,104,118,120,124,127,142,152,153,154,155,156,157,158,159,160,161,164,165,166,167,168,170,171,182,187,197,198,202,203,205,206,209,212,217,219,221,222,223,224,225,227,228,229,230,231,236,238,245,247,249,250,252,256,257,259,267,269,294,302,303,307,310,311,312,313,314,315,316,318,323,325,330,336,340,341,342,343,353,354,355,357,358,359,361,364,365,371,380,381,387,388,389,392,401,408,409,410,412,413,415,416,419,421,424,432,436,439,449,450,451,457,467,468,469,470,471,472,473,475,476,482,484,485,487,488,492,494,496,497,501,504,508,514,519],orderomg:3,ordinari:[123,418,446],org:[6,7,11,12,13,14,448],organ:[0,3,6,7,8,401],organis:[454,456],organometal:25,orien:497,orient:[],orienti:[],orientord:[],origid:218,origin:[3,6,7,9,12,76,88,114,115,126,130,174,178,180,201,205,206,209,210,211,218,222,223,227,228,232,236,254,266,269,290,296,299,309,313,314,322,328,339,368,370,371,374,378,387,388,390,392,402,405,406,409,410,418,421,436,446,449,450,470,472,473,474,484,487,488,489,490,491,492,509,513,517],origin_i:223,origin_x:223,origin_z:223,orlikowski:439,ornl:[7,9,15],orsi:29,ortho:[3,62,180,487],orthogon:[],orthograph:205,orthong:62,orthongon:[62,313],orthonorm:233,orthorhomb:303,os4:177,oscil:[6,9,163,228,232,235,236,254,266,267,269,303,308,313,346,347,349,351,380,389,473,508,514],oscillatori:[266,322],oserror:11,other:[],otherswis:16,otherwis:[1,3,9,12,14,16,17,18,37,40,56,58,76,113,123,130,156,157,158,171,179,197,203,206,207,216,218,227,228,232,243,245,247,254,269,313,365,366,379,386,394,419,423,433,434,447,476,480,482,485,487,488,508,514],otyp:[402,424,428,432],ouml:508,our:[5,6,7,8,13,256,316,441,470,472,508],out:[1,2,3,4,6,7,8,11,12,13,14,18,19,21,42,67,70,76,80,87,99,100,104,105,108,114,115,116,117,119,126,127,155,156,157,158,159,161,162,164,165,166,167,168,170,171,173,175,181,185,202,203,205,206,207,209,222,226,227,228,231,239,244,245,251,253,256,261,283,295,297,298,299,302,308,309,310,313,326,341,350,352,353,354,355,357,361,369,370,374,377,381,385,412,419,435,467,481,482,484,485,490,491,492,494,495,496,498,501,503,504,505,510,512,514,515,516,517,518,519],outcom:[313,515],outer2:[397,417],outer:[3,8,16,58,76,237,251,354,370,377,379,385,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,442,444,446,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,474,475,476,477,478,479,480,482,495,496,501,507,514],outer_distance_cutoff:418,outermost:[38,57,76,210,211,266,269,382,469,496],outfil:[13,484],outlin:[6,205],outmost:250,outpt:[],output:[],output_frequ:215,outputss:139,outsid:[3,8,60,62,76,168,178,201,202,203,204,205,206,207,221,222,233,245,251,313,314,329,334,335,348,349,350,351,352,369,381,393,395,402,412,424,426,444,452,485,487,488,490,497,504,515],outuput:[],outut:6,outward:[76,176,346,350,351,487,496],over:[1,3,5,6,7,12,16,18,27,40,42,43,56,63,69,72,74,76,85,86,96,97,98,99,101,103,112,114,116,118,120,127,128,137,138,144,149,152,153,158,161,164,172,174,187,198,205,207,209,210,211,217,218,219,220,221,222,223,224,225,226,227,228,232,233,243,246,247,251,253,254,255,259,266,267,268,269,270,271,272,273,275,276,277,288,289,290,291,292,294,299,300,303,310,311,312,313,314,318,326,329,332,333,334,335,337,340,343,344,346,348,349,350,351,352,355,370,373,381,382,383,386,400,406,410,411,412,413,418,433,436,439,447,458,459,467,468,469,470,471,472,475,483,484,485,490,492,493,495,496,501,502,504,505,513,514,515],overal:[6,18,25,62,172,230,236,269,270,296,316,329,354,377,412,418,419,458],overalap:313,overcom:[283,329],overflow:[3,380,382],overhead:[6,11,19,42,206,218,220,222,223,226,242,302,382,383,490,506],overkil:313,overlai:[],overlaid:7,overlap:[3,13,16,65,81,178,181,198,206,214,217,218,221,222,223,224,233,237,283,299,304,310,313,314,329,347,351,371,374,377,379,380,386,406,412,416,419,422,432,453,455,459,474,487,490,496],overload:1,overrid:[3,9,12,14,16,17,22,45,76,164,178,186,205,206,210,211,230,237,264,269,356,371,382,399,418,419,436,441,449,484,485,497,499,504,514],overridden:[6,178,205,274,313,422,433,441,459,467,495,514,517],overview:[],overwrit:[11,12,22,45,186,206,218,219,220,221,222,223,224,314,356,369,375,399,436,485,488],overwritten:[203,301,340,369,418,419,482,483,488],own:[],oxford:[29,96,405],oxid:[9,401,402,457],oxygen:[6,41,242,302,402,424,428,457,487],oxygen_c:160,p_e:341,p_ik:447,p_pi:392,pacakg:386,pack:[5,8,71,347,386,392,436],pack_bord:8,pack_border_bodi:8,pack_border_hybrid:8,pack_border_vel:8,pack_comm:8,pack_comm_bodi:8,pack_comm_hybrid:8,pack_comm_vel:8,pack_exchang:8,pack_restart:8,pack_revers:8,pack_reverse_comm:8,pack_reverse_hybrid:8,packaag:386,packag:[],packakg:15,packet:[7,9,41,205,389,412],pad:[3,202,203,205,206,296,514],padua:[9,13],page:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,22,37,41,43,45,56,60,62,66,70,72,80,87,96,99,104,113,115,116,117,119,121,124,126,129,131,153,156,157,158,171,173,175,178,179,180,186,197,201,202,203,204,205,206,207,209,210,211,216,217,218,219,220,221,222,223,224,233,245,252,253,254,264,269,270,275,276,277,281,288,289,290,291,292,299,302,313,326,329,332,333,334,343,347,350,352,354,356,365,370,379,380,381,382,386,387,388,391,399,401,402,410,411,413,418,419,421,422,436,437,438,441,443,447,448,458,467,468,470,472,474,475,485,487,488,489,490,492,495,496,497,499,504,505,514,515,517,518],pai:[15,18],painless:509,pair:[],pair_:[96,210,211],pair_airebo:421,pair_charmm:432,pair_class:8,pair_coeff:[],pair_dpd:[9,407],pair_dzugatov:509,pair_eam:387,pair_eff:164,pair_foo:8,pair_gayberne_extra:9,pair_hybrid:[419,473],pair_interact:215,pair_kim:210,pair_list:423,pair_lj:432,pair_lj_cut:8,pair_lj_soft_coul_soft:96,pair_modifi:[],pair_resquared_extra:9,pair_sph:[460,461,462,463,464,465],pair_styl:[],pair_tally_callback:8,pair_writ:[],paircoeff:[3,480],pairfoo:8,pairij:[3,487],pairkim:3,pairstyl:8,pairwis:[],pakketeretet2:509,palegoldenrod:206,palegreen:206,paleturquois:206,palevioletr:206,pan:205,panagiotopoulo:[403,414],pandit:[9,306,450],papaconstantopoulo:387,papayawhip:206,paper:[3,6,7,8,9,13,40,41,67,152,166,172,190,253,256,260,268,298,304,306,313,329,337,341,344,371,378,381,388,396,402,416,418,421,426,428,446,449,450,470,472,482,501],paradyn:5,paraemt:451,paragraph:[76,166,346,374,469,488,489],parallel:[],parallelepip:[6,180,374,487,490],parallelipip:[180,295],paralleliz:[9,298],param:[3,304,306,422,484,490],param_free_:210,param_free_sigma:210,paramet:[],parameter:[130,177,388,392,401,402,410,411,412,413,421,436,437,438,447,449,450,457,468,470,471,472,475],parameter_fil:215,parameterizaion:402,parametr:[6,9,36,411,448,452],paramt:[116,304,348,451],paramter:401,paratem:432,paraview:[203,314],parent:[3,8,352],parenthes:[38,57,198,241,416,469,514],parenthesi:[2,218,354,514],parinello:[6,7],pariticl:226,paritlc:3,park:[3,7,9,215,318,438,446],parmin:439,parrinello1981:230,parrinello:[230,247,267,269,270,303,333],pars:[],parser:[12,514],part:[0,1,2,3,6,7,8,9,11,12,17,20,21,23,24,25,26,27,28,29,30,31,32,35,36,37,38,41,42,44,46,47,48,49,50,52,54,55,56,57,67,71,75,76,77,83,86,92,101,107,108,109,110,111,112,114,116,119,120,121,123,124,127,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,160,162,164,165,169,170,172,176,177,181,184,185,187,188,189,190,192,193,195,196,197,198,202,203,204,206,207,209,212,213,214,216,220,223,225,226,227,228,229,230,231,232,233,235,238,239,242,243,244,245,246,247,248,250,251,252,253,254,255,256,257,258,259,260,262,263,264,267,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,294,295,296,298,299,303,304,305,306,307,308,309,310,312,313,315,316,318,319,320,321,322,323,325,326,328,329,332,334,335,336,337,338,339,340,341,342,344,345,346,347,348,349,350,352,353,354,355,357,358,360,361,364,365,366,371,372,379,380,381,382,386,387,388,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,409,410,411,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,436,437,438,439,442,443,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,484,485,487,488,489,490,494,495,496,499,505,509,514,519],partai:[9,448],parti:[4,9],partial:[],partic:6,particip:[228,391,422,474],particl:[],particleenergi:3,particleviri:3,particular:[1,3,4,6,8,10,12,41,66,69,74,75,76,85,103,120,125,127,128,152,178,201,202,203,209,210,214,222,226,229,245,246,251,252,256,266,269,294,299,312,313,316,336,347,352,355,372,374,377,380,386,391,392,393,395,397,398,400,404,408,411,412,415,417,419,424,428,432,435,443,444,451,452,467,468,470,471,472,473,475,482,484,487,488,489,494,495,497,505,509,514,515,518,519],particularli:[6,7,9,12,15,16,25,40,205,230,313,372,412],particuolog:43,partilc:329,partit:[],partitoin:65,partner:[3,7,64,227,228,229,254,329,344,473,497,502,508],pascal:[9,13,513],pass:[6,7,8,9,11,70,79,80,87,88,98,99,104,114,115,116,117,173,202,203,205,206,207,230,231,243,245,266,267,269,302,329,346,370,382,386,419,422,449,466,485,487,488,492,498,514,518],passphras:12,password:509,past:[],patch:[0,12],patchi:313,patel:439,path:[3,6,7,11,12,13,15,207,252,268,296,318,329,336,341,381,387,388,392,399,410,411,413,421,436,437,438,443,447,448,449,457,458,468,470,472,475,488],pathtolammp:457,patient:12,patom1:127,patom2:127,patrick:471,pattern:[3,7,12,65,78,489],pattnaik:313,paul:[0,7,13,253,255],pauli:[412,457],paus:495,paves:296,payn:[152,448,458],pb2:177,pb4:177,pbc:[76,346,389],pchain:[269,270,274,313],pcie:1,pd2:177,pd4:177,pdamp:[269,270,274,300,313],pdb:[6,13,207],pdebuyl:9,pdf:[0,8,9,13,17,41,110,111,112,123,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,231,252,262,263,319,320,321,322,325,446,460,461,462,463,464,465,497],pdim:344,pdlammp:[83,86,446],pdlammps_ep:[9,123,446],pdlammps_overview:9,pdlammps_v:[9,446],pe_eta:269,pe_etap:269,pe_omega:269,pe_strain:269,peachei:13,peachpuff:206,peak:414,pearlman:96,peculiar:12,pedersen:372,peform:[40,305],penalti:[14,449,450],pencil:[6,76,166,222],pend:3,penetr:[43,132,453,455,497],penetret:41,peng:177,penn:13,pentium:[],peopl:[7,8,9,12],peptid:[4,9,231],per:[],peratom:[3,122,153,176],perceiv:205,percent:[3,12,16,230,386,468],percentag:[1,12,230,269,299,300,313],percol:228,perfect:[6,42,75,78,101,226,294,381],perfectli:[42,226,488],perfom:[6,381],perform:[],performac:1,pergamon:[436,472,479],perhap:374,peri:[],peridyma:83,peridynam:[3,4,6,7,9,41,66,83,86,123,446,467,487,497],perimitt:403,period:[],perioid:346,perl:[6,13],perm0:513,perman:[3,40,55,76,182,227,228,250,312,352,386,418,491,499],permeabl:293,permiss:[228,485],permit:[6,256,439],permitt:[403,472,478,479],permut:[12,411,468,470,472,475],perpendicular:[6,76,156,205,232,251,261,266,268,294,297,322,346,347,378,487],perram:[372,415],persepct:205,persist:[3,8,76,243,313,386,484,485,489,493,514],person:[9,509],persp:[3,205],perspect:205,pertain:[399,467],perturb:[9,13,75,96,265,311,346,349,351,492],peru:206,peskin:256,pessimist:372,petersen:[329,372],pettifor:[392,467],pettifor_1:392,pettifor_2:392,pettifor_3:392,pfactor:205,pforc:485,phantom:250,pharmaceut:7,phase:[3,12,16,269,336,344,392,424,471,484],phd:448,phenol:508,phenomena:412,phi0:[196,312],phi1:185,phi2:[185,411,468],phi3:[185,411,468],phi:[1,3,4,7,9,10,12,16,17,85,101,118,152,197,198,205,248,312,358,386,387,392,410,413,436,437,438,500],phi_ij:[392,413,447],philadelphia:9,phillip:[254,406,508],phillpot:[305,401,402,457],philosoph:410,philosophi:[6,7,252],phonon:[],phophor:458,phosphid:458,phy:[6,7,13,20,21,25,40,44,46,47,67,75,78,96,97,101,118,122,124,152,153,160,166,184,185,195,204,216,220,230,231,236,246,247,252,253,254,255,256,267,268,269,270,274,290,291,295,296,300,303,305,308,313,316,317,318,329,332,333,336,337,338,339,341,344,346,355,364,366,371,372,378,381,388,392,393,397,398,400,401,402,403,404,405,406,408,410,411,412,414,415,416,417,418,421,424,426,428,429,432,433,434,435,436,438,440,441,444,446,447,451,457,458,466,468,469,470,471,472,473,475,482,496,499,501,508],physic:[3,6,12,14,16,17,18,41,43,54,62,132,160,172,215,232,247,253,255,256,258,259,260,267,295,304,306,340,341,372,374,381,386,388,390,396,400,410,418,419,439,448,449,450,453,461,462,464,465,482,484,496,497,502,513],physica:[433,434],physik:[7,9],pic:9,picki:8,picocoulomb:513,picogram:513,picosecond:[206,232,505,513],picosend:412,pictur:7,pie:[],piec:[3,11,152,206,269,494,519],pierr:9,pieter:13,pimd:[],pin:16,pink:206,pipe:[6,202,205],pipelin:[3,6],pisarev:341,pishevar:406,piston:[],pitera:6,pixel:205,pizza:[6,7,11,13,42,202,205,226],pjintv:13,pka:341,place:[3,6,7,11,12,33,42,51,76,96,172,178,182,191,198,202,205,206,208,209,210,211,228,229,232,245,246,247,249,252,253,254,255,257,259,260,269,275,276,277,288,289,292,299,302,311,313,332,333,334,341,346,349,351,370,399,418,467,474,484,485,488,495,497,502,505,514],placehold:[33,191,387,388,401,410,413,420,421,436,437,438,443,447,449,450,458,466,468,470,471,472,475],placement:[374,424],plai:[6,205,336],plain:[9,432,485],plan:[3,5,6,17,180,487],planar:[6,41,43,251,294,347,364,366],planck:[245,296],plane:[3,6,9,42,43,60,62,71,76,101,205,209,215,222,226,248,251,261,294,297,307,326,328,341,347,355,357,358,359,360,361,366,374,434,474,490,497],planeforc:[],plasma:[97,270,341,412],plastic:[],plastic_strain:[],plastic_strain_r:[],platform:[1,3,7,9,12,13,15,17,202,205,207,489,494,519],plath:[6,100,209,337,344],player:205,pleas:[0,3,7,11,12,13,215,247,256,260,295,298,302,309,336,352,411,413,446,454,456,457],plen:389,plimpton:[0,5,7,75,124,153,229,294,304,329,416,446],plo:29,plog:[3,12,496],ploop:[269,270,274],plot:[7,11,13,58,303,430,432,469,476],plu:[3,11,12,40,62,72,107,176,181,206,225,230,232,233,274,313,383,412,422],plug:9,plugin:[9,13,207,488],plum:206,pm3:177,pmb:[],pme:372,pmf:[231,318,326],png:[3,12,202,205],pni:205,poariz:6,poem:[],point1:487,point2:487,point3:487,point:[],point_data:314,pointer:[3,7,8,9,11,243,485],pois:513,poiseuil:[4,212,248],poisson:[62,232,372,416],poisson_solv:215,polak:378,polar:[6,7,118,152,160,177,215,235,401,402,424,473,508],polar_off:401,polar_on:401,polariz:[],poli:[],politano:[9,457],pollock:[7,372],polya:352,polybond:13,polychain:313,polydispers:[3,380,394,400,416,433,434,467,478],polyethylen:388,polygon:[],polyhedron:176,polym:[],polymer:7,polymorph:[],polynomi:[9,38,57,198,410,430,441,457,462,469],polytechn:298,poor:[16,17,42,226,290,291,316,386,430],poorli:[378,379],pop:[3,8],popen:12,popul:[12,308,374,409,487],popular:[12,202,411],pore:326,poros:181,porou:[256,259],port:[250,252],portabl:[7,9,12,202,204,231,449,489],portion:[1,3,9,11,12,15,16,42,55,68,73,76,84,97,100,102,119,120,122,125,153,154,168,202,203,206,217,218,221,222,223,224,226,230,242,256,269,271,272,273,275,276,277,305,310,311,313,314,354,370,382,386,393,395,396,397,398,402,403,405,406,412,414,415,417,418,424,428,432,435,444,451,452,472,476,486,487,492,496,497,506,509,514],poschel:416,posfreq:310,posit:[3,6,14,27,40,41,42,43,47,60,62,75,76,87,88,98,99,114,115,120,129,130,134,152,153,161,176,177,178,180,181,182,187,189,198,201,203,204,205,206,209,210,212,214,216,217,218,221,222,223,226,227,228,229,230,231,232,233,236,238,245,246,247,248,250,251,253,254,255,256,258,259,262,263,266,267,269,270,271,272,273,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,294,295,296,298,299,300,303,304,308,310,311,313,316,318,322,325,326,328,329,331,332,333,334,336,338,339,340,341,344,346,347,348,349,350,351,352,355,371,374,381,388,389,391,394,406,408,409,412,414,427,450,457,466,469,474,482,487,490,497,508,514,515],posix:250,posix_memalign:12,possibl:[1,3,6,8,9,11,12,15,38,41,42,56,62,66,75,76,96,125,127,152,153,156,157,171,201,202,203,204,206,209,211,215,216,222,226,227,228,229,233,235,240,247,254,294,299,307,308,310,313,325,329,331,341,342,360,370,372,379,382,383,386,409,418,436,450,454,456,457,469,475,485,491,500,501,505,508,514,515,518],post:[],post_forc:8,post_force_integr:8,post_force_respa:8,post_integrate_respa:8,postit:[222,223,283],postiv:95,postma:[300,332],postprocess:13,pot:[416,450],potentail:413,potenti:[],potentiel:432,potetni:419,potin:439,potpourri:9,pour:[],pourtoi:336,pow:232,powderblu:206,power7:17,power8:17,power:[3,9,11,116,152,206,308,371,386,392,485],pparam:[96,210,211],ppm:[12,202,205],ppn:[14,15,16,17,18,386],pppm:[],pppm_disp:3,pppmdisp:3,pproni:[3,246],pr3:177,pr4:177,practic:[3,12,230,269,270,295,302,475,484,509],prb:[470,472],prd:[],pre:[],pre_exchang:8,pre_forc:8,pre_force_respa:8,pre_neighbor:8,prec:457,prec_tim:14,prece:456,preced:[2,6,62,203,217,218,219,220,221,222,223,224,252,310,314,354,374,381,386,392,418,501,504,505,514],preceed:[11,12,76,166,219,346,485,514],precipit:176,precis:[1,3,9,12,13,14,15,16,17,20,21,23,24,25,26,27,28,29,30,31,32,35,38,40,41,44,46,47,48,49,50,52,54,55,57,114,121,124,155,165,178,184,185,187,188,189,190,192,193,195,196,198,202,206,212,218,224,225,230,232,239,244,248,253,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,304,305,306,313,315,316,332,334,345,349,355,357,358,360,361,364,366,371,372,379,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,410,411,413,414,415,416,417,418,424,425,426,427,428,429,430,431,432,433,437,439,442,443,444,446,449,451,452,457,459,468,469,470,471,472,473,475,477,478,479,489,490,496,497,500,505,508,513,514,515],precv:484,predefin:[196,206,352,412],predict:[1,6,10,12,283,313,386],preexponenti:501,prefactor:[24,25,28,32,35,36,172,186,197,210,211,219,346,357,361,364,379,400,414,443,451,452,459,478],prefer:[7,8,12,312,342,388,509],prefix:[11,12,205,231,295,481,484],preliminari:[38,57,198,241,469],prematur:379,prepar:[8,9,304,307,329,498,508],prepend:449,preprint:[152,458],preprocessor:250,prerecord:231,prescrib:[6,8,156,157,158,171,209,210,215,218,233,266,285,342],presenc:[202,227,228,256,259,433,434,439,478,517],present:[1,3,9,12,18,176,198,204,205,233,246,247,252,256,257,259,260,308,325,347,350,353,401,412,423,432,439,450,451,457,484,508],preserv:[3,62,230,232,269,316,329,351,488],press:[],pressdown:225,pressur:[],pressure_with_eviri:412,presum:[78,167,209,210,211,232,381,419,490],prevent:[2,3,6,41,132,233,244,299,329,340,364,371,377,379,381,386,406,419,445,461,462,464,466,485,489,495,497,508,514],previou:[],previouli:233,previous:[3,9,11,62,64,76,95,113,129,131,167,178,180,182,201,202,203,204,206,214,216,217,218,219,221,222,223,224,232,233,245,251,264,266,299,311,313,315,316,341,343,346,347,348,349,351,352,373,416,467,482,485,489,490,500,502,504,505,510,511,512,514,515],prevoiu:347,price:[6,405],primari:[0,6,341],primarili:[5,7,9,17,154],primaritli:[],prime:[236,254,417,439,470,472,484],primit:[3,6,349,350,374],princip:[3,250,457],principl:[6,9,11,250,270,304,412,420,439,468,484,509],prinicp:[43,313,380],print:[],printabl:2,printflag:420,printfluid:256,prior:[176,200,317,373,518],priori:496,prioriz:386,prism:[3,6,166,180,490],priveleg:3,privileg:[11,12,250],prob:[227,228],probab:459,probabl:[3,8,12,41,76,168,181,182,184,216,226,227,228,229,233,245,254,269,299,346,352,379,441,469,482,501,508],probe:514,problem:[],problemat:245,proc:[1,3,8,11,12,15,125,202,203,370,484],proce:[42,55,182,226,237,381,439,494,502,505],procedur:[6,12,40,42,206,216,226,245,253,254,255,269,271,272,273,274,275,276,277,288,289,290,291,292,295,332,333,334,335,338,339,379,381,388,394,488,508],proceed:[12,439],procesor:[42,484],process:[],processor:[],processsor:[42,226,484],procp1:[202,203],procsessor:506,procssor:496,produc:[1,3,4,6,7,12,13,14,15,16,17,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,42,43,44,46,47,48,49,50,52,54,55,57,66,69,72,74,76,85,103,120,121,122,124,125,126,127,129,131,153,155,165,176,184,185,187,188,189,190,192,193,195,196,198,202,203,206,209,212,217,218,219,221,222,223,224,225,226,229,232,239,243,244,246,247,248,253,254,255,264,266,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,299,303,304,305,308,313,314,315,316,330,331,332,334,341,342,343,345,346,349,354,355,357,358,360,361,364,366,372,379,381,384,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,442,443,444,446,447,450,451,452,459,468,469,470,471,472,473,475,477,478,479,482,484,489,490,492,493,496,501,502,505,514,515],product:[6,16,17,18,152,176,232,290,304,342,386,389,412,450,484,514],proessor:386,prof:298,profi:167,profil:[],program:[3,4,6,7,9,11,12,13,17,154,202,205,206,207,209,231,243,250,256,307,410,485,486,498,514],programm:[13,17],progress:[1,42,226,250,267,303,378,379,381,505,508],prohibit:497,project:[6,7,13,14,378,467,509],promis:7,promot:392,prompt:[8,11,12,250,498],proni:[3,246,247],proofread:8,prop:[6,302],propag:[4,9,214,269,303,319,412,419],propens:6,proper:[229,294,436,485,509],properati:302,properli:[212,238,313,317,325,380,381,408,485,515],properti:[],propoerti:329,proport:[6,40,42,96,114,115,174,226,253,254,255,303,337,344,345,416],proportion:253,propos:[6,152,216,230,245,269,290,308,424,438,471,473],prospect:7,protect:329,protein:[7,10,178,311,313,327,487,495],protocol:250,proton:[472,479,513],prototyp:[43,446],prouduc:[224,343],prove:[89,90,240,256,317],proven:290,provid:[1,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,29,41,43,64,71,75,130,151,154,172,176,177,178,204,205,207,210,217,218,224,229,230,231,232,243,245,250,252,256,260,267,269,295,302,303,304,307,308,313,317,318,336,338,339,342,343,354,369,371,372,377,381,386,388,392,394,399,401,402,406,411,412,416,418,421,423,432,433,436,438,439,447,448,449,450,457,458,466,467,468,470,471,472,475,484,489,495,497,500,501,505,506,509,514],proxim:201,psa:349,pscreen:[3,12,496],pscrozi:[0,7,13],psec:[206,232,249,253,254,269,300,313,332,333,507,513],psend:484,pseudo:[412,482,487,492],pseudodynam:336,pseudopotenti:[9,439],psf:6,psi:[413,478],psi_ij:413,pstart:[3,269,270,274,300,313],pstop:[3,269,270,274,300,313],pstyle:[96,119,210,211],psu:[449,450],psuedo:492,pt2:177,pt4:177,ptarget:230,pthread:[12,17],ptr:[6,11,243,485],ptype1:127,ptype2:127,pu3:177,pu4:177,pu6:177,publicli:5,publish:[7,256,260,304,402,436,439,470,472],pull:[318,326,509],puls:341,pump:[433,434],punctuat:[2,482,501],purchas:205,purdu:[9,13],pure:[11,329,419,437,438,470,472,496],purg:[3,488],purpl:[2,206],purport:11,purpos:[3,6,7,9,12,43,64,76,130,140,146,161,162,177,178,180,182,198,202,222,224,229,230,253,294,296,299,301,312,329,371,386,396,422,428,439,441,474,480,487,490,494,497,499,500,514,519],push:[3,8,212,225,232,251,268,294,311,318,379,416,459,509],pushd:251,put:[3,6,8,11,12,13,40,62,166,178,202,233,237,348,349,352,374,449,485,487,491],putenv:[498,514],px1:496,px2:496,pxx:[230,269,300,313,371,372,504,505],pxy:[3,6,505],pxz:[3,6,505],py1:496,py2:496,pydir:11,pyi:[230,269,300,313,371,372,505],pymol:[7,11,13],pymol_aspher:[],pympi:11,pypar:11,python:[],pythonpath:11,pyz:[3,6,505],pz1:496,pz2:496,pzz:[230,267,269,300,303,313,371,372,505],q_1:457,q_2:457,q_3:457,q_c:[],q_d:508,q_i:[413,432],q_j:432,qbmsst:[],qcore:304,qdamp:304,qdist:[402,424,428,432],qeq1:304,qeq2:304,qeq:[],qeqal:457,qeqallparallel:457,qfile:[304,402],qin:249,qinitmod:457,qmin:378,qmmm:[],qmol:307,qout:249,qstep:304,qtb:[],quad:[12,18,386,484],quadrat:[],quadratur:[96,215],quadrupl:387,quadruplet:[194,197,199,355,357,358,359,361,363,364,365,367],qualifi:[3,252],qualiti:[7,205,206,388],quantic:457,quantit:[79,88,114,115,116,174,416],quantiti:[],quantum:[6,9,152,243,247,296,303,307,308,388,392,412,439,457,467],quantum_temperatur:303,quartic:[],quartic_spher:215,quartz:[303,308],quasi:296,quat:[3,497],quaternion:[3,6,41,91,125,142,156,157,178,271,272,275,276,279,280,281,288,289,415,487,497],quati:[125,487],quatj:[125,487],quatk:[125,487],quatw:[125,487],queen:13,quench:[352,482,501],queri:[3,11,55,285,485,514],quest:[6,243],question:[8,9,12,13,294,352,446,509,514],queteschin:9,quick:[0,4,12,14,15,16,17,18,19],quickli:[3,4,8,12,13,40,101,226,232,245,250,329,378,379,381,388],quickmin:[377,378,379,381,501],quicktim:[4,205],quip:[],quit:[],quot:[2,3,12,204,259,301,354,436,482,483,485,495,514],quotat:457,r10:392,r12:415,r_1:152,r_2:152,r_c:[403,405,414,472],r_cut:[392,435],r_d:508,r_e:413,r_ewald:314,r_fu:[433,434],r_i:[29,152],r_ii:152,r_ij:[29,392,412,447,479],r_ik:447,r_j:29,r_jik:447,r_m:435,r_max:223,r_me:403,r_mh:414,r_min:[223,404],r_ub:20,r_x86_64_32:12,ra2:177,rad2theta:177,rad:352,radhi:490,radial:[66,76,107,108,125,128,152,162,164,169,218,223,255,270,282,291,326,335,379,412,418,441,487,490],radian:[20,21,24,28,32,35,36,38,177,185,196,198,312,355,357,361,364,487,490,497],radiat:[130,177,341],radic:[180,487],radii:[76,81,152,229,233,400,410,415,416,433,434,439,453,455,478,490],radit:412,radiu:[],radlo:490,rafferti:344,rahman:[6,7,230,267,269,270,303,446],rai:[9,17,177],ram:472,ramirez:220,ramp:[],ran:[3,6,11],random:[3,6,40,178,181,201,205,214,216,227,228,229,231,233,242,245,246,247,253,254,255,256,265,269,296,299,303,308,311,313,317,329,333,336,341,345,348,394,406,407,408,409,482,497,502,508,514,515],random_se:482,randomli:[178,181,216,233,245,253,299,329,351,501,502],rang:[1,3,6,7,8,9,10,12,14,15,16,18,38,40,57,64,76,77,82,97,118,120,121,122,124,128,129,133,152,153,164,172,177,179,182,183,190,198,202,203,205,206,215,216,228,232,233,245,247,299,314,329,330,336,337,342,344,371,372,379,382,383,386,388,390,392,393,394,395,396,397,398,400,402,403,404,405,406,409,410,412,415,417,418,419,421,424,425,426,427,428,429,430,431,432,433,434,435,436,439,440,441,442,444,447,450,451,452,457,466,467,469,472,473,477,478,479,481,485,496,497,505,518],rangecoulomb:[],rank:[6,11,12,250,342,369,484],rankin:274,raphson:3,rapid:[4,6,11],rapidli:[3,8,12,76,229,253,267,269,313,332,333,345,402,406],rapp:[304,305,306],rappe_and_goddard:305,rare:6,rasmol:[6,7],rasmussen:415,raster3d:[6,7],rate:[],rather:[1,2,6,9,12,41,42,65,124,161,205,226,232,246,247,313,333,341,345,347,348,349,352,412,449,469,488,492,497,499,504,514],ratio:[6,62,96,112,152,216,226,232,253,255,329,337,344,345,371,384,415,416,451,461,474,484,487,497,501],rational:[342,499],rattl:[],rattle_debug:316,ravelo:[274,426],rayleigh:[267,303],rb1:177,rbb:457,rbg:206,rcb:[3,42,226],rcm:[98,99],rcmx:[98,99],rcmy:[98,99],rcut:64,rcutfac:[152,458],rd1:381,rdc:17,rdf:[],rdn:381,rdt:381,rdx:4,reach:[6,12,42,131,220,226,228,230,254,274,322,329,336,354,370,385,403,508,514],reacquaint:509,react:6,reactant:412,reaction:[318,327,340,351,381,412],reactiv:[9,310,388],read:[2,3,6,7,8,9,11,12,13,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,37,38,39,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,59,62,127,176,178,179,181,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,201,202,203,205,206,207,208,209,215,216,229,230,232,233,241,245,247,250,266,267,269,271,272,273,274,275,276,277,288,289,290,291,292,295,296,298,299,301,302,306,313,316,318,322,325,328,331,339,340,341,347,353,355,356,357,358,359,360,361,363,364,365,366,367,368,370,376,380,381,385,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,407,408,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,442,444,446,447,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,475,476,477,478,479,480,482,484,487,488,489,491,492,493,494,495,497,498,499,501,514,515,516,517,519],read_data:[],read_dump:[],read_restart:[],read_restart_set:8,readabl:[203,205,380,494,519],reader:[3,13,488],readi:[11,12,179,181,182,250,497,508,517,518,519],readm:[1,4,6,8,9,10,11,12,13,176,202,203,207,307,420,439,449,450,485],real:[3,6,7,11,27,30,31,62,76,100,101,118,152,167,178,187,201,206,214,222,223,232,233,236,250,251,254,266,296,303,308,311,345,346,348,349,351,360,371,372,374,377,383,402,439,441,449,450,472,487,490,496,504,507,513,515],realist:[3,233,491],realiz:[76,209,485],realli:[1,3,8,12,124,134,153,206,251,382,419,499,509],realloc:3,realtim:250,reamin:[346,350],rearrang:[203,381],reason:[3,6,7,11,12,19,40,159,170,178,218,222,223,253,300,313,338,339,342,352,380,381,386,399,403,412,413,414,434,441,474,476,491,496,515],reax:[],reax_def:3,reaxc:[],reaxff:[3,4,5,7,9,13,209,304,306,309,310,419,449,450,467,499],rebal:[42,226],rebalanc:[42,226],rebo:[],rebuild:[11,12,14,15,16,245,382,406,505],rebuilt:[3,12,202,203,204,205,207,382,386],recalcul:[76,96,329],receiv:[3,225,250,252,294,484],recent:[],reciproc:[6,12,130,176,177,295,371,393,395,396,402,405,412,424,428,444,452,501],recog:12,recoginz:3,recogn:[3,12,16,78,180,227,228,269,380,410,436,449,485,487,494,495,508],recomend:6,recommend:[7,12,14,16,205,206,303,339,371,412,419,433,434,439,450,451,454,456,457,496,506,509],recompil:[1,3,9,12,207,316],recomput:[113,140,182,237,318,409,499],reconstruct:[3,231,457],record:[207,231,318],recov:[230,269],recreat:353,rectangl:[42,226,374],rectangular:[7,42,65,180,226,245,374,487,489,491],rectilinear:[130,177,203],rector:54,recurs:[42,226,392,474],recust:42,recv:484,red:[2,205,206,229,296],redefin:[3,489,495,514],redirect:12,redo:12,reduc:[],reduct:[18,19,129,130,177,267,303,371],redund:413,ree:462,reed:[267,303],rees:[7,9,13],ref:[338,339,378],refactor:6,refer:[],referenc:[3,6,12,66,72,76,126,131,202,203,209,219,245,302,343,372,402,418,443,451,485,505,514],reflect:[],refman:9,reformat:7,refresh:215,reg:490,regard:[6,62,266,316,317,322,446,450],regardless:[15,76,178,181,201,221,222,232,253,269,271,272,273,275,276,277,300,313,323,329,386,484,490,497],regim:[6,337,344,403,496],region:[],region_spher:8,region_styl:350,regist:[8,128,154,325],regoin:6,regress:514,regspher:178,regstrip:352,regul:6,regular:[1,3,42,65,97,176,180,202,205,216,226,245,302,341,372,403,422,484,487,489,491],reigon:514,reinhardt:[338,339],reject:[178,229,449,502],rel:[1,6,14,27,36,42,62,76,101,114,134,142,152,156,160,161,163,178,187,206,209,216,222,226,232,233,236,245,251,254,265,266,290,294,299,308,310,311,318,326,329,331,336,337,341,348,352,371,372,379,412,415,416,433,434,436,451,478,488,496,501,505,508,515],relat:[],relatic:[],relationship:[6,241,304,354,371,457,478,508,514],relax:[],releas:[0,5,7,8,13,227],relect:[3,441],reles:43,relev:[2,6,12,42,83,86,123,140,178,182,206,210,211,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,232,233,234,237,239,242,244,245,246,249,250,256,257,258,260,261,262,263,265,266,268,278,279,280,281,282,283,284,285,286,287,293,297,298,299,301,302,305,307,309,310,311,314,315,316,318,323,327,329,330,331,336,337,340,341,342,343,344,345,346,347,348,349,351,352,371,379,389,390,394,400,402,403,405,406,409,412,414,415,416,417,418,423,425,426,427,429,430,431,433,434,441,442,446,451,459,466,469,477,478,479,484,500,515],reli:[3,12,305,412,450,479,487,497],reloc:12,remain:[7,12,33,37,42,51,56,62,76,96,115,158,159,160,161,165,166,167,168,170,181,191,197,198,202,210,211,216,218,219,222,223,230,232,253,254,261,269,270,275,276,277,288,289,290,292,297,298,321,329,332,333,334,340,341,352,354,362,365,380,392,412,419,432,439,441,467,482,487,488,492,497,499,501,505,508,509,514,515],remaina:392,remaind:[9,178,202,233,299,329,342,472,487],remap:[3,6,12,62,64,76,161,178,201,222,232,251,266,290,371,487,488,489],remedi:[6,508],rememb:[2,509],remot:509,remov:[2,3,6,8,13,55,76,77,82,101,118,126,128,152,156,157,158,159,160,161,165,166,167,168,170,171,178,181,182,203,209,218,222,227,242,253,254,259,265,267,269,275,276,277,288,289,290,292,298,304,313,314,316,329,332,333,334,336,352,371,381,405,434,439,487,490,498,499,509,514,515],remove_bia:8,remove_bias_al:8,remove_molecul:215,remove_sourc:215,remove_speci:215,ren:177,renam:[12,353,498,509],render:[12,13,202,205,206],rendon:[269,270],reneighbor:[3,8,12,40,60,76,222,226,245,329,342,352,406,504,505],renssela:298,renumb:76,reorder:[3,12,40,484],rep:502,repeat:[2,6,205,206,222,229,230,245,322,374,392,470,472,474,482,501],repeatedli:2,repel:251,repes:202,replac:[2,3,6,11,12,42,66,98,99,129,155,156,157,158,159,160,161,164,165,166,167,168,170,171,202,203,205,206,207,218,219,221,222,223,224,226,229,233,253,274,301,302,308,310,388,402,426,469,488,489,494,495,505,514,515,517,519],replic:[],replica:[],replica_fil:12,report:[],repositori:[],reprens:341,repres:[1,3,6,8,9,12,15,41,42,43,62,71,76,99,125,128,190,198,202,203,205,218,219,220,221,222,223,224,230,236,246,248,253,256,269,296,298,300,308,313,314,318,326,341,343,350,372,381,387,392,415,422,432,433,434,436,437,438,444,447,449,450,473,474,482,484,487,497,499,502,508,514,517],represent:[3,6,8,9,60,62,146,180,202,246,247,296,341,392,412,415,439,451,487,490,508],reprocess:492,reproduc:[3,269,347,402,410,416],repul:436,repuls:[6,7,36,41,46,47,120,251,304,346,347,350,388,392,400,402,406,412,416,418,432,436,440,457,466,472,475,478,479,497],reqir:[304,306],request:[3,6,8,12,42,114,181,198,202,250,256,311,317,329,331,369,371,441,449,450,482,492,497,501,509,514,515,517],requir:[],rerun:[],rescal:[],research:[5,7,89,90,240,256,260,317,439,482,501],resembl:[308,509],resepct:6,reserv:[12,250,508],reservoir:[100,245,249,253,341],reset:[],reset_atomic_reference_posit:215,reset_dt:8,reset_target:8,reset_tim:215,reset_timestep:[],resid:13,residu:250,residue1:382,resist:[6,250],resolut:[220,457,469],resolv:[230,296,329,434,509],resort:3,resourc:[7,387,410],respa:[3,16,237,250,269,384,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,433,434,435,436,437,438,439,440,442,444,446,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,474,475,477,478,479,480,495,496,507,514],respecifi:439,respect:[1,6,9,13,14,15,17,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,43,44,46,47,48,49,50,52,54,55,57,62,75,76,96,98,107,108,121,124,130,134,154,155,160,163,165,172,176,177,184,185,187,188,189,190,192,193,195,196,198,203,205,206,221,222,223,228,229,230,232,248,251,253,254,256,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,304,305,313,314,318,326,328,341,346,349,355,357,358,360,361,364,366,369,371,372,376,379,380,385,386,387,388,390,392,393,394,395,396,397,398,400,401,402,405,406,410,411,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,436,437,439,441,442,443,444,446,451,452,456,457,458,459,468,469,470,471,472,473,475,477,478,479,484,488,497,500,508,514,516,517,519],respon:9,respond:[6,7,161,232,412,446],respons:[6,7,267,337,344],resquar:[],rest:[6,8,12,39,59,199,302,306,312,367,392,434,436,480,504,505,508],restart1:296,restart2:296,restart2data:[],restart:[],restartfil:[12,13],restor:[3,8,63,64,114,178,210,211,302,318,326,331,353,504,505],restore_bia:8,restore_bias_al:8,restrain:[],restraint:[9,231,267,312,328,423],restratin:312,restrict:[],result:[1,2,3,6,7,9,10,11,12,13,15,16,18,20,21,23,24,25,26,27,28,29,30,31,32,35,38,40,41,42,44,46,47,48,49,50,52,54,55,57,66,67,70,71,76,80,87,96,99,100,104,114,115,117,121,122,124,126,127,128,129,130,131,153,155,158,161,165,172,173,175,177,178,181,184,185,187,188,189,190,192,193,195,196,198,201,202,203,205,206,209,212,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,236,239,241,244,245,246,248,253,254,256,260,267,269,271,272,273,274,275,276,277,278,279,286,288,289,290,291,292,295,296,304,305,310,311,313,315,316,329,332,334,337,338,339,341,342,343,345,346,347,349,351,354,355,357,358,360,361,364,366,371,372,381,384,386,387,388,390,393,394,395,396,397,398,400,401,402,405,406,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,434,436,437,439,441,442,443,444,446,450,451,452,459,468,469,470,471,472,473,475,477,478,479,482,484,487,489,490,491,492,496,497,498,499,501,513,514,515],resum:514,retain:[2,227,228,388,392,439,484],retart:[33,51,191,362],retir:[3,449],retreiv:8,retriev:[6,8,243,437,438,514],reus:[3,499],rev:[6,13,67,75,101,118,122,152,153,166,216,247,253,255,267,269,270,274,290,295,305,308,313,318,329,333,336,338,339,344,378,392,400,401,402,405,410,411,412,415,416,421,426,433,434,435,436,438,447,451,458,468,470,471,472,475,482],revers:[2,6,8,96,189,229,251,269,293,294,304,322,337,338,344,381,432,496,508],review:[152,304,318,336,439,448,458,482,501,508,509],rewind:370,rewrap:202,rewrit:[5,12],rewritten:19,rezwanur:446,rfac0:[152,458],rfactor:329,rfile:313,rg0:327,rgb:206,rh3:177,rh4:177,rhaphson:3,rheolog:6,rhi:469,rho0:[436,454,456,464,465],rho0_meam:436,rho:[],rho_0:[464,465],rho_alpha_beta:410,rho_bkgd:436,rho_colloid:346,rho_e:341,rho_fin:340,rho_i:[437,438],rho_initi:340,rho_ref_meam:436,rho_wal:346,rhodo:[9,10],rhodopsin:[1,10],rhohi:299,rholo:299,rhosum:[],ribier:378,richard:9,richardson:313,richi:[9,19],rick:[304,305,401,457],rick_and_stuart:305,ridg:[9,19],right:[3,6,11,12,42,154,178,196,197,201,203,226,229,251,256,266,293,354,374,402,487,490,497,509,514],rightmost:[42,226],rigid:[],rigidifi:313,rii:[98,99],rij:[101,118,227,228,294,406,407,408,466],rin:[418,429,430],ring:[],rino:[78,475],rinv:371,rirj:[347,416],rise:[],risi:[152,458],risk:[8,312,496],rix:[98,99],rjk:[227,228],rjone:[7,9,13],rlo:469,rmask:[3,514],rmass:[3,302],rmax:[76,179,227],rmdir:498,rmin0:[152,458],rmin:[76,179,228,426],rmsd:340,rnemd:6,robert:9,robin:206,robust:[377,378,379],rock:436,rockett:447,rod:313,rodata:12,rodnei:308,roi:7,role:[6,336],roll:12,ronchetti:118,room:[60,62],root:[11,96,98,99,204,336,340,386,410,494],rosati:40,rose:436,ross:436,rosski:296,rosybrown:206,rot:[6,100,296,312,336,515],rotat:[],rotation:118,rotaton:490,rough:[6,178,205,351],roughli:[7,10,12,42,161,205,220,245,253,254,268,269,283,300,313,329,332,333,336,372,381,386,453,455,489,496],round:[],rous:246,rout:[96,418,432],routin:[5,6,8,11,15,16,38,40,57,97,182,184,256,439,448,469,500],roux:[6,236,254,473,508],row:[6,69,70,72,74,80,85,87,99,103,104,115,117,120,126,127,128,131,158,166,173,175,176,177,218,219,221,222,223,224,259,313,341,343,351,412],royalblu:206,rozero:436,rperp:[266,322],rpi:298,rpm:12,rrespa:[1,3,5,7,8,16,210,211,266,269,382,387,388,389,390,391,393,394,395,396,397,398,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,433,434,435,436,437,438,440,442,444,446,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,474,475,477,478,479,480,496],rspace:3,rsq:[469,476],rsurfac:341,ru3:177,ru4:177,rub:20,rubia:[437,438],rudd:[441,469],rudra:[7,9],rudranarayan:[7,298],ruiz:216,rule:[],run1:[6,385,514],run2:[6,368,370,385,514],run3:[6,385,514],run4:[6,385,514],run5:[6,385,514],run6:[6,385,514],run7:[6,385,487,488,492,514],run8:[6,385,514],run:[],run_styl:[],runloop:370,runtim:[12,17,205,386],russia:9,rutherford:341,rutuparna:[470,472],ryan:9,ryckaert:[316,364],rycroft:176,rydberg:439,s00:446,s0st:6,s2050:1,s2629:410,s319:215,s_fact:319,s_i:[6,412],s_ij:6,sack:7,saddl:[268,381],saddlebrown:206,sadigh:[216,410,437,438],saed_vtk:130,safe:[12,205,236,254,386,509],safe_zon:3,safest:[3,329],safeti:319,safezon:450,safran:478,sagui:[372,405],sai:[1,3,12,13,206,449,450,485,509],said:379,sakai:471,sall:[9,457],salmon:206,salt:[403,414,436,487],salter:457,same:[1,2,3,4,6,8,9,10,11,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,38,40,41,42,44,45,46,47,48,49,50,51,52,54,55,57,60,62,65,66,69,74,76,77,82,85,88,91,93,94,96,97,98,99,100,101,103,105,108,114,115,116,118,120,121,122,124,125,127,128,129,152,153,154,155,156,157,158,159,160,161,164,165,166,167,168,170,171,172,174,176,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,195,196,198,200,201,202,203,204,205,206,209,210,211,212,215,216,218,221,222,223,224,225,226,227,228,229,230,232,233,237,238,239,244,245,246,247,248,249,250,251,252,253,254,255,256,259,266,269,271,272,273,274,275,276,277,278,279,286,288,289,290,291,292,294,295,296,298,299,300,302,303,304,305,306,308,309,310,311,312,313,315,316,318,323,326,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,347,348,349,350,352,353,354,355,356,357,358,360,361,364,366,371,372,374,375,376,380,381,382,383,384,385,386,387,388,390,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,423,424,425,426,427,428,429,430,431,432,433,434,436,437,440,441,442,443,444,446,447,451,452,457,459,466,467,468,469,470,471,472,473,475,477,478,479,482,484,485,487,488,489,490,492,495,496,497,498,499,500,501,505,508,509,513,514,515,518],sampl:[1,2,4,6,9,11,12,14,100,114,156,157,171,176,201,205,209,218,219,222,223,231,233,243,245,247,249,269,270,296,299,308,310,314,326,327,329,333,336,339,351,382,392,409,487,501],sample_frequ:215,san:446,sandia:[0,5,7,9,13,14,17,75,123,413,436,446],sandybrown:206,saniti:[312,382],satellit:[6,160],satifsi:514,satisfi:[3,12,78,130,152,177,230,256,274,316,349,379,382,416,501],satur:403,save:[6,8,12,19,41,62,198,203,205,220,229,246,247,253,254,255,299,308,341,353,372,382,384,392,489,492,499],sb3:177,sb5:177,sc3:177,scalabl:[],scalar:[],scale:[0,1,3,5,6,9,10,13,18,41,62,66,76,77,100,113,125,128,129,152,164,172,198,201,202,203,205,206,209,210,211,215,216,219,230,232,245,249,250,251,253,255,256,267,269,271,272,273,274,275,276,277,296,300,303,304,313,320,321,329,331,333,336,338,339,341,345,352,371,372,374,380,383,387,388,389,403,409,412,416,419,433,434,436,439,446,453,455,473,488,490,492,496,499,501,504,505,514,515],scale_factor:[453,455],scalegamma:256,scalexi:[3,230,269,274],scalexz:[230,269,274],scaleyz:[230,269,274],scan:[206,228,370,488],scatter:[11,130,177],scatter_atom:11,scatter_coord:11,scenario:[6,41,64,229,302,311,329,342,350,382,491,492,496,504],scf:508,schaik:432,schedul:482,schell:471,schemat:229,scheme:[6,9,18,246,247,269,296,308,316,341,371,473],schlitter1:340,schlitter2:340,schlitter:340,schmid:406,schneider:[253,255],schoen:371,schr:508,schroding:412,schroeder:[118,508],schulten:[254,318,372,508],schunk:329,schwen:9,sci:[78,349,401,438,447,457],scienc:[8,215,229,250,318,338,410,437,457,471],scientif:[9,152,410,514],scm:11,scratch:[12,42,226],screen:[],screenshot:11,scripe:11,script:[],scripta:71,scsl:12,sdk:[],sea:11,seagreen:206,seamlessli:302,search:[0,2,3,8,12,101,118,179,181,206,207,329,377,378,379,381,383,482,488,489,501,514],seashel:206,sec:[12,507,513],second:[1,3,6,9,11,12,16,55,60,62,64,76,97,100,114,116,118,124,145,146,150,153,154,166,172,176,177,179,180,181,201,202,206,209,210,218,219,221,222,223,224,229,245,246,251,266,268,296,302,310,312,313,316,318,326,327,329,338,339,341,352,371,374,378,379,381,382,386,391,392,393,395,396,401,402,410,412,413,416,417,419,422,423,426,436,441,443,457,468,471,472,473,475,479,482,483,484,485,487,489,494,496,500,501,505,508,513,514,515,517,519],second_mo:457,secondari:[3,190],sectinn:518,section:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,61,62,66,67,68,69,70,71,72,73,74,76,79,80,83,84,85,86,87,88,89,92,95,96,97,98,99,100,102,103,104,107,108,109,110,111,112,114,115,116,117,119,120,121,123,124,125,126,127,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,179,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,201,202,203,204,205,207,209,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,231,232,233,235,236,238,239,241,242,244,245,246,247,248,250,252,253,254,255,256,257,258,259,260,262,263,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,294,295,296,298,299,300,302,303,304,305,306,307,308,309,310,313,315,316,317,318,319,320,321,322,323,325,329,332,333,334,335,336,337,338,339,340,341,342,344,345,347,348,349,352,353,355,356,357,358,359,360,361,362,364,365,366,367,372,373,374,376,380,381,383,385,386,387,388,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,441,442,443,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,482,483,484,485,487,488,490,492,495,496,497,498,500,501,502,505,506,508,514,515,516],section_acceler:[9,12,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,44,46,47,48,49,50,52,54,55,57,121,124,155,165,184,185,187,188,189,190,192,193,195,196,198,212,225,232,239,244,248,253,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,305,313,315,316,332,334,345,349,355,357,358,360,361,364,366,372,387,388,390,393,395,396,397,398,400,401,402,405,406,410,411,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,437,442,443,444,446,451,452,459,468,469,470,471,472,473,475,477,478,479,490,496],section_accerl:410,section_command:[0,1,9,354],section_error:[7,12],section_exampl:[2,6],section_histori:[7,12],section_howto15:90,section_howto:[6,8,9,11,12,41,43,60,62,67,70,71,72,75,76,77,78,80,81,82,83,86,87,88,91,92,93,94,95,96,98,99,101,104,105,106,107,108,109,110,111,112,115,117,118,121,122,123,126,128,129,132,147,148,149,150,152,153,158,160,172,173,175,176,180,200,218,268,281,284,287,344,391,404,482,487,490,501],section_modifi:[6,7,43,202,203,205,505],section_packag:12,section_perf:7,section_python:[6,12],section_start:[3,6,9,11,375,381,481,482,496,502,505],section_tool:[6,7],see:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,60,61,62,64,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,262,263,264,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,294,295,296,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,315,316,317,318,319,320,321,322,323,325,326,328,329,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,368,371,372,374,375,376,378,379,380,381,382,383,385,386,387,388,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,480,481,482,483,484,485,487,488,489,490,492,493,494,495,496,497,499,500,501,502,503,504,505,506,507,508,509,514,515,517,518,519],seed1:502,seed2:502,seed:[3,178,181,201,205,214,216,227,228,229,231,233,242,245,246,247,253,254,255,256,296,299,303,308,313,329,333,336,341,348,394,406,408,409,482,497,502,508,514,515],seed_com:254,seed_drud:254,seek:[42,226],seem:[6,230,342,378,436,496],seen:[12,256,350],segement:3,segment:[3,6,7,12,41,43,91,125,205,209,284,299,313,329,406,422,450,466,467,487,495,497],select:[3,6,9,12,15,62,64,76,129,130,167,172,177,178,198,205,207,214,216,222,223,232,233,242,245,250,251,266,318,328,336,337,342,344,346,348,349,351,369,371,377,381,383,386,418,423,436,457,484,488,490,496,497,501,506,514],self:[],sellerio:13,semi:[3,207,215,216,293,295,488],semiax:156,semimet:412,send:[0,3,5,7,8,11,12,206,250,484],sender:[3,484],sens:[1,3,6,7,18,40,42,43,62,76,114,197,202,218,221,222,223,224,226,229,232,246,247,252,253,254,255,299,303,308,314,329,336,337,341,344,352,381,402,424,428,470,471,472,482,487,492,496,499,504],sensabl:250,sensibl:115,sensit:[2,6,78,230,308,515],sent:[206,250,369],sep:[6,11,514],separ:[2,3,6,7,9,12,13,41,42,81,128,134,152,178,181,203,205,206,207,215,219,226,227,228,229,230,233,236,245,253,254,269,283,296,299,300,302,304,308,313,316,329,332,333,334,337,344,352,372,386,393,395,402,403,405,407,408,424,433,434,436,443,448,458,467,468,469,472,478,485,487,488,489,496,499,504,508,515,516,517,518],seper:403,sequec:514,sequenc:[2,3,12,42,62,202,203,205,206,207,226,247,268,352,374,381,419,447,502,514],sequenti:[62,63,206,447,488],sequestr:7,ser:[],seri:[3,4,6,9,13,18,152,202,203,205,206,219,224,246,247,299,385,388,415,436,439,441,451,459,469,485,494,495,502,504,505,514],serial:[],serial_icc:12,serious:8,serv:[6,140,180,329,466],server:[1,252,386],set:[],set_callback:243,set_energi:243,set_vari:[6,11,485],setarea:256,sete:[218,229],setenv:[11,12,399],setfl:[13,387,410],setforc:[],setgamma:256,setmask:8,settl:230,setup:[3,6,7,8,11,12,13,16,37,41,56,62,76,96,100,166,179,180,181,182,197,206,215,229,232,329,342,365,382,383,386,467,484,487,495,517,519],setup_pre_exchang:8,setup_pre_forc:8,setup_pre_force_respa:8,setvel:[],seven:438,seventh:[145,150],sever:[1,4,5,6,7,8,9,10,11,12,13,15,18,40,41,66,76,96,172,179,182,197,202,203,204,207,209,215,227,228,230,247,253,256,260,269,298,300,302,313,318,329,336,345,369,374,379,386,389,392,396,409,410,419,428,432,436,441,447,449,450,456,457,482,485,489,493,501,505,508,514,515],sexton:439,sfactor:[3,205,206,380],sfftw:12,sgi:12,sgmc:216,sgrid:329,sgroup:176,shade:205,shake:[],shan:[17,304,305,401],shanghai:[9,13],shape:[],shape_upd:8,shapei:[125,487],shapex:[125,487],shapez:[125,487],shapshot:492,shardlow:[],share:[],shared0:[],sharon:313,sharp:[350,436,472],shawn:9,shear:[3,4,5,6,7,9,62,64,161,201,230,232,256,269,290,329,344,347,416,433,434,446,454,456],sheet:491,shell:[],shen:9,shenderova:388,sheppard:378,shflag:12,shield:[],shift:[],shiftse:329,shiga:[6,269,270],shini:[205,518],shinoda:[6,9,269,270,452],shiny:205,ship:207,shlib:[11,12],shlibflag:12,shock:[],shockvel:[267,303],shortcut:[230,269,300,313],shorter:[3,131,245,294,383,441,495],shortest:[205,383,389,496],shorthand:[206,473],shoul:474,should:[1,2,3,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,35,38,40,41,42,43,44,45,46,47,48,49,50,52,54,55,57,62,64,75,76,78,88,92,96,100,107,108,109,113,114,115,121,122,124,153,155,156,157,160,161,164,165,166,168,171,174,178,180,182,184,185,186,187,188,189,190,192,193,195,196,198,200,201,202,203,205,206,210,211,212,213,216,220,225,226,227,228,229,230,232,233,235,236,238,239,241,242,243,244,245,246,247,248,249,251,253,254,255,256,258,259,260,261,266,269,271,272,273,274,275,276,277,278,279,283,286,288,289,290,292,294,295,296,297,298,299,300,301,303,304,305,306,307,308,309,310,311,312,313,315,316,323,326,329,330,332,333,334,335,336,337,340,341,342,344,345,346,347,348,349,350,351,352,354,355,356,357,358,360,361,364,366,372,374,375,377,379,380,381,382,383,384,386,387,388,390,391,393,394,395,396,397,398,399,400,401,402,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,424,425,426,427,428,429,430,431,432,433,434,436,437,439,441,442,443,444,445,446,448,449,451,452,453,455,457,459,466,468,469,470,471,472,473,475,477,478,479,482,483,484,485,487,488,489,490,491,492,494,495,496,497,499,503,504,505,508,509,514,515,517],shouldn:[3,8],show:[6,10,11,12,128,294,381,418,436,439,469],shown:[1,12,16,17,42,107,108,130,152,164,177,197,226,229,253,269,290,296,299,308,336,371,412,413,415,416,432,439,451,457,487],shrank:76,shrink:[3,6,42,60,62,76,180,201,202,205,210,211,214,226,232,233,251,256,294,329,348,352,371,372,379,402,424,428,441,487,488],shrunk:76,shut:[6,11,382,486],si4:177,siam:349,sic:[4,402,419,436,443,468,470,472,475],sic_tersoff:447,sicc:[411,468,470,472,475],sicg:[470,472],sicsi:[411,468,470,472,475],side1:490,side2:490,side3:490,side4:490,side:[3,8,42,60,64,76,168,178,216,217,226,229,233,245,251,256,266,294,299,307,326,346,350,351,352,381,402,415,416,451,474,485,487,490,497],sidewai:4,sienna:206,siepmann:344,sigam:[],sigam_ii:[],sige:[470,472],sigma0:392,sigma14:432,sigma1:392,sigma2:392,sigma:[3,6,10,46,47,51,55,96,184,202,203,206,210,211,245,256,294,317,329,345,346,350,374,383,386,388,391,392,393,397,398,400,405,406,408,409,411,412,415,417,418,422,423,424,425,426,427,428,429,430,431,432,435,440,441,451,452,462,468,473,474,496,513,514,515],sigma_14:397,sigma_:403,sigma_c:400,sigma_cc:[388,400],sigma_h:414,sigma_i:[413,441],sigma_ii:474,sigma_ij:[441,474],sigma_j:441,sigma_max:409,sigma_ss:400,sign:[3,6,12,189,197,293,326,349,354,439,495,504,509,514],signal:486,signicantli:17,signifi:[3,70,80,87,99,104,115,117,126,158,173,175],signific:[7,12,18,95,246,267,270,308,329,342,412,415,436,439,441,517],significantli:[1,6,40,153,176,256,269,312,412,468],sij:219,sikandar:17,silbert:416,silent:[206,485,498],silicon:[411,436,468,487],sill:446,silver:206,sim:[9,452],similar:[5,6,7,8,9,10,11,12,17,18,41,42,43,47,62,72,77,96,124,127,128,153,154,178,179,202,203,206,209,210,211,218,220,226,243,244,246,253,259,260,270,302,303,308,312,313,333,336,346,347,349,351,372,377,378,380,388,391,392,406,410,412,416,432,433,441,442,446,447,456,469,473,484,489,494,496,501,503,505,508,514,515,517,519],similarli:[3,6,7,8,39,59,62,124,174,180,182,199,201,202,205,206,217,218,221,222,223,224,228,232,238,251,269,271,272,273,275,276,277,298,300,313,314,316,329,336,337,344,350,355,367,372,374,381,384,388,396,416,428,468,480,484,487,490,491,496,497,501,514,518],simluat:[6,40,206,329,433,488,489],simlul:[313,341],simmul:344,simpl:[],simpler:[8,11,43,206,313],simplest:[3,8,9,41,70,80,87,99,104,115,117,126,128,158,173,175,304,508],simpli:[1,3,6,8,9,11,12,14,17,70,76,80,87,97,99,104,106,115,117,125,126,131,158,173,175,181,182,206,209,210,211,218,221,222,223,224,228,230,232,236,243,252,254,259,269,296,300,311,313,314,337,343,344,371,372,374,380,381,386,396,405,419,428,436,441,484,485,492,495,502,505,513,514],simplif:412,simplifi:[9,216,312,439],simplist:11,simualt:372,simul:[],simulatan:386,simulation_nam:450,simulationub:457,simulatoin:[12,488],simult:386,simultan:[6,7,15,16,232],sin:[232,266,346,349,351,447,487,490,497,514],sinc:[0,1,2,3,6,8,9,10,11,12,13,15,16,21,22,33,40,42,45,55,62,64,67,71,76,78,98,99,122,128,130,154,156,158,168,176,180,181,183,184,186,191,202,203,205,206,209,210,211,212,213,216,217,218,219,220,221,222,223,224,225,226,229,230,231,232,233,237,238,245,247,249,252,253,255,256,266,269,271,272,273,274,275,276,277,280,283,290,294,296,299,301,302,308,311,313,318,328,329,337,341,342,343,344,346,347,350,351,352,353,355,356,370,372,379,380,381,382,385,386,387,388,392,395,396,397,398,400,401,405,406,409,410,411,415,416,417,419,420,421,422,423,424,426,427,428,429,430,431,432,433,434,435,436,437,438,439,441,444,447,448,449,450,451,452,457,458,459,468,469,470,471,472,475,479,482,484,485,487,488,490,492,495,496,497,498,499,501,505,508,509,513,514,515,518],sinclair:[7,410,467],sine:447,singapor:152,singh:387,singl:[1,2,3,6,7,8,9,10,11,12,14,15,16,17,18,41,42,43,60,62,64,66,69,70,72,74,80,82,85,87,96,97,99,103,104,114,115,117,120,125,126,127,128,129,131,154,158,173,175,176,178,202,203,205,206,207,209,214,217,218,219,221,222,223,224,226,228,229,230,233,236,242,244,249,256,259,266,269,270,274,283,296,298,299,301,312,313,314,316,319,325,329,331,341,343,346,347,349,351,352,354,371,372,377,380,381,382,383,385,386,387,388,392,397,399,401,409,410,411,412,413,416,417,418,419,420,421,436,437,438,439,443,444,447,448,449,450,451,457,458,459,468,470,471,472,475,482,483,485,487,494,495,496,497,498,499,500,501,502,504,514,518,519],singleel:392,singular:[432,433,434],sinnott:[305,388,401],sinusoid:[178,232,346,347,349,351],sio2:475,sio:401,sirk:[153,466],sisic:[411,468,470,472,475],sisisi:[411,468,470,471,472,475],sister:399,sit:[295,487],site:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,71,75,96,250,256,257,316,372,387,392,402,410,414,424,428,432,444,473],situat:[176,230,245,256,269,296,314,378,392],sival:177,six:[6,145,150,152,219,221,443,447],sixth:443,sixthpow:[398,441],size:[],size_restart:8,sizei:422,sizej:422,sizescal:3,sizex:277,sjplimp:[0,7,11,12],sjtu:9,skew:[3,6,61,62,180,205,232,269,487,490],skin:[3,12,40,64,78,127,179,181,245,283,313,317,341,382,383,386,422,445,505,513],skip:[12,16,33,191,298,299,370,380,385,423,487,492,495,504,514],skyblu:206,slab:[3,6,76,166,222,299,326,371,372,382,441],slateblu:206,slategrai:206,slater:[],sleight:55,slepoi:436,slice:[],slider:11,slight:[3,12,341],slightli:[1,6,40,41,202,203,204,205,207,308,313,372,388,402,424,428,449,470,472,475,482,495,517],sligthli:405,sliozberg:466,slip:[3,209,329,345,351],sllod:[],slope:[6,114,115,337,339,344,403,514],slot:[1,154],slow:[3,6,7,12,40,246,250,253,254,267,269,329,336,371,381,386,441,457,496,506,508,515],slower:[1,17,40,254,372,386,392],slowest:[341,484],slowli:[12,76,226,345,379,439,459,489],slurm:12,slurm_localid:12,sm3:177,small:[],smallbig:3,smaller:[1,3,6,12,16,17,40,57,62,64,76,131,180,202,203,205,206,216,233,237,245,256,295,313,329,339,354,371,372,377,386,441,467,474,476,487,494,496,514,519],smallest:[3,43,75,76,77,176,267,310,514],smallint:3,smallq:372,smallsmal:[3,12],smart:247,smd:[],smd_contact_radiu:[],smd_lammps_userguid:9,smd_mass_dens:[],smd_user_guid:[],smi:[3,386],smirichinski:9,smit:245,smith:444,smmoth:497,smooth:[],smoother:178,smoothli:[55,152,337,344,397,417,430,432,435,472,479],smpd:12,smtb:[9,457],smtbq:[],smulat:439,sn2:177,sn4:177,sna:[],snad:[],snap:[],snapcoeff:458,snaphot:492,snapparam:458,snapshot:[],snav:[],snb:17,snow:206,soc:418,socket:[12,17,18,252,484],soderlind:439,soft:[],softer:[346,350],softwar:[1,6,9,11,12,14,15,16,17,18,19,176,250,298,314],sole:[227,228,381,447,454,456],solid:[4,6,7,9,10,40,41,42,62,75,78,100,114,153,176,215,226,230,232,237,259,269,271,272,273,275,276,277,294,295,300,313,336,339,372,374,393,426,439,446,454,456,487],solut:[3,6,13,176,230,237,267,311,316,329,350,514],solv:[3,9,12,18,256,304,316,339,341,372,378,434],solvat:[4,10,178],solvent:[4,7,9,13,64,76,179,181,226,242,246,247,253,269,311,313,326,329,337,344,345,397,400,402,403,414,424,433,434,451,467,487,497],solver:[],some:[1,2,3,4,6,7,8,9,11,12,13,16,17,18,40,41,42,56,64,66,76,113,116,119,125,129,131,156,157,158,159,170,171,172,176,178,181,186,189,197,200,202,203,205,206,209,210,211,214,216,217,218,219,221,222,223,224,226,228,229,230,231,242,245,267,269,270,299,301,302,304,306,313,318,330,336,341,342,343,345,346,352,369,370,371,372,377,378,379,380,381,382,383,386,389,391,392,399,402,410,412,419,422,439,441,449,450,467,469,480,482,484,485,486,487,489,492,493,494,495,496,497,499,501,504,505,509,513,514,515,516,519],somehow:3,someindex:353,someon:[7,379],someth:[2,3,7,8,11,12,62,230,269,346,349,351,382,419,485,494,509],sometim:[2,3,6,8,12,18,222,230,269,337,344,371,383],somewhat:[7,9,12,75,114,158,168,218,269,371],somewher:[17,270,412],soon:[3,43,216,229,242,245,250,449],sophist:[7,154],sorensen:501,sort:[3,13,16,40,76,202,203,206,207,250,381,382,386,409,488,489,518],sound:[140,256,267,319,464,465],soundspe:[464,465],sourc:[],source_integr:215,sourceforg:11,south:152,souza:337,space:[2,3,6,8,11,12,18,42,58,62,76,130,152,167,172,177,178,198,201,205,210,211,214,221,222,223,226,228,232,233,251,256,263,266,269,295,296,311,314,319,329,346,348,349,351,354,371,372,374,380,381,382,393,395,396,402,405,410,412,422,424,428,436,439,444,447,452,469,476,478,484,487,490,499,505,508,514,515],spahn:416,span:[2,12,38,76,210,211,222,251,313,371,387,388,392,401,410,413,420,421,436,437,438,443,447,458,468,470,471,472,475,481,482,490,491,514],spars:[76,198],spatial:[],spawn:250,spc:[],spcpu:505,speak:[17,329,336],spearot:[130,177,314],specfi:[12,119,251,490],speci:[],special:[],special_bond:[],specif:[1,2,3,4,6,7,8,9,12,13,15,16,17,18,22,29,33,41,42,43,51,66,76,120,125,127,128,158,160,163,176,178,186,191,202,203,205,206,207,209,210,211,214,215,218,219,221,222,223,224,226,229,231,242,243,245,246,250,256,264,299,301,302,305,313,336,341,342,346,352,356,372,379,381,386,388,391,392,404,410,415,416,419,420,421,436,439,441,449,450,451,467,468,473,474,484,487,488,492,493,494,496,497,503,504,505,513,514,515,517],specifi:[2,3,6,7,8,9,11,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,62,64,66,68,69,70,72,73,74,75,76,78,80,81,82,83,84,85,86,87,88,92,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,153,155,158,160,165,166,167,172,173,174,175,176,177,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,201,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,241,244,245,246,247,248,249,251,252,253,254,256,257,258,259,261,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,283,286,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,308,309,310,311,312,313,314,315,316,317,318,322,323,326,327,328,329,330,331,332,333,334,336,339,340,341,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,360,361,362,364,365,366,367,370,371,372,374,375,376,379,380,381,382,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,446,447,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,508,509,513,514,515,516,517,518,519],specifii:[247,256],speciti:496,spectral:[9,458],spectrum:[9,152,303,308],sped:[40,267],speed:[1,3,6,9,12,14,15,16,17,18,19,40,42,140,202,206,226,253,256,267,303,319,329,336,342,348,371,372,381,386,392,402,439,441,464,465,470,482,496,502],speedup:[1,18,372,496],spefici:[178,205,418],speicifi:[],spell:490,spellmey:[6,184,499],spend:[12,217],spent:[1,12,13,15,482,501,506],sperhic:487,sph:[],sph_lammps_userguid:9,sph_user_guid:[],sphere1:256,sphere:[],spheric:[],spheriod:[3,6],spherioid:329,spheroid:[6,269,286,313,329],spike:128,spin:[41,125,203,347,389,412,487],spirit:[7,220],spit:3,spline:[],split:[1,3,6,9,11,12,18,42,218,222,226,254,269,317,349,371,386,408,474,481,484,496],splittol:[6,371],sppark:6,spread:[1,6,12,354,495],spring:[],springer:318,springgreen:206,sptial:76,sputter:233,sq2:[3,374],sqrt:[2,3,43,62,88,98,118,245,253,255,294,329,345,347,374,400,406,410,414,416,436,441,514],squar:[],squeez:[230,251,433,434],squibb:[5,7],sr2:177,src:[0,1,3,4,6,7,8,9,11,12,14,15,16,17,18,19,176,202,243,316,439,509],srd:[],srmax:76,srmin:76,srolovitz:410,srp:[],srtio:457,srun:12,ssa:317,ssao:[205,518],stabil:[6,9,253,269,392,449,473],stabl:[6,67,140,256,274,312,319,392,508],stabli:246,stack:[3,8,75],stage:[3,8,96,209,243,268,307,352,381,482,501,514],stagger:[1,2,3,206,372,494,503,514],stai:[3,14,17,210,211,267,285,303,386,487],stamp:[209,336,488],stamped:12,stan:[9,17],stand:[0,6,7,9,12,13,309,449,450,485],standard:[],stanford:9,starikov:341,start:[],start_6:414,start_7:496,startstep:514,stat:[12,55,182,294,308,379],statcoul:513,statcoulomb:513,state:[],statement:[3,485,486,509],stationari:[],statist:[3,6,12,34,40,42,53,67,194,220,227,228,229,246,247,253,254,255,298,299,303,308,313,316,329,340,341,342,363,379,381,388,406,409,416,433,478,482,489,495,497,501,504,505],statu:[3,12,55,63,133,182,231,236,254,401,486,501],statvolt:513,std:12,stdin:[3,12,370],steadi:[6,267,274,303],steelblu:206,steep:469,steepest:[7,378],steer:[7,9,231,234,318],stegailov:341,steinhardt:[66,118],steinhaus:508,stencil:[3,256,371],step:[1,2,3,6,8,9,11,12,13,14,15,16,17,18,19,40,76,100,107,108,122,128,129,140,153,164,174,176,202,204,205,206,207,209,210,211,215,216,218,219,220,221,222,223,224,226,227,228,229,230,232,233,236,237,242,243,245,247,250,251,254,267,283,294,295,299,301,302,303,304,305,306,314,316,317,318,319,329,331,334,335,336,337,338,339,340,341,342,343,344,351,352,354,370,371,377,379,381,382,406,414,418,436,439,449,450,457,482,484,485,489,491,492,494,495,496,501,502,504,505,508,514,519],stepani:318,stepwis:96,stesman:336,steve:[0,5,7,13],steven:229,stiff:[6,41,52,227,228,295,296,379,446,508],stile:403,still:[1,3,6,9,11,12,13,14,17,38,39,42,59,64,76,101,120,128,176,182,198,199,200,202,203,206,210,211,226,249,253,283,304,308,329,341,354,367,371,372,377,398,410,415,416,419,423,433,445,449,451,459,467,487,489,495,509],stilling:[3,5,7,9,15,97,154,411,438,447,467,468,475,499],stipul:250,stl:[9,76,322,325],stl_surf:325,stochast:[4,7,9,209,247,317,329,336,351,408,409],stockmay:41,stoddard:405,stoichiometri:457,stoke:[256,345],stokesian:9,stoll:[253,255],stone:[9,19,372,405],stop:[],stopstep:514,stopthresh:[42,226],storag:[3,12,15,343,386,499],store:[],store_st:330,storm:12,stouch:7,str:514,straatsma:6,straddl:[3,62,64,168,251,313,326,352,487,491,497],straight:313,straightforward:[4,13,412,508],strain:[],strang:[198,205,514],strategi:[],stratford:256,strcmp:354,stream:[3,6,124,153,158,161,162,205,215,232,246,247,253,254,290,299,308,329,515],streamlin:[12,495],streitz:[],streiz:402,strength:[3,9,152,172,183,205,312,346,350,419,450,451,499],stress:[],stretch:[3,55,62,129,227,318],strict:458,strictli:[6,42,198,226,267,303,336,487],stride2:514,stride:[206,247,494,503,514],strietz:402,strike:233,string:[2,3,6,11,12,42,178,202,203,204,206,218,219,220,221,222,223,224,226,245,301,314,354,373,385,436,447,448,449,458,483,485,487,497,498,504,505,514],strip:514,strong:[10,304,388],stronger:6,strongest:[433,434],strongli:[1,6,13,233,313,316,341,439,508],structrur:3,structur:[],structured_point:314,strucur:78,stuart:[304,305,388,401,457,467],stub:12,stuck:230,student:298,studi:[6,116,302,426,457],studio:[],stukowski:[216,410],style1:[33,51,191,362,419,487],style2:[33,51,191,362,419,487],style:[],style_nam:[269,270],stylecomput:457,stylist:8,sub1:498,sub:[1,3,4,6,7,8,9,11,12,13,18,33,37,40,41,42,43,51,56,61,64,66,68,72,73,84,96,100,102,119,152,172,180,191,197,204,205,206,210,211,226,230,232,269,270,274,303,308,313,316,317,341,342,350,352,362,365,374,376,386,391,401,409,415,416,418,419,422,441,449,450,451,457,473,474,479,484,487,490,496,504],sub_styl:[68,73,84,102],subbox:[129,205,206],subcutoff:422,subdirectori:[],subdivis:256,subdomain:256,subequ:11,subgroup:[202,518],subinterv:204,subject:[6,42,181,226,473],submit:[],subramaniyan:13,subroutin:386,subscript:[11,341,355,413,475,514],subsequ:[3,6,11,12,42,62,114,179,206,220,226,230,245,336,341,342,343,374,385,410,467,485,487,488,494,497,498,507,514,519],subset:[6,11,12,16,42,86,152,202,203,206,226,265,269,271,272,273,274,275,276,277,299,300,304,313,381,386,388,392,419,441,481,484,487,489,492,496,514],substanti:[6,16,468,496],substep:269,substitut:[1,2,3,12,202,252,302,381,385,412,441,485,498,514],substract:402,substrat:[180,230,269,271,272,273,275,276,277,300,313,487],substyl:[432,496],subsystem:341,subtl:[105,107,108,247],subtleti:164,subtract:[3,6,55,66,76,87,100,105,108,113,114,116,124,153,155,156,157,158,159,160,161,162,164,165,166,167,168,170,171,202,203,209,218,245,246,249,253,254,255,257,261,265,290,297,313,352,382,431,487,497,505,514,515],succe:12,succeed:[219,220],succes:220,succesfulli:3,success:[2,6,11,12,14,15,128,202,206,216,219,230,233,245,283,299,313,329,336,354,379,381,485,486,494,495,502],successfulli:[3,11,202,233,485,498],successulli:11,successv:492,sucessfulli:3,sudden:36,suddenli:350,sudo:[11,12],sufac:43,suffer:[16,17,18,344,350,386],suffici:[2,3,6,7,17,18,42,64,76,204,222,226,267,269,295,329,336,343,346,354,423,441,487,508],suffix2:12,suffix:[],suggest:[0,6,7,12,267,303,485,508],suit:[7,13,211,256,412],suitabl:[4,12,13,17,55,96,202,229,302,333,392,399,416,432,436,449,450,482,501],sukumaran:220,sum:[3,6,8,12,41,75,76,81,86,92,97,98,99,101,105,109,114,116,118,121,122,124,128,129,135,151,152,153,155,158,159,160,161,164,165,166,167,168,170,172,174,175,176,218,219,221,222,223,224,233,243,246,253,254,259,294,295,299,303,308,313,314,318,328,339,341,343,346,350,352,371,372,379,391,402,406,412,413,422,424,427,436,449,450,458,474,485,505,508,513,514,515],summar:[6,413,457],summari:[],summat:[6,9,43,75,97,118,371,372,396,402,410,411,424,428,439,457,468,470,471,472,475],summer:[3,13,222,449,450],sumsq:129,sun:[21,44,185,355,398,441,450],sunderland:17,sup:[303,308,401,457,508],supercomput:[12,18,485],superpos:[419,467],superposit:7,supinski:439,supplement:[247,449,450],supplementari:[231,415,451],suppli:[9,12,198,245,267,341],support:[1,3,4,6,7,8,9,11,12,13,14,15,16,17,18,19,41,42,43,64,96,97,113,119,202,203,204,205,206,207,210,211,212,213,218,226,229,230,231,238,243,247,248,251,253,254,255,256,264,267,269,271,272,273,274,275,276,277,288,289,290,291,292,294,295,300,303,305,307,312,313,315,319,320,321,322,323,325,326,328,332,333,334,335,339,344,346,350,369,370,371,372,378,379,380,386,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,473,474,475,477,478,479,480,484,488,489,490,494,496,497,498,500,501,502,507,508,513,514,518,519],suppos:[3,8,413,509,514],suppress:[6,12,176],surc:8,sure:[6,8,11,13,14,198,210,211,230,299,313,316,351,410,469,509],surf:[8,146,179],surfac:[2,3,4,6,8,9,41,43,60,75,130,146,152,176,178,181,205,209,233,242,251,256,259,294,305,312,322,325,326,329,336,341,346,350,351,381,392,419,433,434,439,455,457,474,478,484,490],surface_exterior:8,surface_interior:8,surface_mov:341,surfact:[403,414],surpris:412,surrog:[],surround:[38,57,75,178,198,206,230,241,269,271,272,273,275,276,277,294,300,313,469,508],suspect:3,suspens:[433,434],sustain:[202,203,230,416],suzuki:[269,313],svg:6,svn:[7,11,12],sw_exampl:448,swamp:313,swap:[],swegat:340,swiggl:[3,266,346,349,351,490,514],swiler:[152,458],switch7_section_start:414,switchflag:[152,458],swm4:508,swol:54,swope:6,sxx:206,sy0302:9,symbol:[6,12,130,177,310,392,412,458],symmetr:[6,75,96,104,124,143,144,145,148,149,150,153,210,211,230,269,270,337,344,387,399,405,410,470,472,514],symmetri:[3,5,6,7,8,66,67,75,101,118,180,202,203,267,294,355,372,387,487,508],sync:[3,6,506],synchron:[1,247,381,506],synechococcu:7,syntax:[],sysdim:295,sysmt:17,sysstem:392,syst:457,system:[],system_:296,systemat:[6,9,220,245,253,439],systemx:3,t10:502,t11:502,t12:502,t13:502,t14:502,t15:502,t3e:12,t_chain:3,t_corr:3,t_correl:482,t_dephas:482,t_e:341,t_e_min:341,t_equil:[338,339],t_event:[3,482,501],t_hi:501,t_infil:341,t_init:[303,341],t_iter:3,t_j:29,t_lb:256,t_lo:501,t_order:3,t_oufil:341,t_out:341,t_outfil:341,t_qm:303,t_switch:[338,339],t_target:394,ta06a:458,ta4:439,ta5:177,ta6:439,tab:[2,487],tabbernor:130,tabinn:441,tabul:[3,7,13,22,37,38,45,56,57,58,69,76,85,103,198,241,329,371,387,392,393,395,396,397,398,399,402,410,412,424,428,435,444,447,450,452,467,469,470,476,489],tabular:447,tabulate_long_rang:450,tad:[],tadmor:9,tag:[215,508],tagint:3,tail:[3,96,97,119,122,172,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,405,406,409,410,411,412,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,444,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,475,477,478,479,480,505,514],tailor:[76,342],tait:[9,464,465],taitwat:[],take:[1,2,3,6,11,12,17,20,21,22,23,24,25,26,27,28,29,30,31,32,35,38,40,41,42,43,44,45,46,47,48,49,50,52,54,55,57,62,82,96,98,100,121,124,125,128,129,153,155,165,172,176,182,184,185,186,187,188,189,190,192,193,195,196,198,202,205,206,210,211,212,225,226,230,232,239,244,248,252,253,254,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,300,302,305,313,315,316,326,327,328,329,331,332,333,334,342,345,349,352,355,356,357,358,360,361,364,366,371,372,376,386,387,388,390,392,393,394,395,396,397,398,399,400,401,402,405,406,410,411,413,414,415,416,417,418,424,425,426,427,428,429,430,431,432,433,437,439,442,443,444,446,449,450,451,452,457,459,466,468,469,470,471,472,473,475,477,478,479,481,485,488,490,495,496,497,502,504,505,506,514],taken:[6,62,160,178,201,229,233,245,246,247,253,254,255,256,299,303,306,341,360,410,412,415,468,475,482,496,497],talk:[6,7],talli:[],tan:[206,514],tandem:[16,313],tang:439,tangent:[43,268],tangenti:[6,120,329,347,351,416],tanh:341,tantalum:[4,439,458],taper:[3,306,435],tar:12,tarbal:[0,8,11,12],target:[3,6,7,8,11,12,17,40,42,206,214,226,230,231,233,245,246,247,253,254,255,269,270,271,272,273,274,275,276,277,288,289,290,291,292,296,300,303,308,313,318,327,332,333,334,335,340,341,344,345,348,369,372,394,406,482,493,495,515],target_fil:340,task:[1,6,7,10,12,13,14,15,16,17,18,55,206,250,296,342,386,485,506],taskset:16,tatb:[4,309],tatom:508,tau:[3,167,220,253,254,256,269,300,313,332,333,338,339,341,507,513],tau_1:246,tau_k:246,tau_n_k:246,tb3:177,tbead:170,tbp:392,tchain:[269,270,274,290,291,313],tcl:308,tcom:254,tcsh:[11,12,399],tdamp:[253,269,270,274,313,332,333],tdephas:482,tdrude:[163,236,254,508],teal:206,tech:[7,9,13],technic:[6,7,9,256,306,329,450],techniqu:[6,7,9,96,209,230,267,303,313,345,348,372,441,469,508],technolgi:9,technolog:[9,14,19,250],tediou:302,tell:[2,6,11,12,37,56,197,209,295,365,382,449,450,467,485,487,489,508],telsa:17,temeperatur:11,temp:[],temp_drud:508,temp_eff:108,tempcom:[156,157,171],temper:[],temperar:296,temperatur:[],temperature_definit:215,tempfix:502,templ:[7,9,18],templat:[3,8,13,17,19,41,178,179,181,233,245,299,313,316,380,487],templeton2010:215,templeton2011:215,templeton:[9,215],tempor:246,temporari:[2,3,494],temporarili:[198,312,500,501],ten:14,tend:[29,269,294],tensil:[7,232],tensor:[3,6,8,66,91,92,98,99,100,104,117,124,139,142,143,144,145,148,149,150,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,230,256,259,269,270,274,298,300,313,344,371,372,380,412,433,434,439,454,456,505,514],tenth:[139,210,370],term:[0,1,3,5,6,7,8,9,12,20,21,22,27,38,41,46,47,64,96,97,98,100,122,124,153,154,156,157,166,171,172,185,186,187,198,206,210,211,217,219,221,224,232,238,246,247,248,253,254,255,256,268,269,270,271,272,273,274,275,276,277,288,289,290,292,296,300,303,312,313,327,332,333,334,341,343,345,347,355,356,366,371,379,382,387,388,392,393,394,395,396,397,398,400,401,402,403,404,405,406,407,408,410,411,412,413,415,416,417,424,428,431,432,433,434,436,437,438,439,441,442,444,451,457,466,468,470,471,472,475,478,496,497,499,505,508],termin:[130,269,379,381,454,456,486,495],termostat:333,terrel:378,terri:7,tersoff:[],tersoff_1:[470,471,472],tersoff_2:[470,471,472],tersoff_mod:471,tertiari:190,tessel:[9,176],test:[],test_descriptor_str:3,testf:198,testu:198,tether:[6,311,318,326,328,339,414],tetot:[9,457],tex:8,texa:446,texas_holdem:312,text:[2,3,4,6,7,8,12,13,38,42,57,198,202,203,205,206,209,215,218,219,220,221,222,223,224,226,231,241,250,301,340,341,353,372,374,381,410,413,423,436,458,469,483,487,488,504,509,514,516,517],textur:17,tfac_insert:245,tfactor:[3,206],tfinal:514,tfix:312,tflag:205,tfmc:[],th4:177,than:[1,2,3,6,8,9,11,12,13,14,15,16,17,18,27,38,40,41,42,43,57,60,61,62,64,66,72,76,81,95,97,101,116,118,120,124,127,128,131,153,176,179,180,181,187,198,201,202,204,206,209,214,216,218,221,222,223,224,226,227,228,229,230,232,233,234,237,241,242,245,246,247,248,251,252,253,256,267,294,295,299,300,301,303,304,306,308,311,312,313,314,317,318,319,325,326,327,329,333,334,336,337,341,344,345,346,347,348,349,350,351,352,354,371,372,377,378,379,380,381,382,383,386,388,391,392,393,395,396,397,410,412,415,416,422,433,434,436,441,449,450,451,457,459,466,467,468,469,472,474,476,478,479,482,483,484,485,487,488,489,490,491,492,495,496,499,501,502,504,514,515,517],thank:[250,470,472],thb:450,thb_cutoff:450,thb_cutoff_sq:[449,450],thei:[0,1,2,3,4,6,7,8,11,12,13,15,16,17,20,21,23,24,25,26,27,28,29,30,31,32,35,37,38,40,41,42,43,44,46,47,48,49,50,52,54,55,56,57,60,62,64,66,67,70,72,75,76,79,80,87,88,91,93,96,97,98,99,100,104,114,115,117,119,120,121,124,126,127,128,129,131,152,155,156,158,160,161,164,165,171,173,175,176,178,180,181,182,184,185,187,188,189,190,192,193,195,196,197,198,202,203,205,206,209,210,211,212,214,217,218,219,221,222,223,224,225,226,227,228,229,230,232,233,238,239,244,245,246,248,249,250,253,254,256,259,266,269,271,272,273,274,275,276,277,278,279,280,281,286,288,289,290,292,298,299,300,301,302,304,305,312,313,314,315,316,329,330,332,333,334,336,340,341,343,344,345,347,349,350,352,353,354,355,357,358,359,360,361,364,365,366,369,371,372,374,376,378,379,380,381,382,385,386,387,388,390,391,392,393,394,395,396,397,398,399,400,401,402,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,422,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,442,443,444,446,447,449,450,451,452,457,458,459,466,467,468,469,470,471,472,473,474,475,476,477,478,479,483,485,487,488,489,490,491,492,496,497,499,500,505,508,509,514,517,518],them:[1,2,3,6,7,8,9,11,12,13,14,17,40,41,42,55,62,76,100,114,119,126,129,131,154,180,185,202,205,206,207,217,218,219,221,222,223,224,226,229,230,232,242,250,253,254,265,269,271,272,273,274,275,276,277,288,289,292,294,300,302,310,311,312,313,316,329,332,333,334,336,340,341,343,347,348,349,351,352,355,372,374,380,381,382,386,387,392,399,410,413,415,419,422,441,451,459,473,474,482,485,487,494,499,502,508,509,514,515],themselv:[6,9,11,181,210,211,226,254,371,372,381,383,387,392,402,410,432,436,437,438,458,514],theor:336,theorem:[246,253,317,392,408],theoret:[116,250,303,468],theori:[3,6,9,12,41,152,215,231,247,269,295,371,372,392,439,478,501],thereaft:[76,261,297,313,337,344,485],therebi:[342,433,434],therefor:[3,6,12,67,96,163,236,245,254,256,316,336,372,404,448,450,468,473,496,508],therein:[6,436],thereof:96,thermal:[],thermo:[],thermo_modifi:[],thermo_p:[3,66,121,485,505],thermo_press:[66,124,230,236,269,271,272,273,274,275,276,277,300,504,505,508],thermo_styl:[],thermo_temp:[66,124,155,229,230,245,269,271,272,273,274,275,276,277,288,289,290,292,295,300,332,333,334,504,505,508],thermoberendsen:6,thermochem:513,thermochemistri:412,thermodyam:[505,513],thermodyanm:[66,229,329,352,496],thermodynam:[],thermophys:441,thermost:[6,160,214,231,236,254,348,508],thermostat:[],thermostatequ:6,thesi:[371,372,433,448],thess:393,theta0:[20,21,24,26,27,28,32,33,35,36,152,187,312,364],theta0max:152,theta10:392,theta1:[185,355,392],theta2:[185,355,392],theta3:[355,392],theta4:392,theta5:392,theta6:392,theta7:392,theta8:392,theta9:392,theta:[3,6,26,27,37,38,39,66,69,86,101,118,152,177,178,187,199,201,205,248,308,312,341,355,364,418,447,471,487,490,497],theta_0:443,theta_:[364,392],theta_c:418,theta_ijk:392,theta_ijl:355,theta_jik:[437,438],theta_pi:392,theta_sigma:392,thex:304,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,436,437,438,439,440,441,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,508,509,510,511,512,513,514,515,516,517,518,519],thick:[76,130,205,222,490],thie:122,thijss:336,thin:[128,205],thing:[3,6,11,12,55,72,76,230,269,300,313,329,484,485,489,509,514],think:[3,6,7,8,11,13,206,313,352,357,361,374,379,419,449,450,469,485,489,492,514],third:[6,9,12,29,100,146,152,153,176,218,219,221,222,223,224,246,310,326,327,341,401,413,436,443,473,475,482,483,485,487,490],thirumalai:190,thistl:206,tho:411,thole:[],thompson:[0,5,7,9,13,124,152,153,304,374,458],thoroughli:[],those:[1,2,3,5,6,7,8,9,10,12,13,17,18,20,21,23,24,25,26,27,28,29,30,31,32,33,35,38,40,41,43,44,46,47,48,49,50,51,52,54,55,57,64,76,77,82,96,100,101,118,120,121,122,124,128,152,153,155,158,165,168,176,178,182,184,185,187,188,189,190,191,192,193,195,196,198,201,202,203,205,206,216,217,218,219,222,223,224,230,232,233,242,248,250,251,252,253,259,266,268,269,271,272,273,274,275,276,277,278,279,286,288,289,290,292,299,302,305,313,331,338,339,343,347,348,349,352,353,355,357,358,360,361,362,364,366,371,372,379,381,382,386,387,388,390,393,394,395,396,397,398,399,400,401,402,405,406,410,411,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,436,437,441,442,443,444,446,449,450,451,452,458,459,467,468,469,470,471,472,473,475,477,478,479,482,484,485,487,489,490,491,492,494,496,497,499,501,504,505,506,508,509,514,518,519],though:[6,8,12,40,41,66,76,100,115,178,199,202,206,216,222,227,228,230,232,237,270,311,313,315,325,337,344,354,367,371,374,381,406,409,410,412,413,415,416,432,433,441,475,482,487,489,490,495,499,506,514],thought:[161,253,290,313,345,346,378,416,423,508],thread:[1,3,9,12,16,17,18,250,342,369,386,500,506],threads_per_atom:3,three:[1,3,6,55,66,79,96,100,101,116,129,130,142,152,156,177,178,190,209,229,230,235,257,269,274,295,300,304,313,329,336,338,341,359,360,364,371,372,380,386,387,388,392,410,411,413,415,416,420,423,436,437,438,439,443,447,450,451,457,458,468,470,471,472,475,485,487,490,514],threebodi:468,thresh:[42,202,203,205,206,226,485],threshhold:[3,42,205,226,352,485],threshold:[3,42,95,176,206,226,294,382,450,482,501],thrid:485,through:[3,6,7,9,11,12,66,178,182,202,203,207,230,243,245,250,251,256,258,259,260,269,270,296,304,322,336,341,346,350,370,377,388,408,411,412,416,422,424,439,452,457,459,466,473,482,485,488,498,504,508],throughout:[6,16,128,130,342,386,439,487],thru:[3,6,7,11,12,70,79,80,87,88,98,99,104,114,115,116,117,173,201,202,206,221,266,329,349,354,370,379,385,490],thrust:1,thu:[1,2,3,6,8,11,12,18,33,38,40,42,43,51,62,64,66,67,70,71,75,76,77,78,80,82,87,88,97,99,100,101,104,114,115,117,118,120,121,125,126,127,128,129,152,153,154,158,161,166,168,173,174,175,178,180,181,182,186,191,197,198,201,202,203,205,206,207,209,210,211,212,213,217,218,219,221,222,223,224,225,226,227,228,229,230,232,233,236,238,242,246,247,248,249,250,251,253,254,259,264,269,274,285,294,300,302,304,308,311,313,314,315,316,318,322,323,326,327,328,329,330,332,333,334,336,337,340,341,343,344,345,346,349,350,351,352,354,355,362,371,372,374,377,379,380,381,385,386,387,388,391,392,393,394,395,396,397,398,399,400,401,402,406,408,409,410,411,412,413,414,415,416,419,420,421,422,424,428,432,433,434,436,437,438,439,441,442,444,446,447,448,449,450,451,457,458,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,479,482,484,485,487,488,489,490,491,492,494,495,496,497,499,501,502,503,504,505,506,508,513,514,515,517,518],thumb:[8,17,178,201,266,313,386,400,490,496],thz:308,ti2:177,ti3:177,ti4:177,tidi:509,tight:[9,392,457],tightli:302,tij:405,tildeslei:[29,96,405],tile:[3,6,42,65,178,226,422,474,484,514],tilt:[3,6,60,61,62,76,166,180,202,203,206,222,230,232,233,248,267,269,270,294,303,372,374,475,487,490,505],time:[],time_integr:215,timedelta:219,timelin:5,timer:[],timescal:[3,217,218,219,221,222,223,224,267,303,308,412,482,496],timespan:[253,254,269,300,313,332,333],timestamp:[3,492],timestep:[],timesteppnig:316,timothi:9,tin:[401,402],tine:[],tinfoil:372,tini:[77,128,178,379,392,515],tinker:7,tio2:457,tio:457,tip3p:[],tip4:6,tip4p:[],tip:[],tirrel:346,titan:15,titer:313,titl:[218,219,220,221,222,223,224,301,450,509],title1:[218,219,220,221,222,223,224],title2:[218,219,220,221,222,223,224],title3:[218,219,221,222,223,224],tji:405,tl1:177,tl3:177,tlbr_msw:447,tlo:501,tloop:[269,270,274],tlsph:[],tlsph_defgrad:[],tlsph_strain:[],tlsph_strain_rat:[],tlsph_stress:[],tm3:177,tmax:[3,237,501],tmd:[],tmd_dump_fil:340,tmdatom:340,tmin:237,tmm:9,tmp1:[221,224,498],tmp2:[221,224,498],tmp3:498,tmp:[6,12,42,70,72,74,80,87,99,104,115,117,126,128,158,173,175,202,203,205,206,226,302,313,337,344,385,494,498,514],tobia:[269,270,313],todd:290,toe:172,toff:[380,487],togeth:[2,3,6,9,11,12,17,40,42,76,127,153,158,172,178,179,202,203,210,211,218,221,226,230,236,247,254,269,300,313,318,323,326,329,347,351,352,414,419,485,490,495,508,518],toggl:[62,182,494],togheth:[],togther:3,tol:[316,329,371,468],toler:[3,230,304,305,306,316,329,379,381,468,482,501],toma:9,tomato:206,tong:[9,13],too:[1,3,6,7,40,42,67,71,75,77,78,82,97,101,118,152,166,179,181,205,220,226,227,228,230,233,242,245,249,269,295,300,304,308,310,316,329,336,337,341,344,372,381,382,386,406,422,482,490,501,504,508,514],took:[76,459],tool:[],toolkit:[6,7,13,14,15,203],top:[0,3,8,9,11,12,13,62,161,176,201,209,225,232,249,256,268,290,314,348,349,351,381,386,449,450,458,487,491,497,509],top_group:323,top_veloc:323,topic:[514,518],toplog:[3,484],topolgi:41,topolog:[2,3,6,7,8,12,13,37,40,41,56,96,120,127,181,182,197,206,227,228,250,298,365,380,419,441,484,487,488,489,491,492,499],topwal:225,torder:313,torqu:[],torsion:[6,185,186,197,388,449,450],torsion_flag:388,tosi:393,tot:[308,457],total:[3,6,11,12,14,15,16,17,18,40,42,43,66,68,73,76,84,87,88,89,90,97,98,99,100,102,109,113,114,115,116,119,121,122,129,134,135,136,137,139,140,141,142,143,144,145,152,153,155,158,159,160,161,164,165,166,167,168,170,172,174,175,176,202,209,212,213,216,218,220,221,222,223,225,226,228,234,236,238,243,244,245,246,251,253,254,255,256,257,259,267,269,270,274,285,295,296,298,299,302,303,308,310,312,313,314,315,318,320,323,326,328,337,338,339,341,344,346,350,371,379,380,381,382,383,386,387,389,391,392,401,410,412,416,436,437,438,439,447,449,450,454,457,458,474,482,484,485,487,489,495,496,501,502,505,506,514],touch:[12,251,347,489],toukmaji:[372,405],toward:[9,29,176,205,209,233,234,251,256,268,274,294,311,326,340,342,364,381],toxvaerd:429,tpa:386,tparam:313,tpartial:158,tpc:386,tpcpu:505,tperiod:313,tptask:[16,386],tqx:[125,202,203,331],tqy:[125,202,203,331],tqz:[125,202,203,331],trace:412,track:[3,7,12,228,232,256,341,351,482,487,493,501,505,514],track_displac:215,tracker:250,trade:[6,12,305,371,372,402,424,428,496,501],tradeoff:441,tradit:[6,9,372],traffic:12,trail:[2,22,45,82,96,128,172,182,186,206,210,211,313,356,376,380,381,399,413,436,450,458,481,487,495,497],train:450,traingul:325,traj:231,traj_titl:450,trajectori:[3,6,12,40,96,202,250,269,271,272,273,275,276,277,278,279,281,282,284,286,287,288,289,290,291,292,296,313,316,318,322,342,351,406,441,450,489,497,502,508,513],tran:[189,190],transfer:[1,6,16,215,236,250,252,337,341,344,371,386,392,439,508],transform:[],transit:[6,9,95,268,318,340,381,403,432,438,439,472,482,501],translat:[3,6,64,66,105,106,107,108,109,156,157,158,162,171,218,245,249,253,254,259,269,275,276,277,288,289,292,296,313,332,333,334,336,374,412,487,505],transmiss:250,transmit:[6,250],transpar:[14,17],transport:[215,341,460],transpos:12,trap:[3,6,100,174,219,251,343,514],trapezoid:[219,514],trate:[3,232,250],travel:329,treat:[2,3,6,8,9,17,41,43,76,91,93,94,131,153,156,160,171,182,200,218,219,221,224,233,244,270,295,298,299,313,329,341,343,350,354,370,371,379,380,382,391,404,412,413,415,418,422,437,438,439,451,474,487,490,492,495,497,508,514],treatment:[9,308,404],tree:[3,298,432],tref:409,tri:[],tri_surfac:[],trial:[233,245,389,496],triangl:[],triangleflag:487,triangul:[2,6,13,325,455],triangular:[6,43,91,125,230,287,325,455,487],tricki:[484,508],triclin:[],triflag:6,trigger:[3,11,12,65,95,226,229,245,379,445,480,505],trigon:25,trilinear:256,trilino:17,trim:[3,488],tringl:205,tripflag:449,tripl:[2,152,232,392,449,483,485],triplet:[3,34,37,39,411,443,447,468,470,471,472,475],trivial:[8,11,304],trj:450,trott:[7,9,14,17,152,458],troubl:[11,12],truli:8,truncat:[3,5,6,12,76,302,308,346,350,378,390,402,412,416,424,426,429,441,446,457,497],trung:15,tscale:[3,267,303],tschopp:71,tsige:396,tsrd:[329,351],tstart:[246,247,253,255,269,270,313,332,333,334,335,406,493],tstat:[],tstop:[246,247,253,255,269,270,313,332,333,334,335,406,493,501],tsuzuki:[78,475],tthi:139,ttm:[],ttm_mod:341,tucker:[152,458],tuckerman2006:[],tuckerman:[269,270,291,296,313,496],tune:[],tunnel:296,turkand:118,turn:[3,4,6,12,22,33,37,40,45,51,55,56,62,69,74,76,120,127,152,176,177,182,186,191,197,205,206,209,216,227,228,229,230,245,250,269,283,298,301,302,313,329,356,362,365,371,379,381,382,384,386,388,404,418,419,436,441,450,466,467,483,487,489,494,499,500,505,506,511,517],turquois:206,tutein:388,tutori:[],tweak:[12,178,250,386],twice:[3,6,16,17,66,97,184,206,209,210,211,230,266,269,306,317,386,419,485,487,494],twin:71,twist:[433,434],two:[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,22,38,40,42,43,45,55,57,60,62,64,66,69,72,74,76,81,82,85,96,97,101,103,114,119,120,125,126,127,128,129,130,152,154,156,160,161,163,164,166,172,176,177,178,179,181,186,201,202,203,204,205,206,209,210,211,216,217,218,219,221,222,223,224,226,227,228,229,230,233,236,242,245,246,247,249,251,252,253,254,256,259,268,269,270,274,294,295,296,299,300,302,303,304,308,310,313,318,326,329,336,337,339,341,344,347,350,352,354,356,366,371,372,374,376,377,379,380,381,384,386,387,388,389,391,392,393,394,395,396,399,400,401,402,404,405,406,409,410,411,412,413,415,416,419,422,423,424,428,432,433,434,436,439,441,444,447,448,449,450,451,453,457,458,459,466,467,468,470,471,472,473,474,475,478,479,481,482,484,485,487,488,489,490,491,494,497,499,500,501,502,504,505,508,513,514,515,516,517,518,519],two_temperatur:215,twobodi:[470,472,475],twogrid:3,twojmax:[152,458],twolevel:[3,484],txt2html:8,txt:[8,13,58,202,207,301,302,341,369,380,423,457,476,492,509,514],typcial:[42,226],type1:[82,130,177],type2:[82,130,177],type:[],typei:422,typej:422,typen:[82,130,177],typic:[1,2,3,6,7,8,9,10,11,12,13,14,15,16,17,18,29,40,41,42,46,47,56,60,62,64,66,75,76,95,96,113,119,131,140,172,178,179,181,202,203,204,205,206,209,210,211,212,214,215,218,220,226,227,228,229,230,232,233,238,242,243,245,248,254,269,283,295,298,299,302,304,306,312,313,316,319,321,329,336,344,345,351,371,374,378,379,380,381,382,383,386,397,399,400,402,414,415,418,419,423,424,428,433,434,436,441,451,454,456,467,469,472,482,483,485,487,488,489,490,496,499,501,502,504,509,513,514,517,519],typicali:12,tzou:341,u_cond:[89,90,240],u_f:256,u_i:[240,241],u_ij:447,u_mech:[89,90,240],u_prom:392,uberuaga:[268,381],ubiquit:[11,392],ucond:41,uhf:389,uiuc:[9,17],uloop:[3,296,381,385,514],ulpsh:[],ulsph:[],ulsph_num_neigh:[],ultim:501,ultra:176,umbrella:[],umech:41,umin:[26,27,49,50,187],unabl:[3,11,42,226],unaffect:[202,230,269,313,488,499,504],unalt:[210,211,283],unambigu:[76,222,475],unari:[354,514],unbalanc:3,unbias:[166,412],unbond:[228,487],unbroken:86,uncertainti:41,unchang:[62,230,233,268,269,271,272,273,275,276,277,285,300,313,487,488,491,497],uncharg:[41,372],uncom:[1,4],uncompress:[12,76,205],uncomput:[],uncorrel:[246,336,482],uncoupl:296,undefin:[3,12],under:[0,5,6,7,8,9,12,18,21,22,45,152,185,186,205,250,267,269,299,303,304,317,355,356,376,408,412,432,450,458,485,501,508],underestim:176,underflow:205,undergo:[6,95,96,114,166,246,253,254,269,318,329],undergon:[229,329],underli:[6,12,17,75,205,269,341,374],undermin:40,underpredict:6,underscor:[2,3,66,203,209,229,230,267,269,271,272,273,274,275,276,277,288,289,290,292,300,302,332,333,334,354,380,514],understand:[1,4,6,8,245,270,439],understood:[202,392],undesir:[62,230,232,269,313],undetermin:329,undisturb:[433,434],undo:[182,250],undump:[],unexpect:[3,493],unfix:[],unfix_flux:215,unfold:327,unfortun:[342,495,496],uniaxi:[3,156,274],uniform:[7,16,42,97,128,215,226,227,228,253,256,259,270,336,409,415,451,482,484,514,515],uniformli:[62,128,201,256,299,341,447,469,515],uninstal:12,uninterrupt:[216,233,245,266,267,269,271,272,273,274,275,276,277,288,289,290,291,292,302,303,313,318,328,331,339,341,347],union:[3,6,41,206,302,350,352,487,490],uniqu:[3,6,7,8,12,40,76,134,220,246,247,253,254,274,302,308,310,381,410,412,487,514,515],unit:[],unit_styl:3,uniti:[411,441,462],unitless:[67,71,75,76,126,183,218,222,223,232,245,267,269,303,347,379,389,416,444,446,468,470,471,472,475,513],unitlesss:[83,86,123],univ:[9,13],univers:[3,6,9,12,13,18,96,250,371,372,381,385,433,438,446,448,472,481,484,514],universit:[9,13],unix:[12,17,252,498],unknown:[3,12,67,78,487],unless:[2,3,9,11,12,15,16,56,60,71,114,130,163,177,178,202,203,206,207,214,230,233,245,253,269,271,272,273,275,276,277,299,300,313,329,340,373,379,400,441,469,485,490,494,499,514],unlik:[12,33,51,62,98,168,178,191,202,220,253,269,274,300,306,308,332,333,334,362,370,371,387,392,410,413,418,419,423,436,437,438,450,458,467,484,489,494,499,514,519],unlimit:447,unlucki:3,unmark:7,unmodifi:330,unnecessari:16,unoccupi:341,unoptim:205,unpack:[0,8,11,386],unpack_bord:8,unpack_border_bodi:8,unpack_border_hybrid:8,unpack_border_vel:8,unpack_comm:8,unpack_comm_bodi:8,unpack_comm_hybrid:8,unpack_comm_vel:8,unpack_exchang:8,unpack_restart:8,unpack_revers:8,unpack_reverse_comm:8,unpack_reverse_hybrid:8,unpad:206,unperturb:96,unphys:[3,6,254,269,313,487],unpredict:[311,497],unpublish:439,unrecogn:3,unrel:[8,9,13,184,509],unreli:441,unrestrain:312,unrestrict:389,unscal:[3,125,172,202,203,331,488],unset:[3,371,412],unshift:405,unsmooth:430,unsolv:[383,397],unsort:206,unspecifi:[232,487],unsplit:508,unstabl:[3,256],unstag:509,unstrain:232,unsuccess:[3,299],unsuffici:[],unsupport:[3,502],untar:12,until:[2,3,6,12,14,38,40,42,57,76,131,198,205,226,230,233,241,245,250,299,322,329,331,338,354,370,371,382,385,386,392,416,469,482,487,488,492,493,495,501,513,514],untilt:490,unus:392,unusu:[3,8,382],unwant:[3,178,371],unwrap:[3,70,79,80,87,88,98,99,104,114,115,117,125,153,173,202,203,206,207,217,229,231,250,266,313,326,331,487,488,491,497],unwrapexpand:202,unzip:12,up_intern:205,updat:[0,3,6,8,12,13,135,136,137,147,148,149,150,201,202,203,209,216,227,228,236,243,246,253,254,256,258,259,262,263,266,267,269,270,271,272,273,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,298,300,302,303,308,313,321,322,331,332,333,334,336,341,352,353,386,392,405,439,441,449,450,456,482,487,489,497,498,501,508],upenn:[11,13],upgrad:12,upon:[6,216,250,392,473,501],upper:[2,3,42,60,62,76,97,114,116,154,167,174,201,206,219,220,222,223,226,230,236,254,256,269,303,308,346,347,352,353,379,416,457,490,515],uppercas:[],upsid:6,upsilon:415,upstream:509,upto:[3,489,495],upward:233,urbana:[250,371,372,433],urey_bradlei:20,url:509,usa:9,usabl:[12,245,410],usag:[3,6,8,254,294,308,329,419,432,487],use_ldg:17,usec:507,useful:386,user:[],user_manifold:509,user_misc:[30,31,35,188,193,196,360],userguid:9,usernam:509,usr:[11,12,14,488],usual:[2,3,6,12,14,17,18,24,28,32,35,36,48,64,76,96,129,156,157,158,163,171,176,195,202,203,205,210,211,216,218,229,230,231,232,245,248,253,255,267,274,295,303,304,310,312,313,329,337,341,344,346,350,354,361,369,381,382,386,397,400,403,405,415,419,420,423,432,433,434,441,443,453,454,455,456,458,466,468,473,482,486,488,492,496,498,501,504,505,514,519],util:[8,12,17,18,386,415,506],utilizi:12,utilz:[12,506],utsa:446,utsph_strain_r:[],uttormark:13,uuml:[],uwo:9,v11:6,v22:6,v33:6,v_0:[3,341],v_2:439,v_3:439,v_4:439,v_a:[8,232],v_abc:[485,505,514],v_area:[2,514],v_atomfil:497,v_c:172,v_cluster:302,v_dc:172,v_delta:96,v_dhug:[267,303],v_diff:[174,343],v_displac:232,v_dk:172,v_dlj:172,v_drai:[267,303],v_dx:[266,490],v_dy:[266,490],v_dz:266,v_e_hbond:418,v_ea:[449,450],v_eb:[449,450],v_eqeq:[449,450],v_espac:212,v_f:485,v_fac:485,v_flux:249,v_foo:[485,514],v_ij:447,v_increas:248,v_integr:343,v_jx:100,v_jy:100,v_jz:100,v_k11:100,v_k22:100,v_k33:100,v_k:172,v_ke:[202,203,518],v_left:490,v_lgr_po:[267,303],v_lgr_vel:[267,303],v_linear:[346,349,351],v_lj:172,v_mol:206,v_mu:433,v_myi:266,v_myindex:514,v_myke:129,v_mystep:494,v_myvar:[8,206],v_myvec:[131,514],v_myx:266,v_n:[256,439],v_name1:[172,232],v_name2:[172,232],v_name:[3,6,76,96,129,131,201,202,203,205,206,210,211,212,213,217,218,219,220,221,222,223,224,225,238,248,249,251,253,254,266,315,323,331,332,333,334,343,346,349,351,485,490,494,497,503,505,514,515],v_nstep:352,v_occ:414,v_omega:266,v_oscil:[212,213,225,238,315],v_phi:248,v_prefactor:[210,211,459],v_press:153,v_pressdown:[349,351],v_push:212,v_pxy:6,v_pxz:6,v_pyz:6,v_r0:251,v_r1:176,v_r2:176,v_r:[176,251],v_rad:352,v_radiu:251,v_ramp:[346,349,351],v_rate:[232,251],v_scale1:[210,211],v_scale2:[210,211],v_size:[210,211],v_t_qm:303,v_temp:337,v_theta:[248,490],v_tp:232,v_up:490,v_v0:514,v_v11:6,v_v22:6,v_v33:6,v_v:[266,514],v_valu:[205,485],v_vx:266,v_vy:266,v_vz:[266,515],v_wiggl:[346,349,351],v_x:[2,178,251,266,346,349,351,485,490,514],v_xave:6,v_xmax:6,v_xx:178,v_y:[178,251,490],v_yi:178,v_z:490,vacanc:[4,176,338,439],vacf:[],vacuum:[341,372,403,472,479],valanc:392,vale:3,valenc:[306,392,412,449,450],valent:392,valeriu:9,valid:[2,3,6,9,11,12,76,130,164,177,206,230,245,253,294,313,329,352,354,369,374,410,412,415,439,447,487,488,495,497,514],vallon:436,valon:436,valu:[],valuabl:506,value0:514,value1:[12,158,217,218,219,220,221,222,223,224,274,343,352,498],value2:[12,158,217,218,219,220,221,222,223,224,274,343,352,498],valuei:219,valuej:219,valuev:[7,9],valus:302,van:[9,54,96,119,300,304,309,332,400,401,432,436,449,450,478,515],vanadium:439,vanderwa:[441,505],vanilla:[6,8,12],vanillia:43,vanish:[236,308,316],vapor:[42,226,245,504],vapour:336,var1:498,var2:498,varaibl:[3,490],varavg:12,vare:341,vari:[1,10,18,42,64,65,76,96,130,166,168,177,210,211,215,218,219,222,226,230,232,267,269,300,312,313,332,333,341,346,371,397,406,407,408,417,430,433,446,459,469,484,502],variabl:[],variable_hill_factor:13,variable_nam:450,varianc:[129,406,514],variant:[1,3,6,9,12,92,109,269,274,313,317,371,378,386,437,438,442,470,472,496,500,515],variat:[12,42,226,514],varieti:[1,2,4,6,7,9,13,15,76,205,250,369,374,419,436,449,450,467,475,514],variou:[],varreturn:485,varshalovich:152,varshnei:13,vartiabl:3,vashishta1990:475,vashishta2007:475,vashishta:[],vbia:6,vcm:[],vdim:[167,337,344,515],vdisplac:[3,251,266,346,349,351,514],vdw:[3,401,450],vec1:[129,302],vec2:[129,302],vec:294,vector:[],vector_styl:514,vel:[3,6,64,218,222,223,232,254,299,318,348,406,408,412,416,482,489,490,492,508,514],veld:[13,329,372,396,428],veloc:[],velocit:[249,406,408,412,416],velocity_bottom:256,velocity_gradi:456,velocity_temp:515,velocity_top:256,vendor:[9,12],verbatim:485,verbos:[12,457],veri:[1,3,6,7,8,9,10,12,13,17,42,76,77,96,128,129,131,202,203,205,206,217,218,219,220,221,222,223,224,226,227,228,230,245,259,269,270,283,296,300,311,316,332,333,343,381,382,383,386,412,416,433,434,446,449,458,459,469,495,505,506,508,509,513,517],verifi:[8,386,441,496,502,509],verlag:318,verlet:[1,3,7,8,9,12,18,215,253,269,283,290,296,316,330,341,349,352,481,484,496],versa:[3,6,13,62,172,180,229,241,251,253,254,313,487,488,508],versu:[6,14,15,16,18,40,42,86,114,115,128,174,206,226,313,316,372,396,405,416,428,441,505,514],vertex:[43,146,325],vertic:[],vfinal:514,vfrac:125,vhi:[167,515],via:[],vibrat:[6,9,233,247,294,303,308,364,412,482,496],vice:[3,6,13,62,172,180,229,241,251,253,254,313,487,488,508],video:205,view:[4,6,7,13,202,205,329,392,412,413,457],viewer:[202,205],viewpoint:205,vij:406,vika:13,vim:[],vincent:[9,19],violat:336,violet:206,virial:[3,66,100,124,152,153,172,210,211,230,236,269,270,271,272,273,274,275,276,277,298,300,313,316,371,386,389,406,407,408,409,412,420],virialmod:420,virtual:[6,7,8,12,468],virut:9,visa:7,viscoelast:[123,416,446],viscoelsat:446,viscos:[],viscou:[],viscous:313,vision:457,visit:314,vista:202,visual:[],viz:[11,13],viz_tool:11,vizplotgui_tool:11,vizualiziton:314,vlo:[167,515],vmax:[230,329],vmd:[6,7,9,11,13,202,207,250,488],vmdarch:207,vmdhome:207,vname:514,voigt:[6,152],vol:[],volfactor:371,volpress:439,volt:[448,513],volum:[2,3,6,41,42,61,62,66,86,96,100,111,124,128,130,138,142,151,153,176,177,178,181,216,218,222,223,226,230,232,233,240,245,256,267,269,270,274,278,279,281,282,284,286,287,288,289,290,291,292,299,300,303,313,318,341,346,350,352,371,374,380,394,433,434,439,446,464,465,479,483,484,487,490,497,505,508,513,514],volumetr:86,von:[145,150],voro:[3,9,176],vorobyov:508,voronoi:[],vorselaar:220,voter2:[482,501],voter:[437,438,482,501],voth:[41,296],vpz:348,vratio:514,vri:417,vrpn:250,vshear:347,vstream:6,vtarget:[3,344],vtk:[],vtp:203,vtr:203,vtu:203,vv0210:13,vx0:174,vxcm:313,vxhi:[233,299],vxlo:[233,299],vy0:174,vycm:313,vyhi:[233,299],vylo:[233,299],vz0:174,vzcm:313,vzhi:233,vzi:348,vzlo:233,w_1:152,w_2:152,w_i:152,w_ik:447,waal:[96,119,400,401,432,449,450,478],wadlei:[13,392],wag:[7,9,13],wagner:[7,9,215,256,436],wai:[1,2,3,6,7,8,9,10,11,12,15,18,22,34,45,53,62,66,69,70,74,76,77,80,82,85,87,96,99,100,101,103,104,115,117,118,120,126,127,128,152,153,155,156,157,158,159,160,161,164,165,166,167,168,170,171,172,173,175,178,181,186,194,198,201,202,203,205,206,209,210,211,218,221,222,224,225,228,229,230,232,243,246,251,253,254,256,267,269,274,283,296,299,300,302,311,313,314,318,326,329,331,332,333,334,337,340,341,343,346,349,351,352,356,357,358,359,361,363,364,372,374,376,379,381,382,386,387,388,399,402,403,406,409,410,411,413,415,418,419,421,424,436,437,438,441,443,445,447,448,451,457,458,459,466,468,470,472,475,481,482,485,487,488,489,490,491,492,495,496,497,509,514,515,516],wait:[1,12,250,295,482,484],walk:[3,246,253,254,269],wall:[],wall_surac:146,wall_surfac:[],wallhi:346,wallstyl:347,wander:326,wang:[372,436,447],want:[0,1,2,3,5,6,7,8,9,11,12,17,38,41,57,66,68,70,72,73,76,80,84,87,88,89,90,99,102,104,114,115,117,119,121,122,124,126,128,153,158,173,174,175,176,178,181,184,198,202,203,205,206,209,210,211,212,217,218,226,229,232,233,236,238,241,243,245,251,254,264,285,294,299,302,312,313,315,326,328,330,337,339,344,346,350,352,354,372,374,381,387,388,392,400,401,406,410,413,419,420,421,422,436,443,447,449,450,457,459,468,469,470,472,474,475,483,485,487,488,489,490,492,494,495,502,505,508,509,514,517,519],ward:392,warm:[16,412],warn:[],warner:387,warp:[5,436],warranti:7,warren:406,wasn:3,wast:3,watanab:[338,339],watch:381,water:[],watkin:195,wave:[7,9,41,214,267,307,348,389,412],wavefunct:[389,412],wavelength:[130,177],wavepacket:[41,389,412,487],wavevector:295,wbodi:92,weak:[10,101,304],web:[1,4,8,10,14,15,16,17,399],webb:215,weber:[3,5,7,9,15,97,154,411,438,447,467,468,475,499],websit:[8,449,450],weckner:446,wedg:[],weight:[],welcom:485,well:[1,3,6,7,8,9,11,12,13,15,16,17,18,27,41,52,71,76,101,118,124,153,156,164,178,187,205,206,212,216,218,224,226,227,228,230,233,238,245,249,253,256,260,266,269,274,299,300,313,315,323,336,339,347,379,381,386,391,414,415,418,419,420,433,434,436,439,451,459,470,471,472,485,487,489,491,496,501,506,508,509,513,518],wennberg:371,went:[3,11],were:[3,5,6,7,9,11,12,13,15,16,19,34,42,43,53,57,63,75,76,114,118,121,124,128,155,158,178,181,182,194,202,205,206,209,212,218,221,222,223,224,226,232,238,242,249,250,283,290,314,347,348,352,363,371,383,385,388,412,416,419,423,446,450,469,482,484,485,487,488,489,490,492,494,502,505,509,514,515,518,519],weren:492,western:9,westview:478,what:[],whatev:[8,12,14,15,120,125,128,129,131,205,206,210,211,230,269,300,302,347,374,378,379,381,386,398,400,439,449,450,501,508,514],wheat:206,whelan:177,when:[0,1,2,3,4,6,8,9,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,32,33,35,37,38,40,41,42,43,44,46,47,48,49,50,51,52,54,55,56,57,62,64,65,66,68,73,76,77,84,88,95,97,101,102,114,115,116,118,119,121,124,125,128,129,131,154,155,156,161,165,166,168,174,176,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,195,196,197,198,202,203,204,205,206,207,209,210,211,212,213,214,216,217,218,219,221,222,223,224,225,226,227,228,229,230,231,232,233,237,238,239,241,242,243,244,245,247,248,250,253,256,257,259,260,264,269,270,271,272,273,274,275,276,277,278,279,283,285,286,288,289,290,292,294,298,299,300,301,302,303,305,306,307,308,312,313,314,315,316,318,326,327,329,330,331,332,334,336,337,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,357,358,360,361,362,364,365,366,368,369,370,371,372,374,377,378,379,380,381,382,383,385,386,387,388,390,393,394,395,396,397,398,399,400,401,402,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,424,425,426,427,428,429,430,431,432,433,434,436,437,438,439,441,442,443,444,446,447,449,450,451,452,458,459,466,468,469,470,471,472,473,474,475,477,478,479,480,482,484,485,487,488,489,490,491,492,493,494,495,496,497,498,499,501,502,504,505,506,507,509,513,514,515,517,519],whenev:[0,8,12,14,76,206,217,223,313,374,418,485,496,500,514,519],whenth:3,where:[1,3,6,8,9,10,11,12,14,15,18,21,23,24,25,26,27,28,29,32,35,36,37,40,41,42,44,48,49,50,52,56,64,66,68,69,70,72,73,74,75,76,78,80,84,85,86,87,89,91,92,93,94,96,97,98,99,101,102,103,104,105,106,107,108,109,115,117,120,124,125,126,127,128,129,130,131,153,155,156,157,158,159,160,161,164,165,166,167,168,170,171,172,173,175,177,179,181,182,185,187,197,201,202,205,206,209,210,211,212,213,218,219,222,225,226,229,230,232,233,237,238,240,242,243,245,246,247,248,249,251,253,254,255,256,259,260,262,264,266,267,269,270,274,283,286,293,294,295,296,299,301,302,303,306,308,313,314,315,316,318,322,323,326,328,331,332,333,334,337,338,339,341,344,345,346,347,349,350,351,352,355,357,358,359,360,361,364,365,366,369,372,374,378,379,380,381,382,383,386,387,388,391,392,393,395,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,419,420,421,424,428,433,434,435,436,437,438,439,441,443,444,446,447,448,449,450,451,457,458,461,464,465,466,467,468,469,470,471,472,475,478,479,481,482,484,485,486,487,489,490,491,492,494,496,497,499,501,502,503,504,505,508,513,514,515,517,519],wherea:[6,11,101,216,246,269,304,336,341,508],wherebi:305,wherev:249,whether:[6,8,11,12,17,40,41,55,62,64,66,75,76,113,119,121,154,165,166,198,205,206,208,209,210,211,218,224,227,228,229,230,231,232,236,242,245,254,266,269,274,302,316,329,337,343,344,352,354,369,371,372,380,384,386,395,397,401,417,419,423,433,434,436,441,450,457,467,482,485,487,488,490,492,499,500,501,504,514,515],which:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,28,29,32,33,37,38,39,40,41,42,43,45,46,47,48,51,52,54,55,56,57,59,61,62,64,66,67,68,70,71,73,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,94,96,97,98,99,100,102,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,122,123,124,125,126,128,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,185,186,189,190,191,192,195,197,198,201,202,203,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,259,260,263,264,266,267,268,269,270,271,272,273,274,275,276,277,279,281,283,284,286,287,288,289,290,291,292,294,295,296,298,299,300,301,302,303,304,305,306,308,309,310,311,312,313,314,315,316,318,319,320,321,323,325,326,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,346,347,348,349,350,351,352,354,355,356,358,361,362,365,366,369,370,371,372,374,376,377,378,379,380,381,382,383,385,386,387,388,389,391,392,393,395,396,397,399,400,401,402,403,404,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,426,427,428,430,432,433,434,436,437,438,439,441,443,444,445,447,448,449,450,451,452,453,454,455,456,457,458,459,462,466,467,468,469,470,471,472,473,474,475,478,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,508,509,514,515,517,518,519],whichev:[12,385,482,501],white:[206,246,253,254,255,313,333,341,487,514,518],whitesmok:206,whitespac:[2,3,206,380,487],who:[0,3,6,7,8,9,13,387,410],whole:[236,250,295,308,318,508],wholli:233,whose:[3,6,7,8,9,18,19,38,40,43,57,62,81,96,163,181,198,205,206,216,232,241,251,252,266,269,271,272,273,275,276,277,294,295,311,312,316,329,343,350,352,374,381,382,412,426,453,455,468,469,470,472,508,514,515],why:[3,6,254,337,344,509],wide:[1,6,7,64,66,209,337,344,374,383,397,400,412,449,450],wider:1,width:[205,206,389,414],wiggl:[3,232,266,322,346,347,349,351,490],wigner:152,wih:6,wiki:14,wikipedia:[6,14],wild:[3,12,22,45,82,96,128,186,210,211,313,356,376,399,418,481,489,494,517,519],wildcard:[3,12,172,182,202,203,205,206,310,399,466,494,497,518,519],wildli:[269,300],win:386,window:[3,4,12,13,76,202,205,207,218,219,220,221,222,223,224,250,314,334,335,399,488,509],wipe:[209,419,467,510,512],wire:312,wirt:206,wisconsin:13,wise:[3,12,406,468,496],wish:[2,3,5,6,7,8,11,12,14,17,41,43,60,61,62,76,129,153,158,179,180,182,184,202,203,206,210,217,218,219,222,223,224,228,232,233,242,245,251,256,260,299,302,313,316,329,330,346,347,374,381,386,395,418,419,436,441,449,469,485,487,488,489,495,499,505,514,515,519],within:[1,2,3,6,8,9,11,12,13,15,16,17,29,40,41,42,43,56,62,64,66,69,74,75,76,77,78,82,85,101,103,118,120,124,127,128,129,131,134,152,169,178,181,204,205,206,210,211,216,217,218,221,222,223,224,226,227,228,229,233,235,241,242,245,251,253,294,298,299,300,302,304,313,314,316,319,321,325,326,330,341,344,346,350,352,354,370,374,379,380,381,382,383,386,391,393,395,402,407,408,409,410,411,412,414,419,420,423,424,436,439,444,445,446,451,452,467,468,470,471,472,473,475,480,482,484,485,487,495,496,499,501,508,513,514],without:[1,2,3,4,6,7,8,9,11,12,14,16,17,20,21,23,24,25,26,27,28,29,30,31,32,35,38,41,44,46,47,48,49,50,52,54,55,57,62,96,121,124,155,160,165,179,184,185,187,188,189,190,192,193,195,196,198,202,205,206,207,209,212,218,220,221,222,223,224,225,230,232,239,241,244,246,248,250,253,266,269,271,272,273,274,275,276,277,278,279,286,288,289,290,291,292,299,302,304,305,307,311,313,314,315,316,322,329,332,334,345,349,353,355,357,358,360,361,364,366,370,371,372,381,382,386,387,388,390,393,394,395,396,397,398,399,400,401,402,405,406,410,411,412,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,439,441,442,443,444,446,450,451,452,459,467,468,469,470,471,472,473,475,477,478,479,485,487,490,495,496,502,505,508,509,513,514],witht:[],witi:15,wolf:[],wolff:[441,469],won:[3,311,434],wong:[215,392],word:[2,3,6,8,12,29,66,206,209,216,217,218,219,222,223,224,231,251,280,285,301,306,312,343,354,370,400,441,483,485,487,514,515],work:[1,3,6,7,8,9,11,12,14,16,18,40,55,62,63,97,129,130,156,157,159,160,161,165,166,167,168,170,171,176,177,202,205,207,210,211,218,222,223,229,243,252,253,254,256,260,266,269,275,276,277,288,289,290,291,292,300,302,310,312,314,316,332,333,334,339,370,382,386,399,401,404,406,419,433,434,436,439,441,457,482,484,485,488,489,491,495,496,498,501,514],workaround:[77,128,313,441,515],worker:[12,449,450,475],workflow:509,workhors:8,workstat:[386,485],world:[3,12,152,370,381,385,481,484,485,502,514],worlei:406,worri:17,worsen:18,worst:350,worth:[218,219,221,222,223,224,303,314],would:[1,3,4,5,6,7,8,11,12,22,29,37,42,43,45,56,75,76,77,98,100,128,153,158,166,178,179,180,181,182,186,197,202,203,205,206,207,209,210,211,213,216,218,226,229,231,232,236,237,242,245,248,249,250,254,266,269,270,283,294,296,300,302,304,308,311,329,336,340,348,349,352,354,355,356,357,358,359,361,362,365,371,374,376,378,379,381,382,385,386,387,388,392,399,400,401,402,406,407,408,409,410,411,413,419,420,421,422,436,437,438,439,443,447,449,450,454,456,458,466,468,470,471,472,475,482,485,487,490,491,492,494,495,496,497,498,502,504,505,508,509,514,515,518,519],wrap:[1,3,6,9,11,12,60,62,178,180,201,202,203,204,206,207,217,223,231,232,233,250,256,266,313,326,329,346,348,350,371,372,381,485,487,488,490,495],wrapper:[],wrigger:318,wright:379,writabl:3,write:[],write_atom_weight:215,write_coeff:[],write_data:[],write_dump:[],write_freq:450,write_head:8,write_restart:[],writen:314,written:[],wrong:[3,11,230,269,293,346,350,351,382,450,489,494],wrote:[3,9,489],wt1:441,wt2:441,wt3:441,wtih:[],wurtzit:374,www:[0,2,3,5,6,7,8,10,11,12,13,15,387,410,433,448,449,450,513],x86:[12,439],x_ij:447,x_ijkl:355,x_kjli:355,x_ljik:355,xave:6,xavx:16,xcm:[8,313,514],xdr:[12,202],xeon:[1,7,9,10,12,16,17,18,386,500],xflag:[165,166,257,259,265,313,336],xhe:[],xhi:[2,6,60,62,180,202,232,340,346,349,351,487,490,505,514],xhi_bound:[6,202],xhi_new:487,xhost:[9,12,16],xi_ij:447,xiaowang:[13,413,470,472],xiij:294,xk7:9,xlat:[178,232,251,505],xlo:[2,6,11,60,62,180,202,232,251,340,346,349,351,487,490,505,514],xlo_bound:[6,202],xlo_new:487,xmax:[6,214,237,283,514],xmgrace:[],xmin:514,xml:[203,207,448],xml_label:448,xmovi:[],xmu:[347,416],xorig:76,xplane:347,xplor:202,xpo:178,xrd:[],xsph:9,xsu:[3,202,203,331,488],xt3:202,xt4:[18,202],xt5:[18,202],xtc:[],xtcdump:206,xvf:12,xwall:[348,349,351],xxx:12,xyz:[3,6,7,9,13,43,70,76,117,120,166,173,178,202,204,205,206,207,222,230,259,269,270,274,300,310,311,313,326,328,347,349,351,373,380,484,488,515,518],xzhou:[13,413],xzy:484,yang:[439,447],yate:439,yb2:177,yb3:177,ybox:232,ycm:313,year:[5,7],yeh:371,yellow:[205,206],yellowgreen:206,yet:[3,7,17,40,43,205,210,310,346,372,378,379,386,398,400,401,412,478,485,487,488,509,514,516,517,518],yflag:[165,166,257,259,265,313,336],yhi:[6,62,180,202,232,340,346,349,351,487,490,505],yhi_bound:[6,202],yield:[6,100,122,129,153,161,166,206,219,230,236,269,290,304,337,343,344,347,352,371,391,406,416,441,446,505,514],yip:338,ylat:[178,232,251,505],ylo:[6,62,180,202,232,340,346,349,351,487,490,505],ylo_bound:[6,202],ymax:[214,514],ymin:514,yorig:76,york:[296,372],yoshida:[269,313],you:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,35,38,40,41,42,43,44,46,47,48,49,50,51,52,54,55,57,60,61,62,64,66,68,70,72,73,76,77,78,79,80,82,84,87,88,89,90,96,97,98,99,100,101,102,104,113,114,115,117,118,119,121,122,124,126,128,129,152,153,155,156,157,158,161,165,166,171,172,173,174,175,176,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,195,196,197,198,201,202,203,205,206,207,209,210,211,212,213,216,217,218,219,221,222,223,224,225,226,227,228,229,230,232,233,236,238,239,241,242,243,244,245,246,247,248,249,250,251,253,254,255,264,266,269,271,272,273,274,275,276,277,278,279,283,285,286,288,289,290,291,292,295,296,298,299,300,302,304,305,308,311,312,313,315,316,318,326,328,329,330,332,333,334,335,337,338,339,340,341,343,344,345,346,347,349,350,351,352,354,355,357,358,360,361,362,364,366,370,371,372,374,376,378,379,380,381,382,385,386,387,388,390,392,393,394,395,396,397,398,399,400,401,402,405,406,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,436,437,438,439,441,442,443,444,445,446,447,448,449,450,451,452,457,458,459,460,461,462,463,464,465,466,468,469,470,471,472,473,475,477,478,479,481,482,483,484,485,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,504,505,506,508,509,513,514,515,516,517,519],young:[416,453,455],your:[],yourself:[6,8,12,13,230,380,509],yplane:347,ypo:178,ysu:[3,202,203,331,488],yuan:9,yukawa:[],yukawa_1_1:476,yxz:484,yzx:484,z_i:[412,472,479],z_j:[472,479],z_meam:436,zachari:13,zannoni:415,zbl:[],zblcut:472,zblcutinn:458,zblcutout:458,zblexpscal:472,zblz:458,zcm:313,zcylind:347,zepeda:216,zero:[],zeta:[3,256,304,413],zfactor:205,zflag:[165,166,257,259,265,313,336],zhang:[313,337,416],zhi:[3,6,180,202,214,340,346,349,351,487,490,505],zhi_bound:[6,202],zhou:[13,392,413,447,470,472],zhu:465,ziegenhain:13,ziegler:[298,436,467,472,479],zimmerman2004:215,zimmerman2010:215,zimmerman:[9,75,215,392],zlat:[232,251,505],zlib:[9,202],zlim:457,zlo:[3,6,180,202,214,340,346,348,349,351,487,490,505],zlo_bound:[6,202],zmax:[214,256,514],zmin:[256,514],zn2:177,zone:[130,314],zoom:[3,202,205,206],zorig:76,zplane:347,zr4:177,zrest:328,zsu:[3,202,203,331,488],zwall:346,zwall_veloc:256,zxy:484,zybin:450,zyx:484},titles:["LAMMPS Documentation","5. Accelerating LAMMPS performance","3. Commands","12. Errors","7. Example problems","13. Future and history","6. How-to discussions","1. Introduction","10. Modifying &amp; extending LAMMPS","4. Packages","8. Performance &amp; scalability","11. Python interface to LAMMPS","2. Getting Started","9. Additional tools","5.USER-CUDA package","5.GPU package","5.USER-INTEL package","5.KOKKOS package","5.USER-OMP package","5.OPT package","angle_style charmm command","angle_style class2 command","angle_coeff command","angle_style cosine command","angle_style cosine/delta command","angle_style cosine/periodic command","angle_style cosine/shift command","angle_style cosine/shift/exp command","angle_style cosine/squared command","angle_style dipole command","angle_style fourier command","angle_style fourier/simple command","angle_style harmonic command","angle_style hybrid command","angle_style none command","angle_style quartic command","angle_style sdk command","angle_style command","angle_style table command","angle_style zero command","atom_modify command","atom_style command","balance command","Body particles","bond_style class2 command","bond_coeff command","bond_style fene command","bond_style fene/expand command","bond_style harmonic command","bond_style harmonic/shift command","bond_style harmonic/shift/cut command","bond_style hybrid command","bond_style morse command","bond_style none command","bond_style nonlinear command","bond_style quartic command","bond_style command","bond_style table command","bond_write command","bond_style zero command","boundary command","box command","change_box command","clear command","comm_modify command","comm_style command","compute command","compute ackland/atom command","compute angle command","compute angle/local command","compute angmom/chunk command","compute basal/atom command","compute body/local command","compute bond command","compute bond/local command","compute centro/atom command","compute chunk/atom command","compute cluster/atom command","compute cna/atom command","compute com command","compute com/chunk command","compute contact/atom command","compute coord/atom command","compute damage/atom command","compute dihedral command","compute dihedral/local command","compute dilatation/atom command","compute dipole/chunk command","compute displace/atom command","compute dpd command","compute dpd/atom command","compute erotate/asphere command","compute erotate/rigid command","compute erotate/sphere command","compute erotate/sphere/atom command","compute event/displace command","compute fep command","compute group/group command","compute gyration command","compute gyration/chunk command","compute heat/flux command","compute hexorder/atom command","compute improper command","compute improper/local command","compute inertia/chunk command","compute ke command","compute ke/atom command","compute ke/atom/eff command","compute ke/eff command","compute ke/rigid command","compute meso/e/atom command","compute meso/rho/atom command","compute meso/t/atom command","compute_modify command","compute msd command","compute msd/chunk command","compute msd/nongauss command","compute omega/chunk command","compute orientorder/atom command","compute pair command","compute pair/local command","compute pe command","compute pe/atom command","compute plasticity/atom command","compute pressure command","compute property/atom command","compute property/chunk command","compute property/local command","compute rdf command","compute reduce command","compute saed command","compute slice command","compute smd/contact/radius command","compute smd/damage command","compute smd/hourglass/error command","compute smd/internal/energy command","compute smd/plastic/strain command","compute smd/plastic/strain/rate command","compute smd/rho command","compute smd/tlsph/defgrad command","compute smd/tlsph/dt command","compute smd/tlsph/num/neighs command","compute smd/tlsph/shape command","compute smd/tlsph/strain command","compute smd/tlsph/strain/rate command","compute smd/tlsph/stress command","compute smd/triangle/mesh/vertices","compute smd/ulsph/num/neighs command","compute smd/ulsph/strain command","compute smd/ulsph/strain/rate command","compute smd/ulsph/stress command","compute smd/vol command","compute sna/atom command","compute stress/atom command","compute force/tally command","compute temp command","compute temp/asphere command","compute temp/body command","compute temp/chunk command","compute temp/com command","compute temp/cs command","compute temp/deform command","compute temp/deform/eff command","compute temp/drude command","compute temp/eff command","compute temp/partial command","compute temp/profile command","compute temp/ramp command","compute temp/region command","compute temp/region/eff command","compute temp/rotate command","compute temp/sphere command","compute ti command","compute torque/chunk command","compute vacf command","compute vcm/chunk command","compute voronoi/atom command","compute xrd command","create_atoms command","create_bonds command","create_box command","delete_atoms command","delete_bonds command","dielectric command","dihedral_style charmm command","dihedral_style class2 command","dihedral_coeff command","dihedral_style cosine/shift/exp command","dihedral_style fourier command","dihedral_style harmonic command","dihedral_style helix command","dihedral_style hybrid command","dihedral_style multi/harmonic command","dihedral_style nharmonic command","dihedral_style none command","dihedral_style opls command","dihedral_style quadratic command","dihedral_style command","dihedral_style table command","dihedral_style zero command","dimension command","displace_atoms command","dump command","dump custom/vtk command","dump h5md command","dump image command","dump_modify command","dump molfile command","echo command","fix command","fix adapt command","fix adapt/fep command","fix addforce command","fix addtorque command","fix append/atoms command","fix atc command","fix atom/swap command","fix ave/atom command","fix ave/chunk command","fix ave/correlate command","fix ave/correlate/long command","fix ave/histo command","fix ave/spatial command","fix ave/spatial/sphere command","fix ave/time command","fix aveforce command","fix balance command","fix bond/break command","fix bond/create command","fix bond/swap command","fix box/relax command","fix colvars command","fix deform command","fix deposit command","fix drag command","fix drude command","fix drude/transform/direct command","fix dt/reset command","fix efield command","fix enforce2d command","fix eos/cv command","fix eos/table command","fix evaporate command","fix external command","fix freeze command","fix gcmc command","fix gld command","fix gle command","fix gravity command","fix heat command","fix imd command","fix indent command","fix ipi command","fix langevin command","fix langevin/drude command","fix langevin/eff command","fix lb/fluid command","fix lb/momentum command","fix lb/pc command","fix lb/rigid/pc/sphere command","fix lb/viscous command","fix lineforce command","fix meso command","fix meso/stationary command","fix_modify command","fix momentum command","fix move command","fix msst command","fix neb command","fix nvt command","fix nvt/eff command","fix nph/asphere command","fix nph/body command","fix nph/sphere command","fix nphug command","fix npt/asphere command","fix npt/body command","fix npt/sphere command","fix nve command","fix nve/asphere command","fix nve/asphere/noforce command","fix nve/body command","fix nve/eff command","fix nve/limit command","fix nve/line command","fix nve/noforce command","fix nve/sphere command","fix nve/tri command","fix nvt/asphere command","fix nvt/body command","fix nvt/sllod command","fix nvt/sllod/eff command","fix nvt/sphere command","fix oneway command","fix orient/fcc command","fix phonon command","fix pimd command","fix planeforce command","fix poems","fix pour command","fix press/berendsen command","fix print command","fix property/atom command","fix qbmsst command","fix qeq/point command","fix qeq/comb command","fix qeq/reax command","fix qmmm command","fix qtb command","fix reax/bonds command","fix reax/c/species command","fix recenter command","fix restrain command","fix rigid command","fix saed/vtk command","fix setforce command","fix shake command","fix shardlow command","fix smd command","fix smd/adjust_dt command","fix smd/integrate_tlsph command","fix smd/integrate_ulsph command","fix smd/move_tri_surf command","fix smd/setvel command","&lt;no title&gt;","fix smd/wall_surface command","fix spring command","fix spring/rg command","fix spring/self command","fix srd command","fix store/force command","fix store/state command","fix temp/berendsen command","fix temp/csvr command","fix temp/rescale command","fix temp/rescale/eff command","fix tfmc command","fix thermal/conductivity command","fix ti/rs command","fix ti/spring command","fix tmd command","fix ttm command","fix tune/kspace command","fix vector command","fix viscosity command","fix viscous command","fix wall/lj93 command","fix wall/gran command","fix wall/piston command","fix wall/reflect command","fix wall/region command","fix wall/srd command","group command","group2ndx command","if command","improper_style class2 command","improper_coeff command","improper_style cossq command","improper_style cvff command","improper_style distance command","improper_style fourier command","improper_style harmonic command","improper_style hybrid command","improper_style none command","improper_style ring command","improper_style command","improper_style umbrella command","improper_style zero command","include command","info command","jump command","kspace_modify command","kspace_style command","label command","lattice command","log command","mass command","min_modify command","min_style command","minimize command","molecule command","neb command","neigh_modify command","neighbor command","newton command","next command","package command","pair_style adp command","pair_style airebo command","pair_style awpmd/cut command","pair_style beck command","pair_style body command","pair_style bop command","pair_style born command","pair_style brownian command","pair_style buck command","pair_style buck/long/coul/long command","pair_style lj/charmm/coul/charmm command","pair_style lj/class2 command","pair_coeff command","pair_style colloid command","pair_style comb command","pair_style coul/cut command","pair_style coul/diel command","pair_style born/coul/long/cs command","pair_style lj/cut/dipole/cut command","pair_style dpd command","pair_style dpd/conservative command","pair_style dpd/fdt command","pair_style dsmc command","pair_style eam command","pair_style edip command","pair_style eff/cut command","pair_style eim command","pair_style gauss command","pair_style gayberne command","pair_style gran/hooke command","pair_style lj/gromacs command","pair_style hbond/dreiding/lj command","pair_style hybrid command","pair_style kim command","pair_style lcbop command","pair_style line/lj command","pair_style list command","pair_style lj/cut command","pair_style lj96/cut command","pair_style lj/cubic command","pair_style lj/expand command","pair_style lj/long/coul/long command","pair_style lj/sf command","pair_style lj/smooth command","pair_style lj/smooth/linear command","pair_style lj/cut/soft command","pair_style lubricate command","pair_style lubricateU command","pair_style lj/mdf command","pair_style meam command","pair_style meam/spline","pair_style meam/sw/spline","pair_style mgpt command","pair_style mie/cut command","pair_modify command","pair_style morse command","pair_style nb3b/harmonic command","pair_style nm/cut command","pair_style none command","pair_style peri/pmb command","pair_style polymorphic command","pair_style quip command","pair_style reax command","pair_style reax/c command","pair_style resquared command","pair_style lj/sdk command","pair_style smd/hertz command","pair_style smd/tlsph command","pair_style smd/tri_surface command","pair_style smd/ulsph command","pair_style smtbq command","pair_style snap command","pair_style soft command","pair_style sph/heatconduction command","pair_style sph/idealgas command","pair_style sph/lj command","pair_style sph/rhosum command","pair_style sph/taitwater command","pair_style sph/taitwater/morris command","pair_style srp command","pair_style command","pair_style sw command","pair_style table command","pair_style tersoff command","pair_style tersoff/mod command","pair_style tersoff/zbl command","pair_style thole command","pair_style tri/lj command","pair_style vashishta command","pair_write command","pair_style yukawa command","pair_style yukawa/colloid command","pair_style zbl command","pair_style zero command","partition command","prd command","print command","processors command","python command","quit command","read_data command","read_dump command","read_restart command","region command","replicate command","rerun command","reset_timestep command","restart command","run command","run_style command","set command","shell command","special_bonds command","suffix command","tad command","temper command","thermo command","thermo_modify command","thermo_style command","timer command","timestep command","&lt;no title&gt;","LAMMPS GitHub tutorial","uncompute command","undump command","unfix command","units command","variable command","velocity command","write_coeff command","write_data command","write_dump command","write_restart command"],titleterms:{"break":227,"default":[37,40,41,56,60,61,62,64,65,76,96,97,101,113,114,116,118,119,130,134,135,152,158,166,167,171,177,178,181,183,197,200,201,202,203,205,206,207,208,210,211,212,214,215,216,218,222,223,224,227,228,230,231,232,233,237,242,245,246,251,253,254,255,256,257,259,264,267,269,270,274,290,291,295,296,299,300,301,302,303,305,308,310,311,313,314,329,331,336,337,338,339,342,344,346,348,352,365,369,371,372,374,375,377,378,380,382,383,384,386,389,392,394,412,433,434,439,441,449,450,466,467,482,483,484,487,488,490,492,494,495,496,499,501,503,504,505,506,507,513,515,517,518],"function":514,"long":[220,393,395,396,397,398,402,404,405,424,428,432,444,452,473],"new":8,"static":12,acceler:1,account:509,ackland:67,acknowledg:7,adapt:[210,211],addforc:212,addit:[12,13,509],addtorqu:213,adiabat:6,adjust_dt:319,adp:387,after:509,airebo:388,alloi:410,amber2lmp:13,amber:6,angl:[8,68,69],angle_coeff:22,angle_styl:[2,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39],angmom:70,append:214,apr:[],arrai:6,aspher:[6,9,91,156,271,275,279,280,288],atc:[9,215],atom:[6,7,8,67,71,75,76,77,78,81,82,83,86,88,90,94,101,106,107,110,111,112,118,122,123,125,152,153,176,214,216,217,302,514],atom_modifi:40,atom_styl:41,attract:5,aug:[],aveforc:225,awpmd:[9,389],balanc:[42,226],barostat:6,basal:71,beck:390,berendsen:[300,332],between:6,binary2txt:13,bodi:[6,8,9,43,72,157,272,276,281,289,391],bond:[8,13,73,74,227,228,229,309],bond_coeff:45,bond_styl:[2,44,46,47,48,49,50,51,52,53,54,55,56,57,59],bond_writ:58,bop:392,born:[393,404],boundari:[7,60],box:[6,61,230],branch:509,brownian:394,buck:[395,396,404,435],bug:3,build:[11,12],calcul:6,call:12,categori:2,centro:75,ch2lmp:13,chain:13,chang:509,change_box:62,charmm:[6,20,184,397,432],chunk:[6,70,76,80,87,99,104,115,117,126,158,173,175,218],citat:7,class2:[9,21,44,185,355,398],clear:63,cluster:77,cmm:9,cna:78,code:6,coeffici:6,colloid:[9,346,400,478],colvar:[9,13,231],com:[79,80,159],comb3:401,comb:[305,401],come:5,comm_modifi:64,comm_styl:65,comman:[],command:[2,6,8,12,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,510,511,512,513,514,515,516,517,518,519],common:3,comparison:1,compos:6,compress:9,comput:[2,6,8,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,514],compute_modifi:113,condit:7,conduct:[6,337],conserv:407,constant:[6,514],constraint:7,contact:[81,132],contact_radiu:[],coord:82,core:6,coreshel:9,correl:[219,220],cosin:[23,24,25,26,27,28,187],cossq:357,coul:[393,395,396,397,398,402,403,404,417,424,428,432,444,452],coupl:6,creat:228,create_atom:178,create_bond:179,create_box:180,createatom:13,creation:7,csld:333,csvr:333,cubic:426,cuda:[9,14,121,124,155,165,212,225,239,244,248,269,278,315,316,332,334,345,393,395,397,398,410,416,417,424,425,427,430,442,468,470],custom:[8,202,203],cut:[50,389,395,398,402,405,412,414,424,425,432,440,444,473],cvff:358,damag:[83,133],data2xmovi:13,data:6,databas:13,deby:[402,424],dec:[],defgrad:139,deform:[161,162,232],delete_atom:181,delete_bond:182,delta:24,deposit:233,descript:[20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,510,511,512,513,514,515,516,517,518,519],diagnost:7,diel:403,dielectr:183,diffract:9,diffus:6,dihedr:[8,84,85],dihedral_coeff:186,dihedral_styl:[2,184,185,187,188,189,190,191,192,193,194,195,196,197,198,199],dilat:86,dimens:200,dipol:[6,9,29,87,405],direct:236,directori:4,discuss:6,disp:6,displac:[88,95],displace_atom:201,distanc:359,distribut:[7,12],document:0,dpd:[9,89,90,406,407,408],drag:234,dreid:[6,418],drude:[6,9,163,235,236,254],dsf:[402,424],dsmc:409,dump:[6,8,202,203,204,205,207],dump_modifi:206,dynam:304,eam:[13,410],echo:208,edip:411,eff:[9,13,107,108,162,164,169,255,270,282,291,335,412],efield:238,eim:413,elast:6,emac:13,energi:[135,408],enforce2d:239,ensembl:7,erot:[91,92,93,94],error:[3,134],evapor:242,event:95,exampl:[1,4,6,11,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,500,501,502,503,504,505,506,507,510,511,512,513,514,515,516,517,518,519],exp:[27,187],expand:[47,427],extend:[8,11],extern:243,fcc:294,fdt:408,featur:[7,8,509,514],feb:[],fene:[46,47],fep:[9,13,96,211],field:[6,7],file:6,finit:6,fire:304,fix:[2,6,8,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,514],fix_modifi:[210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351],fld:[],flow:6,fluid:256,flux:[100,154],forc:[6,7,154,330],fork:509,fourier:[30,31,188,360],freez:244,from:[6,11],futur:5,gauss:414,gaybern:415,gcmc:245,gener:[1,6,7,13],get:12,github:509,gld:246,gle:247,global:6,gpu:[9,15,390,393,395,397,398,400,402,405,406,410,414,415,417,424,425,426,427,440,442,451,452,459,468,469,470,471,472,477,478,479],gran:[347,416],granular:[6,9],graviti:248,gromac:417,group2ndx:353,group:[97,352,514],gyrat:[98,99],h5md:[9,202,204],harmon:[32,48,49,50,189,192,346,361,443],hbond:418,heat:[100,154,249],heatconduct:460,helix:190,hertz:[416,453],hexord:101,histo:221,histori:[5,416],hook:416,hourglass:134,hourglass_error:[],how:6,hybrid:[33,51,191,362,419],idealga:461,imag:[202,205],imd:250,implicit:397,improp:[8,102,103],improper_coeff:356,improper_styl:[2,355,357,358,359,360,361,362,363,364,365,366,367],includ:368,inclus:8,indent:251,indic:0,individu:2,induc:6,inertia:104,info:[0,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351,369],input:[2,6,8],instal:11,instruct:[],integr:[6,7],integrate_tlsph:320,integrate_ulsph:321,intel:[9,16,20,32,48,184,189,195,269,278,279,290,358,361,395,397,415,424,468,470],interfac:[6,11],intern:135,internal_energi:[],introduct:7,invers:236,ipi:252,ipp:13,jan:[],jul:[],jump:370,kate:13,keyword:[441,514],kim:[9,420],kokko:[9,17],kspace:[2,8,9,342],kspace_modifi:371,kspace_styl:[6,372],label:373,lammp:[0,1,2,6,7,8,11,12,509],langevin:[253,254,255],lattic:374,lcbop:421,lennard:435,librari:[6,11,12],limit:[283,334],line:[12,284,422],linear:[431,442],lineforc:261,list:[2,423],lj1043:346,lj126:346,lj93:346,lj96:425,lmp2arc:13,lmp2cfg:13,lmp2vmd:13,local:[6,69,72,74,85,103,120,127],log:375,lowercas:4,lubric:433,lubricateu:434,mai:0,make:[12,509],manybodi:9,mar20:[],mar:[],mass:376,math:514,matlab:13,mdf:435,meam:[9,436,437,438],measur:1,merg:509,mesh:146,meso:[110,111,112,262,263],meso_:[],meso_rho:[],meso_t:[],messag:3,mgpt:[9,439],micelle2d:13,mie:440,min_modifi:377,min_styl:378,minim:[8,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351,379],misc:9,mod:[341,471],model:[6,7],modifi:8,mol:154,molecul:[9,380],molfil:[9,202,207],moltempl:13,momentum:[257,265],morri:465,mors:[52,388,418,442],move:266,move_tri_surf:322,movi:[202,205],mpi:11,mpiio:9,msd:[114,115,116],msi2lmp:13,msm:[393,395,397,402,424],msst:267,multi:[6,7,192],multipl:6,nb3b:443,ndx2group:353,neb:[268,381],neigh:[141,147],neigh_modifi:382,neighbor:383,nemd:6,newton:384,next:385,nharmon:193,noforc:[280,285],non:[6,7],none:[34,53,194,363,445],nongauss:116,nonlinear:54,nph:[269,270,271,272,273,313],nphug:274,npt:[269,270,275,276,277,313],num:[141,147],numer:514,nve:[278,279,280,281,282,283,284,285,286,287,313],nvt:[269,270,288,289,290,291,292,313],omega:117,omp:[9,18,20,21,23,24,25,26,27,28,29,30,31,32,35,38,44,46,47,48,49,50,52,54,55,57,184,185,187,188,189,190,192,193,195,196,198,248,269,271,273,274,275,277,278,286,288,290,292,305,355,357,358,360,361,364,366,387,388,390,393,394,395,396,397,398,400,401,402,403,405,406,410,413,414,415,416,417,418,419,424,425,426,427,428,429,430,431,432,433,437,438,442,443,444,446,451,452,459,468,469,470,471,472,473,475,477,478,479],onewai:293,open:7,oper:514,opl:195,opt:[9,19,397,410,424,428,442],optim:1,option:[6,8,12],orient:294,orientord:118,orthogon:6,other:6,output:[6,7,8,12,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351],overlai:419,overview:11,own:509,packag:[1,9,12,14,15,16,17,18,19,386],pair:[6,119,120],pair_coeff:399,pair_modifi:441,pair_styl:[2,387,388,389,390,391,392,393,394,395,396,397,398,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,477,478,479,480],pair_writ:476,pairwis:8,paquai:509,parallel:11,paramet:6,pars:2,partial:165,particl:[6,7,43],partit:481,past:5,per:6,perform:[1,10],peri:[9,446],period:25,phonon:[9,13,295],pimd:296,piston:348,planeforc:297,plastic:[123,136,137],plastic_strain:[],plastic_strain_r:[],pmb:446,poem:[9,298],point:304,polariz:6,poli:[394,433,434],polygon:[],polym:13,polymorph:447,post:7,potenti:[2,6,8],pour:299,pppm:6,prd:482,pre:7,press:300,pressur:124,previou:12,print:[301,483],problem:[3,4],process:[6,7],processor:484,profil:166,properti:[6,125,126,127,302],pymol_aspher:13,python:[9,11,13,485],qbmsst:303,qeq:[9,304,305,306],qmmm:[9,307],qtb:[9,308],quadrat:196,quantiti:6,quartic:[35,55],quip:[9,448],quit:486,radiu:132,ramp:167,rate:[137,144,149],rattl:316,rdf:128,read_data:487,read_dump:488,read_restart:489,reax:[9,13,306,309,310,449,450],reaxc:9,rebo:388,recent:311,reduc:129,refer:514,reflect:349,region:[8,129,168,169,350,490,514],relat:[20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,96,98,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,240,241,242,244,245,246,247,248,249,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,308,309,310,311,313,314,315,317,318,319,320,321,322,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,368,369,370,371,372,374,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,492,493,494,495,496,497,499,500,501,502,503,504,505,506,507,510,511,512,514,515,516,517,518,519],relax:230,replic:491,replica:[6,7,9],report:3,repositori:509,requir:12,rerun:492,rescal:[334,335],reset:237,reset_timestep:493,resquar:451,restart2data:13,restart:[6,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351,494],restrain:312,restrict:[14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,510,511,512,513,514,515,516,517,518,519],rho:[111,138],rhosum:463,rigid:[6,9,92,109,259,313],ring:364,rotat:170,round:[],rule:2,run:[6,11,12,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351,495],run_styl:496,scalabl:10,scalar:6,screen:12,script:[2,6,8,11],sdk:[36,452],self:328,serial:11,set:[6,497],setforc:315,setvel:323,shake:316,shape:142,shardlow:317,share:[11,12],shell:[6,498],shield:304,shift:[26,27,49,50,187],shock:9,simpl:31,simul:6,size:6,slater:304,slice:131,sllod:[290,291],small:313,smd:[9,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,318,319,320,321,322,323,325,453,454,455,456],smooth:[430,431,442],smtbq:[9,457],sna:152,snad:152,snap:[9,458],snapshot:6,snav:152,soft:[432,459],solver:2,sourc:7,spatial:[222,223],spc:6,speci:310,special:[7,441,514],special_bond:499,sph:[9,460,461,462,463,464,465],sphere:[93,94,171,223,259,273,277,286,292],spheric:6,spline:[437,438],spring:[326,327,328,339],squar:28,srd:[9,329,351],srp:466,standard:9,start:[12,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351],state:331,stationari:263,stefan:509,stop:[210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,236,237,238,239,242,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,297,298,299,300,301,302,303,304,305,306,307,309,310,311,312,313,314,315,316,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,346,347,348,349,350,351],store:[330,331],strain:[136,137,143,144,148,149],strategi:1,streitz:402,stress:[145,150,153,154],structur:2,style:[1,2,6,8],submit:8,suffix:500,summari:6,swap:[216,229],syntax:[20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,295,296,297,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,510,511,512,513,514,515,516,517,518,519],system:6,tabl:[0,6,38,57,198,241,469,470],tad:501,taitwat:[464,465],talli:[9,154],temp:[155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,332,333,334,335],temper:502,temperatur:6,tersoff:[470,471,472],test:11,tfmc:336,thermal:[6,337],thermo:[6,503,514],thermo_modifi:504,thermo_styl:505,thermodynam:[6,8],thermostat:6,thole:473,time:[6,224],timer:506,timestep:507,tip3p:6,tip4p:[6,402,424,428,432],tip:12,tlsph:[139,140,141,142,143,144,145,454],tlsph_defgrad:[],tlsph_dt:[],tlsph_num_neigh:[],tlsph_shape:[],tlsph_strain:[],tlsph_strain_rat:[],tlsph_stress:[],tmd:340,tool:[12,13],torqu:173,transform:236,tri:[287,474],tri_surfac:455,triangl:146,triangle_mesh_vertic:[],triclin:6,tstat:406,ttm:341,tune:342,tutori:509,type:7,ulsph:[147,148,149,150,456],ulsph_num_neigh:[],ulsph_strain:[],ulsph_strain_r:[],ulsph_stress:[],umbrella:366,uncomput:510,undump:511,unfix:512,unit:513,uppercas:4,user:[9,12,14,16,18],vacf:174,valu:[6,514],variabl:[6,8,514],variou:1,vashishta:475,vcm:175,vector:[6,343,514],veloc:515,version:[0,5,12],vertic:146,via:12,vim:13,viscos:[6,344],viscou:[260,345],visual:6,vol:151,voronoi:[9,176],vtk:[9,202,203,314],wall:[6,346,347,348,349,350,351],wall_surfac:325,warn:3,water:6,weight:221,what:[7,12],wolf:[393,402],wrapper:11,write:6,write_coeff:516,write_data:517,write_dump:518,write_restart:519,written:509,xmgrace:13,xmovi:13,xrd:177,xtc:[],your:509,yukawa:[477,478],zbl:[472,479],zero:[39,59,199,367,480]}})
\ No newline at end of file

Event Timeline