lammps/lib/meam
sjplimp 49ceafd447 git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8756 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2012-09-07 23:08:36 +00:00
..
Makefile.g95 git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8647 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2012-08-14 14:21:56 +00:00
Makefile.gfortran git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8647 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2012-08-14 14:21:56 +00:00
Makefile.ifort git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8647 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2012-08-14 14:21:56 +00:00
Makefile.lammps git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8756 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2012-09-07 23:08:36 +00:00
Makefile.lammps.gfortran git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6729 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-08-18 17:32:34 +00:00
Makefile.lammps.glory Added settings for glory Intel v.11 2011-11-30 15:36:15 +00:00
Makefile.lammps.ifort git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6729 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-08-18 17:32:34 +00:00
Makefile.pgf90 git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8647 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2012-08-14 14:21:56 +00:00
Makefile.tbird git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8647 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2012-08-14 14:21:56 +00:00
README git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6727 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-08-18 17:32:05 +00:00
meam_cleanup.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@421 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2007-03-22 15:21:09 +00:00
meam_data.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6544 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-07-19 18:31:58 +00:00
meam_dens_final.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6544 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-07-19 18:31:58 +00:00
meam_dens_init.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5701 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-02-22 20:30:53 +00:00
meam_force.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5701 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-02-22 20:30:53 +00:00
meam_setup_done.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6544 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-07-19 18:31:58 +00:00
meam_setup_global.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6544 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-07-19 18:31:58 +00:00
meam_setup_param.F git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6544 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-07-19 18:31:58 +00:00

README

This directory has source files to build a library that LAMMPS
links against when using the MEAM package.

When you are done building this library, two files should
exist in this directory:

libmeam.a		the library LAMMPS will link against
Makefile.lammps		settings the LAMMPS Makefile will import

The latter file will have settings like this (can be omitted if blank):

meam_SYSINC =
meam_SYSLIB = -lgfortran
meam_SYSPATH =

SYSINC is for settings needed to compile LAMMPS source files
SYSLIB is for additional system libraries needed by this package
SYSPATH is the path(s) to where those libraries are

You must insure these settings are correct for your system, else
the LAMMPS build will likely fail.

Note that the source files for this library are Fortran.  LAMMPS is
built with a C++ compiler/linker.  Thus you need to insure the
settings above enable usage of a Fortran library by a C++ program.

-------------------------------------------------------------------------

MEAM (modified embedded atom method) library

Greg Wagner, Sandia National Labs
gjwagne at sandia.gov
Jan 2007

-------------------------------------------------------------------------

This library is in implementation of the MEAM potential, specifically
designed to work with LAMMPS.

This library must be built with a F90 compiler, before LAMMPS is
built, so LAMMPS can link against it.

Build the library using one of the provided Makefiles or creating your
own, specific to your compiler and system.  For example:

make -f Makefile.g95

If the build is successful, you should end up with a libmeam.a file.