bubble-dynamics

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

commit 916dd777f665793e7f34186585cecc97256b3228
parent 5df28a3399491ce662c093e83e24eaf8aff2f714
Author: Fabian Wermelinger <fabianw@mavt.ethz.ch>
Date:   Sun, 25 Sep 2016 13:46:44 +0200

removed mixed precision time stepping and updated submodules

Diffstat:
Msrc/bubbleDynamics.cpp | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bubbleDynamics.cpp b/src/bubbleDynamics.cpp @@ -102,10 +102,10 @@ int main(int argc, const char** argv) simConfig.print(); size_t& step = stepperData.step; - double& t = stepperData.t; - double& dt = stepperData.dt; - const double& tFinal = stepperData.tFinal; - double& tDump = stepperData.tDump; + Real& t = stepperData.t; + Real& dt = stepperData.dt; + const Real& tFinal = stepperData.tFinal; + Real& tDump = stepperData.tDump; if (stepperData.dtDump > 0.0) tDump = t + stepperData.dtDump; stepper->write(step, t, dt, U, &simConfig);