• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..19-Aug-2012-

LICENSE.CDDLH A D19-Aug-201216 KiB381316

MakefileH A D19-Aug-20121.5 KiB6317

READMEH A D19-Aug-20121.9 KiB5947

ex_model_Ne_P_fastLJ.cH A D19-Aug-201258.6 KiB1,9621,491

ex_model_Ne_P_fastLJ.kimH A D19-Aug-20124.2 KiB13085

README

1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the Common Development
5# and Distribution License Version 1.0 (the "License").
6#
7# You can obtain a copy of the license at
8# http://www.opensource.org/licenses/CDDL-1.0.  See the License for the
9# specific language governing permissions and limitations under the License.
10#
11# When distributing Covered Code, include this CDDL HEADER in each file and
12# include the License file in a prominent location with the name LICENSE.CDDL.
13# If applicable, add the following below this CDDL HEADER, with the fields
14# enclosed by brackets "[]" replaced with your own identifying information:
15#
16# Portions Copyright (c) [yyyy] [name of copyright owner]. All rights reserved.
17#
18# CDDL HEADER END
19#
20
21#
22# Copyright (c) 2012, Regents of the University of Minnesota.  All rights reserved.
23#
24# Contributors:
25#    Valeriu Smirichinski
26#    Ryan S. Elliott
27#
28
29#
30# Release: This file is part of the openkim-api-v1.1.1 package.
31#
32
33
34This directory (ex_model_Ne_P_fastLJ) contains a shifted Lennard-Jones (LJ) pair
35potential Model for Neon written in C.  It complies with the KIM API interface
36standard, using any NBC, iterator mode, publishes its parameters, and supports
37optional computation of `energy', `forces', `particleEnergy', and
38`process_dEdr'.  The Model is optimized for speed and specifically for the case
39where `energy' and `forces' are the only quantities to be computed.
40
41The contents of the directory are as follows (before any compilation if performed):
42
43LICENSE.CDDL
44     The Common Development and Distribution License (CDDL) Version 1.0 file
45
46Makefile
47     Makefile to compile and build executables with GNU or Intel compilers
48
49README
50     This file
51
52ex_model_Ne_P_fastLJ.c
53     C file that contains the implementation of the LJ potential
54
55ex_model_Ne_P_fastLJ.kim
56     KIM descriptor file, contains all variables and methods that are exposed
57     through the KIM API interface
58
59