summaryrefslogtreecommitdiffstats
path: root/tests/DP45.cpp
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-10-07 21:15:22 -0400
committerTavian Barnes <tavianator@gmail.com>2010-10-07 21:15:22 -0400
commitc9d71b99d4bf8c7eef40c043c8d7726962847667 (patch)
treeff6364f239ced73c3079061f250afb5436482ff8 /tests/DP45.cpp
parent180d804d9199b79bcad951638105250c77a002bc (diff)
downloadvz-c9d71b99d4bf8c7eef40c043c8d7726962847667.tar.xz
Add DP45 method.
Diffstat (limited to 'tests/DP45.cpp')
-rw-r--r--tests/DP45.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/DP45.cpp b/tests/DP45.cpp
new file mode 100644
index 0000000..5faa78a
--- /dev/null
+++ b/tests/DP45.cpp
@@ -0,0 +1,40 @@
+#include "vZ.hpp"
+#include <cmath>
+#include <cstdlib>
+#include <iostream>
+#include <iomanip>
+
+// y' = y (y == C*exp(t))
+double
+f(double t, double y)
+{
+ return y;
+}
+
+int
+main()
+{
+ vZ::DP45Integrator integrator(f);
+ integrator.tol(1e-6).y(1.0).x(0.0).h(0.06);
+
+ integrator.integrate(2.0);
+
+ double actual = integrator.y();
+ double expected = std::exp(2.0);
+
+ std::cout << std::setprecision(10)
+ << "Numerical: " << actual << std::endl
+ << "Expected: " << expected << std::endl
+ << "h: " << integrator.h() << std::endl
+ << "Iterations: " << integrator.iterations() << std::endl
+ << "Rejections: " << integrator.rejections() << std::endl;
+
+ double error = std::fabs(expected - actual)/expected;
+ if (error > 6.0e-7) {
+ std::cerr << "Error: " << 100.0*error << "%" << std::endl;
+ return EXIT_FAILURE;
+ } else {
+ std::cout << "Error: " << 100.0*error << "%" << std::endl;
+ return EXIT_SUCCESS;
+ }
+}