https://github.com/peterrum/dealii-examples
https://github.com/peterrum/dealii-examples
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/peterrum/dealii-examples
- Owner: peterrum
- Created: 2020-11-10T13:12:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-19T12:40:56.000Z (over 5 years ago)
- Last Synced: 2025-01-20T19:52:37.558Z (over 1 year ago)
- Language: C++
- Size: 2.71 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Basic deal.II examples
This repository accompanies the presentation "The general-purpose
finite-element library deal.II - Overview and basic
concepts" [[slides]](presentation.pdf) given by me 12.11.2020 in Munich and
presents some basic features of the deal.II finite-element
library:
- *elasticity*: solves a simple elasticity problem
- *poisson*: solves the Poisson problem
- *poisson_mf*: solves the Poisson problem without computing a system matrix
## Build & run
```bash
mkdir build
cd build;
cmake ..
make -j3
./elasticity
```
## Testing
```bash
ctest -j3
```