bubble-dynamics

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

commit 805a918eaaf881d65b08a5bb44dba027f7ea1b08
parent ae07d60f94d7505e8bbd652e49daa01423ff1a1d
Author: Fabian Wermelinger <fabianw@mavt.ethz.ch>
Date:   Mon,  1 Feb 2021 00:42:15 +0100

Fix include directories

Diffstat:
Msrc/BubbleBase.h | 3++-
Msrc/bubbleDynamics.cpp | 9+++++----
Msrc/kernels.h | 16++++++++--------
Msrc/kernels/Dahlquist.h | 6+++---
Msrc/kernels/KMClusterPositions_D.h | 7++++---
Msrc/kernels/KMCluster_FC.h | 7++++---
Msrc/kernels/KMCluster_TY.h | 7++++---
Msrc/kernels/KellerMiksis.h | 7++++---
Msrc/kernels/RPCluster.h | 7++++---
Msrc/kernels/RPClusterPositions_D.h | 7++++---
Msrc/kernels/RayleighPlesset.h | 7++++---
Msrc/kernels/RayleighPlesset_HBGL.h | 7++++---
12 files changed, 50 insertions(+), 40 deletions(-)

diff --git a/src/BubbleBase.h b/src/BubbleBase.h @@ -6,7 +6,8 @@ #ifndef BUBBLEBASE_H_ZVSZD3E8 #define BUBBLEBASE_H_ZVSZD3E8 -#include <ArgumentParser.h> +#include <ODETB/ArgumentParser.h> +#include <ODETB/common.h> #include <cmath> #include <cstdio> diff --git a/src/bubbleDynamics.cpp b/src/bubbleDynamics.cpp @@ -3,10 +3,11 @@ /* Author: Fabian Wermelinger */ /* Tag: Solve 1D bubble dynamics */ /* Copyright 2016 ETH Zurich. All Rights Reserved. */ -#include <GnuplotDump.h> -#include <TimeStepper/TimeStepper.h> -#include <common.h> -#include <kernels.h> +#include "kernels.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/TimeStepper.h> +#include <ODETB/common.h> #include <cassert> #include <cmath> diff --git a/src/kernels.h b/src/kernels.h @@ -6,13 +6,13 @@ #ifndef KERNELS_H_KY4W86QV #define KERNELS_H_KY4W86QV -#include <kernels/KellerMiksis.h> -#include <kernels/RayleighPlesset.h> -#include <kernels/RayleighPlesset_HBGL.h> -#include <kernels/KMCluster_FC.h> -#include <kernels/KMCluster_TY.h> -#include <kernels/RPCluster.h> -#include <kernels/KMClusterPositions_D.h> -#include <kernels/RPClusterPositions_D.h> +#include "kernels/KMClusterPositions_D.h" +#include "kernels/KMCluster_FC.h" +#include "kernels/KMCluster_TY.h" +#include "kernels/KellerMiksis.h" +#include "kernels/RPCluster.h" +#include "kernels/RPClusterPositions_D.h" +#include "kernels/RayleighPlesset.h" +#include "kernels/RayleighPlesset_HBGL.h" #endif /* KERNELS_H_KY4W86QV */ diff --git a/src/kernels/Dahlquist.h b/src/kernels/Dahlquist.h @@ -6,9 +6,9 @@ #ifndef DAHLQUIST_H_SQ60WZPY #define DAHLQUIST_H_SQ60WZPY -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> -#include <common.h> +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> +#include <ODETB/common.h> #include <cassert> diff --git a/src/kernels/KMClusterPositions_D.h b/src/kernels/KMClusterPositions_D.h @@ -7,9 +7,10 @@ #ifndef BUBBLECLUSTERPOS_D_H_GHBNU569 #define BUBBLECLUSTERPOS_D_H_GHBNU569 -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <Eigen/Core> #include <Eigen/Dense> diff --git a/src/kernels/KMCluster_FC.h b/src/kernels/KMCluster_FC.h @@ -6,9 +6,10 @@ #ifndef BUBBLECLUSTER_FC_H_UJH09T7V #define BUBBLECLUSTER_FC_H_UJH09T7V -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <Eigen/Core> #include <Eigen/Dense> diff --git a/src/kernels/KMCluster_TY.h b/src/kernels/KMCluster_TY.h @@ -6,9 +6,10 @@ #ifndef BUBBLECLUSTER_TY_H_ECCX59FB #define BUBBLECLUSTER_TY_H_ECCX59FB -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <Eigen/Core> #include <Eigen/Dense> diff --git a/src/kernels/KellerMiksis.h b/src/kernels/KellerMiksis.h @@ -6,9 +6,10 @@ #ifndef KELLERMIKSIS_H_BMJWDX72 #define KELLERMIKSIS_H_BMJWDX72 -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <cassert> #include <cmath> diff --git a/src/kernels/RPCluster.h b/src/kernels/RPCluster.h @@ -6,9 +6,10 @@ #ifndef RPCLUSTER_H_67YUOP08 #define RPCLUSTER_H_67YUOP08 -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <Eigen/Core> #include <Eigen/Dense> diff --git a/src/kernels/RPClusterPositions_D.h b/src/kernels/RPClusterPositions_D.h @@ -7,9 +7,10 @@ #ifndef RPCLUSTERPOS_D_H_UIJM88YU #define RPCLUSTERPOS_D_H_UIJM88YU -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <Eigen/Core> #include <Eigen/Dense> diff --git a/src/kernels/RayleighPlesset.h b/src/kernels/RayleighPlesset.h @@ -6,9 +6,10 @@ #ifndef RAYLEIGHPLESSET_H_DLCI4XQ3 #define RAYLEIGHPLESSET_H_DLCI4XQ3 -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <cassert> #include <cmath> diff --git a/src/kernels/RayleighPlesset_HBGL.h b/src/kernels/RayleighPlesset_HBGL.h @@ -6,9 +6,10 @@ #ifndef RAYLEIGHPLESSET_HBGL_H_EVWDWXSM #define RAYLEIGHPLESSET_HBGL_H_EVWDWXSM -#include <BubbleBase.h> -#include <GnuplotDump.h> -#include <TimeStepper/KernelBase.h> +#include "BubbleBase.h" + +#include <ODETB/GnuplotDump.h> +#include <ODETB/TimeStepper/KernelBase.h> #include <cassert> #include <cmath>