https://github.com/HTDerekLiu/surface_multigrid_code
Raw File
Tip revision: db5c7fa56b977d3f1ac0ac11ed875f75229f2d27 authored by eriszhang on 08 August 2021, 03:27:39 UTC
add
Tip revision: db5c7fa
README.md
# Multigrid Hierarchy
## Compilation
To run this example, compile in release mode using the following typical cmake/make build routine:
```
cd 02_mg_hierarchy
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j8
```
If all goes well, you should be able to find and run the executable `main_bin` directly with no arguments.

## Demo
<img src="../assets/02.gif" width="100%">

Show the construction of our multigrid hierarchy and visualize the corresponding prolongation operators between different levels. Press `0` `1` `2` to toggle between different levels.

back to top