https://github.com/HTDerekLiu/surface_multigrid_code
Revision a5c1d3278b493e44ba7543e02663d74bb8b38099 authored by eriszhang on 08 August 2021, 17:32:12 UTC, committed by eriszhang on 08 August 2021, 17:32:12 UTC
1 parent 948deb8
Raw File
Tip revision: a5c1d3278b493e44ba7543e02663d74bb8b38099 authored by eriszhang on 08 August 2021, 17:32:12 UTC
add
Tip revision: a5c1d32
README.md
# Multigrid Solver on Meshes without Boundaries
## Compilation
To run this example, compile in release mode using the following typical cmake/make build routine:
```
cd 04_mg_solver_nobd
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="./04.png" width="100%">
Show the usage of our multigrid solver on surface meshes without boundaries by solving a simple Poisson problem.
back to top