bubble-dynamics

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

README (474B)


      1 # 1D bubble dynamics
      2 
      3 Simulation tool for 1D spherical bubble dynamics with different physical models.
      4 
      5 Implemented models:
      6 
      7 * Rayleigh-Plesset
      8 * Keller-Miksis
      9 
     10 The code supports single and multi-bubble configuration assuming spherical
     11 symmetry.
     12 
     13 # Build and install
     14 
     15 The `meson` build system is required (https://mesonbuild.com/).
     16 
     17 ```bash
     18 meson setup build --buildtype release --prefix /usr/local
     19 meson compile -C build
     20 meson test -C build
     21 sudo meson install -C build
     22 ```