bubble-dynamics

Spherical bubble dynamics simulator
git clone https://git.0xfab.ch/bubble-dynamics.git
Log | Files | Refs | README | LICENSE

commit 0ecedb01c3431dab66129fd9eca95b43d69d92f5
parent d2597a14f2132d52ef0b2ecb555e6c9cf35eb37d
Author: Fabian Wermelinger <fab4100@posteo.net>
Date:   Fri, 26 Jul 2024 15:38:16 +0200

Add README file

Diffstat:
AREADME | 22++++++++++++++++++++++
1 file changed, 22 insertions(+), 0 deletions(-)

diff --git a/README b/README @@ -0,0 +1,22 @@ +# 1D bubble dynamics + +Simulation tool for 1D spherical bubble dynamics with different physical models. + +Implemented models: + +* Rayleigh-Plesset +* Keller-Miksis + +The code supports single and multi-bubble configuration assuming spherical +symmetry. + +# Build and install + +The `meson` build system is required (https://mesonbuild.com/). + +```bash +meson setup build --buildtype release --prefix /usr/local +meson compile -C build +meson test -C build +sudo meson install -C build +```