Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.38 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.38 KB

What is deal.II?

deal.II is a C++ program library targeted at the computational solution of partial differential equations using adaptive finite elements. It uses state-of-the-art programming techniques to offer you a modern interface to the complex data structures and algorithms required.

For the impatient:

Let's say you've unpacked the .tar.gz file, or cloned the git repository into a directory /path/to/dealii/sources. Then configure, compile, and install the deal.II library with:

$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX=/path/where/dealii/should/be/intalled/to /path/to/dealii/sources
$ make install    (alternatively $ make -j<N> install)
$ make test

A detailed ReadME can be found at ./doc/readme.html and ./doc/users/cmake.html or at http://www.dealii.org/.

Getting started:

The tutorial steps are located under examples/ of the installation. Information about the tutorial steps can be found at doc/doxygen/tutorial/index.html or at http://www.dealii.org/.

License:

Please see the file ./LICENSE for details

Further information:

For further information have a look at ./doc/index.html or at http://www.dealii.org.

Continuous Integration Status:

Build Status