diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 5 | ||||
-rw-r--r-- | src/vZ.hpp | 1 | ||||
-rw-r--r-- | src/vZ/Integrator.hpp | 2 | ||||
-rw-r--r-- | src/vZ/RK.hpp | 48 | ||||
-rw-r--r-- | src/vZ/Simple.hpp | 20 | ||||
-rw-r--r-- | src/vZ/Traits.hpp | 3 |
6 files changed, 69 insertions, 10 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 814d99d..5ea10b7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -19,5 +19,6 @@ nobase_include_HEADERS = vZ.hpp \ vZ/Integrator.hpp \ - vZ/Traits.hpp \ - vZ/Simple.hpp + vZ/RK.hpp \ + vZ/Simple.hpp \ + vZ/Traits.hpp @@ -25,6 +25,7 @@ #include <vZ/Traits.hpp> #include <vZ/Integrator.hpp> +#include <vZ/RK.hpp> #include <vZ/Simple.hpp> #endif // VZ_HPP diff --git a/src/vZ/Integrator.hpp b/src/vZ/Integrator.hpp index a652bf6..25a84f6 100644 --- a/src/vZ/Integrator.hpp +++ b/src/vZ/Integrator.hpp @@ -66,7 +66,7 @@ namespace vZ // Type alias typedef GenericIntegrator<double> Integrator; - // Definitions + // Implementations template <typename T> void diff --git a/src/vZ/RK.hpp b/src/vZ/RK.hpp new file mode 100644 index 0000000..3ba4b8a --- /dev/null +++ b/src/vZ/RK.hpp @@ -0,0 +1,48 @@ +/************************************************************************* + * Copyright (C) 2009-2010 Tavian Barnes <tavianator@gmail.com> * + * * + * This file is part of The vZ Library. * + * * + * The vZ Library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public License as * + * published by the Free Software Foundation; either version 3 of the * + * License, or (at your option) any later version. * + * * + * The vZ Library is distributed in the hope that it will be useful, but * + * WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this program. If not, see * + * <http://www.gnu.org/licenses/>. * + *************************************************************************/ + +#ifndef VZ_RK_HPP +#define VZ_RK_HPP + +#include <vector> + +namespace vZ +{ + // Base class for Runge-Kutta type algorithms + template <typename T> + class GenericRKIntegrator : public GenericIntegrator<T> + { + public: + typedef typename GenericIntegrator<T>::Function Function; + + protected: + // Coefficients in the tableau representation of the RK algorithm + typedef std::vector<std::vector<T> > ACoefficients; + typedef std::vector<T> BCoefficients; + + GenericRKIntegrator(Function f, T dt) : GenericIntegrator<T>(f, dt) { } + virtual ~GenericRKIntegrator() { } + }; + + // Type alias + typedef GenericRKIntegrator<double> RKIntegrator; +} + +#endif // VZ_RK_HPP diff --git a/src/vZ/Simple.hpp b/src/vZ/Simple.hpp index 706b52c..103357e 100644 --- a/src/vZ/Simple.hpp +++ b/src/vZ/Simple.hpp @@ -27,22 +27,20 @@ namespace vZ { // Base class for non-adaptive RK-style algorithms template <typename T> - class GenericSimpleIntegrator : public GenericIntegrator<T> + class GenericSimpleIntegrator : public GenericRKIntegrator<T> { - protected: - // Coefficients in the tableau representation of the RK algorithm - typedef std::vector<std::vector<T> > ACoefficients; - typedef std::vector<T> BCoefficients; - public: typedef typename GenericIntegrator<T>::Function Function; + protected: + typedef typename GenericRKIntegrator<T>::ACoefficients ACoefficients; + typedef typename GenericRKIntegrator<T>::BCoefficients BCoefficients; + GenericSimpleIntegrator(Function f, T dt, ACoefficients a, BCoefficients b) : GenericIntegrator<T>(f, dt), m_a(a), m_b(b) { } virtual ~GenericSimpleIntegrator() { } - protected: virtual void step(T& t, T& dt); private: @@ -52,6 +50,14 @@ namespace vZ // Type alias typedef GenericSimpleIntegrator<double> SimpleIntegrator; + + // Implementations + + template <typename T> + void + GenericSimpleIntegrator<T>::step(T& t, T& dt) + { + } } #endif // VZ_SIMPLE_HPP diff --git a/src/vZ/Traits.hpp b/src/vZ/Traits.hpp index baac9ed..76294ea 100644 --- a/src/vZ/Traits.hpp +++ b/src/vZ/Traits.hpp @@ -32,6 +32,9 @@ namespace vZ { public: typedef T Scalar; + + private: + Traits(); }; } |