forked from lijiext/lammps
Merge pull request #1440 from ellio167/kim-simulator-models
Develop native support for KIM simulator models
This commit is contained in:
commit
8fa4efa08e
|
@ -9,6 +9,9 @@ if(PKG_KIM)
|
|||
if(KIM-API_FOUND)
|
||||
set(DOWNLOAD_KIM_DEFAULT OFF)
|
||||
else()
|
||||
if (NOT DOWNLOAD_KIM)
|
||||
message(WARNING "KIM-API package not found. We will download and build our own")
|
||||
endif()
|
||||
set(DOWNLOAD_KIM_DEFAULT ON)
|
||||
endif()
|
||||
option(DOWNLOAD_KIM "Download KIM-API from OpenKIM instead of using an already installed one" ${DOWNLOAD_KIM_DEFAULT})
|
||||
|
@ -21,8 +24,8 @@ if(PKG_KIM)
|
|||
enable_language(Fortran)
|
||||
include(ExternalProject)
|
||||
ExternalProject_Add(kim_build
|
||||
URL https://s3.openkim.org/kim-api/kim-api-2.0.2.txz
|
||||
URL_MD5 537d9c0abd30f85b875ebb584f9143fa
|
||||
URL https://s3.openkim.org/kim-api/kim-api-2.1.2.txz
|
||||
URL_MD5 6ac52e14ef52967fc7858220b208cba5
|
||||
BINARY_DIR build
|
||||
CMAKE_ARGS -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}
|
||||
-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}
|
||||
|
|
|
@ -172,22 +172,17 @@ KIM package :h4,link(kim)
|
|||
|
||||
To build with this package, the KIM library with API v2 must be downloaded
|
||||
and built on your system. It must include the KIM models that you want to
|
||||
use with LAMMPS. If you want to use the "kim_query"_kim_query.html
|
||||
use with LAMMPS. If you want to use the "kim_query"_kim_commands.html
|
||||
command, you also need to have libcurl installed with the matching
|
||||
development headers and the curl-config tool.
|
||||
|
||||
Note that in LAMMPS lingo, a KIM model driver is a pair style
|
||||
(e.g. EAM or Tersoff). A KIM model is a pair style for a particular
|
||||
element or alloy and set of parameters, e.g. EAM for Cu with a
|
||||
specific EAM potential file. Also note that downloading and installing
|
||||
the KIM API library with all its models, may take a long time (10s of
|
||||
minutes to hours) to build. Of course you only need to do that once.
|
||||
See "Obtaining KIM Models"_http://openkim.org/doc/usage/obtaining-models to
|
||||
learn how to install a pre-build binary of the OpenKIM Repository of Models.
|
||||
See the list of all KIM models here: https://openkim.org/browse/models
|
||||
|
||||
See the list of KIM model drivers here:
|
||||
https://openkim.org/browse/model-drivers/alphabetical
|
||||
|
||||
See the list of all KIM models here:
|
||||
https://openkim.org/browse/models/by-model-drivers
|
||||
(Also note that when downloading and installing from source
|
||||
the KIM API library with all its models, may take a long time (tens of
|
||||
minutes to hours) to build. Of course you only need to do that once.)
|
||||
|
||||
[CMake build]:
|
||||
|
||||
|
|
|
@ -68,7 +68,9 @@ An alphabetic list of all general LAMMPS commands.
|
|||
"improper_style"_improper_style.html,
|
||||
"include"_include.html,
|
||||
"jump"_jump.html,
|
||||
"kim_query"_kim_query.html,
|
||||
"kim_init"_kim_commands.html,
|
||||
"kim_interactions"_kim_commands.html,
|
||||
"kim_query"_kim_commands.html,
|
||||
"kspace_modify"_kspace_modify.html,
|
||||
"kspace_style"_kspace_style.html,
|
||||
"label"_label.html,
|
||||
|
|
|
@ -5785,6 +5785,16 @@ definitions. :dd
|
|||
|
||||
The data file header lists improper but no improper types. :dd
|
||||
|
||||
{Incompatible KIM Simulator Model} :dt
|
||||
|
||||
The requested KIM Simulator Model was defined for a different MD code
|
||||
and thus is not compatible with LAMMPS. :dd
|
||||
|
||||
{Incompatible units for KIM Simulator Model} :dt
|
||||
|
||||
The selected unit style is not compatible with the requested KIM
|
||||
Simulator Model. :dd
|
||||
|
||||
{Incomplete use of variables in create_atoms command} :dt
|
||||
|
||||
The var and set options must be used together. :dd
|
||||
|
@ -7055,6 +7065,12 @@ The atom style defined does not have this attribute. :dd
|
|||
|
||||
The atom style defined does not have these attributes. :dd
|
||||
|
||||
{KIM Simulator Model has no Model definition} :dt
|
||||
|
||||
There is no model definition (key: model-defn) in the KIM Simulator
|
||||
Model. Please contact the OpenKIM database maintainers to verify
|
||||
and potentially correct this. :dd
|
||||
|
||||
{KOKKOS package does not yet support comm_style tiled} :dt
|
||||
|
||||
Self-explanatory. :dd
|
||||
|
@ -7559,6 +7575,18 @@ Self-explanatory. :dd
|
|||
|
||||
Self-explanatory. :dd
|
||||
|
||||
{Must use 'kim_style init' command before simulation box is defined} :dt
|
||||
|
||||
Self-explanatory. :dd
|
||||
|
||||
{Must use 'kim_style define' command after simulation box is defined} :dt
|
||||
|
||||
Self-explanatory. :dd
|
||||
|
||||
{Must use 'kim_style init' command before 'kim_style define'} :dt
|
||||
|
||||
Self-explanatory. :dd
|
||||
|
||||
{Must use 'kspace_modify pressure/scalar no' for rRESPA with kspace_style MSM} :dt
|
||||
|
||||
The kspace scalar pressure option cannot (yet) be used with rRESPA. :dd
|
||||
|
@ -9502,6 +9530,11 @@ See the "read_data extra/special/per/atom" command
|
|||
for info on how to leave space in the special bonds
|
||||
list to allow for additional bonds to be formed. :dd
|
||||
|
||||
{Species XXX is not supported by this KIM Simulator Model} :dt
|
||||
|
||||
The kim_style define command was referencing a species that is not
|
||||
present in the requested KIM Simulator Model. :dd
|
||||
|
||||
{Specified processors != physical processors} :dt
|
||||
|
||||
The 3d grid of processors defined by the processors command does not
|
||||
|
|
|
@ -73,7 +73,7 @@ granregion: use of fix wall/region/gran as boundary on granular particles
|
|||
hugoniostat: Hugoniostat shock dynamics
|
||||
hyper: global and local hyperdynamics of diffusion on Pt surface
|
||||
indent: spherical indenter into a 2d solid
|
||||
kim: use of potentials in Knowledge Base for Interatomic Models (KIM)
|
||||
kim: use of potentials from the "OpenKIM Repository"_openkim
|
||||
latte: examples for using fix latte for DFTB via the LATTE library
|
||||
meam: MEAM test for SiC and shear (same as shear examples)
|
||||
melt: rapid melt of 3d LJ system
|
||||
|
@ -153,3 +153,5 @@ 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 "Packages_details"_Packages_details.html doc
|
||||
page for more info on specific USER packages.
|
||||
|
||||
:link(openkim,https://openkim.org)
|
||||
|
|
|
@ -10,47 +10,34 @@ Documentation"_ld - "LAMMPS Commands"_lc :c
|
|||
Download an executable for Mac :h3
|
||||
|
||||
LAMMPS can be downloaded, built, and configured for OS X on a Mac with
|
||||
"Homebrew"_homebrew. Only four of the LAMMPS packages are unavailable
|
||||
at this time because of additional needs not yet met: KIM, GPU,
|
||||
USER-INTEL, USER-ATC.
|
||||
"Homebrew"_homebrew. The following LAMMPS packages are unavailable at this
|
||||
time because of additional needs not yet met: GPU, KOKKOS, LATTE, MSCG,
|
||||
MESSAGE, MPIIO POEMS VORONOI.
|
||||
|
||||
After installing Homebrew, you can install LAMMPS on your system with
|
||||
the following commands:
|
||||
|
||||
% brew tap homebrew/science
|
||||
% brew install lammps # serial version
|
||||
% brew install lammps --with-mpi # mpi support :pre
|
||||
% brew install lammps :pre
|
||||
|
||||
This will install the executable "lammps", a python module named
|
||||
"lammps", and additional resources with all the standard packages. To
|
||||
get the location of the additional resources type this:
|
||||
|
||||
% brew info lammps :pre
|
||||
|
||||
This command also tells you additional installation options available.
|
||||
The user-packages are available as options, just install them like
|
||||
this example for the USER-OMP package:
|
||||
|
||||
% brew install lammps --enable-user-omp :pre
|
||||
|
||||
It is usually best to install LAMMPS with the most up to date source
|
||||
files, which can be done with the "--HEAD" option:
|
||||
|
||||
% brew install lammps --HEAD :pre
|
||||
|
||||
To re-install the LAMMPS HEAD, run this command occasionally (make sure
|
||||
to use the desired options).
|
||||
|
||||
% brew install --force lammps --HEAD $\{options\} :pre
|
||||
This will install the executables "lammps_serial" and "lammps_mpi", as well as
|
||||
the LAMMPS "doc", "potentials", "tools", "bench", and "examples" directories.
|
||||
|
||||
Once LAMMPS is installed, you can test the installation with the
|
||||
Lennard-Jones benchmark file:
|
||||
|
||||
% brew test lammps -v :pre
|
||||
|
||||
The LAMMPS binary is built with the "KIM package"_Build_extras#kim which
|
||||
results in Homebrew also installing the `kim-api` binaries when LAMMPS is
|
||||
installed. In order to use potentials from "openkim.org"_openkim, you can
|
||||
install the `openkim-models` package
|
||||
|
||||
% brew install openkim-models :pre
|
||||
|
||||
If you have problems with the installation you can post issues to
|
||||
"this link"_homebrew.
|
||||
|
||||
Thanks to Derek Thomas (derekt at cello.t.u-tokyo.ac.jp) for setting
|
||||
up the Homebrew capability.
|
||||
:link(homebrew,https://github.com/Homebrew/homebrew-science/issues)
|
||||
:link(homebrew,https://github.com/Homebrew/homebrew-core/issues)
|
||||
:link(openkim,https://openkim.org)
|
||||
|
|
|
@ -92,8 +92,8 @@ commands)
|
|||
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 \
|
||||
"pair kim"_pair_kim.html
|
||||
access to the "OpenKIM Repository"_http://openkim.org of potentials via \
|
||||
"kim_init, kim_interactions, and kim_query"_kim_commands.html commands
|
||||
hybrid potentials: multiple pair, bond, angle, dihedral, improper \
|
||||
potentials can be used in one simulation
|
||||
overlaid potentials: superposition of multiple pair potentials :ul
|
||||
|
|
|
@ -338,22 +338,37 @@ KIM package :link(PKG-KIM),h4
|
|||
|
||||
[Contents:]
|
||||
|
||||
A "pair_style kim"_pair_kim.html command which is a wrapper on the
|
||||
Knowledge Base for Interatomic Models (KIM) repository of interatomic
|
||||
potentials, enabling any of them to be used in LAMMPS simulations.
|
||||
Also a "kim_query"_kim_query.html command, which allows to query
|
||||
the OpenKIM database for stored properties.
|
||||
This package contains a set of commands that serve as a wrapper on the
|
||||
"Open Knowledgebase of Interatomic Models (OpenKIM)"_https://openkim.org
|
||||
repository of interatomic models (IMs)
|
||||
enabling compatible ones to be used in LAMMPS simulations.
|
||||
This includes "kim_init and kim_interactions"_kim_commands.html
|
||||
commands to select, initialize and instantiate the IM, and a
|
||||
"kim_query"_kim_commands.html command to perform web queries
|
||||
for material property predictions of OpenKIM IMs.
|
||||
Support for KIM IMs that conform to the
|
||||
"KIM Application Programming Interface (API)"_https://openkim.org/kim-api/
|
||||
is provided by the "pair_style kim"_pair_kim.html command.
|
||||
|
||||
To use this package you must have the KIM library available on your
|
||||
system.
|
||||
NOTE: The command {pair_style kim} is called by {kim_interactions} and
|
||||
is not recommended to be directly used in input scripts.
|
||||
|
||||
To use this package you must have the KIM API library available on your
|
||||
system. The KIM API is available for download on the
|
||||
"OpenKIM website"_https://openkim.org/kim-api/.
|
||||
When installing LAMMPS from binary, the kim-api package
|
||||
is a dependency that is automatically downloaded and installed.
|
||||
|
||||
Information about the KIM project can be found at its website:
|
||||
https://openkim.org. The KIM project is led by Ellad Tadmor and Ryan
|
||||
Elliott (U Minnesota).
|
||||
"https://openkim.org"_https://openkim.org.
|
||||
The KIM project is led by Ellad Tadmor and Ryan Elliott (U Minnesota)
|
||||
and is funded by the "National Science Foundation"_https://www.nsf.gov/.
|
||||
|
||||
[Authors:] Ryan Elliott (U Minnesota) is the main developer for the KIM
|
||||
API which the "pair_style kim"_pair_kim.html command uses. He
|
||||
developed the pair style.
|
||||
API and the {pair_style kim} command. Axel Kohlmeyer (Temple U) and
|
||||
Ellad Tadmor (U Minnesota) contributed to the "kim_commands"_kim_commands.html
|
||||
interface in close collaboration with Ryan Elliott.
|
||||
|
||||
|
||||
[Install:]
|
||||
|
||||
|
@ -363,10 +378,11 @@ extras"_Build_extras.html doc page.
|
|||
|
||||
[Supporting info:]
|
||||
|
||||
"kim_commands"_kim_commands.html
|
||||
"pair_style kim"_pair_kim.html
|
||||
src/KIM: filenames -> commands
|
||||
src/KIM/README
|
||||
lib/kim/README
|
||||
"pair_style kim"_pair_kim.html
|
||||
examples/kim :ul
|
||||
|
||||
:line
|
||||
|
@ -984,9 +1000,9 @@ USER-ADIOS package :link(PKG-USER-ADIOS),h4
|
|||
|
||||
[Contents:]
|
||||
|
||||
ADIOS is a high-performance I/O library. This package implements the
|
||||
ADIOS is a high-performance I/O library. This package implements the
|
||||
dump "atom/adios" and dump "custom/adios" commands to write data using
|
||||
the ADIOS library.
|
||||
the ADIOS library.
|
||||
|
||||
[Authors:] Norbert Podhorszki (ORNL) from the ADIOS developer team.
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ Commands :h1
|
|||
include
|
||||
info
|
||||
jump
|
||||
kim_query
|
||||
kim_commands
|
||||
kspace_modify
|
||||
kspace_style
|
||||
label
|
||||
|
|
|
@ -177,7 +177,7 @@ compute"_Commands_compute.html doc page are followed by one or more of
|
|||
"angle"_compute_angle.html - energy of each angle sub-style
|
||||
"angle/local"_compute_angle_local.html - theta and energy of each angle
|
||||
"angmom/chunk"_compute_angmom_chunk.html - angular momentum for each chunk
|
||||
"basal/atom"_compute_basal_atom.html - calculates the hexagonal close-packed “c” lattice vector of each atom
|
||||
"basal/atom"_compute_basal_atom.html - calculates the hexagonal close-packed "c" lattice vector of each atom
|
||||
"body/local"_compute_body_local.html - attributes of body sub-particles
|
||||
"bond"_compute_bond.html - energy of each bond sub-style
|
||||
"bond/local"_compute_bond_local.html - distance and energy of each bond
|
||||
|
|
|
@ -149,8 +149,7 @@ meaning of these parameters:
|
|||
"spin/neel"_pair_spin_neel.html: coulombic_cutoff: type global:
|
||||
"table"_pair_table.html: table_cutoff: type pairs:
|
||||
"ufm"_pair_ufm.html: epsilon,sigma: type pairs:
|
||||
"soft"_pair_soft.html: a: type pairs:
|
||||
"kim"_pair_kim.html: PARAM_FREE_*:i,j,...: global :tb(c=3,s=:)
|
||||
"soft"_pair_soft.html: a: type pairs: :tb(c=3,s=:)
|
||||
|
||||
NOTE: It is easy to add new pairwise potentials and their parameters
|
||||
to this list. All it typically takes is adding an extract() method to
|
||||
|
|
|
@ -0,0 +1,522 @@
|
|||
"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c
|
||||
|
||||
:link(lws,http://lammps.sandia.gov)
|
||||
:link(ld,Manual.html)
|
||||
:link(lc,Commands_all.html)
|
||||
|
||||
:line
|
||||
|
||||
kim_init command :h3
|
||||
kim_interactions command :h3
|
||||
kim_query command :h3
|
||||
|
||||
[Syntax:]
|
||||
|
||||
kim_init model user_units unitarg
|
||||
kim_interactions typeargs
|
||||
kim_query variable formatarg query_function queryargs :pre
|
||||
|
||||
model = name of the KIM interatomic model (the KIM ID for models archived in OpenKIM)
|
||||
user_units = the LAMMPS "units"_units.html style assumed in the LAMMPS input script
|
||||
unitarg = {unit_conversion_mode} (optional)
|
||||
typeargs = atom type to species mapping (one entry per atom type) or {fixed_types} for models with a preset fixed mapping
|
||||
variable = name of a (string style) variable where the result of the query is stored
|
||||
formatarg = {split} (optional)
|
||||
query_function = name of the OpenKIM web API query function to be used
|
||||
queryargs = a series of {keyword=value} pairs that represent the web query; supported keywords depend on the query function :ul
|
||||
|
||||
|
||||
[Examples:]
|
||||
|
||||
kim_init SW_StillingerWeber_1985_Si__MO_405512056662_005 metal
|
||||
kim_interactions Si
|
||||
kim_init Sim_LAMMPS_ReaxFF_StrachanVanDuinChakraborty_2003_CHNO__SM_107643900657_000 real
|
||||
kim_init Sim_LAMMPS_ReaxFF_StrachanVanDuinChakraborty_2003_CHNO__SM_107643900657_000 metal unit_conversion_mode
|
||||
kim_interactions C H O
|
||||
Sim_LAMMPS_IFF_PCFF_HeinzMishraLinEmami_2015Ver1v5_FccmetalsMineralsSolvents Polymers__SM_039297821658_000 real
|
||||
kim_interactions fixed_types
|
||||
kim_query a0 get_lattice_constant_cubic crystal=\["fcc"\] species=\["Al"\] units=\["angstrom"\] :pre
|
||||
|
||||
[Description:]
|
||||
|
||||
The set of {kim_commands} provide a high-level wrapper around the
|
||||
"Open Knowledgebase of Interatomic Models (OpenKIM)"_https://openkim.org
|
||||
repository of interatomic models (IMs) (potentials and force fields),
|
||||
so that they can be used by LAMMPS scripts. These commands do not implement
|
||||
any computations directly, but rather generate LAMMPS input commands based
|
||||
on the information retrieved from the OpenKIM repository to initialize and
|
||||
activate OpenKIM IMs and query their predictions for use in the LAMMPS script.
|
||||
All LAMMPS input commands generated and executed by {kim_commands} are
|
||||
echoed to the LAMMPS log file.
|
||||
|
||||
Benefits of Using OpenKIM IMs :h4
|
||||
|
||||
Employing OpenKIM IMs provides LAMMPS users with multiple benefits:
|
||||
|
||||
Reliability :h5
|
||||
|
||||
All content archived in OpenKIM is reviewed by the "KIM Editor"_https://openkim.org/governance/ for quality.
|
||||
IMs in OpenKIM are archived with full provenance control. Each is associated with a maintainer responsible for the integrity of the content. All changes are tracked and recorded.
|
||||
IMs in OpenKIM are exhaustively tested using "KIM Tests"_https://openkim.org/doc/evaluation/kim-tests/ that compute a host of material properties, and "KIM Verification Checks"_https://openkim.org/doc/evaluation/kim-verification-checks/ that provide the user with information on various aspects of the IM behavior and coding correctness. This information is displayed on the IM's page accessible through the "OpenKIM browse interface"_https://openkim.org/browse. :ul
|
||||
|
||||
Reproducibility :h5
|
||||
|
||||
Each IM in OpenKIM is issued a unique identifier ("KIM ID"_https://openkim.org/doc/schema/kim-ids/), which includes a version number (last three digits). Any changes that can result in different numerical values lead to a version increment in the KIM ID. This makes it possible to reproduce simulations since the specific version of a specific IM used can be retrieved using its KIM ID.
|
||||
OpenKIM is a member organization of "DataCite"_https://datacite.org/ and issues digital object identifiers (DOIs) to all IMs archived in OpenKIM. This makes it possible to cite the IM code used in a simulation in a publications to give credit to the developers and further facilitate reproducibility. :ul
|
||||
|
||||
Convenience :h5
|
||||
|
||||
IMs in OpenKIM are distributed in binary form along with LAMMPS and can be used in a LAMMPS input script simply by providing their KIM ID in the {kim_init} command documented on this page.
|
||||
The {kim_query} web query tool provides the ability to use the predictions of IMs for supported material properties (computed via "KIM Tests"_https://openkim.org/doc/evaluation/kim-tests/) as part of a LAMMPS input script setup and analysis.
|
||||
Support is provided for unit conversion between the "unit style"_units.html used in the LAMMPS input script and the units required by the OpenKIM IM. This makes it possible to use a single input script with IMs using different units without change and minimizes the likelihood of errors due to incompatible units. :ul
|
||||
|
||||
:link(IM_types)
|
||||
Types of IMs in OpenKIM :h4
|
||||
|
||||
There are two types of IMs archived in OpenKIM:
|
||||
|
||||
The first type is called a {KIM Portable Model} (PM). A KIM PM is an independent computer implementation of an IM written in one of the languages supported by KIM (C, C++, Fortran) that conforms to the KIM Application Programming Interface ("KIM API"_https://openkim.org/kim-api/) Portable Model Interface (PMI) standard. A KIM PM will work seamlessly with any simulation code that supports the KIM API/PMI standard (including LAMMPS; see "complete list of supported codes"_https://openkim.org/projects-using-kim/).
|
||||
The second type is called a {KIM Simulator Model} (SM). A KIM SM is an IM that is implemented natively within a simulation code ({simulator}) that supports the KIM API Simulator Model Interface (SMI); in this case LAMMPS. A separate SM package is archived in OpenKIM for each parameterization of the IM, which includes all of the necessary parameter files, LAMMPS commands, and metadata (supported species, units, etc.) needed to run the IM in LAMMPS. :ol
|
||||
|
||||
With these two IM types, OpenKIM can archive and test almost all IMs that
|
||||
can be used by LAMMPS. (It is easy to contribute new IMs to OpenKIM, see
|
||||
the "upload instructions"_https://openkim.org/doc/repository/adding-content/.)
|
||||
|
||||
OpenKIM IMs are uniquely identified by a
|
||||
"KIM ID"_https://openkim.org/doc/schema/kim-ids/.
|
||||
The extended KIM ID consists of
|
||||
a human-readable prefix identifying the type of IM, authors, publication year,
|
||||
and supported species, separated by two underscores from the KIM ID itself,
|
||||
which begins with an IM code
|
||||
({MO} for a KIM Portable Model, and {SM} for a KIM Simulator Model)
|
||||
followed by a unique 12-digit code and a 3-digit version identifier.
|
||||
By convention SM prefixes begin with {Sim_} to readily identify them.
|
||||
|
||||
SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||||
Sim_LAMMPS_ReaxFF_StrachanVanDuinChakraborty_2003_CHNO__SM_107643900657_000 :pre
|
||||
|
||||
Each OpenKIM IM has a dedicated "Model Page" on "OpenKIM"_https://openkim.org
|
||||
providing all the information on the IM including a title, description,
|
||||
authorship and citation information, test and verification check results,
|
||||
visualizations of results, a wiki with documentation and user comments, and
|
||||
access to raw files, and other information.
|
||||
The URL for the Model Page is constructed from the
|
||||
"extended KIM ID"_https://openkim.org/doc/schema/kim-ids/ of the IM:
|
||||
|
||||
https://openkim.org/id/extended_KIM_ID
|
||||
:pre
|
||||
|
||||
For example for the Stillinger-Weber potential
|
||||
listed above the Model Page is located at:
|
||||
|
||||
"https://openkim.org/id/SW_StillingerWeber_1985_Si__MO_405512056662_005"_https://openkim.org/id/SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||||
:pre
|
||||
|
||||
See the "current list of KIM PMs and SMs archived in OpenKIM"_https://openkim.org/browse/models/by-species.
|
||||
This list is sorted by species and can be filtered to display only
|
||||
IMs for certain species combinations.
|
||||
|
||||
See "Obtaining KIM Models"_http://openkim.org/doc/usage/obtaining-models to
|
||||
learn how to install a pre-build binary of the OpenKIM Repository of Models.
|
||||
|
||||
NOTE: It is also possible to locally install IMs not archived in OpenKIM,
|
||||
in which case their names do not have to conform to the KIM ID format.
|
||||
|
||||
Using OpenKIM IMs with LAMMPS :h4
|
||||
|
||||
Two commands are employed when using OpenKIM IMs, one to select the
|
||||
IM and perform necessary initialization ({kim_init}), and the second
|
||||
to set up the IM for use by executing any necessary LAMMPS commands
|
||||
({kim_interactions}). Both are required.
|
||||
|
||||
See the {examples/kim} directory for example input scripts that use KIM PMs
|
||||
and KIM SMs.
|
||||
|
||||
OpenKIM IM Initialization ({kim_init}) :h5
|
||||
|
||||
The {kim_init} mode command must be issued [before]
|
||||
the simulation box is created (normally at the top of the file).
|
||||
This command sets the OpenKIM IM that will be used and may issue
|
||||
additional commands changing LAMMPS default settings that are required
|
||||
for using the selected IM (such as "units"_units.html or
|
||||
"atom_style"_atom_style.html). If needed, those settings can be overridden,
|
||||
however, typically a script containing a {kim_init} command
|
||||
would not include {units} and {atom_style} commands.
|
||||
|
||||
The required arguments of {kim_init} are the {model} name of the
|
||||
IM to be used in the simulation (for an IM archived in OpenKIM this is
|
||||
its "extended KIM ID"_https://openkim.org/doc/schema/kim-ids/, and
|
||||
the {user_units}, which are the LAMMPS "units style"_units.html used
|
||||
in the input script. (Any dimensioned numerical values in the input
|
||||
script and values read in from files are expected to be in the
|
||||
{user_units} system.)
|
||||
|
||||
The selected IM can be either a "KIM PM or a KIM SM"_#IM_types.
|
||||
For a KIM SM, the {kim_init} command verifies that the SM is designed
|
||||
to work with LAMMPS (and not another simulation code).
|
||||
In addition, the LAMMPS version used for defining
|
||||
the SM and the LAMMPS version being currently run are
|
||||
printed to help diagnose any incompatible changes to input script or
|
||||
command syntax between the two LAMMPS versions.
|
||||
|
||||
Based on the selected model {kim_init} may modify the
|
||||
"atom_style"_atom_style.html.
|
||||
Some SMs have requirements for this setting. If this is the case, then
|
||||
{atom_style} will be set to the required style. Otherwise, the value is left
|
||||
unchanged (which in the absence of an {atom_style} command in the input script
|
||||
is the "default atom_style value"_atom_style.html).
|
||||
|
||||
Regarding units, the {kim_init} command behaves in different ways depending
|
||||
on whether or not {unit conversion mode} is activated as indicated by the
|
||||
optional {unitarg} argument.
|
||||
If unit conversion mode is [not] active, then {user_units} must
|
||||
either match the required units of the IM or the IM must be able
|
||||
to adjust its units to match. (The latter is only possible with some KIM PMs;
|
||||
SMs can never adjust their units.) If a match is possible, the LAMMPS
|
||||
"units"_units.html command is called to set the units to
|
||||
{user_units}. If the match fails, the simulation is terminated with
|
||||
an error.
|
||||
|
||||
Here is an example of a LAMMPS script to compute the cohesive energy
|
||||
of a face-centered cubic (fcc) lattice for the Ercolessi and Adams (1994)
|
||||
potential for Al:
|
||||
|
||||
kim_init EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005 metal
|
||||
boundary p p p
|
||||
lattice fcc 4.032
|
||||
region simbox block 0 1 0 1 0 1 units lattice
|
||||
create_box 1 simbox
|
||||
create_atoms 1 box
|
||||
mass 1 26.981539
|
||||
kim_interactions Al
|
||||
run 0
|
||||
variable Ec equal (pe/count(all))/$\{_u_energy\}
|
||||
print "Cohesive Energy = $\{EcJ\} eV"
|
||||
:pre
|
||||
|
||||
The above script will end with an error in the {kim_init} line if the
|
||||
IM is changed to another potential for Al that does not work with {metal}
|
||||
units. To address this {kim_init} offers the {unit_conversion_mode}.
|
||||
If unit conversion mode {is} active, then {kim_init} calls the LAMMPS
|
||||
"units"_units.html command to set the units to the IM's required or
|
||||
preferred units. Conversion factors between the IM's units and the {user_units}
|
||||
are defined for all "physical quantities"_units.html (mass, distance, etc.).
|
||||
(Note that converting to or from the "lj" unit style is not supported.)
|
||||
These factors are stored as "internal style variables"_variable.html with
|
||||
the following standard names:
|
||||
|
||||
_u_mass
|
||||
_u_distance
|
||||
_u_time
|
||||
_u_energy
|
||||
_u_velocity
|
||||
_u_force
|
||||
_u_torque
|
||||
_u_temperature
|
||||
_u_pressure
|
||||
_u_viscosity
|
||||
_u_charge
|
||||
_u_dipole
|
||||
_u_efield
|
||||
_u_density :pre
|
||||
|
||||
If desired, the input script can be designed to work with these conversion
|
||||
factors so that the script will work without change with any OpenKIM IM.
|
||||
(This approach is used in the
|
||||
"OpenKIM Testing Framework"_https://openkim.org/doc/evaluation/kim-tests/.)
|
||||
For example, the script given above for the cohesive energy of fcc Al
|
||||
can be rewritten to work with any IM regardless of units. The following
|
||||
script constructs an fcc lattice with a lattice parameter defined in
|
||||
meters, computes the total energy, and prints the cohesive energy in
|
||||
Joules regardless of the units of the IM.
|
||||
|
||||
kim_init EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005 si unit_conversion_mode
|
||||
boundary p p p
|
||||
lattice fcc 4.032e-10*$\{_u_distance\}
|
||||
region simbox block 0 1 0 1 0 1 units lattice
|
||||
create_box 1 simbox
|
||||
create_atoms 1 box
|
||||
mass 1 4.480134e-26*$\{_u_mass\}
|
||||
kim_interactions Al
|
||||
run 0
|
||||
variable Ec_in_J equal (pe/count(all))/$\{_u_energy\}
|
||||
print "Cohesive Energy = $\{Ec_in_J\} J" :pre
|
||||
|
||||
Note the multiplication by $\{_u_distance\} and $\{_u_mass\} to convert
|
||||
from SI units (specified in the {kim_init} command) to whatever units the
|
||||
IM uses (metal in this case), and the division by $\{_u_energy\}
|
||||
to convert from the IM's energy units to SI units (Joule). This script
|
||||
will work correctly for any IM for Al (KIM PM or SM) selected by the
|
||||
{kim_init} command.
|
||||
|
||||
Care must be taken to apply unit conversion to dimensional variables read in
|
||||
from a file. For example if a configuration of atoms is read in from a
|
||||
dump file using the "read_dump"_read_dump.html command, the following can
|
||||
be done to convert the box and all atomic positions to the correct units:
|
||||
|
||||
variable xyfinal equal xy*$\{_u_distance\}
|
||||
variable xzfinal equal xz*$\{_u_distance\}
|
||||
variable yzfinal equal yz*$\{_u_distance\}
|
||||
change_box all x scale $\{_u_distance\} &
|
||||
y scale $\{_u_distance\} &
|
||||
z scale $\{_u_distance\} &
|
||||
xy final $\{xyfinal\} &
|
||||
xz final $\{xzfinal\} &
|
||||
yz final $\{yzfinal\} &
|
||||
remap :pre
|
||||
|
||||
NOTE: Unit conversion will only work if the conversion factors are placed in
|
||||
all appropriate places in the input script. It is up to the user to do this
|
||||
correctly.
|
||||
|
||||
OpenKIM IM Execution ({kim_interactions}) :h5
|
||||
|
||||
The second and final step in using an OpenKIM IM is to execute the
|
||||
{kim_interactions} command. This command must be preceded by a {kim_init}
|
||||
command and a command that defines the number of atom types {N} (such as
|
||||
"create_box"_create_box.html).
|
||||
The {kim_interactions} command has one argument {typeargs}. This argument
|
||||
contains either a list of {N} chemical species, which defines a mapping between
|
||||
atom types in LAMMPS to the available species in the OpenKIM IM, or the
|
||||
keyword {fixed_types} for models that have a preset fixed mapping (i.e.
|
||||
the mapping between LAMMPS atom types and chemical species is defined by
|
||||
the model and cannot be changed). In the latter case, the user must consult
|
||||
the model documentation to see how many atom types there are and how they
|
||||
map to the chemical species.
|
||||
|
||||
For example, consider an OpenKIM IM that supports Si and C species.
|
||||
If the LAMMPS simulation has four atom types, where the first three are Si,
|
||||
and the fourth is C, the following {kim_interactions} command would be used:
|
||||
|
||||
kim_interactions Si Si Si C
|
||||
:pre
|
||||
|
||||
Alternatively, for a model with a fixed mapping the command would be:
|
||||
|
||||
kim_interactions fixed_types
|
||||
:pre
|
||||
|
||||
The {kim_interactions} command performs all the necessary steps to set up
|
||||
the OpenKIM IM selected in the {kim_init} command. The specific actions depend
|
||||
on whether the IM is a KIM PM or a KIM SM. For a KIM PM,
|
||||
a "pair_style kim"_pair_kim.html command is executed followed by
|
||||
the appropriate {pair_coeff} command. For example, for the
|
||||
Ercolessi and Adams (1994) KIM PM for Al set by the following commands:
|
||||
|
||||
kim_init EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005 metal
|
||||
...
|
||||
... box specification lines skipped
|
||||
...
|
||||
kim_interactions Al :pre
|
||||
|
||||
the {kim_interactions} command executes the following LAMMPS input commands:
|
||||
|
||||
pair_style kim EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005
|
||||
pair_coeff * * Al :pre
|
||||
|
||||
For a KIM SM, the generated input commands may be more complex
|
||||
and require that LAMMPS is built with the required packages included
|
||||
for the type of potential being used. The set of commands to be executed
|
||||
is defined in the SM specification file, which is part of the SM package.
|
||||
For example, for the Strachan et al. (2003) ReaxFF SM
|
||||
set by the following commands:
|
||||
|
||||
kim_init Sim_LAMMPS_ReaxFF_StrachanVanDuinChakraborty_2003_CHNO__SM_107643900657_000 real
|
||||
...
|
||||
... box specification lines skipped
|
||||
...
|
||||
kim_interactions C H N O :pre
|
||||
|
||||
the {kim_interactions} command executes the following LAMMPS input commands:
|
||||
|
||||
pair_style reax/c lmp_control safezone 2.0 mincap 100
|
||||
pair_coeff * * ffield.reax.rdx C H N O
|
||||
fix reaxqeq all qeq/reax 1 0.0 10.0 1.0e-6 param.qeq :pre
|
||||
|
||||
Note that the files {lmp_control}, {ffield.reax.rdx} and {param.qeq}
|
||||
are specific to the Strachan et al. (2003) ReaxFF parameterization
|
||||
and are archived as part of the SM package in OpenKIM.
|
||||
Note also that parameters like cutoff radii and charge tolerances,
|
||||
which have an effect on IM predictions, are also included in the
|
||||
SM definition ensuring reproducibility.
|
||||
|
||||
NOTE: When using {kim_init} and {kim_interactions} to select
|
||||
and set up an OpenKIM IM, other LAMMPS commands
|
||||
for the same functions (such as pair_style, pair_coeff, bond_style,
|
||||
bond_coeff, fixes related to charge equilibration, etc.) should normally
|
||||
not appear in the input script.
|
||||
|
||||
Using OpenKIM Web Queries in LAMMPS ({kim_query}) :h5
|
||||
|
||||
The {kim_query} command performs a web query to retrieve the predictions
|
||||
of the IM set by {kim_init} for material properties archived in
|
||||
"OpenKIM"_https://openkim.org. The {kim_query} command must be preceded
|
||||
by a {kim_init} command. The result of the query is stored in a
|
||||
"string style variable"_variable.html, the name of which is given as the first
|
||||
argument of the {kim_query command}. (For the case of multiple
|
||||
return values, the optional {split} keyword can be used after the
|
||||
variable name to separate the results into multiple variables; see
|
||||
the "example"_#split_example below.)
|
||||
The second required argument {query_function} is the name of the
|
||||
query function to be called (e.g. {get_lattice_constant_cubic}).
|
||||
All following "arguments"_Commands_parse.html are parameters handed over to
|
||||
the web query in the format {keyword=value}, where {value} is always
|
||||
an array of one or more comma-separated items in brackets.
|
||||
The list of supported keywords and the type and format of their values
|
||||
depend on the query function used. The current list of query functions
|
||||
is available on the OpenKIM webpage at
|
||||
"https://openkim.org/doc/repository/kim-query"_https://openkim.org/doc/repository/kim-query.
|
||||
|
||||
NOTE: All query functions require the {model} keyword, which identifies
|
||||
the IM whose predictions are being queried. This keyword is automatically
|
||||
generated by {kim_query} based on the IM set in {kim_init} and must not
|
||||
be specified as an argument to {kim_query}.
|
||||
|
||||
NOTE: Each {query_function} is associated with a default method (implemented
|
||||
as a "KIM Test"_https://openkim.org/doc/evaluation/kim-tests/)
|
||||
used to compute this property. In cases where there are multiple
|
||||
methods in OpenKIM for computing a property, a {method} keyword can
|
||||
be provided to select the method of choice. See the
|
||||
"query documentation"_https://openkim.org/doc/repository/kim-query
|
||||
to see which methods are available for a given {query function}.
|
||||
|
||||
{kim_query} Usage Examples and Further Clarifications: :h6
|
||||
|
||||
The data obtained by {kim_query} commands can be used as part of the setup
|
||||
or analysis phases of LAMMPS simulations. Some examples are given below.
|
||||
|
||||
[Define an equilibrium fcc crystal]
|
||||
|
||||
kim_init EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005 metal
|
||||
boundary p p p
|
||||
kim_query a0 get_lattice_constant_cubic crystal=\["fcc"\] species=\["Al"\] units=\["angstrom"\]
|
||||
lattice fcc $\{a0\}
|
||||
... :pre
|
||||
|
||||
The {kim_query} command retrieves from "OpenKIM"_https://openkim.org
|
||||
the equilibrium lattice constant predicted by the Ercolessi and Adams (1994)
|
||||
potential for the fcc structure and places it in
|
||||
variable {a0}. This variable is then used on the next line to set up the
|
||||
crystal. By using {kim_query}, the user is saved the trouble and possible
|
||||
error of tracking this value down, or of having to perform an energy
|
||||
minimization to find the equilibrium lattice constant.
|
||||
|
||||
Note that in {unit_conversion_mode} the results obtained from a
|
||||
{kim_query} would need to be converted to the appropriate units system.
|
||||
For example, in the above script, the lattice command would need to be
|
||||
changed to: "lattice fcc $\{a0\}*$\{_u_distance\}".
|
||||
|
||||
:link(split_example)
|
||||
[Define an equilibrium hcp crystal]
|
||||
|
||||
kim_init EAM_Dynamo_Mendelev_2007_Zr__MO_848899341753_000 metal
|
||||
boundary p p p
|
||||
kim_query latconst split get_lattice_constant_hexagonal crystal=\["hcp"\] species=\["Zr"\] units=\["angstrom"\]
|
||||
variable a0 equal latconst_1
|
||||
variable c0 equal latconst_2
|
||||
variable c_to_a equal $\{c0\}/$\{a0\}
|
||||
lattice custom $\{a0\} a1 0.5 -0.866025 0 a2 0.5 0.866025 0 a3 0 0 $\{c_to_a\} &
|
||||
basis 0.333333 0.666666 0.25 basis 0.666666 0.333333 0.75
|
||||
... :pre
|
||||
|
||||
In this case the {kim_query} returns two arguments (since the hexagonal
|
||||
close packed (hcp) structure has two independent lattice constants).
|
||||
The default behavior of {kim_query} returns the result as a string
|
||||
with the values separated by commas. The optional keyword {split}
|
||||
separates the result values into individual variables of the form
|
||||
{prefix_I}, where {prefix} is set to the the {kim_query} {variable} argument
|
||||
and {I} ranges from 1 to the number of returned values. The number and order of
|
||||
the returned values is determined by the type of query performed.
|
||||
|
||||
[Define a crystal at finite temperature accounting for thermal expansion]
|
||||
|
||||
kim_init EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005 metal
|
||||
boundary p p p
|
||||
kim_query a0 get_lattice_constant_cubic crystal=\["fcc"\] species=\["Al"\] units=\["angstrom"\]
|
||||
kim_query alpha get_linear_thermal_expansion_coefficient_cubic crystal=\["fcc"\] species=\["Al"\] units=\["1/K"\] temperature=\[293.15\] temperature_units=\["K"\]
|
||||
variable DeltaT equal 300
|
||||
lattice fcc $\{a0\}*$\{alpha\}*$\{DeltaT\}
|
||||
... :pre
|
||||
|
||||
As in the previous example, the equilibrium lattice constant is obtained
|
||||
for the Ercolessi and Adams (1994) potential. However, in this case the
|
||||
crystal is scaled to the appropriate lattice constant at room temperature
|
||||
(293.15 K) by using the linear thermal expansion constant predicted by the
|
||||
potential.
|
||||
|
||||
NOTE: When passing numerical values as arguments (as in the case
|
||||
of the temperature in the above example) it is also possible to pass a
|
||||
tolerance indicating how close to the value is considered a match.
|
||||
If no tolerance is passed a default value is used. If multiple results
|
||||
are returned (indicating that the tolerance is too large), {kim_query}
|
||||
will return an error. See the
|
||||
"query documentation"_https://openkim.org/doc/repository/kim-query
|
||||
to see which numerical arguments and tolerances are available for a
|
||||
given {query function}.
|
||||
|
||||
[Compute defect formation energy]
|
||||
|
||||
kim_init EAM_Dynamo_ErcolessiAdams_1994_Al__MO_123629422045_005 metal
|
||||
...
|
||||
... Build fcc crystal containing some defect and compute the total energy
|
||||
... which is stored in the variable {Etot}
|
||||
...
|
||||
kim_query Ec get_cohesive_energy_cubic crystal=\["fcc"\] species=\["Al"\] units=\["eV"\]
|
||||
variable Eform equal $\{Etot\} - count(all)*$\{Ec\}
|
||||
... :pre
|
||||
|
||||
The defect formation energy {Eform} is computed by subtracting from {Etot} the
|
||||
ideal fcc cohesive energy of the atoms in the system obtained from
|
||||
"OpenKIM"_https://openkim.org for the Ercolessi and Adams (1994) potential.
|
||||
|
||||
NOTE: {kim_query} commands return results archived in
|
||||
"OpenKIM"_https://openkim.org. These results are obtained
|
||||
using programs for computing material properties
|
||||
(KIM Tests and KIM Test Drivers) that were contributed to OpenKIM.
|
||||
In order to give credit to Test developers, the number of times results
|
||||
from these programs are queried is tracked. No other information about
|
||||
the nature of the query or its source is recorded.
|
||||
|
||||
|
||||
Citation of OpenKIM IMs :h4
|
||||
|
||||
When publishing results obtained using OpenKIM IMs researchers are requested
|
||||
to cite the OpenKIM project "(Tadmor)"_#kim-mainpaper, KIM API
|
||||
"(Elliott)"_#kim-api, and the specific IM codes used in the simulations,
|
||||
in addition to the relevant scientific references for the IM.
|
||||
The citation format for an IM is displayed on its page on
|
||||
"OpenKIM"_https://openkim.org along with the corresponding BibTex file,
|
||||
and is automatically added to the LAMMPS {log.cite} file.
|
||||
|
||||
Citing the IM software (KIM infrastructure and specific PM or SM codes)
|
||||
used in the simulation gives credit to the researchers who developed them
|
||||
and enables open source efforts like OpenKIM to function.
|
||||
|
||||
|
||||
[Restrictions:]
|
||||
|
||||
The set of {kim_commands} is part of the KIM package. It is only enabled if
|
||||
LAMMPS is built with that package. A requirement for the KIM package,
|
||||
is the KIM API library that must be downloaded from the
|
||||
"OpenKIM website"_https://openkim.org/kim-api/ and installed before
|
||||
LAMMPS is compiled. When installing LAMMPS from binary, the kim-api package
|
||||
is a dependency that is automatically downloaded and installed. See the KIM
|
||||
section of the "Packages details"_Packages_details.html for details.
|
||||
|
||||
Furthermore, when using {kim_commands} to run KIM SMs, any packages required
|
||||
by the native potential being used or other commands or fixes that it invokes
|
||||
must be installed.
|
||||
|
||||
[Related commands:]
|
||||
|
||||
"pair_style kim"_pair_kim.html
|
||||
|
||||
:line
|
||||
|
||||
:link(kim-mainpaper)
|
||||
[(Tadmor)] Tadmor, Elliott, Sethna, Miller and Becker, JOM, 63, 17 (2011).
|
||||
doi: "https://doi.org/10.1007/s11837-011-0102-6"_https://doi.org/10.1007/s11837-011-0102-6
|
||||
|
||||
:link(kim-api)
|
||||
[(Elliott)] Elliott, Tadmor and Bernstein, "https://openkim.org/kim-api"_https://openkim.org/kim-api (2011)
|
||||
doi: "https://doi.org/10.25950/FF8F563A"_https://doi.org/10.25950/FF8F563A
|
|
@ -1,46 +0,0 @@
|
|||
"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c
|
||||
|
||||
:link(lws,http://lammps.sandia.gov)
|
||||
:link(ld,Manual.html)
|
||||
:link(lc,Commands_all.html)
|
||||
|
||||
:line
|
||||
|
||||
kim_query command :h3
|
||||
|
||||
[Syntax:]
|
||||
|
||||
kim_query variable query_function web_query_flags :pre
|
||||
|
||||
variable = name of a (string style) variable where the result of the query is stored
|
||||
query_function = name of the OpenKIM web API query function to be used
|
||||
web_query_flags = a series of keyword=value pairs that represent the web query; supported keywords depend on query function :ul
|
||||
|
||||
[Examples:]
|
||||
|
||||
kim_query latconst get_test_result test=TE_156715955670 model=MO_800509458712 &
|
||||
prop=structure-cubic-crystal-npt species=\["Al"\] keys=\["a"\] units=\["angstrom"\] :pre
|
||||
|
||||
[Description:]
|
||||
|
||||
The kim_query command allows to retrieve properties from the OpenKIM
|
||||
through a web query. The result is stored in a string style
|
||||
"variable"_variable.html, the name of which must be given as the first
|
||||
argument of the kim_query command. The second required argument is the
|
||||
name of the actual query function (e.g. {get_test_result}). All following
|
||||
arguments are parameters handed over to the web query in the format
|
||||
{keyword=value}. The list of supported keywords and the type of how
|
||||
the value has to be encoded depends on the query function used. This
|
||||
mirrors the functionality available on the OpenKIM webpage at
|
||||
"https://query.openkim.org"_https://query.openkim.org/
|
||||
|
||||
[Restrictions:]
|
||||
|
||||
This command is part of the KIM package. It is only enabled if
|
||||
LAMMPS was built with that package. Furthermore, its correct
|
||||
functioning depends on compiling LAMMPS with libcurl support.
|
||||
See the "Build package"_Build_package.html doc page for more info.
|
||||
|
||||
[Related commands:]
|
||||
|
||||
"pair_style kim"_pair_kim.html, "variable"_variable.html
|
|
@ -42,6 +42,7 @@ Commands_compute.html
|
|||
Commands_pair.html
|
||||
Commands_bond.html
|
||||
Commands_kspace.html
|
||||
Commands_removed.html
|
||||
Packages.html
|
||||
Packages_standard.html
|
||||
Packages_user.html
|
||||
|
@ -167,7 +168,7 @@ if.html
|
|||
include.html
|
||||
info.html
|
||||
jump.html
|
||||
kim_query.html
|
||||
kim_commands.html
|
||||
label.html
|
||||
lattice.html
|
||||
log.html
|
||||
|
|
|
@ -42,16 +42,17 @@ the ADP potential files themselves. Likewise, the ADP potential files
|
|||
list atomic masses; thus you do not need to use the "mass"_mass.html
|
||||
command to specify them.
|
||||
|
||||
The NIST WWW site distributes and documents ADP potentials:
|
||||
[ADP potentials are available from:]
|
||||
|
||||
http://www.ctcms.nist.gov/potentials :pre
|
||||
The NIST WWW site at http://www.ctcms.nist.gov/potentials.
|
||||
Note that ADP potentials obtained from NIST must be converted
|
||||
into the extended DYNAMO {setfl} format discussed below.
|
||||
:l
|
||||
|
||||
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.
|
||||
The OpenKIM Project at https://openkim.org/browse/models/by-type provides
|
||||
ADP potentials that can be used directly in LAMMPS with the "kim_commands
|
||||
interface"_kim_commands.html.
|
||||
:l
|
||||
|
||||
:line
|
||||
|
||||
|
|
|
@ -12,76 +12,72 @@ pair_style kim command :h3
|
|||
|
||||
pair_style kim model :pre
|
||||
|
||||
model = name of KIM model (potential)
|
||||
model = name of a KIM model (the KIM ID for models archived in OpenKIM)
|
||||
|
||||
[Examples:]
|
||||
|
||||
pair_style kim ex_model_Ar_P_LJ
|
||||
pair_coeff * * Ar Ar :pre
|
||||
pair_style kim SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||||
pair_coeff * * Si :pre
|
||||
|
||||
[Description:]
|
||||
|
||||
This pair style is a wrapper on the "Knowledge Base for Interatomic
|
||||
This pair style is a wrapper on the "Open Knowledgebase of Interatomic
|
||||
Models (OpenKIM)"_https://openkim.org repository of interatomic
|
||||
potentials, so that they can be used by LAMMPS scripts.
|
||||
potentials to enable their use in LAMMPS scripts.
|
||||
|
||||
Note that in LAMMPS lingo, a KIM model driver is a pair style
|
||||
(e.g. EAM or Tersoff). A KIM model is a pair style for a particular
|
||||
element or alloy and set of parameters, e.g. EAM for Cu with a
|
||||
specific EAM potential file.
|
||||
The preferred interface for using interatomic models archived in
|
||||
OpenKIM is the "kim_commands interface"_kim_commands.html. That
|
||||
interface supports both "KIM Portable Models" (PMs) that conform to the
|
||||
KIM API Portable Model Interface (PMI) and can be used by any
|
||||
simulation code that conforms to the KIM API/PMI, and
|
||||
"KIM Simulator Models" that are natively implemented within a single
|
||||
simulation code (like LAMMPS) and can only be used with it.
|
||||
The {pair_style kim} command is limited to KIM PMs. It is
|
||||
used by the "kim_commands interface"_kim_commands.html as needed.
|
||||
|
||||
See the current list of "KIM model
|
||||
drivers"_https://openkim.org/browse/model-drivers/alphabetical.
|
||||
NOTE: Since {pair_style kim} is called by {kim_interactions} as needed,
|
||||
is not recommended to be directly used in input scripts.
|
||||
|
||||
See the current list of all "KIM
|
||||
models"_https://openkim.org/browse/models/by-model-drivers
|
||||
|
||||
To use this pair style, you must first download and install the KIM
|
||||
API library from the "OpenKIM website"_https://openkim.org. The KIM
|
||||
section of the "Packages details"_Packages_details.html doc page has
|
||||
instructions on how to do this with a simple make command, when
|
||||
building LAMMPS.
|
||||
|
||||
See the examples/kim dir for an input script that uses a KIM model
|
||||
(potential) for Lennard-Jones.
|
||||
|
||||
:line
|
||||
|
||||
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 {model} is the name of the KIM PM.
|
||||
For potentials archived in OpenKIM
|
||||
this is the extended KIM ID (see "kim_commands"_kim_commands.html
|
||||
for details). LAMMPS can invoke any KIM PM, however there can
|
||||
be incompatibilities (for example due to unit matching issues).
|
||||
In the event of an incompatibility, the code will terminate with
|
||||
an error message. Check both the LAMMPS and KIM log files for details.
|
||||
|
||||
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:
|
||||
Only a single {pair_coeff} command is used with the {kim} style, which
|
||||
specifies the mapping of LAMMPS atom types to the species supported by
|
||||
the KIM PM. 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 :ul
|
||||
|
||||
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:
|
||||
For example, consider a KIM PM that supports Si and C species.
|
||||
If the LAMMPS simulation has four atom types, where the first three are Si,
|
||||
and the fourth is C, the following {pair_coeff} command would be used:
|
||||
|
||||
pair_coeff * * Si Si Si C :pre
|
||||
|
||||
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.
|
||||
The first two arguments must be * * so as to span all LAMMPS atom types.
|
||||
The first three Si arguments map LAMMPS atom types 1, 2, and 3 to Si as
|
||||
defined within KIM PM. The final C argument maps LAMMPS atom type 4 to C.
|
||||
|
||||
:line
|
||||
|
||||
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. The file kim.log should be generated in the same
|
||||
case it is also useful to check the {kim.log} file for additional error
|
||||
information. The 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
|
||||
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.
|
||||
in {examples/kim}.
|
||||
|
||||
:line
|
||||
|
||||
|
@ -103,15 +99,14 @@ This pair style can only be used via the {pair} keyword of the
|
|||
|
||||
[Restrictions:]
|
||||
|
||||
This pair style is part of the KIM package. It is only enabled if
|
||||
LAMMPS was built with that package. See the "Build
|
||||
package"_Build_package.html doc page for more info.
|
||||
This pair style is part of the KIM package. See details on
|
||||
restrictions in "kim_commands"_kim_commands.html.
|
||||
|
||||
This current version of pair_style kim is compatible with the
|
||||
kim-api package version 2.0.0 and higher.
|
||||
|
||||
[Related commands:]
|
||||
|
||||
"pair_coeff"_pair_coeff.html
|
||||
"pair_coeff"_pair_coeff.html, "kim_commands"_kim_commands.html
|
||||
|
||||
[Default:] none
|
||||
|
|
|
@ -529,6 +529,7 @@ decrementing
|
|||
deeppink
|
||||
deepskyblue
|
||||
defgrad
|
||||
defn
|
||||
deformable
|
||||
del
|
||||
deleteIDs
|
||||
|
@ -577,6 +578,7 @@ Dihedrals
|
|||
dihydride
|
||||
Dij
|
||||
dimdim
|
||||
dimensioned
|
||||
dimensionality
|
||||
dimgray
|
||||
dipolar
|
||||
|
@ -606,6 +608,7 @@ Dobson
|
|||
Dodds
|
||||
dodgerblue
|
||||
dof
|
||||
doi
|
||||
Donadio
|
||||
dotc
|
||||
Doty
|
||||
|
@ -757,6 +760,7 @@ equilibrating
|
|||
equilibration
|
||||
Equilibria
|
||||
equilization
|
||||
Ercolessi
|
||||
eradius
|
||||
erate
|
||||
erc
|
||||
|
@ -883,6 +887,7 @@ Fogarty
|
|||
Foiles
|
||||
fopenmp
|
||||
forestgreen
|
||||
formatarg
|
||||
formulae
|
||||
Forschungszentrum
|
||||
Fortran
|
||||
|
@ -1624,6 +1629,7 @@ meso
|
|||
mesoparticle
|
||||
mesoscale
|
||||
mesoscopic
|
||||
metadata
|
||||
metadynamics
|
||||
Metadynamics
|
||||
Methfessel
|
||||
|
@ -2262,6 +2268,7 @@ quati
|
|||
quatj
|
||||
quatk
|
||||
quatw
|
||||
queryargs
|
||||
Queteschiner
|
||||
qw
|
||||
qx
|
||||
|
@ -2291,6 +2298,7 @@ rcutfac
|
|||
rdc
|
||||
rdf
|
||||
RDideal
|
||||
rdx
|
||||
README
|
||||
realtime
|
||||
reamin
|
||||
|
@ -2317,6 +2325,8 @@ Rensselaer
|
|||
reparameterizing
|
||||
repo
|
||||
representable
|
||||
Reproducibility
|
||||
reproducibility
|
||||
repuls
|
||||
rescale
|
||||
rescaled
|
||||
|
@ -2607,6 +2617,7 @@ Stoll
|
|||
stopstep
|
||||
Stouch
|
||||
Straatsma
|
||||
Strachan
|
||||
Stratford
|
||||
Strathclyde
|
||||
Straub
|
||||
|
@ -2819,6 +2830,7 @@ txt
|
|||
typeI
|
||||
typeJ
|
||||
typeN
|
||||
typeargs
|
||||
Tz
|
||||
Tzou
|
||||
ub
|
||||
|
@ -2847,6 +2859,7 @@ undump
|
|||
uniaxial
|
||||
uniaxially
|
||||
unimodal
|
||||
unitarg
|
||||
unitless
|
||||
Universite
|
||||
unix
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
/kim.log
|
|
@ -14,20 +14,14 @@ variable xx equal 20*$x
|
|||
variable yy equal 20*$y
|
||||
variable zz equal 20*$z
|
||||
|
||||
units metal
|
||||
atom_style atomic
|
||||
newton on
|
||||
kim_init LennardJones_Ar real
|
||||
|
||||
lattice fcc 4.4300
|
||||
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
||||
create_box 1 box
|
||||
create_atoms 1 box
|
||||
|
||||
#pair_style lj/cut 8.1500
|
||||
#pair_coeff 1 1 0.0104 3.4000
|
||||
|
||||
pair_style kim LennardJones_Ar
|
||||
pair_coeff * * Ar
|
||||
kim_interactions Ar
|
||||
|
||||
mass 1 39.95
|
||||
velocity all create 200.0 232345 loop geom
|
|
@ -0,0 +1,46 @@
|
|||
# 3d Lennard-Jones melt
|
||||
#
|
||||
# This example requires that the KIM Portable Model (PM)
|
||||
# SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||||
# is installed. This can be done with the command
|
||||
# kim-api-collections-management install user SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||||
# If this command does not work, you may need to setup your PATH to find the utility.
|
||||
# If you installed the kim-api using the LAMMPS CMake build, you can do the following
|
||||
# (where the current working directory is assumed to be the LAMMPS build directory)
|
||||
# source ./kim_build-prefix/bin/kim-api-activate
|
||||
# If you installed the kim-api using the LAMMPS Make build, you can do the following
|
||||
# (where the current working directory is assumed to be the LAMMPS src directory)
|
||||
# source ../lib/kim/installed-kim-api-X.Y.Z/bin/kim-api-activate
|
||||
# (where you should relplace X.Y.Z with the appropriate kim-api version number).
|
||||
#
|
||||
# Or, see https://openkim.org/doc/obtaining-models for alternative options.
|
||||
#
|
||||
|
||||
variable x index 1
|
||||
variable y index 1
|
||||
variable z index 1
|
||||
|
||||
variable xx equal 20*$x
|
||||
variable yy equal 20*$y
|
||||
variable zz equal 20*$z
|
||||
|
||||
kim_init SW_StillingerWeber_1985_Si__MO_405512056662_005 real
|
||||
kim_query a0 get_lattice_constant_cubic crystal=["fcc"] species=["Si"] units=["angstrom"]
|
||||
|
||||
lattice fcc ${a0}
|
||||
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
||||
create_box 1 box
|
||||
create_atoms 1 box
|
||||
|
||||
kim_interactions Si
|
||||
|
||||
mass 1 39.95
|
||||
velocity all create 200.0 232345 loop geom
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
#fix 1 all npt temp 1.0 1.0 1.0 iso 1.0 1.0 3.0
|
||||
|
||||
run 100
|
|
@ -0,0 +1,45 @@
|
|||
# 3d Lennard-Jones melt
|
||||
#
|
||||
# This example requires that the KIM Portable Model (PM)
|
||||
# SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||||
# is installed. This can be done with the command
|
||||
# kim-api-collections-management install user SW_StillingerWeber_1985_Si__MO_405512056662_005
|
||||
# If this command does not work, you may need to setup your PATH to find the utility.
|
||||
# If you installed the kim-api using the LAMMPS CMake build, you can do the following
|
||||
# (where the current working directory is assumed to be the LAMMPS build directory)
|
||||
# source ./kim_build-prefix/bin/kim-api-activate
|
||||
# If you installed the kim-api using the LAMMPS Make build, you can do the following
|
||||
# (where the current working directory is assumed to be the LAMMPS src directory)
|
||||
# source ../lib/kim/installed-kim-api-X.Y.Z/bin/kim-api-activate
|
||||
# (where you should relplace X.Y.Z with the appropriate kim-api version number).
|
||||
#
|
||||
# Or, see https://openkim.org/doc/obtaining-models for alternative options.
|
||||
#
|
||||
|
||||
variable x index 1
|
||||
variable y index 1
|
||||
variable z index 1
|
||||
|
||||
variable xx equal 20*$x
|
||||
variable yy equal 20*$y
|
||||
variable zz equal 20*$z
|
||||
|
||||
kim_init SW_StillingerWeber_1985_Si__MO_405512056662_005 real
|
||||
|
||||
lattice fcc 4.4300
|
||||
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
||||
create_box 1 box
|
||||
create_atoms 1 box
|
||||
|
||||
kim_interactions Si
|
||||
|
||||
mass 1 39.95
|
||||
velocity all create 200.0 232345 loop geom
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
#fix 1 all npt temp 1.0 1.0 1.0 iso 1.0 1.0 3.0
|
||||
|
||||
run 100
|
|
@ -0,0 +1,45 @@
|
|||
# 3d Lennard-Jones melt
|
||||
#
|
||||
# This example requires that the KIM Simulator Model (PM)
|
||||
# Sim_LAMMPS_ReaxFF_StrachanVanDuinChakraborty_2003_CHNO__SM_107643900657_000
|
||||
# is installed. This can be done with the command
|
||||
# kim-api-collections-management install user Sim_LAMMPS_ReaxFF_StrachanVanDuinChakraborty_2003_CHNO__SM_107643900657_000
|
||||
# If this command does not work, you may need to setup your PATH to find the utility.
|
||||
# If you installed the kim-api using the LAMMPS CMake build, you can do the following
|
||||
# (where the current working directory is assumed to be the LAMMPS build directory)
|
||||
# source ./kim_build-prefix/bin/kim-api-activate
|
||||
# If you installed the kim-api using the LAMMPS Make build, you can do the following
|
||||
# (where the current working directory is assumed to be the LAMMPS src directory)
|
||||
# source ../lib/kim/installed-kim-api-X.Y.Z/bin/kim-api-activate
|
||||
# (where you should relplace X.Y.Z with the appropriate kim-api version number).
|
||||
#
|
||||
# See https://openkim.org/doc/obtaining-models for alternative options.
|
||||
#
|
||||
|
||||
variable x index 1
|
||||
variable y index 1
|
||||
variable z index 1
|
||||
|
||||
variable xx equal 20*$x
|
||||
variable yy equal 20*$y
|
||||
variable zz equal 20*$z
|
||||
|
||||
kim_init Sim_LAMMPS_ReaxFF_StrachanVanDuinChakraborty_2003_CHNO__SM_107643900657_000 real
|
||||
|
||||
lattice fcc 4.4300
|
||||
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
||||
create_box 1 box
|
||||
create_atoms 1 box
|
||||
|
||||
kim_interactions O
|
||||
|
||||
mass 1 39.95
|
||||
velocity all create 200.0 232345 loop geom
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
#fix 1 all npt temp 1.0 1.0 1.0 iso 1.0 1.0 3.0
|
||||
|
||||
run 100
|
|
@ -1,35 +0,0 @@
|
|||
# 3d Lennard-Jones melt
|
||||
|
||||
variable x index 1
|
||||
variable y index 1
|
||||
variable z index 1
|
||||
|
||||
variable xx equal 20*$x
|
||||
variable yy equal 20*$y
|
||||
variable zz equal 20*$z
|
||||
|
||||
units metal
|
||||
atom_style atomic
|
||||
newton off
|
||||
|
||||
lattice fcc 4.4300
|
||||
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
||||
create_box 1 box
|
||||
create_atoms 1 box
|
||||
|
||||
pair_style lj/cut 8.1500
|
||||
pair_coeff 1 1 0.0104 3.4000
|
||||
|
||||
#pair_style kim LennardJones_Ar
|
||||
#pair_coeff * * Ar
|
||||
|
||||
mass 1 39.95
|
||||
velocity all create 200.0 232345 loop geom
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
#fix 1 all npt temp 1.0 1.0 1.0 iso 1.0 1.0 3.0
|
||||
|
||||
run 100
|
|
@ -1,41 +0,0 @@
|
|||
# 3d Lennard-Jones melt
|
||||
#
|
||||
# This example requires that the example models provided with
|
||||
# the kim-api package are installed. see the ./lib/kim/README or
|
||||
# ./lib/kim/Install.py files for details on how to install these
|
||||
# example models.
|
||||
#
|
||||
|
||||
variable x index 1
|
||||
variable y index 1
|
||||
variable z index 1
|
||||
|
||||
variable xx equal 20*$x
|
||||
variable yy equal 20*$y
|
||||
variable zz equal 20*$z
|
||||
|
||||
units metal
|
||||
atom_style atomic
|
||||
newton off
|
||||
|
||||
lattice fcc 4.4300
|
||||
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
||||
create_box 1 box
|
||||
create_atoms 1 box
|
||||
|
||||
#pair_style lj/cut 8.1500
|
||||
#pair_coeff 1 1 0.0104 3.4000
|
||||
|
||||
pair_style kim LennardJones_Ar
|
||||
pair_coeff * * Ar
|
||||
|
||||
mass 1 39.95
|
||||
velocity all create 200.0 232345 loop geom
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
#fix 1 all npt temp 1.0 1.0 1.0 iso 1.0 1.0 3.0
|
||||
|
||||
run 100
|
|
@ -8,9 +8,7 @@ variable xx equal 20*$x
|
|||
variable yy equal 20*$y
|
||||
variable zz equal 20*$z
|
||||
|
||||
units metal
|
||||
atom_style atomic
|
||||
newton on
|
||||
units real
|
||||
|
||||
lattice fcc 4.4300
|
||||
region box block 0 ${xx} 0 ${yy} 0 ${zz}
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
# example for performing a query to the OpenKIM test database to retrieve
|
||||
# a parameter to be used in the input. here it requests the aluminium
|
||||
# lattice constant for a specific test used for a specific model and then
|
||||
# assigns it to the variable 'latconst'
|
||||
|
||||
units metal
|
||||
info variables out log
|
||||
kim_query latconst get_test_result test=TE_156715955670 species=["Al"] model=MO_800509458712 prop=structure-cubic-crystal-npt keys=["a"] units=["angstrom"]
|
||||
info variables out log
|
||||
lattice fcc ${latconst}
|
|
@ -1,55 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 1 by 1 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.004499 secs
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair lj/cut, perpetual
|
||||
attributes: half, newton off
|
||||
pair build: half/bin/newtoff
|
||||
stencil: half/bin/3d/newtoff
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 20.37 | 20.37 | 20.37 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 2.92885 on 1 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 2.950 ns/day, 8.136 hours/ns, 34.143 timesteps/s
|
||||
99.1% CPU use with 1 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 2.5638 | 2.5638 | 2.5638 | 0.0 | 87.54
|
||||
Neigh | 0.31935 | 0.31935 | 0.31935 | 0.0 | 10.90
|
||||
Comm | 0.006833 | 0.006833 | 0.006833 | 0.0 | 0.23
|
||||
Output | 0.000107 | 0.000107 | 0.000107 | 0.0 | 0.00
|
||||
Modify | 0.027806 | 0.027806 | 0.027806 | 0.0 | 0.95
|
||||
Other | | 0.01091 | | | 0.37
|
||||
|
||||
Nlocal: 32000 ave 32000 max 32000 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Nghost: 19911 ave 19911 max 19911 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Neighs: 2.3705e+06 ave 2.3705e+06 max 2.3705e+06 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
|
||||
Total # of neighbors = 2370499
|
||||
Ave neighs/atom = 74.0781
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:03
|
|
@ -1,55 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 2 by 2 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.001039 secs
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair lj/cut, perpetual
|
||||
attributes: half, newton off
|
||||
pair build: half/bin/newtoff
|
||||
stencil: half/bin/3d/newtoff
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 8.013 | 8.013 | 8.013 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 0.778581 on 4 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 11.097 ns/day, 2.163 hours/ns, 128.439 timesteps/s
|
||||
99.8% CPU use with 4 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 0.65171 | 0.65891 | 0.67656 | 1.3 | 84.63
|
||||
Neigh | 0.07924 | 0.079548 | 0.07997 | 0.1 | 10.22
|
||||
Comm | 0.006755 | 0.0069015 | 0.007072 | 0.2 | 0.89
|
||||
Output | 4.6e-05 | 9.725e-05 | 0.000203 | 0.0 | 0.01
|
||||
Modify | 0.006841 | 0.006941 | 0.007015 | 0.1 | 0.89
|
||||
Other | | 0.02618 | | | 3.36
|
||||
|
||||
Nlocal: 8000 ave 8018 max 7967 min
|
||||
Histogram: 1 0 0 0 0 0 1 0 0 2
|
||||
Nghost: 9131 ave 9164 max 9113 min
|
||||
Histogram: 2 0 0 1 0 0 0 0 0 1
|
||||
Neighs: 630904 ave 632094 max 628209 min
|
||||
Histogram: 1 0 0 0 0 0 0 1 0 2
|
||||
|
||||
Total # of neighbors = 2523614
|
||||
Ave neighs/atom = 78.8629
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:00
|
|
@ -1,55 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 1 by 1 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.003479 secs
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair lj/cut, perpetual
|
||||
attributes: half, newton on
|
||||
pair build: half/bin/atomonly/newton
|
||||
stencil: half/bin/3d/newton
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 19.23 | 19.23 | 19.23 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 2.17978 on 1 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 3.964 ns/day, 6.055 hours/ns, 45.876 timesteps/s
|
||||
99.9% CPU use with 1 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 1.9892 | 1.9892 | 1.9892 | 0.0 | 91.26
|
||||
Neigh | 0.14506 | 0.14506 | 0.14506 | 0.0 | 6.65
|
||||
Comm | 0.011049 | 0.011049 | 0.011049 | 0.0 | 0.51
|
||||
Output | 9.1e-05 | 9.1e-05 | 9.1e-05 | 0.0 | 0.00
|
||||
Modify | 0.02347 | 0.02347 | 0.02347 | 0.0 | 1.08
|
||||
Other | | 0.01094 | | | 0.50
|
||||
|
||||
Nlocal: 32000 ave 32000 max 32000 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Nghost: 19911 ave 19911 max 19911 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Neighs: 2.12688e+06 ave 2.12688e+06 max 2.12688e+06 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
|
||||
Total # of neighbors = 2126875
|
||||
Ave neighs/atom = 66.4648
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:02
|
|
@ -1,55 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 2 by 2 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.000919 secs
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair lj/cut, perpetual
|
||||
attributes: half, newton on
|
||||
pair build: half/bin/atomonly/newton
|
||||
stencil: half/bin/3d/newton
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 7.632 | 7.632 | 7.632 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 0.63515 on 4 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 13.603 ns/day, 1.764 hours/ns, 157.443 timesteps/s
|
||||
99.8% CPU use with 4 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 0.55365 | 0.5566 | 0.55868 | 0.2 | 87.63
|
||||
Neigh | 0.041495 | 0.0418 | 0.04211 | 0.1 | 6.58
|
||||
Comm | 0.019086 | 0.021075 | 0.023898 | 1.2 | 3.32
|
||||
Output | 4.4e-05 | 5.025e-05 | 6e-05 | 0.0 | 0.01
|
||||
Modify | 0.009315 | 0.0093595 | 0.009422 | 0.0 | 1.47
|
||||
Other | | 0.006263 | | | 0.99
|
||||
|
||||
Nlocal: 8000 ave 8018 max 7967 min
|
||||
Histogram: 1 0 0 0 0 0 1 0 0 2
|
||||
Nghost: 9131 ave 9164 max 9113 min
|
||||
Histogram: 2 0 0 1 0 0 0 0 0 1
|
||||
Neighs: 531719 ave 533273 max 529395 min
|
||||
Histogram: 1 0 0 0 1 0 0 0 0 2
|
||||
|
||||
Total # of neighbors = 2126875
|
||||
Ave neighs/atom = 66.4648
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:00
|
|
@ -1,59 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 1 by 1 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.003446 secs
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair kim, perpetual
|
||||
attributes: full, newton off, cut 8.45
|
||||
pair build: full/bin/atomonly
|
||||
stencil: full/bin/3d
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 28.51 | 28.51 | 28.51 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 3.01669 on 1 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 2.864 ns/day, 8.380 hours/ns, 33.149 timesteps/s
|
||||
99.8% CPU use with 1 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 2.6562 | 2.6562 | 2.6562 | 0.0 | 88.05
|
||||
Neigh | 0.31903 | 0.31903 | 0.31903 | 0.0 | 10.58
|
||||
Comm | 0.00634 | 0.00634 | 0.00634 | 0.0 | 0.21
|
||||
Output | 9.1e-05 | 9.1e-05 | 9.1e-05 | 0.0 | 0.00
|
||||
Modify | 0.024723 | 0.024723 | 0.024723 | 0.0 | 0.82
|
||||
Other | | 0.01032 | | | 0.34
|
||||
|
||||
Nlocal: 32000 ave 32000 max 32000 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Nghost: 19911 ave 19911 max 19911 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Neighs: 0 ave 0 max 0 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
FullNghs: 4.25375e+06 ave 4.25375e+06 max 4.25375e+06 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
|
||||
Total # of neighbors = 4253750
|
||||
Ave neighs/atom = 132.93
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:03
|
|
@ -1,65 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 2 by 2 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.000921 secs
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair kim, perpetual
|
||||
attributes: full, newton off, cut 8.45
|
||||
pair build: full/bin/atomonly
|
||||
stencil: full/bin/3d
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 10.05 | 10.05 | 10.05 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 0.890192 on 4 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 9.706 ns/day, 2.473 hours/ns, 112.335 timesteps/s
|
||||
99.7% CPU use with 4 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 0.77867 | 0.77906 | 0.7794 | 0.0 | 87.52
|
||||
Neigh | 0.087831 | 0.088176 | 0.088805 | 0.1 | 9.91
|
||||
Comm | 0.006358 | 0.0065898 | 0.006815 | 0.3 | 0.74
|
||||
Output | 4.9e-05 | 5.975e-05 | 6.8e-05 | 0.0 | 0.01
|
||||
Modify | 0.010265 | 0.010429 | 0.010678 | 0.2 | 1.17
|
||||
Other | | 0.005874 | | | 0.66
|
||||
|
||||
Nlocal: 8000 ave 8018 max 7967 min
|
||||
Histogram: 1 0 0 0 0 0 1 0 0 2
|
||||
Nghost: 9131 ave 9164 max 9113 min
|
||||
Histogram: 2 0 0 1 0 0 0 0 0 1
|
||||
Neighs: 0 ave 0 max 0 min
|
||||
Histogram: 4 0 0 0 0 0 0 0 0 0
|
||||
FullNghs: 1.06344e+06 ave 1.06594e+06 max 1.05881e+06 min
|
||||
Histogram: 1 0 0 0 0 0 1 0 0 2
|
||||
|
||||
Total # of neighbors = 4253750
|
||||
Ave neighs/atom = 132.93
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:00
|
|
@ -1,59 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 1 by 1 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.003089 secs
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair kim, perpetual
|
||||
attributes: full, newton off, cut 8.45
|
||||
pair build: full/bin/atomonly
|
||||
stencil: full/bin/3d
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 28.12 | 28.12 | 28.12 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 3.05849 on 1 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 2.825 ns/day, 8.496 hours/ns, 32.696 timesteps/s
|
||||
99.6% CPU use with 1 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 2.6786 | 2.6786 | 2.6786 | 0.0 | 87.58
|
||||
Neigh | 0.33105 | 0.33105 | 0.33105 | 0.0 | 10.82
|
||||
Comm | 0.012602 | 0.012602 | 0.012602 | 0.0 | 0.41
|
||||
Output | 9.5e-05 | 9.5e-05 | 9.5e-05 | 0.0 | 0.00
|
||||
Modify | 0.024858 | 0.024858 | 0.024858 | 0.0 | 0.81
|
||||
Other | | 0.01132 | | | 0.37
|
||||
|
||||
Nlocal: 32000 ave 32000 max 32000 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Nghost: 19911 ave 19911 max 19911 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Neighs: 0 ave 0 max 0 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
FullNghs: 4.25375e+06 ave 4.25375e+06 max 4.25375e+06 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
|
||||
Total # of neighbors = 4253750
|
||||
Ave neighs/atom = 132.93
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:03
|
|
@ -1,65 +0,0 @@
|
|||
LAMMPS (1 Feb 2019)
|
||||
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:87)
|
||||
using 1 OpenMP thread(s) per MPI task
|
||||
Lattice spacing in x,y,z = 4.43 4.43 4.43
|
||||
Created orthogonal box = (0 0 0) to (88.6 88.6 88.6)
|
||||
1 by 2 by 2 MPI processor grid
|
||||
Created 32000 atoms
|
||||
Time spent = 0.000893 secs
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
WARNING: KIM Model does not provide `partialParticleEnergy'; energy per atom will be zero (src/KIM/pair_kim.cpp:1097)
|
||||
WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1102)
|
||||
Neighbor list info ...
|
||||
update every 1 steps, delay 0 steps, check yes
|
||||
max neighbors/atom: 2000, page size: 100000
|
||||
master list distance cutoff = 8.45
|
||||
ghost atom cutoff = 8.45
|
||||
binsize = 4.225, bins = 21 21 21
|
||||
1 neighbor lists, perpetual/occasional/extra = 1 0 0
|
||||
(1) pair kim, perpetual
|
||||
attributes: full, newton off, cut 8.45
|
||||
pair build: full/bin/atomonly
|
||||
stencil: full/bin/3d
|
||||
bin: standard
|
||||
Setting up Verlet run ...
|
||||
Unit style : metal
|
||||
Current step : 0
|
||||
Time step : 0.001
|
||||
Per MPI rank memory allocation (min/avg/max) = 9.789 | 9.789 | 9.789 Mbytes
|
||||
Step Temp E_pair E_mol TotEng Press
|
||||
0 200 6290.8194 0 7118.0584 129712.25
|
||||
100 95.179725 6718.814 0 7112.496 133346.59
|
||||
Loop time of 0.903182 on 4 procs for 100 steps with 32000 atoms
|
||||
|
||||
Performance: 9.566 ns/day, 2.509 hours/ns, 110.720 timesteps/s
|
||||
99.6% CPU use with 4 MPI tasks x 1 OpenMP threads
|
||||
|
||||
MPI task timing breakdown:
|
||||
Section | min time | avg time | max time |%varavg| %total
|
||||
---------------------------------------------------------------
|
||||
Pair | 0.76173 | 0.76349 | 0.76597 | 0.2 | 84.53
|
||||
Neigh | 0.088773 | 0.088938 | 0.089074 | 0.0 | 9.85
|
||||
Comm | 0.032018 | 0.03452 | 0.03638 | 0.9 | 3.82
|
||||
Output | 4e-05 | 4.425e-05 | 5.2e-05 | 0.0 | 0.00
|
||||
Modify | 0.009278 | 0.0093917 | 0.009528 | 0.1 | 1.04
|
||||
Other | | 0.006797 | | | 0.75
|
||||
|
||||
Nlocal: 8000 ave 8018 max 7967 min
|
||||
Histogram: 1 0 0 0 0 0 1 0 0 2
|
||||
Nghost: 9131 ave 9164 max 9113 min
|
||||
Histogram: 2 0 0 1 0 0 0 0 0 1
|
||||
Neighs: 0 ave 0 max 0 min
|
||||
Histogram: 4 0 0 0 0 0 0 0 0 0
|
||||
FullNghs: 1.06344e+06 ave 1.06594e+06 max 1.05881e+06 min
|
||||
Histogram: 1 0 0 0 0 0 1 0 0 2
|
||||
|
||||
Total # of neighbors = 4253750
|
||||
Ave neighs/atom = 132.93
|
||||
Neighbor list builds = 3
|
||||
Dangerous builds = 0
|
||||
Total wall time: 0:00:00
|
|
@ -1,34 +0,0 @@
|
|||
LAMMPS (28 Feb 2019)
|
||||
|
||||
# example for performing a query to the OpenKIM test database to retrieve
|
||||
# a parameter to be used in the input. here it requests the aluminium
|
||||
# lattice constant for a specific test used for a specific model and then
|
||||
# assigns it to the variable 'latconst'
|
||||
|
||||
units metal
|
||||
info variables out log
|
||||
|
||||
Info-Info-Info-Info-Info-Info-Info-Info-Info-Info-Info
|
||||
Printed on Fri Mar 22 20:00:56 2019
|
||||
|
||||
|
||||
Variable information:
|
||||
|
||||
Info-Info-Info-Info-Info-Info-Info-Info-Info-Info-Info
|
||||
|
||||
kim_query latconst get_test_result test=TE_156715955670 species=["Al"] model=MO_800509458712 prop=structure-cubic-crystal-npt keys=["a"] units=["angstrom"]
|
||||
info variables out log
|
||||
|
||||
Info-Info-Info-Info-Info-Info-Info-Info-Info-Info-Info
|
||||
Printed on Fri Mar 22 20:00:57 2019
|
||||
|
||||
|
||||
Variable information:
|
||||
Variable[ 0]: latconst , style = string , def = 4.03208274841
|
||||
|
||||
Info-Info-Info-Info-Info-Info-Info-Info-Info-Info-Info
|
||||
|
||||
lattice fcc ${latconst}
|
||||
lattice fcc 4.03208274841
|
||||
Lattice spacing in x,y,z = 4.03208 4.03208 4.03208
|
||||
Total wall time: 0:00:00
|
|
@ -18,7 +18,7 @@ parser = ArgumentParser(prog='Install.py',
|
|||
# settings
|
||||
|
||||
thisdir = fullpath('.')
|
||||
version = "kim-api-2.0.2"
|
||||
version = "kim-api-2.1.1"
|
||||
|
||||
# help message
|
||||
|
||||
|
@ -39,11 +39,8 @@ make lib-kim args="-b -a EAM_ErcolessiAdams_1994_Al__MO_324507536345_002" # Ditt
|
|||
make lib-kim args="-b -a everything" # install KIM API lib with all models
|
||||
make lib-kim args="-n -a EAM_Dynamo_Ackland_2003_W__MO_141627196590_005" # only add one model or model driver
|
||||
|
||||
See the list of KIM model drivers here:
|
||||
https://openkim.org/browse/model-drivers/alphabetical
|
||||
|
||||
See the list of all KIM models here:
|
||||
https://openkim.org/browse/models/by-model-drivers
|
||||
https://openkim.org/browse/models
|
||||
"""
|
||||
|
||||
pgroup = parser.add_mutually_exclusive_group()
|
||||
|
@ -132,7 +129,7 @@ if buildflag:
|
|||
|
||||
# build kim-api
|
||||
print("Building kim-api ...")
|
||||
cmd = 'cd "%s/%s/build" && make' % (thisdir, version)
|
||||
cmd = 'cd "%s/%s/build" && make -j2' % (thisdir, version)
|
||||
txt = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
|
||||
if verboseflag:
|
||||
print(txt.decode("UTF-8"))
|
||||
|
@ -140,7 +137,7 @@ if buildflag:
|
|||
# install kim-api
|
||||
|
||||
print("Installing kim-api ...")
|
||||
cmd = 'cd "%s/%s/build" && make install' % (thisdir, version)
|
||||
cmd = 'cd "%s/%s/build" && make -j2 install' % (thisdir, version)
|
||||
txt = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
|
||||
if verboseflag:
|
||||
print(txt.decode("UTF-8"))
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
This directory contains build settings for the KIM API library which
|
||||
is required to use the KIM package and its pair_style kim command in a
|
||||
LAMMPS input script.
|
||||
This directory contains build settings for the KIM API library which is
|
||||
required to use the KIM package and its kim_init, kim_interactions, kim_query,
|
||||
and pair_kim commands in a LAMMPS input script.
|
||||
|
||||
Information about the KIM project can be found at https://openkim.org.
|
||||
The KIM project is lead by Ellad Tadmor and Ryan Elliott (U Minn).
|
||||
Ryan Elliott is the main developer for the KIM API and he also
|
||||
maintains the code that implements the pair_style kim command.
|
||||
maintains the code that implements the KIM commands.
|
||||
|
||||
You can type "make lib-kim" from the src directory to see help on
|
||||
how to download and build this library via make commands, or you can
|
||||
|
@ -13,11 +13,9 @@ do the same thing by typing "python Install.py" from within this
|
|||
directory, or you can do it manually by following the instructions
|
||||
below.
|
||||
|
||||
As of KIM API version 2, the KIM package also provides a LAMMPS command
|
||||
to perform queries through the OpenKIM web API. This feature requires
|
||||
that the CURL library (libcurl) development package and its configuration
|
||||
query tool, curl-config, are installed. The provided Makefile.lammps
|
||||
is set up to automatically detect this.
|
||||
Use of the kim_query command requires that the CURL library (libcurl)
|
||||
development package and its configuration query tool, curl-config, are
|
||||
installed. The provided Makefile.lammps is set up to automatically detect this.
|
||||
|
||||
-----------------
|
||||
|
||||
|
@ -40,8 +38,8 @@ $ cmake .. -DCMAKE_INSTALL_PREFIX=${PWD}/../../installed-kim-api-X.Y.Z
|
|||
|
||||
3. Build and install the kim-api and model
|
||||
|
||||
$ make
|
||||
$ make install
|
||||
$ make -j2
|
||||
$ make -j2 install
|
||||
|
||||
4. Remove source and build files
|
||||
|
||||
|
@ -53,7 +51,7 @@ $ rm -rf kim-api-X.Y.Z.txz
|
|||
desired value)
|
||||
|
||||
$ source ${PWD}/kim-api-X.Y.Z/bin/kim-api-activate
|
||||
$ kim-api-collections-management install system Pair_Johnson_Fe__MO_857282754307_002
|
||||
$ kim-api-collections-management install system EAM_ErcolessiAdams_1994_Al__MO_324507536345_002
|
||||
|
||||
|
||||
-----------------
|
||||
|
|
|
@ -1,29 +1,30 @@
|
|||
This package provides a pair_style kim command which is a wrapper on
|
||||
the Knowledge Base for Interatomic Models (KIM) repository of
|
||||
interatomic potentials, so that they can be used by LAMMPS scripts.
|
||||
This package provides the kim_init, kim_query, kim_interactions, and
|
||||
the pair_style kim command which are wrappers on the Knowledgebase of
|
||||
Interatomic Models (KIM) repository of interatomic potentials, so that
|
||||
they can be used by LAMMPS scripts.
|
||||
|
||||
Information about the KIM project can be found at https://openkim.org.
|
||||
The KIM project is lead by Ellad Tadmor and Ryan Elliott (U Minn) and
|
||||
James Sethna (Cornell U). Ryan Elliott is the main developer for the
|
||||
KIM API and he also maintains the code that implements the pair_style
|
||||
kim command.
|
||||
The KIM project is lead by Ellad B. Tadmor and Ryan S. Elliott (UMN).
|
||||
Ryan Elliott is the main developer for the KIM API and he also
|
||||
maintains the code that implements these commands.
|
||||
|
||||
Using this package requires the KIM library and its models
|
||||
Using this package requires the KIM-API library and its models
|
||||
(interatomic potentials) to be downloaded and installed on your
|
||||
system. The library can be downloaded and built in lib/kim or
|
||||
elsewhere on your system, which must be done before bulding LAMMPS
|
||||
with this package. Details of the download, build, and install
|
||||
process for KIM are given in the lib/kim/README file, and scripts will
|
||||
soon be provided to help automate the process. Also see the LAMMPS
|
||||
manual for general information on building LAMMPS with external
|
||||
process for the KIM-API are given in the lib/kim/README file, and
|
||||
scripts are provided to help automate the process. Also see the
|
||||
LAMMPS manual for general information on building LAMMPS with external
|
||||
libraries. The settings in the Makefile.lammps file in lib/kim must
|
||||
be correct for LAMMPS to build correctly with this package installed.
|
||||
However, the default settings should be correct in most cases and the
|
||||
Makefile.lammps file usually will not need to be changed.
|
||||
|
||||
Once you have successfully built LAMMPS with this package and the KIM
|
||||
library you can test it using an input file from the examples dir:
|
||||
library you can test it using an input files in the examples dir:
|
||||
|
||||
./lmp_serial < lammps/examples/kim/in.kim.lj
|
||||
./lmp_serial -in lammps/examples/kim/in.kim.lj
|
||||
|
||||
This pair_style was written by Ryan S. Elliott (U Minn).
|
||||
These commands were written by Ryan S. Elliott (UMN), Ellad B. Tadmor
|
||||
(UMN) and Axel Kohlmeyer (Temple U).
|
||||
|
|
|
@ -0,0 +1,155 @@
|
|||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Axel Kohlmeyer (Temple U),
|
||||
Ryan S. Elliott (UMN)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, see <https://www.gnu.org/licenses>.
|
||||
|
||||
Linking LAMMPS statically or dynamically with other modules is making a
|
||||
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
|
||||
General Public License cover the whole combination.
|
||||
|
||||
In addition, as a special exception, the copyright holders of LAMMPS give
|
||||
you permission to combine LAMMPS with free software programs or libraries
|
||||
that are released under the GNU LGPL and with code included in the standard
|
||||
release of the "kim-api" under the CDDL (or modified versions of such code,
|
||||
with unchanged license). You may copy and distribute such a system following
|
||||
the terms of the GNU GPL for LAMMPS and the licenses of the other code
|
||||
concerned, provided that you include the source code of that other code
|
||||
when and as the GNU GPL requires distribution of source code.
|
||||
|
||||
Note that people who make modified versions of LAMMPS are not obligated to
|
||||
grant this special exception for their modified versions; it is their choice
|
||||
whether to do so. The GNU General Public License gives permission to release
|
||||
a modified version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this exception.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.0.2 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "fix_store_kim.h"
|
||||
#include <cstring>
|
||||
extern "C" {
|
||||
#include "KIM_SimulatorModel.h"
|
||||
}
|
||||
#include "error.h"
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
using namespace FixConst;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
FixStoreKIM::FixStoreKIM(LAMMPS *lmp, int narg, char **arg)
|
||||
: Fix(lmp, narg, arg), simulator_model(NULL), model_name(NULL),
|
||||
model_units(NULL), user_units(NULL)
|
||||
{
|
||||
if (narg != 3) error->all(FLERR,"Illegal fix STORE/KIM command");
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
FixStoreKIM::~FixStoreKIM()
|
||||
{
|
||||
// free associated storage
|
||||
|
||||
if (simulator_model) {
|
||||
KIM_SimulatorModel *sm = (KIM_SimulatorModel *)simulator_model;
|
||||
KIM_SimulatorModel_Destroy(&sm);
|
||||
simulator_model = NULL;
|
||||
}
|
||||
|
||||
if (model_name) {
|
||||
char *mn = (char *)model_name;
|
||||
delete[] mn;
|
||||
model_name = NULL;
|
||||
}
|
||||
|
||||
if (model_units) {
|
||||
char *mu = (char *)model_units;
|
||||
delete[] mu;
|
||||
model_units = NULL;
|
||||
}
|
||||
if (user_units) {
|
||||
char *uu = (char *)user_units;
|
||||
delete[] uu;
|
||||
user_units = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
int FixStoreKIM::setmask()
|
||||
{
|
||||
int mask = 0;
|
||||
return mask;
|
||||
}
|
||||
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void FixStoreKIM::setptr(const char *name, void *ptr)
|
||||
{
|
||||
if (strcmp(name,"simulator_model") == 0) {
|
||||
if (simulator_model) {
|
||||
KIM_SimulatorModel *sm = (KIM_SimulatorModel *)simulator_model;
|
||||
KIM_SimulatorModel_Destroy(&sm);
|
||||
}
|
||||
simulator_model = ptr;
|
||||
} else if (strcmp(name,"model_name") == 0) {
|
||||
if (model_name) {
|
||||
char *mn = (char *)model_name;
|
||||
delete[] mn;
|
||||
}
|
||||
model_name = ptr;
|
||||
} else if (strcmp(name,"model_units") == 0) {
|
||||
if (model_units) {
|
||||
char *mu = (char *)model_units;
|
||||
delete[] mu;
|
||||
}
|
||||
model_units = ptr;
|
||||
} else if (strcmp(name,"user_units") == 0) {
|
||||
if (user_units) {
|
||||
char *uu = (char *)user_units;
|
||||
delete[] uu;
|
||||
}
|
||||
user_units = ptr;
|
||||
} else error->all(FLERR,"Unknown property in fix STORE/KIM");
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void *FixStoreKIM::getptr(const char *name)
|
||||
{
|
||||
if (strcmp(name,"simulator_model") == 0) return simulator_model;
|
||||
else if (strcmp(name,"model_name") == 0) return model_name;
|
||||
else if (strcmp(name,"model_units") == 0) return model_units;
|
||||
else if (strcmp(name,"user_units") == 0) return user_units;
|
||||
else return NULL;
|
||||
}
|
|
@ -0,0 +1,99 @@
|
|||
/* -*- c++ -*- ----------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Axel Kohlmeyer (Temple U),
|
||||
Ryan S. Elliott (UMN)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, see <https://www.gnu.org/licenses>.
|
||||
|
||||
Linking LAMMPS statically or dynamically with other modules is making a
|
||||
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
|
||||
General Public License cover the whole combination.
|
||||
|
||||
In addition, as a special exception, the copyright holders of LAMMPS give
|
||||
you permission to combine LAMMPS with free software programs or libraries
|
||||
that are released under the GNU LGPL and with code included in the standard
|
||||
release of the "kim-api" under the CDDL (or modified versions of such code,
|
||||
with unchanged license). You may copy and distribute such a system following
|
||||
the terms of the GNU GPL for LAMMPS and the licenses of the other code
|
||||
concerned, provided that you include the source code of that other code
|
||||
when and as the GNU GPL requires distribution of source code.
|
||||
|
||||
Note that people who make modified versions of LAMMPS are not obligated to
|
||||
grant this special exception for their modified versions; it is their choice
|
||||
whether to do so. The GNU General Public License gives permission to release
|
||||
a modified version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this exception.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.0.2 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef FIX_CLASS
|
||||
|
||||
FixStyle(STORE/KIM,FixStoreKIM)
|
||||
|
||||
#else
|
||||
|
||||
#ifndef LMP_FIX_STORE_KIM_H
|
||||
#define LMP_FIX_STORE_KIM_H
|
||||
|
||||
#include "fix.h"
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class FixStoreKIM : public Fix {
|
||||
public:
|
||||
FixStoreKIM(class LAMMPS *, int, char **);
|
||||
~FixStoreKIM();
|
||||
int setmask();
|
||||
|
||||
void setptr(const char *, void *);
|
||||
void *getptr(const char *);
|
||||
|
||||
private:
|
||||
void *simulator_model; // pointer to KIM simulator model class
|
||||
void *model_name; // string of KIM model name
|
||||
void *model_units; // string of unit conversion origin or NULL
|
||||
void *user_units; // string of unit conversion target or NULL
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* ERROR/WARNING messages:
|
||||
|
||||
E: 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.
|
||||
|
||||
*/
|
|
@ -0,0 +1,508 @@
|
|||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Axel Kohlmeyer (Temple U),
|
||||
Ryan S. Elliott (UMN)
|
||||
Ellad B. Tadmor (UMN)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, see <https://www.gnu.org/licenses>.
|
||||
|
||||
Linking LAMMPS statically or dynamically with other modules is making a
|
||||
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
|
||||
General Public License cover the whole combination.
|
||||
|
||||
In addition, as a special exception, the copyright holders of LAMMPS give
|
||||
you permission to combine LAMMPS with free software programs or libraries
|
||||
that are released under the GNU LGPL and with code included in the standard
|
||||
release of the "kim-api" under the CDDL (or modified versions of such code,
|
||||
with unchanged license). You may copy and distribute such a system following
|
||||
the terms of the GNU GPL for LAMMPS and the licenses of the other code
|
||||
concerned, provided that you include the source code of that other code
|
||||
when and as the GNU GPL requires distribution of source code.
|
||||
|
||||
Note that people who make modified versions of LAMMPS are not obligated to
|
||||
grant this special exception for their modified versions; it is their choice
|
||||
whether to do so. The GNU General Public License gives permission to release
|
||||
a modified version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this exception.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.1.0 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "kim_init.h"
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
#include "error.h"
|
||||
#include "atom.h"
|
||||
#include "comm.h"
|
||||
#include "domain.h"
|
||||
#include "modify.h"
|
||||
#include "update.h"
|
||||
#include "universe.h"
|
||||
#include "input.h"
|
||||
#include "variable.h"
|
||||
#include "citeme.h"
|
||||
#include "fix_store_kim.h"
|
||||
#include "kim_units.h"
|
||||
|
||||
extern "C" {
|
||||
#include "KIM_SimulatorHeaders.h"
|
||||
}
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInit::command(int narg, char **arg)
|
||||
{
|
||||
if ((narg < 2) || (narg > 3)) error->all(FLERR,"Illegal kim_init command");
|
||||
|
||||
if (domain->box_exist)
|
||||
error->all(FLERR,"Must use 'kim_init' command before "
|
||||
"simulation box is defined");
|
||||
char *model_name = new char[strlen(arg[0])+1];
|
||||
strcpy(model_name,arg[0]);
|
||||
char *user_units = new char[strlen(arg[1])+1];
|
||||
strcpy(user_units,arg[1]);
|
||||
if (narg == 3) {
|
||||
if (strcmp(arg[2],"unit_conversion_mode")==0) unit_conversion_mode = true;
|
||||
else { error->all(FLERR,"Illegal kim_init command"); }
|
||||
} else unit_conversion_mode = false;
|
||||
|
||||
char *model_units;
|
||||
determine_model_type_and_units(model_name, user_units, &model_units);
|
||||
|
||||
write_log_cite(model_name);
|
||||
|
||||
do_init(model_name, user_units, model_units);
|
||||
}
|
||||
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
namespace {
|
||||
void get_kim_unit_names(
|
||||
char const * const system,
|
||||
KIM_LengthUnit & lengthUnit,
|
||||
KIM_EnergyUnit & energyUnit,
|
||||
KIM_ChargeUnit & chargeUnit,
|
||||
KIM_TemperatureUnit & temperatureUnit,
|
||||
KIM_TimeUnit & timeUnit,
|
||||
Error * error)
|
||||
{
|
||||
if ((strcmp(system,"real")==0)) {
|
||||
lengthUnit = KIM_LENGTH_UNIT_A;
|
||||
energyUnit = KIM_ENERGY_UNIT_kcal_mol;
|
||||
chargeUnit = KIM_CHARGE_UNIT_e;
|
||||
temperatureUnit = KIM_TEMPERATURE_UNIT_K;
|
||||
timeUnit = KIM_TIME_UNIT_fs;
|
||||
} else if ((strcmp(system,"metal")==0)) {
|
||||
lengthUnit = KIM_LENGTH_UNIT_A;
|
||||
energyUnit = KIM_ENERGY_UNIT_eV;
|
||||
chargeUnit = KIM_CHARGE_UNIT_e;
|
||||
temperatureUnit = KIM_TEMPERATURE_UNIT_K;
|
||||
timeUnit = KIM_TIME_UNIT_ps;
|
||||
} else if ((strcmp(system,"si")==0)) {
|
||||
lengthUnit = KIM_LENGTH_UNIT_m;
|
||||
energyUnit = KIM_ENERGY_UNIT_J;
|
||||
chargeUnit = KIM_CHARGE_UNIT_C;
|
||||
temperatureUnit = KIM_TEMPERATURE_UNIT_K;
|
||||
timeUnit = KIM_TIME_UNIT_s;
|
||||
} else if ((strcmp(system,"cgs")==0)) {
|
||||
lengthUnit = KIM_LENGTH_UNIT_cm;
|
||||
energyUnit = KIM_ENERGY_UNIT_erg;
|
||||
chargeUnit = KIM_CHARGE_UNIT_statC;
|
||||
temperatureUnit = KIM_TEMPERATURE_UNIT_K;
|
||||
timeUnit = KIM_TIME_UNIT_s;
|
||||
} else if ((strcmp(system,"electron")==0)) {
|
||||
lengthUnit = KIM_LENGTH_UNIT_Bohr;
|
||||
energyUnit = KIM_ENERGY_UNIT_Hartree;
|
||||
chargeUnit = KIM_CHARGE_UNIT_e;
|
||||
temperatureUnit = KIM_TEMPERATURE_UNIT_K;
|
||||
timeUnit = KIM_TIME_UNIT_fs;
|
||||
} else if ((strcmp(system,"lj")==0)) {
|
||||
error->all(FLERR,"LAMMPS unit_style lj not supported by KIM models");
|
||||
} else {
|
||||
error->all(FLERR,"Unknown unit_style");
|
||||
}
|
||||
}
|
||||
} // namespace
|
||||
void KimInit::determine_model_type_and_units(char * model_name,
|
||||
char * user_units,
|
||||
char ** model_units)
|
||||
{
|
||||
KIM_LengthUnit lengthUnit;
|
||||
KIM_EnergyUnit energyUnit;
|
||||
KIM_ChargeUnit chargeUnit;
|
||||
KIM_TemperatureUnit temperatureUnit;
|
||||
KIM_TimeUnit timeUnit;
|
||||
int units_accepted;
|
||||
KIM_Collections * kim_Coll;
|
||||
KIM_CollectionItemType itemType;
|
||||
|
||||
int kim_error = KIM_Collections_Create(&kim_Coll);
|
||||
if (kim_error) {
|
||||
error->all(FLERR,"Unable to access KIM Collections to find Model.");
|
||||
}
|
||||
|
||||
kim_error = KIM_Collections_GetItemType(kim_Coll, model_name, &itemType);
|
||||
if (kim_error) {
|
||||
error->all(FLERR,"KIM Model name not found.");
|
||||
}
|
||||
KIM_Collections_Destroy(&kim_Coll);
|
||||
|
||||
if (KIM_CollectionItemType_Equal(itemType,
|
||||
KIM_COLLECTION_ITEM_TYPE_portableModel))
|
||||
{
|
||||
get_kim_unit_names(user_units, lengthUnit, energyUnit,
|
||||
chargeUnit, temperatureUnit, timeUnit, error);
|
||||
KIM_Model * kim_MO;
|
||||
int kim_error = KIM_Model_Create(KIM_NUMBERING_zeroBased,
|
||||
lengthUnit,
|
||||
energyUnit,
|
||||
chargeUnit,
|
||||
temperatureUnit,
|
||||
timeUnit,
|
||||
model_name,
|
||||
&units_accepted,
|
||||
&kim_MO);
|
||||
|
||||
if (kim_error)
|
||||
error->all(FLERR,"Unable to load KIM Simulator Model.");
|
||||
|
||||
model_type = MO;
|
||||
KIM_Model_Destroy(&kim_MO);
|
||||
|
||||
if (units_accepted) {
|
||||
*model_units = new char[strlen(user_units)+1];
|
||||
strcpy(*model_units,user_units);
|
||||
return;
|
||||
} else if (unit_conversion_mode) {
|
||||
int const num_systems = 5;
|
||||
char const * const systems[num_systems]
|
||||
= {"metal", "real", "si", "cgs", "electron"};
|
||||
for (int i=0; i < num_systems; ++i) {
|
||||
get_kim_unit_names(systems[i], lengthUnit, energyUnit,
|
||||
chargeUnit, temperatureUnit, timeUnit, error);
|
||||
kim_error = KIM_Model_Create(KIM_NUMBERING_zeroBased,
|
||||
lengthUnit,
|
||||
energyUnit,
|
||||
chargeUnit,
|
||||
temperatureUnit,
|
||||
timeUnit,
|
||||
model_name,
|
||||
&units_accepted,
|
||||
&kim_MO);
|
||||
KIM_Model_Destroy(&kim_MO);
|
||||
if (units_accepted) {
|
||||
*model_units = new char[strlen(systems[i])+1];
|
||||
strcpy(*model_units,systems[i]);
|
||||
return;
|
||||
}
|
||||
} error->all(FLERR,"KIM Model does not support any lammps unit system");
|
||||
} else {
|
||||
error->all(FLERR,"KIM Model does not support the requested unit system");
|
||||
}
|
||||
}
|
||||
else if (KIM_CollectionItemType_Equal(
|
||||
itemType, KIM_COLLECTION_ITEM_TYPE_simulatorModel)) {
|
||||
KIM_SimulatorModel * kim_SM;
|
||||
kim_error = KIM_SimulatorModel_Create(model_name, &kim_SM);
|
||||
if (kim_error)
|
||||
error->all(FLERR,"Unable to load KIM Simulator Model.");
|
||||
model_type = SM;
|
||||
|
||||
int sim_fields;
|
||||
int sim_lines;
|
||||
char const * sim_field;
|
||||
char const * sim_value;
|
||||
KIM_SimulatorModel_GetNumberOfSimulatorFields(kim_SM, &sim_fields);
|
||||
KIM_SimulatorModel_CloseTemplateMap(kim_SM);
|
||||
for (int i=0; i < sim_fields; ++i) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldMetadata(
|
||||
kim_SM,i,&sim_lines,&sim_field);
|
||||
|
||||
if (0 == strcmp(sim_field,"units")) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldLine(kim_SM,i,0,&sim_value);
|
||||
int len=strlen(sim_value)+1;
|
||||
*model_units = new char[len]; strcpy(*model_units,sim_value);
|
||||
break;
|
||||
}
|
||||
}
|
||||
KIM_SimulatorModel_Destroy(&kim_SM);
|
||||
|
||||
if ((! unit_conversion_mode) && (strcmp(*model_units, user_units)!=0)) {
|
||||
std::string mesg("Incompatible units for KIM Simulator Model, "
|
||||
"required units = ");
|
||||
mesg += *model_units;
|
||||
error->all(FLERR,mesg.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInit::do_init(char *model_name, char *user_units, char *model_units)
|
||||
{
|
||||
// create storage proxy fix. delete existing fix, if needed.
|
||||
|
||||
int ifix = modify->find_fix("KIM_MODEL_STORE");
|
||||
if (ifix >= 0) modify->delete_fix(ifix);
|
||||
char *fixarg[3];
|
||||
fixarg[0] = (char *)"KIM_MODEL_STORE";
|
||||
fixarg[1] = (char *)"all";
|
||||
fixarg[2] = (char *)"STORE/KIM";
|
||||
modify->add_fix(3,fixarg);
|
||||
ifix = modify->find_fix("KIM_MODEL_STORE");
|
||||
|
||||
FixStoreKIM *fix_store = (FixStoreKIM *) modify->fix[ifix];
|
||||
fix_store->setptr("model_name", (void *) model_name);
|
||||
fix_store->setptr("user_units", (void *) user_units);
|
||||
fix_store->setptr("model_units", (void *) model_units);
|
||||
|
||||
// Begin output to log file
|
||||
kim_init_log_delimiter("begin");
|
||||
|
||||
int kimerror;
|
||||
KIM_SimulatorModel * simulatorModel;
|
||||
if (model_type == SM)
|
||||
{
|
||||
kimerror = KIM_SimulatorModel_Create(model_name,&simulatorModel);
|
||||
|
||||
char const *sim_name, *sim_version;
|
||||
KIM_SimulatorModel_GetSimulatorNameAndVersion(
|
||||
simulatorModel,&sim_name, &sim_version);
|
||||
|
||||
if (0 != strcmp(sim_name,"LAMMPS"))
|
||||
error->all(FLERR,"Incompatible KIM Simulator Model");
|
||||
|
||||
if (comm->me == 0) {
|
||||
std::string mesg("# Using KIM Simulator Model : ");
|
||||
mesg += model_name;
|
||||
mesg += "\n";
|
||||
mesg += "# For Simulator : ";
|
||||
mesg += std::string(sim_name) + " " + sim_version + "\n";
|
||||
mesg += "# Running on : LAMMPS ";
|
||||
mesg += universe->version;
|
||||
mesg += "\n";
|
||||
mesg += "#\n";
|
||||
|
||||
if (screen) fputs(mesg.c_str(),screen);
|
||||
if (logfile) fputs(mesg.c_str(),logfile);
|
||||
}
|
||||
|
||||
fix_store->setptr("simulator_model", (void *) simulatorModel);
|
||||
|
||||
// need to call this to have access to (some) simulator model init data.
|
||||
|
||||
KIM_SimulatorModel_CloseTemplateMap(simulatorModel);
|
||||
}
|
||||
|
||||
// Define unit conversion factor variables and print to log
|
||||
if (unit_conversion_mode) do_variables(user_units, model_units);
|
||||
|
||||
// set units
|
||||
|
||||
std::string cmd("units ");
|
||||
cmd += model_units;
|
||||
input->one(cmd.c_str());
|
||||
|
||||
if (model_type == SM) {
|
||||
int sim_fields, sim_lines;
|
||||
char const *sim_field, *sim_value;
|
||||
KIM_SimulatorModel_GetNumberOfSimulatorFields(simulatorModel, &sim_fields);
|
||||
|
||||
// init model
|
||||
|
||||
for (int i=0; i < sim_fields; ++i) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldMetadata(
|
||||
simulatorModel,i,&sim_lines,&sim_field);
|
||||
if (0 == strcmp(sim_field,"model-init")) {
|
||||
for (int j=0; j < sim_lines; ++j) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldLine(
|
||||
simulatorModel,i,j,&sim_value);
|
||||
input->one(sim_value);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// reset template map.
|
||||
KIM_SimulatorModel_OpenAndInitializeTemplateMap(simulatorModel);
|
||||
}
|
||||
|
||||
// End output to log file
|
||||
kim_init_log_delimiter("end");
|
||||
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInit::kim_init_log_delimiter(std::string const begin_end) const
|
||||
{
|
||||
if (comm->me == 0) {
|
||||
std::string mesg;
|
||||
if (begin_end == "begin")
|
||||
mesg =
|
||||
"#=== BEGIN kim-init ==========================================\n";
|
||||
else if (begin_end == "end")
|
||||
mesg =
|
||||
"#=== END kim-init ============================================\n\n";
|
||||
|
||||
input->write_echo(mesg.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInit::do_variables(char *user_units, char *model_units)
|
||||
{
|
||||
char *from = user_units, *to = model_units;
|
||||
Variable *variable = input->variable;
|
||||
|
||||
// refuse conversion from or to reduced units
|
||||
|
||||
if ((strcmp(from,"lj") == 0) || (strcmp(to,"lj") == 0))
|
||||
error->all(FLERR,"Cannot set up conversion variables for 'lj' units");
|
||||
|
||||
// get index to internal style variables. create, if needed.
|
||||
// set conversion factors for newly created variables.
|
||||
double conversion_factor;
|
||||
int ier;
|
||||
char *args[3];
|
||||
std::string var_str;
|
||||
args[1] = (char *)"internal";
|
||||
args[2] = (char *)"1.0";
|
||||
int v_unit;
|
||||
int const nunits = 14;
|
||||
char *units[nunits] = {(char *)"mass",
|
||||
(char *)"distance",
|
||||
(char *)"time",
|
||||
(char *)"energy",
|
||||
(char *)"velocity",
|
||||
(char *)"force",
|
||||
(char *)"torque",
|
||||
(char *)"temperature",
|
||||
(char *)"pressure",
|
||||
(char *)"viscosity",
|
||||
(char *)"charge",
|
||||
(char *)"dipole",
|
||||
(char *)"efield",
|
||||
(char *)"density"};
|
||||
|
||||
if (comm->me == 0) {
|
||||
std::string mesg("# Conversion factors from ");
|
||||
mesg += from;
|
||||
mesg += " to ";
|
||||
mesg += to;
|
||||
mesg += ":\n";
|
||||
input->write_echo(mesg.c_str());
|
||||
}
|
||||
|
||||
for (int i = 0; i < nunits; i++) {
|
||||
var_str = std::string("_u_") + std::string(units[i]);
|
||||
args[0] = (char *)var_str.c_str();
|
||||
v_unit = variable->find(args[0]);
|
||||
if (v_unit < 0) {
|
||||
variable->set(3,args);
|
||||
v_unit = variable->find(args[0]);
|
||||
}
|
||||
ier = lammps_unit_conversion(units[i],
|
||||
from,
|
||||
to,
|
||||
conversion_factor);
|
||||
if (ier != 0) {
|
||||
std::string err = std::string("Unable to obtain conversion factor: ") +
|
||||
"unit = " + units[i] + "; "
|
||||
"from = " + from + "; "
|
||||
"to = " + to + ".";
|
||||
error->all(FLERR,err.c_str());
|
||||
}
|
||||
variable->internal_set(v_unit,conversion_factor);
|
||||
if (comm->me == 0) {
|
||||
std::stringstream mesg;
|
||||
mesg << "variable " << std::setw(15) << std::left << var_str
|
||||
<< " internal "
|
||||
<< std::setprecision(12) << std::scientific << conversion_factor
|
||||
<< std::endl;
|
||||
input->write_echo(mesg.str().c_str());
|
||||
}
|
||||
}
|
||||
if (comm->me == 0) input->write_echo("#\n");
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInit::write_log_cite(char * model_name)
|
||||
{
|
||||
KIM_Collections * coll;
|
||||
int err = KIM_Collections_Create(&coll);
|
||||
if (err) return;
|
||||
|
||||
int extent;
|
||||
if (model_type == MO)
|
||||
{
|
||||
err = KIM_Collections_CacheListOfItemMetadataFiles(
|
||||
coll,KIM_COLLECTION_ITEM_TYPE_portableModel,model_name,&extent);
|
||||
}
|
||||
else if (model_type == SM)
|
||||
{
|
||||
err = KIM_Collections_CacheListOfItemMetadataFiles(
|
||||
coll,KIM_COLLECTION_ITEM_TYPE_simulatorModel,model_name,&extent);
|
||||
}
|
||||
else
|
||||
{
|
||||
error->all(FLERR,"Unknown model type.");
|
||||
}
|
||||
|
||||
if (err)
|
||||
{
|
||||
KIM_Collections_Destroy(&coll);
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < extent;++i)
|
||||
{
|
||||
char const * fileName;
|
||||
int availableAsString;
|
||||
char const * fileString;
|
||||
err = KIM_Collections_GetItemMetadataFile(
|
||||
coll,i,&fileName,NULL,NULL,&availableAsString,&fileString);
|
||||
if (err) continue;
|
||||
|
||||
if (0 == strncmp("kimcite",fileName,7))
|
||||
{
|
||||
if ((lmp->citeme) && (availableAsString)) lmp->citeme->add(fileString);
|
||||
}
|
||||
}
|
||||
|
||||
KIM_Collections_Destroy(&coll);
|
||||
}
|
|
@ -0,0 +1,131 @@
|
|||
/* -*- c++ -*- ----------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Axel Kohlmeyer (Temple U),
|
||||
Ryan S. Elliott (UMN)
|
||||
Ellad B. Tadmor (UMN)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, see <https://www.gnu.org/licenses>.
|
||||
|
||||
Linking LAMMPS statically or dynamically with other modules is making a
|
||||
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
|
||||
General Public License cover the whole combination.
|
||||
|
||||
In addition, as a special exception, the copyright holders of LAMMPS give
|
||||
you permission to combine LAMMPS with free software programs or libraries
|
||||
that are released under the GNU LGPL and with code included in the standard
|
||||
release of the "kim-api" under the CDDL (or modified versions of such code,
|
||||
with unchanged license). You may copy and distribute such a system following
|
||||
the terms of the GNU GPL for LAMMPS and the licenses of the other code
|
||||
concerned, provided that you include the source code of that other code
|
||||
when and as the GNU GPL requires distribution of source code.
|
||||
|
||||
Note that people who make modified versions of LAMMPS are not obligated to
|
||||
grant this special exception for their modified versions; it is their choice
|
||||
whether to do so. The GNU General Public License gives permission to release
|
||||
a modified version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this exception.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.1.0 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef COMMAND_CLASS
|
||||
|
||||
CommandStyle(kim_init,KimInit)
|
||||
|
||||
#else
|
||||
|
||||
#ifndef LMP_KIM_INIT_H
|
||||
#define LMP_KIM_INIT_H
|
||||
|
||||
#include "pointers.h"
|
||||
#include <string>
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class KimInit : protected Pointers {
|
||||
public:
|
||||
KimInit(class LAMMPS *lmp) : Pointers(lmp) {};
|
||||
void command(int, char **);
|
||||
private:
|
||||
enum model_type_enum {MO, SM};
|
||||
model_type_enum model_type;
|
||||
bool unit_conversion_mode;
|
||||
|
||||
void determine_model_type_and_units(char *, char *, char **);
|
||||
void write_log_cite(char *);
|
||||
void do_init(char *, char *, char *);
|
||||
void do_variables(char*, char*);
|
||||
void kim_init_log_delimiter(std::string const begin_end) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* ERROR/WARNING messages:
|
||||
|
||||
E: Illegal kim_init command
|
||||
|
||||
Incorrect number or kind of arguments to kim_init.
|
||||
|
||||
E: Must use 'kim_init' command before simulation box is defined
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: KIM Model does not support the requested unit system
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: KIM Model does not support any lammps unit system
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: KIM model name not found
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: Incompatible KIM Simulator Model
|
||||
|
||||
The requested KIM Simulator Model was defined for a different MD code
|
||||
and thus is not compatible with LAMMPS.
|
||||
|
||||
E: Incompatible units for KIM Simulator Model
|
||||
|
||||
The selected unit style is not compatible with the requested KIM
|
||||
Simulator Model.
|
||||
|
||||
E: KIM Simulator Model has no Model definition
|
||||
|
||||
There is no model definition (key: model-defn) in the KIM Simulator
|
||||
Model. Please contact the OpenKIM database maintainers to verify
|
||||
and potentially correct this.
|
||||
|
||||
*/
|
|
@ -0,0 +1,387 @@
|
|||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Axel Kohlmeyer (Temple U),
|
||||
Ryan S. Elliott (UMN)
|
||||
Ellad B. Tadmor (UMN)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, see <https://www.gnu.org/licenses>.
|
||||
|
||||
Linking LAMMPS statically or dynamically with other modules is making a
|
||||
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
|
||||
General Public License cover the whole combination.
|
||||
|
||||
In addition, as a special exception, the copyright holders of LAMMPS give
|
||||
you permission to combine LAMMPS with free software programs or libraries
|
||||
that are released under the GNU LGPL and with code included in the standard
|
||||
release of the "kim-api" under the CDDL (or modified versions of such code,
|
||||
with unchanged license). You may copy and distribute such a system following
|
||||
the terms of the GNU GPL for LAMMPS and the licenses of the other code
|
||||
concerned, provided that you include the source code of that other code
|
||||
when and as the GNU GPL requires distribution of source code.
|
||||
|
||||
Note that people who make modified versions of LAMMPS are not obligated to
|
||||
grant this special exception for their modified versions; it is their choice
|
||||
whether to do so. The GNU General Public License gives permission to release
|
||||
a modified version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this exception.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.1.0 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "kim_interactions.h"
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include "error.h"
|
||||
#include "atom.h"
|
||||
#include "comm.h"
|
||||
#include "domain.h"
|
||||
#include "modify.h"
|
||||
#include "update.h"
|
||||
#include "universe.h"
|
||||
#include "input.h"
|
||||
#include "variable.h"
|
||||
#include "fix_store_kim.h"
|
||||
|
||||
extern "C" {
|
||||
#include "KIM_SimulatorHeaders.h"
|
||||
}
|
||||
|
||||
#define SNUM(x) \
|
||||
static_cast<std::ostringstream const &>(std::ostringstream() \
|
||||
<< std::dec << x).str()
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInteractions::command(int narg, char **arg)
|
||||
{
|
||||
if (narg < 1) error->all(FLERR,"Illegal kim_interactions command");
|
||||
|
||||
if (!domain->box_exist)
|
||||
error->all(FLERR,"Must use 'kim_interactions' command after "
|
||||
"simulation box is defined");
|
||||
do_setup(narg,arg);
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInteractions::kim_interactions_log_delimiter(
|
||||
std::string const begin_end) const
|
||||
{
|
||||
if (comm->me == 0) {
|
||||
std::string mesg;
|
||||
if (begin_end == "begin")
|
||||
mesg =
|
||||
"#=== BEGIN kim_interactions ==================================\n";
|
||||
else if (begin_end == "end")
|
||||
mesg =
|
||||
"#=== END kim_interactions ====================================\n\n";
|
||||
|
||||
input->write_echo(mesg.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimInteractions::do_setup(int narg, char **arg)
|
||||
{
|
||||
bool fixed_types;
|
||||
if ((narg == 1) && (0 == strcmp("fixed_types",arg[0]))) {
|
||||
fixed_types = true;
|
||||
}
|
||||
else if (narg != atom->ntypes) {
|
||||
error->all(FLERR,"Illegal kim_interactions command");
|
||||
}
|
||||
else {
|
||||
fixed_types = false;
|
||||
}
|
||||
|
||||
char *model_name = NULL;
|
||||
KIM_SimulatorModel *simulatorModel(NULL);
|
||||
|
||||
// check if we had a kim_init command by finding fix STORE/KIM
|
||||
// retrieve model name and pointer to simulator model class instance.
|
||||
// validate model name if not given as NULL.
|
||||
|
||||
int ifix = modify->find_fix("KIM_MODEL_STORE");
|
||||
if (ifix >= 0) {
|
||||
FixStoreKIM *fix_store = (FixStoreKIM *) modify->fix[ifix];
|
||||
model_name = (char *)fix_store->getptr("model_name");
|
||||
simulatorModel = (KIM_SimulatorModel *)fix_store->getptr("simulator_model");
|
||||
} else error->all(FLERR,"Must use 'kim_init' before 'kim_interactions'");
|
||||
|
||||
// Begin output to log file
|
||||
kim_interactions_log_delimiter("begin");
|
||||
|
||||
if (simulatorModel) {
|
||||
|
||||
if (!fixed_types) {
|
||||
std::string delimiter("");
|
||||
std::string atom_type_sym_list;
|
||||
std::string atom_type_num_list;
|
||||
|
||||
for (int i = 0; i < narg; i++)
|
||||
{
|
||||
atom_type_sym_list += delimiter + arg[i];
|
||||
atom_type_num_list += delimiter + SNUM(species_to_atomic_no(arg[i]));
|
||||
delimiter = " ";
|
||||
}
|
||||
|
||||
KIM_SimulatorModel_AddTemplateMap(
|
||||
simulatorModel,"atom-type-sym-list",atom_type_sym_list.c_str());
|
||||
KIM_SimulatorModel_AddTemplateMap(
|
||||
simulatorModel,"atom-type-num-list",atom_type_num_list.c_str());
|
||||
KIM_SimulatorModel_CloseTemplateMap(simulatorModel);
|
||||
|
||||
int len = strlen(atom_type_sym_list.c_str())+1;
|
||||
char *strbuf = new char[len];
|
||||
char *strword;
|
||||
|
||||
// validate species selection
|
||||
|
||||
int sim_num_species;
|
||||
bool species_is_supported;
|
||||
char const *sim_species;
|
||||
KIM_SimulatorModel_GetNumberOfSupportedSpecies(
|
||||
simulatorModel,&sim_num_species);
|
||||
strcpy(strbuf,atom_type_sym_list.c_str());
|
||||
strword = strtok(strbuf," \t");
|
||||
while (strword) {
|
||||
species_is_supported = false;
|
||||
if (strcmp(strword,"NULL") == 0) continue;
|
||||
for (int i=0; i < sim_num_species; ++i) {
|
||||
KIM_SimulatorModel_GetSupportedSpecies(simulatorModel,i,&sim_species);
|
||||
if (strcmp(sim_species,strword) == 0)
|
||||
species_is_supported = true;
|
||||
}
|
||||
if (!species_is_supported) {
|
||||
std::string msg("Species '");
|
||||
msg += strword;
|
||||
msg += "' is not supported by this KIM Simulator Model";
|
||||
error->all(FLERR,msg.c_str());
|
||||
}
|
||||
strword = strtok(NULL," \t");
|
||||
}
|
||||
delete[] strbuf;
|
||||
}
|
||||
else
|
||||
{
|
||||
KIM_SimulatorModel_CloseTemplateMap(simulatorModel);
|
||||
}
|
||||
|
||||
// check if units are unchanged
|
||||
|
||||
int sim_fields, sim_lines;
|
||||
const char *sim_field, *sim_value;
|
||||
KIM_SimulatorModel_GetNumberOfSimulatorFields(simulatorModel, &sim_fields);
|
||||
for (int i=0; i < sim_fields; ++i) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldMetadata(
|
||||
simulatorModel,i,&sim_lines,&sim_field);
|
||||
|
||||
if (0 == strcmp(sim_field,"units")) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldLine(simulatorModel,i,0,&sim_value);
|
||||
if (0 != strcmp(sim_value,update->unit_style))
|
||||
error->all(FLERR,"Incompatible units for KIM Simulator Model");
|
||||
}
|
||||
}
|
||||
|
||||
int sim_model_idx=-1;
|
||||
for (int i=0; i < sim_fields; ++i) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldMetadata(
|
||||
simulatorModel,i,&sim_lines,&sim_field);
|
||||
if (0 == strcmp(sim_field,"model-defn")) {
|
||||
sim_model_idx = i;
|
||||
for (int j=0; j < sim_lines; ++j) {
|
||||
KIM_SimulatorModel_GetSimulatorFieldLine(
|
||||
simulatorModel,sim_model_idx,j,&sim_value);
|
||||
input->one(sim_value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (sim_model_idx < 0)
|
||||
error->all(FLERR,"KIM Simulator Model has no Model definition");
|
||||
|
||||
KIM_SimulatorModel_OpenAndInitializeTemplateMap(simulatorModel);
|
||||
|
||||
} else {
|
||||
|
||||
// not a simulator model. issue pair_style and pair_coeff commands.
|
||||
|
||||
if (fixed_types)
|
||||
error->all(FLERR,"fixed_types cannot be used with a KIM Portable Model");
|
||||
|
||||
// NOTE: all references to arg must appear before calls to input->one()
|
||||
// as that will reset the argument vector.
|
||||
|
||||
std::string cmd1("pair_style kim ");
|
||||
cmd1 += model_name;
|
||||
|
||||
std::string cmd2("pair_coeff * * ");
|
||||
for (int i=0; i < narg; ++i) {
|
||||
cmd2 += arg[i];
|
||||
cmd2 += " ";
|
||||
}
|
||||
|
||||
input->one(cmd1.c_str());
|
||||
input->one(cmd2.c_str());
|
||||
}
|
||||
|
||||
// End output to log file
|
||||
kim_interactions_log_delimiter("end");
|
||||
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
int KimInteractions::species_to_atomic_no(std::string const species) const
|
||||
{
|
||||
if (species == "H") return 1;
|
||||
else if (species == "He") return 2;
|
||||
else if (species == "Li") return 3;
|
||||
else if (species == "Be") return 4;
|
||||
else if (species == "B") return 5;
|
||||
else if (species == "C") return 6;
|
||||
else if (species == "N") return 7;
|
||||
else if (species == "O") return 8;
|
||||
else if (species == "F") return 9;
|
||||
else if (species == "Ne") return 10;
|
||||
else if (species == "Na") return 11;
|
||||
else if (species == "Mg") return 12;
|
||||
else if (species == "Al") return 13;
|
||||
else if (species == "Si") return 14;
|
||||
else if (species == "P") return 15;
|
||||
else if (species == "S") return 16;
|
||||
else if (species == "Cl") return 17;
|
||||
else if (species == "Ar") return 18;
|
||||
else if (species == "K") return 19;
|
||||
else if (species == "Ca") return 20;
|
||||
else if (species == "Sc") return 21;
|
||||
else if (species == "Ti") return 22;
|
||||
else if (species == "V") return 23;
|
||||
else if (species == "Cr") return 24;
|
||||
else if (species == "Mn") return 25;
|
||||
else if (species == "Fe") return 26;
|
||||
else if (species == "Co") return 27;
|
||||
else if (species == "Ni") return 28;
|
||||
else if (species == "Cu") return 29;
|
||||
else if (species == "Zn") return 30;
|
||||
else if (species == "Ga") return 31;
|
||||
else if (species == "Ge") return 32;
|
||||
else if (species == "As") return 33;
|
||||
else if (species == "Se") return 34;
|
||||
else if (species == "Br") return 35;
|
||||
else if (species == "Kr") return 36;
|
||||
else if (species == "Rb") return 37;
|
||||
else if (species == "Sr") return 38;
|
||||
else if (species == "Y") return 39;
|
||||
else if (species == "Zr") return 40;
|
||||
else if (species == "Nb") return 41;
|
||||
else if (species == "Mo") return 42;
|
||||
else if (species == "Tc") return 43;
|
||||
else if (species == "Ru") return 44;
|
||||
else if (species == "Rh") return 45;
|
||||
else if (species == "Pd") return 46;
|
||||
else if (species == "Ag") return 47;
|
||||
else if (species == "Cd") return 48;
|
||||
else if (species == "In") return 49;
|
||||
else if (species == "Sn") return 50;
|
||||
else if (species == "Sb") return 51;
|
||||
else if (species == "Te") return 52;
|
||||
else if (species == "I") return 53;
|
||||
else if (species == "Xe") return 54;
|
||||
else if (species == "Cs") return 55;
|
||||
else if (species == "Ba") return 56;
|
||||
else if (species == "La") return 57;
|
||||
else if (species == "Ce") return 58;
|
||||
else if (species == "Pr") return 59;
|
||||
else if (species == "Nd") return 60;
|
||||
else if (species == "Pm") return 61;
|
||||
else if (species == "Sm") return 62;
|
||||
else if (species == "Eu") return 63;
|
||||
else if (species == "Gd") return 64;
|
||||
else if (species == "Tb") return 65;
|
||||
else if (species == "Dy") return 66;
|
||||
else if (species == "Ho") return 67;
|
||||
else if (species == "Er") return 68;
|
||||
else if (species == "Tm") return 69;
|
||||
else if (species == "Yb") return 70;
|
||||
else if (species == "Lu") return 71;
|
||||
else if (species == "Hf") return 72;
|
||||
else if (species == "Ta") return 73;
|
||||
else if (species == "W") return 74;
|
||||
else if (species == "Re") return 75;
|
||||
else if (species == "Os") return 76;
|
||||
else if (species == "Ir") return 77;
|
||||
else if (species == "Pt") return 78;
|
||||
else if (species == "Au") return 79;
|
||||
else if (species == "Hg") return 80;
|
||||
else if (species == "Tl") return 81;
|
||||
else if (species == "Pb") return 82;
|
||||
else if (species == "Bi") return 83;
|
||||
else if (species == "Po") return 84;
|
||||
else if (species == "At") return 85;
|
||||
else if (species == "Rn") return 86;
|
||||
else if (species == "Fr") return 87;
|
||||
else if (species == "Ra") return 88;
|
||||
else if (species == "Ac") return 89;
|
||||
else if (species == "Th") return 90;
|
||||
else if (species == "Pa") return 91;
|
||||
else if (species == "U") return 92;
|
||||
else if (species == "Np") return 93;
|
||||
else if (species == "Pu") return 94;
|
||||
else if (species == "Am") return 95;
|
||||
else if (species == "Cm") return 96;
|
||||
else if (species == "Bk") return 97;
|
||||
else if (species == "Cf") return 98;
|
||||
else if (species == "Es") return 99;
|
||||
else if (species == "Fm") return 100;
|
||||
else if (species == "Md") return 101;
|
||||
else if (species == "No") return 102;
|
||||
else if (species == "Lr") return 103;
|
||||
else if (species == "Rf") return 104;
|
||||
else if (species == "Db") return 105;
|
||||
else if (species == "Sg") return 106;
|
||||
else if (species == "Bh") return 107;
|
||||
else if (species == "Hs") return 108;
|
||||
else if (species == "Mt") return 109;
|
||||
else if (species == "Ds") return 110;
|
||||
else if (species == "Rg") return 111;
|
||||
else if (species == "Cn") return 112;
|
||||
else if (species == "Nh") return 113;
|
||||
else if (species == "Fl") return 114;
|
||||
else if (species == "Mc") return 115;
|
||||
else if (species == "Lv") return 116;
|
||||
else if (species == "Ts") return 117;
|
||||
else if (species == "Og") return 118;
|
||||
else return -1;
|
||||
}
|
|
@ -0,0 +1,117 @@
|
|||
/* -*- c++ -*- ----------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Axel Kohlmeyer (Temple U),
|
||||
Ryan S. Elliott (UMN)
|
||||
Ellad B. Tadmor (UMN)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, see <https://www.gnu.org/licenses>.
|
||||
|
||||
Linking LAMMPS statically or dynamically with other modules is making a
|
||||
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
|
||||
General Public License cover the whole combination.
|
||||
|
||||
In addition, as a special exception, the copyright holders of LAMMPS give
|
||||
you permission to combine LAMMPS with free software programs or libraries
|
||||
that are released under the GNU LGPL and with code included in the standard
|
||||
release of the "kim-api" under the CDDL (or modified versions of such code,
|
||||
with unchanged license). You may copy and distribute such a system following
|
||||
the terms of the GNU GPL for LAMMPS and the licenses of the other code
|
||||
concerned, provided that you include the source code of that other code
|
||||
when and as the GNU GPL requires distribution of source code.
|
||||
|
||||
Note that people who make modified versions of LAMMPS are not obligated to
|
||||
grant this special exception for their modified versions; it is their choice
|
||||
whether to do so. The GNU General Public License gives permission to release
|
||||
a modified version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this exception.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.1.0 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef COMMAND_CLASS
|
||||
|
||||
CommandStyle(kim_interactions,KimInteractions)
|
||||
|
||||
#else
|
||||
|
||||
#ifndef LMP_KIM_INTERACTIONS_H
|
||||
#define LMP_KIM_INTERACTIONS_H
|
||||
|
||||
#include "pointers.h"
|
||||
#include <string>
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class KimInteractions : protected Pointers {
|
||||
public:
|
||||
KimInteractions(class LAMMPS *lmp) : Pointers(lmp) {};
|
||||
void command(int, char **);
|
||||
private:
|
||||
void do_setup(int, char **);
|
||||
int species_to_atomic_no(std::string const species) const;
|
||||
void kim_interactions_log_delimiter(std::string const begin_end) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* ERROR/WARNING messages:
|
||||
|
||||
E: Illegal kim_interactions command
|
||||
|
||||
Incorrect number or kind of arguments to kim_interactions.
|
||||
|
||||
E: Must use 'kim_interactions' command after simulation box is defined
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: Must use 'kim_init' command before 'kim_interactions'
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: Species XXX is not supported by this KIM Simulator Model
|
||||
|
||||
The kim_interactions command was referencing a species that is not
|
||||
present in the requested KIM Simulator Model.
|
||||
|
||||
E: Incompatible units for KIM Simulator Model
|
||||
|
||||
The selected unit style is not compatible with the requested KIM
|
||||
Simulator Model.
|
||||
|
||||
E: KIM Simulator Model has no Model definition
|
||||
|
||||
There is no model definition (key: model-defn) in the KIM Simulator
|
||||
Model. Please contact the OpenKIM database maintainers to verify
|
||||
and potentially correct this.
|
||||
|
||||
*/
|
|
@ -11,7 +11,6 @@
|
|||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Axel Kohlmeyer (Temple U),
|
||||
Ryan S. Elliott (UMN)
|
||||
|
@ -52,17 +51,20 @@
|
|||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.0.2 (and newer) package
|
||||
Designed for use with the kim-api-2.1.0 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "kim_query.h"
|
||||
#include <mpi.h>
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include "comm.h"
|
||||
#include "error.h"
|
||||
#include "input.h"
|
||||
#include "modify.h"
|
||||
#include "variable.h"
|
||||
#include "fix_store_kim.h"
|
||||
|
||||
#if defined(LMP_KIM_CURL)
|
||||
#include <sys/types.h>
|
||||
|
@ -78,7 +80,7 @@ struct WriteBuf {
|
|||
size_t sizeleft;
|
||||
};
|
||||
|
||||
static char *do_query(char *, int, char **, int, MPI_Comm);
|
||||
static char *do_query(char *, char *, int, char **, int, MPI_Comm);
|
||||
static size_t write_callback(void *, size_t, size_t, void *);
|
||||
|
||||
#endif
|
||||
|
@ -91,31 +93,79 @@ void KimQuery::command(int narg, char **arg)
|
|||
|
||||
if (narg < 2) error->all(FLERR,"Illegal kim_query command");
|
||||
|
||||
// check if we had a kim_init command by finding fix STORE/KIM
|
||||
// retrieve model name.
|
||||
char * model_name;
|
||||
|
||||
int ifix = modify->find_fix("KIM_MODEL_STORE");
|
||||
if (ifix >= 0) {
|
||||
FixStoreKIM *fix_store = (FixStoreKIM *) modify->fix[ifix];
|
||||
model_name = (char *)fix_store->getptr("model_name");
|
||||
} else error->all(FLERR,"Must use 'kim_init' before 'kim_query'");
|
||||
|
||||
|
||||
varname = arg[0];
|
||||
bool split = false;
|
||||
if (0 == strcmp("split",arg[1])) {
|
||||
if (narg == 2) error->all(FLERR,"Illegal kim_query command");
|
||||
split = true;
|
||||
arg++;
|
||||
narg--;
|
||||
}
|
||||
function = arg[1];
|
||||
for (int i = 2; i < narg; ++i)
|
||||
{
|
||||
if (0 == strncmp("model=",arg[i], 6)) {
|
||||
error->all(FLERR,"Illegal 'model' key in kim_query command");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#if defined(LMP_KIM_CURL)
|
||||
|
||||
value = do_query(function, narg-2, arg+2, comm->me, world);
|
||||
value = do_query(function, model_name, narg-2, arg+2, comm->me, world);
|
||||
|
||||
// check for valid result
|
||||
// on error the content of "value" is a '\0' byte
|
||||
// as the first element, and then the error message
|
||||
// that was returned by the web server
|
||||
|
||||
char errmsg[1024];
|
||||
if (0 == strlen(value)) {
|
||||
char errmsg[512];
|
||||
|
||||
sprintf(errmsg,"OpenKIM query failed: %s",value+1);
|
||||
error->all(FLERR,errmsg);
|
||||
error->all(FLERR,errmsg);
|
||||
} else if (0 == strcmp(value,"EMPTY")) {
|
||||
sprintf(errmsg,"OpenKIM query returned no results");
|
||||
error->all(FLERR,errmsg);
|
||||
}
|
||||
|
||||
kim_query_log_delimiter("begin");
|
||||
char **varcmd = new char*[3];
|
||||
varcmd[0] = varname;
|
||||
varcmd[1] = (char *) "string";
|
||||
varcmd[2] = value;
|
||||
if (split) {
|
||||
int counter = 1;
|
||||
std::stringstream ss(value);
|
||||
std::string token;
|
||||
varcmd[1] = (char *) "string";
|
||||
|
||||
input->variable->set(3,varcmd);
|
||||
while(std::getline(ss, token, ',')) {
|
||||
token.erase(0,token.find_first_not_of(" \n\r\t")); // ltrim
|
||||
token.erase(token.find_last_not_of(" \n\r\t") + 1); // rtrim
|
||||
std::stringstream splitname;
|
||||
splitname << varname << "_" << counter++;
|
||||
varcmd[0] = const_cast<char *>(splitname.str().c_str());
|
||||
varcmd[2] = const_cast<char *>(token.c_str());
|
||||
input->variable->set(3,varcmd);
|
||||
echo_var_assign(splitname.str(), varcmd[2]);
|
||||
}
|
||||
} else {
|
||||
varcmd[0] = varname;
|
||||
varcmd[1] = (char *) "string";
|
||||
varcmd[2] = value;
|
||||
input->variable->set(3,varcmd);
|
||||
|
||||
echo_var_assign(varname, value);
|
||||
}
|
||||
kim_query_log_delimiter("end");
|
||||
|
||||
delete[] varcmd;
|
||||
delete[] value;
|
||||
|
@ -148,7 +198,8 @@ size_t write_callback(void *data, size_t size, size_t nmemb, void *userp)
|
|||
return 0; // done
|
||||
}
|
||||
|
||||
char *do_query(char *qfunction, int narg, char **arg, int rank, MPI_Comm comm)
|
||||
char *do_query(char *qfunction, char * model_name, int narg, char **arg,
|
||||
int rank, MPI_Comm comm)
|
||||
{
|
||||
char value[512], *retval;
|
||||
|
||||
|
@ -174,6 +225,9 @@ char *do_query(char *qfunction, int narg, char **arg, int rank, MPI_Comm comm)
|
|||
url += qfunction;
|
||||
|
||||
std::string query(arg[0]);
|
||||
query += "&model=[\"";
|
||||
query += model_name;
|
||||
query += "\"]";
|
||||
for (int i=1; i < narg; ++i) {
|
||||
query += '&';
|
||||
query += arg[i];
|
||||
|
@ -217,9 +271,19 @@ char *do_query(char *qfunction, int narg, char **arg, int rank, MPI_Comm comm)
|
|||
|
||||
if (value[0] == '[') {
|
||||
int len = strlen(value)-1;
|
||||
retval = new char[len];
|
||||
value[len] = '\0';
|
||||
strcpy(retval,value+1);
|
||||
if (value[len] == ']') {
|
||||
retval = new char[len];
|
||||
value[len] = '\0';
|
||||
if (0 == strcmp(value+1, "")) {
|
||||
strcpy(retval,"EMPTY");
|
||||
}
|
||||
else
|
||||
strcpy(retval,value+1);
|
||||
} else {
|
||||
retval = new char[len+2];
|
||||
retval[0] = '\0';
|
||||
strcpy(retval+1,value);
|
||||
}
|
||||
} else if (value[0] == '\0') {
|
||||
int len = strlen(value+1)+2;
|
||||
retval = new char[len];
|
||||
|
@ -227,11 +291,41 @@ char *do_query(char *qfunction, int narg, char **arg, int rank, MPI_Comm comm)
|
|||
strcpy(retval+1,value+1);
|
||||
} else {
|
||||
// unknown response type. we should not get here.
|
||||
// copy response without modifications.
|
||||
int len = strlen(value)+1;
|
||||
// we return an "empty" string but add error message after it
|
||||
int len = strlen(value)+2;
|
||||
retval = new char[len];
|
||||
strcpy(retval,value);
|
||||
retval[0] = '\0';
|
||||
strcpy(retval+1,value);
|
||||
}
|
||||
return retval;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimQuery::kim_query_log_delimiter(std::string const begin_end) const
|
||||
{
|
||||
if (comm->me == 0) {
|
||||
std::string mesg;
|
||||
if (begin_end == "begin")
|
||||
mesg =
|
||||
"#=== BEGIN kim-query =========================================\n";
|
||||
else if (begin_end == "end")
|
||||
mesg =
|
||||
"#=== END kim-query ===========================================\n\n";
|
||||
|
||||
input->write_echo(mesg.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void KimQuery::echo_var_assign(std::string const & name,
|
||||
std::string const & value) const
|
||||
{
|
||||
if (comm->me == 0) {
|
||||
std::string mesg;
|
||||
mesg += "variable " + name + " string " + value + "\n";
|
||||
input->write_echo(mesg.c_str());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.0.2 (and newer) package
|
||||
Designed for use with the kim-api-2.1.0 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef COMMAND_CLASS
|
||||
|
@ -64,6 +64,7 @@ CommandStyle(kim_query,KimQuery)
|
|||
#define LMP_KIM_QUERY_H
|
||||
|
||||
#include "pointers.h"
|
||||
#include <string>
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
|
@ -71,7 +72,10 @@ class KimQuery : protected Pointers {
|
|||
public:
|
||||
KimQuery(class LAMMPS *lmp) : Pointers(lmp) {};
|
||||
void command(int, char **);
|
||||
|
||||
private:
|
||||
void kim_query_log_delimiter(std::string const begin_end) const;
|
||||
void echo_var_assign(std::string const & name, std::string const & value)
|
||||
const;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,59 @@
|
|||
/* -*- c++ -*- ----------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Ellad B. Tadmor (UMN)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program; if not, see <https://www.gnu.org/licenses>.
|
||||
|
||||
Linking LAMMPS statically or dynamically with other modules is making a
|
||||
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
|
||||
General Public License cover the whole combination.
|
||||
|
||||
In addition, as a special exception, the copyright holders of LAMMPS give
|
||||
you permission to combine LAMMPS with free software programs or libraries
|
||||
that are released under the GNU LGPL and with code included in the standard
|
||||
release of the "kim-api" under the CDDL (or modified versions of such code,
|
||||
with unchanged license). You may copy and distribute such a system following
|
||||
the terms of the GNU GPL for LAMMPS and the licenses of the other code
|
||||
concerned, provided that you include the source code of that other code
|
||||
when and as the GNU GPL requires distribution of source code.
|
||||
|
||||
Note that people who make modified versions of LAMMPS are not obligated to
|
||||
grant this special exception for their modified versions; it is their choice
|
||||
whether to do so. The GNU General Public License gives permission to release
|
||||
a modified version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this exception.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Designed for use with the kim-api-2.0.2 (and newer) package
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
int lammps_unit_conversion(std::string const &unit_type_str,
|
||||
std::string const &from_system_str,
|
||||
std::string const &to_system_str,
|
||||
double &conversion_factor);
|
1295
src/KIM/pair_kim.cpp
1295
src/KIM/pair_kim.cpp
File diff suppressed because it is too large
Load Diff
|
@ -12,7 +12,7 @@
|
|||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Contributing authors: Ryan S. Elliott (UMinn)
|
||||
Contributing authors: Ryan S. Elliott (UMinn), Axel Kohlmeyer (Temple U)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
@ -65,108 +65,107 @@ PairStyle(kim,PairKIM)
|
|||
// includes from KIM & LAMMPS
|
||||
class KIM_API_model;
|
||||
#include "pair.h"
|
||||
|
||||
extern "C" {
|
||||
#include "KIM_SimulatorHeaders.h"
|
||||
}
|
||||
#include <sstream>
|
||||
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class PairKIM : public Pair {
|
||||
public:
|
||||
PairKIM(class LAMMPS*);
|
||||
~PairKIM();
|
||||
class PairKIM : public Pair {
|
||||
public:
|
||||
PairKIM(class LAMMPS*);
|
||||
~PairKIM();
|
||||
|
||||
// LAMMPS Pair class virtual function prototypes
|
||||
virtual void compute(int, int);
|
||||
virtual void settings(int, char**);
|
||||
virtual void coeff(int, char**);
|
||||
virtual void init_style();
|
||||
virtual void init_list(int id, NeighList *ptr);
|
||||
virtual double init_one(int, int);
|
||||
virtual int pack_reverse_comm(int, int, double*);
|
||||
virtual void unpack_reverse_comm(int, int*, double*);
|
||||
virtual double memory_usage();
|
||||
// LAMMPS Pair class virtual function prototypes
|
||||
virtual void compute(int, int);
|
||||
virtual void settings(int, char**);
|
||||
virtual void coeff(int, char**);
|
||||
virtual void init_style();
|
||||
virtual void init_list(int id, NeighList *ptr);
|
||||
virtual double init_one(int, int);
|
||||
virtual int pack_reverse_comm(int, int, double*);
|
||||
virtual void unpack_reverse_comm(int, int*, double*);
|
||||
virtual double memory_usage();
|
||||
|
||||
protected:
|
||||
// (nearly) all bool flags are not initialized in constructor, but set
|
||||
// explicitly in the indicated function. All other data members are
|
||||
// initialized in constructor
|
||||
int settings_call_count;
|
||||
int init_style_call_count;
|
||||
protected:
|
||||
// (nearly) all bool flags are not initialized in constructor, but set
|
||||
// explicitly in the indicated function. All other data members are
|
||||
// initialized in constructor
|
||||
int settings_call_count;
|
||||
int init_style_call_count;
|
||||
|
||||
// values set in settings()
|
||||
char* kim_modelname;
|
||||
// values set in settings()
|
||||
char* kim_modelname;
|
||||
|
||||
// values set in coeff()
|
||||
// values set in coeff()
|
||||
|
||||
// values set in allocate(), called by coeff()
|
||||
virtual void allocate();
|
||||
int* lmps_map_species_to_unique;
|
||||
// values set in allocate(), called by coeff()
|
||||
virtual void allocate();
|
||||
int* lmps_map_species_to_unique;
|
||||
|
||||
// values set in coeff(), after calling allocate()
|
||||
char** lmps_unique_elements; // names of unique elements given
|
||||
// in pair_coeff command
|
||||
int lmps_num_unique_elements;
|
||||
// values set in coeff(), after calling allocate()
|
||||
char** lmps_unique_elements; // names of unique elements given
|
||||
// in pair_coeff command
|
||||
int lmps_num_unique_elements;
|
||||
|
||||
// values set in set_lmps_flags(), called from init_style()
|
||||
bool lmps_using_newton;
|
||||
bool lmps_using_molecular;
|
||||
enum unit_sys {REAL, METAL, SI, CGS, ELECTRON};
|
||||
unit_sys lmps_units;
|
||||
KIM_LengthUnit lengthUnit;
|
||||
KIM_EnergyUnit energyUnit;
|
||||
KIM_ChargeUnit chargeUnit;
|
||||
KIM_TemperatureUnit temperatureUnit;
|
||||
KIM_TimeUnit timeUnit;
|
||||
// values set in set_lmps_flags(), called from init_style()
|
||||
bool lmps_using_newton;
|
||||
bool lmps_using_molecular;
|
||||
enum unit_sys {REAL, METAL, SI, CGS, ELECTRON};
|
||||
unit_sys lmps_units;
|
||||
KIM_LengthUnit lengthUnit;
|
||||
KIM_EnergyUnit energyUnit;
|
||||
KIM_ChargeUnit chargeUnit;
|
||||
KIM_TemperatureUnit temperatureUnit;
|
||||
KIM_TimeUnit timeUnit;
|
||||
|
||||
KIM_Model * pkim;
|
||||
KIM_ComputeArguments * pargs;
|
||||
KIM_Model * pkim;
|
||||
KIM_ComputeArguments * pargs;
|
||||
|
||||
// values set in set_kim_model_has_flags(), called by kim_init()
|
||||
KIM_SupportStatus kim_model_support_for_energy;
|
||||
KIM_SupportStatus kim_model_support_for_forces;
|
||||
KIM_SupportStatus kim_model_support_for_particleEnergy;
|
||||
KIM_SupportStatus kim_model_support_for_particleVirial;
|
||||
// values set in set_kim_model_has_flags(), called by kim_init()
|
||||
KIM_SupportStatus kim_model_support_for_energy;
|
||||
KIM_SupportStatus kim_model_support_for_forces;
|
||||
KIM_SupportStatus kim_model_support_for_particleEnergy;
|
||||
KIM_SupportStatus kim_model_support_for_particleVirial;
|
||||
|
||||
// values set in kim_init()
|
||||
bool kim_init_ok;
|
||||
int lmps_local_tot_num_atoms;
|
||||
double kim_global_influence_distance; // KIM Model cutoff value
|
||||
int kim_number_of_neighbor_lists;
|
||||
double const * kim_cutoff_values;
|
||||
int const * modelWillNotRequestNeighborsOfNoncontributingParticles;
|
||||
class NeighList ** neighborLists;
|
||||
// values set in kim_init()
|
||||
bool kim_init_ok;
|
||||
int lmps_local_tot_num_atoms;
|
||||
double kim_global_influence_distance; // KIM Model cutoff value
|
||||
int kim_number_of_neighbor_lists;
|
||||
double const * kim_cutoff_values;
|
||||
int const * modelWillNotRequestNeighborsOfNoncontributingParticles;
|
||||
class NeighList ** neighborLists;
|
||||
|
||||
// values set in init_style()
|
||||
bool kim_particle_codes_ok;
|
||||
int *kim_particle_codes;
|
||||
// values set in init_style()
|
||||
bool kim_particle_codes_ok;
|
||||
int *kim_particle_codes;
|
||||
|
||||
// values set in compute()
|
||||
int lmps_maxalloc; // max allocated memory value
|
||||
int* kim_particleSpecies; // array of KIM particle species
|
||||
int* kim_particleContributing; // array of KIM particle contributing
|
||||
int* lmps_stripped_neigh_list; // neighbors of one atom, used when LAMMPS
|
||||
// is in molecular mode
|
||||
int** lmps_stripped_neigh_ptr; // pointer into lists
|
||||
// values set in compute()
|
||||
int lmps_maxalloc; // max allocated memory value
|
||||
int* kim_particleSpecies; // array of KIM particle species
|
||||
int* kim_particleContributing; // array of KIM particle contributing
|
||||
int* lmps_stripped_neigh_list; // neighbors of one atom, used when LAMMPS
|
||||
// is in molecular mode
|
||||
int** lmps_stripped_neigh_ptr; // pointer into lists
|
||||
|
||||
// KIM specific helper functions
|
||||
virtual void set_contributing();
|
||||
virtual void kim_init();
|
||||
virtual void kim_free();
|
||||
virtual void set_argument_pointers();
|
||||
virtual void set_lmps_flags();
|
||||
virtual void set_kim_model_has_flags();
|
||||
virtual int check_for_routine_compatibility();
|
||||
// static methods used as callbacks from KIM
|
||||
static int get_neigh(
|
||||
void const * const dataObject,
|
||||
int const numberOfCutoffs, double const * const cutoffs,
|
||||
int const neighborListIndex, int const particleNumber,
|
||||
int * const numberOfNeighbors,
|
||||
int const ** const neighborsOfParticle);
|
||||
};
|
||||
// KIM specific helper functions
|
||||
virtual void set_contributing();
|
||||
virtual void kim_init();
|
||||
virtual void kim_free();
|
||||
virtual void set_argument_pointers();
|
||||
virtual void set_lmps_flags();
|
||||
virtual void set_kim_model_has_flags();
|
||||
virtual int check_for_routine_compatibility();
|
||||
// static methods used as callbacks from KIM
|
||||
static int get_neigh(
|
||||
void const * const dataObject,
|
||||
int const numberOfCutoffs, double const * const cutoffs,
|
||||
int const neighborListIndex, int const particleNumber,
|
||||
int * const numberOfNeighbors,
|
||||
int const ** const neighborsOfParticle);
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -184,7 +183,10 @@ The KIM model was unable, for some reason, to complete the computation.
|
|||
|
||||
E: 'KIMvirial' or 'LAMMPSvirial' not supported with kim-api.
|
||||
|
||||
"KIMvirial or "LAMMPSvirial" found on the pair_style line. These keys are not supported kim-api. (The virial computation is always performed by LAMMPS.) Please remove these keys, make sure the KIM model you are using supports kim-api, and rerun.
|
||||
"KIMvirial or "LAMMPSvirial" found on the pair_style line. These keys
|
||||
are not supported kim-api. (The virial computation is always performed
|
||||
by LAMMPS.) Please remove these keys, make sure the KIM model you are
|
||||
using supports kim-api, and rerun.
|
||||
|
||||
E: Illegal pair_style command
|
||||
|
||||
|
|
|
@ -309,6 +309,17 @@ char *Input::one(const char *single)
|
|||
return command;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
Send text to active echo file pointers
|
||||
------------------------------------------------------------------------- */
|
||||
void Input::write_echo(const char *txt)
|
||||
{
|
||||
if (me == 0) {
|
||||
if (echo_screen && screen) fputs(txt,screen);
|
||||
if (echo_log && logfile) fputs(txt,logfile);
|
||||
}
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
parse copy of command line by inserting string terminators
|
||||
strip comment = all chars from # on
|
||||
|
|
|
@ -38,17 +38,18 @@ class Input : protected Pointers {
|
|||
void substitute(char *&, char *&, int &, int &, int);
|
||||
// substitute for variables in a string
|
||||
int expand_args(int, char **, int, char **&); // expand args due to wildcard
|
||||
|
||||
void write_echo(const char *); // send text to active echo file pointers
|
||||
|
||||
protected:
|
||||
char *command; // ptr to current command
|
||||
int echo_screen; // 0 = no, 1 = yes
|
||||
int echo_log; // 0 = no, 1 = yes
|
||||
|
||||
private:
|
||||
int me; // proc ID
|
||||
int maxarg; // max # of args in arg
|
||||
char *line,*copy,*work; // input line & copy and work string
|
||||
int maxline,maxcopy,maxwork; // max lengths of char strings
|
||||
int echo_screen; // 0 = no, 1 = yes
|
||||
int echo_log; // 0 = no, 1 = yes
|
||||
int nfile,maxfile; // current # and max # of open input files
|
||||
int label_active; // 0 = no label, 1 = looking for label
|
||||
char *labelstr; // label string being looked for
|
||||
|
|
|
@ -797,7 +797,7 @@ void Modify::add_fix(int narg, char **arg, int trysuffix)
|
|||
|
||||
const char *exceptions[] =
|
||||
{"GPU", "OMP", "INTEL", "property/atom", "cmap", "cmap3", "rx",
|
||||
"deprecated", NULL};
|
||||
"deprecated", "STORE/KIM", NULL};
|
||||
|
||||
if (domain->box_exist == 0) {
|
||||
int m;
|
||||
|
|
Loading…
Reference in New Issue