Ingen beskrivning

Chenhan D. Yu 0b269ebd87 Merge branch 'feature/cuda' of github.com:dmalhotra/pvfmm into feature/cuda 11 år sedan
doc 7b973cdbe4 New repo for PvFMM 11 år sedan
examples e555cc9bfb Update example1.cpp 11 år sedan
include ff3a4bfaf4 Create EvalList_cuda(); 11 år sedan
m4 fac84068e2 . 11 år sedan
scripts 843418c748 Added namespace pvfmm 11 år sedan
src 2f7fbfc37e This is the 2.nd commit before pushing. 11 år sedan
.gitignore 843418c748 Added namespace pvfmm 11 år sedan
AUTHORS 7b973cdbe4 New repo for PvFMM 11 år sedan
COPYING 7b973cdbe4 New repo for PvFMM 11 år sedan
ChangeLog 7b973cdbe4 New repo for PvFMM 11 år sedan
Doxyfile 7b973cdbe4 New repo for PvFMM 11 år sedan
INSTALL e194f730f8 Update INSTALL 11 år sedan
MakeVariables.in 2f7fbfc37e This is the 2.nd commit before pushing. 11 år sedan
Makefile.am 2f7fbfc37e This is the 2.nd commit before pushing. 11 år sedan
NEWS 7b973cdbe4 New repo for PvFMM 11 år sedan
README 843418c748 Added namespace pvfmm 11 år sedan
TODO 7b973cdbe4 New repo for PvFMM 11 år sedan
aminclude.am 7b973cdbe4 New repo for PvFMM 11 år sedan
autogen.sh 7b973cdbe4 New repo for PvFMM 11 år sedan
configure.ac 843418c748 Added namespace pvfmm 11 år sedan

README


PvFMM README File
*****************

PvFMM Version 1.0.0 is the latest release (January 2014)


WHAT IS PvFMM?
==============

PvFMM is a library for solving certain types of elliptic partial
differential equations.

* We support Stokes, Poisson, and Helmholtz problems on the unit
cube, with free-space or periodic boundary conditions, with
constant or mildly varying coefficients. Our method is based on
volume potential integral equation formulation accelerated by the
Kernel Independent Fast Multipole Method.


HOW TO GET PvFMM
================

For the latest stable release of PvFMM


LICENSE
=======

PvFMM is distributed under the LGPLv3 licence. See COPYING in
the top-level directory of the distribution.

INSTALLING PvFMM
================

To install PvFMM, follow the steps in the INSTALL file, which is
located in the top directory of the source distribution.


USING PvFMM
===========

The file examples/Makefile can be used as a template makefile for any
project using the library. In general the MakeVariables file should
be included in any makefile and CXXFLAGS_PVFMM and LDFLAGS_FMM should
be used to compile the code.

Two very simple examples illustrating usage of the library are available:
For particle N-body : examples/src/example1.cpp
For volume potentials: examples/src/example2.cpp

To compile these examples:
make examples/bin/example1
make examples/bin/example2

* The volume potentials example will take a long time, the first time
it is used, since it has to precompute quadrature rules. This data
is saved to a file and used for subsequent runs. See INSTALL for
the configure option '--with-precomp-dir=DIR' to set the default
path for precomputed data.