https://github.com/HTDerekLiu/surface_multigrid_code
Raw File
Tip revision: a827578755d864df68b103c71048c7da7a00ce59 authored by HTDerekLiu on 09 August 2021, 18:36:04 UTC
add a faster example
Tip revision: a827578
README.md
# Multigrid Solver on Meshes with Boundaries
## Compilation
To run this example, compile in release mode using the following typical cmake/make build routine:
```
cd 03_mg_solver
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/03.png" width="100%">
Show the usage of our multigrid solver on surface meshes with boundaries by solving a simple Poisson problem.
back to top