lammps/lib/awpmd
sjplimp b190abea39 sync with GH
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15561 f3b2605a-c512-4ea7-a41b-209d697bcdaa
2016-09-08 20:20:32 +00:00
..
ivutils git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13904 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2015-08-19 14:56:21 +00:00
license git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6378 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2011-06-13 22:22:33 +00:00
systems/interact/TCP Commented out line (temporarily) that causes a segmentation fault in the USER-AWPMD library 2015-08-20 15:55:19 +00:00
Makefile.lammps.empty git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9960 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-05-30 17:54:44 +00:00
Makefile.lammps.installed git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9960 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-05-30 17:54:44 +00:00
Makefile.lammps.linalg git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10165 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-06-28 19:30:58 +00:00
Makefile.mingw32-cross sync with GH 2016-09-08 20:20:32 +00:00
Makefile.mingw32-cross-mpi git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10165 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-06-28 19:30:58 +00:00
Makefile.mingw64-cross sync with GH 2016-09-08 20:20:32 +00:00
Makefile.mingw64-cross-mpi git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10165 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-06-28 19:30:58 +00:00
Makefile.mpicc sync with GH 2016-09-08 20:20:32 +00:00
README git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9963 f3b2605a-c512-4ea7-a41b-209d697bcdaa 2013-05-30 19:18:38 +00:00

README

AWPMD (Antisymmetrized Wave Packet Molecular Dynamics) library

Ilya Valuev, Igor Morozov, JIHT RAS
valuev at physik.hu-berlin.de
June 2011

This is version 0.9 of the AWPMD library taken from JIHT GridMD project.
It contains interface to calculate electronic and electron-ion Hamiltonian, 
norm matrix and forces for AWPMD method.

AWPMD is an open source program distributed under the terms
of wxWidgets Library License (see license directory for details).

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

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

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

Build the library using one of the provided Makefile.* files or create
your own, specific to your compiler and system.  For example:

make -f Makefile.g++

Note that this library makes MPI calls, so you must build it with the
same MPI library that is used to build LAMMPS, i.e. as specified by
settings in the lammps/src/MAKE/Makefile.machine file you are using.

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

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

Makefile.lammps is created by the make command, by copying one of the
Makefile.lammps.* files.  See the EXTRAMAKE setting at the top of the
Makefile.* files.

IMPORTANT: You must examine the final Makefile.lammps to insure it is
correct for your system, else the LAMMPS build will likely fail.

Makefile.lammps has settings for 3 variables:

user-awpmd_SYSINC = leave blank for this package
user-awpmd_SYSLIB = BLAS and LAPACK libraries needed by this package
user-awpmd_SYSPATH = path(s) to where those libraries are

You have several choices for these settings:

If the 2 libraries are already installed on your system, the settings
in Makefile.lammps.installed should work.

If they are not, you can install them yourself, and speficy the
appropriate settings accordingly.

If you want to use the minimalist version of these libraries provided
with LAMMPS in lib/linalg, then the settings in Makefile.lammps.linalg
should work.  Note that in this case you also need to build the
linear-algebra in lib/linalg; see the lib/linalg/README for more
details.