https://github.com/peterrum/dealii-tet
https://github.com/peterrum/dealii-tet
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/peterrum/dealii-tet
- Owner: peterrum
- License: other
- Created: 2019-12-20T20:06:48.000Z (over 6 years ago)
- Default Branch: tet
- Last Pushed: 2020-05-13T14:13:31.000Z (about 6 years ago)
- Last Synced: 2025-12-30T16:02:18.018Z (5 months ago)
- Language: C++
- Size: 225 MB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Support: SUPPORT.md
Awesome Lists containing this project
README
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 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/installed/to /path/to/dealii/sources
$ make install (alternatively $ make -j install)
$ make test
To build from the repository, execute the following commands first:
$ git clone https://github.com/dealii/dealii
$ cd dealii
Then continue as before.
A detailed *ReadME* can be found at [./doc/readme.html](https://dealii.org/developer/readme.html)
and [./doc/users/cmake.html](https://dealii.org/developer/users/cmake.html) or at
https://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](https://dealii.org/developer/doxygen/deal.II/Tutorial.html)
or at https://www.dealii.org/.
deal.II includes support for pretty-printing deal.II objects inside GDB.
See [`contrib/utilities/dotgdbinit.py`](contrib/utilities/dotgdbinit.py) or
the new documentation page (under 'information for users') for instructions
on how to set this up.
License:
--------
Please see the file [./LICENSE.md](LICENSE.md) for details
Further information:
--------------------
For further information have a look at
[./doc/index.html](https://dealii.org/developer/index.html) or at
https://www.dealii.org.
Continuous Integration Status:
------------------------
| System | Status | More information |
| --- | --- | --- |
| Indent | [](https://travis-ci.org/dealii/dealii) | See https://travis-ci.org |
| Linux | [](https://jenkins.tjhei.info/job/dealii/job/master/) | See https://jenkins.tjhei.info |
| MacOS | [](https://jenkins.tjhei.info/job/dealii-OSX/job/master/) | See https://jenkins.tjhei.info |
| MacOS | [](https://github.com/dealii/dealii/actions?query=workflow%3Agithub-CI) | See https://github.com/dealii/dealii/actions |
| MSVC | [](https://ci.appveyor.com/project/tjhei/dealii-8th3t/branch/master) | See https://appveyor.com |
| CDash | [](https://cdash.43-1.org/index.php?project=deal.II) | Various builds and configurations on https://cdash.43-1.org/index.php?project=deal.II |