git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14675 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2016-02-24 15:27:19 +00:00
parent 98b34b6311
commit dbd259948b
4 changed files with 27 additions and 9 deletions

View File

@ -929,13 +929,22 @@ styles can be created to add new region shapes to LAMMPS.</p>
class. See region.h for details.</p>
<table border="1" class="docutils">
<colgroup>
<col width="14%" />
<col width="86%" />
<col width="21%" />
<col width="79%" />
</colgroup>
<tbody valign="top">
<tr class="row-odd"><td>match</td>
<tr class="row-odd"><td>inside</td>
<td>determine whether a point is in the region</td>
</tr>
<tr class="row-even"><td>surface_interior</td>
<td>determine if a point is within a cutoff distance inside of surc</td>
</tr>
<tr class="row-odd"><td>surface_exterior</td>
<td>determine if a point is within a cutoff distance outside of surf</td>
</tr>
<tr class="row-even"><td>shape_update</td>
<td>change region shape if set by time-depedent variable</td>
</tr>
</tbody>
</table>
<hr class="docutils" />

View File

@ -513,11 +513,14 @@ 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.
match: determine whether a point is in the region :tb(s=:)
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 :tb(s=:)
:line
10.11 Body styles :link(mod_12),h4
10.12 Body styles :link(mod_12),h4
Classes that define body particles are derived from the Body class.
Body particles can represent complex entities, such as surface meshes

View File

@ -699,9 +699,15 @@ 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.
+-------+--------------------------------------------+
| match | determine whether a point is in the region |
+-------+--------------------------------------------+
+------------------+------------------------------------------------------------------+
| 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 |
+------------------+------------------------------------------------------------------+
----------

File diff suppressed because one or more lines are too long