From c0fde537eb249343fe11f0ef5ad4314052163f93 Mon Sep 17 00:00:00 2001 From: Evangelos Voyiatzis Date: Thu, 22 Oct 2020 10:55:27 +0200 Subject: [PATCH] Add files via upload documentation file for gaussian bond_style --- doc/src/bond_gaussian.rst | 62 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 doc/src/bond_gaussian.rst diff --git a/doc/src/bond_gaussian.rst b/doc/src/bond_gaussian.rst new file mode 100644 index 0000000000..affc39bc43 --- /dev/null +++ b/doc/src/bond_gaussian.rst @@ -0,0 +1,62 @@ +.. index:: bond_style gaussian + +bond_style gaussian command +================================ + +Syntax +"""""" + +.. code-block:: LAMMPS + + bond_style gaussian + +Examples +"""""""" + +.. code-block:: LAMMPS + + bond_style gaussian + bond_coeff 1 300.0 2 0.0128 0.375 3.37 0.0730 0.148 3.63 + +Description +""""""""""" + +The *gaussian* bond style uses the potential: + +.. math:: + + E = -k_B T ln\left(\sum_{i=1}^{n} \frac{A_i}{w_i \sqrt{\pi/2}} exp\left( \frac{-(r-r_{i})^2}{w_i^2})\right) \right) + +The following coefficients must be defined for each bond type via the +:doc:`bond_coeff ` command as in the example above, or in +the data file or restart files read by the :doc:`read_data ` +or :doc:`read_restart ` commands: + +* T temperature at which the potential was derived +* :math:`n` (integer >=1) +* :math:`A_1` (-) +* :math:`w_1` (-) +* :math:`r_1` (length) +* ... +* :math:`A_n` (-) +* :math:`w_n` (-) +* :math:`r_n` (length) + + +Restrictions +"""""""""""" + +This bond style can only be used if LAMMPS was built with the +USER-MISC package. See the :doc:`Build package ` doc +page for more info. + +Related commands +"""""""""""""""" + +:doc:`bond_coeff ` + +Default +""""""" + +none +