Fix whitespace
This commit is contained in:
@ -248,7 +248,7 @@ to "compute" what the next LAMMPS command should be.
|
|||||||
|
|
||||||
L.command("region box block 0 10 0 5 -0.5 0.5")
|
L.command("region box block 0 10 0 5 -0.5 0.5")
|
||||||
|
|
||||||
With the PyLammps interface, any LAMMPS command can be split up into arbitrary parts.
|
With the PyLammps interface, any LAMMPS command can be split up into arbitrary parts.
|
||||||
These parts are then passed to a member function with the name of the command.
|
These parts are then passed to a member function with the name of the command.
|
||||||
For the ``region`` command that means the :code:`region` method can be called.
|
For the ``region`` command that means the :code:`region` method can be called.
|
||||||
The arguments of the command can be passed as one string, or
|
The arguments of the command can be passed as one string, or
|
||||||
|
|||||||
@ -486,7 +486,7 @@ class lammps(object):
|
|||||||
function of the C-library interface. Its documentation includes a
|
function of the C-library interface. Its documentation includes a
|
||||||
list of the supported keywords and their data types.
|
list of the supported keywords and their data types.
|
||||||
Since Python needs to know the data type to be able to interpret
|
Since Python needs to know the data type to be able to interpret
|
||||||
the result, by default, this function will try to auto-detect the data
|
the result, by default, this function will try to auto-detect the data
|
||||||
type by asking the library. You can also force a specific data type.
|
type by asking the library. You can also force a specific data type.
|
||||||
For that purpose the :py:mod:`lammps` module contains the constants
|
For that purpose the :py:mod:`lammps` module contains the constants
|
||||||
``LAMMPS_INT``, ``LAMMPS_INT_2D``, ``LAMMPS_DOUBLE``,
|
``LAMMPS_INT``, ``LAMMPS_INT_2D``, ``LAMMPS_DOUBLE``,
|
||||||
|
|||||||
Reference in New Issue
Block a user