Change doc folder src -> txt, rst -> src

This commit is contained in:
Richard Berger
2019-11-05 14:01:48 -05:00
parent fe91d462db
commit 74dade3ccb
1525 changed files with 12 additions and 13 deletions

27
doc/src/Modify_region.rst Normal file
View File

@ -0,0 +1,27 @@
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 surface |
+-------------------+---------------------------------------------------------------------+
| surface\_exterior | determine if a point is within a cutoff distance outside of surface |
+-------------------+---------------------------------------------------------------------+
| shape\_update | change region shape if set by time-dependent variable |
+-------------------+---------------------------------------------------------------------+
.. _lws: http://lammps.sandia.gov
.. _ld: Manual.html
.. _lc: Commands_all.html