Sem descrição

Dhairya Malhotra d3c23365be Bug fix in FMM_Pts, FMM_Tree há 10 anos atrás
doc 7b973cdbe4 New repo for PvFMM há 11 anos atrás
examples 36144b622a Fix errors in device_wrapper.txx há 10 anos atrás
include d3c23365be Bug fix in FMM_Pts, FMM_Tree há 10 anos atrás
m4 89eb63461f Change LDFLAGS_PVFMM to LDLIBS_PVFMM há 10 anos atrás
scripts d6607e6236 Auto detect scale-invariance and symmetry há 10 anos atrás
src a016a3bc43 Update examples, SetupFMM, MemoryManager há 10 anos atrás
.gitignore 8c2b816f95 Fix multiply defined symbols. há 10 anos atrás
AUTHORS 7b973cdbe4 New repo for PvFMM há 11 anos atrás
COPYING 7b973cdbe4 New repo for PvFMM há 11 anos atrás
ChangeLog 7b973cdbe4 New repo for PvFMM há 11 anos atrás
Doxyfile 7b973cdbe4 New repo for PvFMM há 11 anos atrás
INSTALL a690819165 Fix errors in EvalListGPU, SSE Kernel declarations há 10 anos atrás
MakeVariables.in 89eb63461f Change LDFLAGS_PVFMM to LDLIBS_PVFMM há 10 anos atrás
Makefile.am 12b8bac684 Use cudaHostAlloc, cudaFreeHost in MemoryManager há 10 anos atrás
NEWS 7b973cdbe4 New repo for PvFMM há 11 anos atrás
README 70113de21a Fix errors in README há 10 anos atrás
TODO 7b973cdbe4 New repo for PvFMM há 11 anos atrás
aminclude.am 7b973cdbe4 New repo for PvFMM há 11 anos atrás
autogen.sh 7b973cdbe4 New repo for PvFMM há 11 anos atrás
configure.ac 89eb63461f Change LDFLAGS_PVFMM to LDLIBS_PVFMM há 10 anos atrás

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_PVFMM 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.