deal2lkit: A ToolKit library for deal.II (www.dealii.org) ![Build Status](https://camo.githubusercontent.com/53b3935b856a6a02e7ccb2c1f4cf2d70cbf4b0c07127c01915e05634764c8773/68747470733a2f2f7472617669732d63692e6f72672f6d6174684c61622f6465616c326c6b69742e737667)
Copyright (C) 2014 -- 2015 by Luca Heltai (1)
(1) Scuola Internazionale Superiore di Studi Avanzati E-mail: [email protected]
Main Contributors:
https://github.com/mathlab/deal2lkit/graphs/contributors
This library contains a collection of useful C++ tools and classes
developed by the numerical analysis group at SISSA mathlab
(www.mathlab.sissa.it) in the last years, based on the deal.II
library (www.dealii.org) . In this library we collect all the
developed tools which were not subject to licence restrictions. If you
find this collection useful, feel free to download, use it and suggest
pull requests!
The official distribution is on GitHub, and you can clone the repository using
git clone https://github.com/mathlab/deal2lkit.git
This file is subject to LGPL version 2.1 or later and may not be distributed without copyright and license information. Please refer to section 5 and 6 of this file for further information on this license.
A detailed documentation constructed using Doxygen is accessible here:
http://mathlab.github.io/deal2lkit
- Deal.II Requirements: ========================
Currently, the distributed source code requires version 8.4 of the deal.II library.
- Installation procedure: ==========================
Clone (or fork) the deal.II ToolKit using
git clone https://github.com/mathlab/deal2lkit.git
The library can then be compiled by running
mkdir build
cd build
cmake -DDEAL_II_DIR=/path/to/deal.II ..
make
and tested using
make setup_tests
ctest
You can modify the resulting CMakeCache.txt
to set a different
installation path, or you can call cmake with the additional option
-DCMAKE_INSTALL_PREFIX=/path/to/install/dir
.
- Extensive documentation: ===========================
A browsable documentation of the library is available at
http://mathlab.github.io/deal2lkit
If the user has the program Doxygen installed, this documentation can
be compiled for offline browsing by building the doc
target (only
available if Doxygen was found during configure time):
make doc
In this case, the documentation will be accessible in the subdirectory
doc/html
If the user wants the deal.II documentation to be inlined, then the file http://www.dealii.org/developer/doxygen/deal.tag should be downloaded to the building directory before making the documentation, for example, using wget
wget http://www.dealii.org/developer/doxygen/deal.tag
make doc
- Citing this work ===================
If you use this library, please consider citing the following works:
@techreport{SartoriGiulianiBardelloni-2015-a,
Author = {Alberto Sartori and Nicola Giuliani and Mauro Bardelloni and Luca Heltai},
Institution = {SISSA},
Number = {57/2015/MATE},
Title = {deal2lkit: a Toolkit Library for deal.II},
Year = {2015}}
@techreport{MaierBardelloniHeltai-2015-a,
Author = {Matthias Maier and Mauro Bardelloni and Luca Heltai},
Institution = {SISSA},
Title = {LinearOperator -- a generic, high-level expression syntax for linear algebra},
Year = {2015}}
@techreport{BangerthHeisterHeltai-2016-a,
Author = {W. Bangerth and T. Heister and L. Heltai and G. Kanschat and M. Kronbichler and M. Maier and B. Turcksin},
Institution = {Submitted},
Title = {The \texttt{deal.II} Library, Version 8.3},
Year = {2015}}
- Licence Information ======================
See the LICENCE file in this directory.