Revision a827578755d864df68b103c71048c7da7a00ce59 authored by HTDerekLiu on 09 August 2021, 18:36:04 UTC, committed by HTDerekLiu on 09 August 2021, 18:36:04 UTC
1 parent aa348b6
Raw File
README.md
# Example - Balloon Simulation
## Compilation
To run this example, compile in release mode using the following typical cmake/make build routine:
```
cd 06_example_balloon_sim
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/06.png" width="100%">
Show the usage of our multigrid solver in a real-world example e.g. balloon simulation.

## Acknowledgement
Part of the simulation code is adapted from [libshell](https://github.com/evouga/libshell).
back to top