From 709891d963c69b40361810f5e3c2cbb08305f7c1 Mon Sep 17 00:00:00 2001 From: turcksin Date: Tue, 8 Apr 2014 23:39:29 +0000 Subject: [PATCH] Fix a coefficient in the Butcher tableau of DOPRI. git-svn-id: https://svn.dealii.org/trunk@32741 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/base/time_stepping.h | 2 +- deal.II/include/deal.II/base/time_stepping.templates.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/include/deal.II/base/time_stepping.h b/deal.II/include/deal.II/base/time_stepping.h index e3a7590113..87a46e5313 100644 --- a/deal.II/include/deal.II/base/time_stepping.h +++ b/deal.II/include/deal.II/base/time_stepping.h @@ -43,7 +43,7 @@ namespace TimeStepping * - Implicit methods: * - BACKWARD_EULER: first order * - IMPLICIT_MIDPOINT: second order - * - CRANK_NICHOLSON: second order + * - CRANK_NICOLSON: second order * - SDIRK_TWO_STAGES: second order * - Embedded explicit methods: * - HEUN_EULER: second order diff --git a/deal.II/include/deal.II/base/time_stepping.templates.h b/deal.II/include/deal.II/base/time_stepping.templates.h index 8a97eb0f73..c3c08f117d 100644 --- a/deal.II/include/deal.II/base/time_stepping.templates.h +++ b/deal.II/include/deal.II/base/time_stepping.templates.h @@ -505,7 +505,7 @@ namespace TimeStepping tmp[3] = -212./729.; this->a.push_back(tmp); tmp.resize(5); - tmp[0] = -9017./3168.; + tmp[0] = 9017./3168.; tmp[1] = -355./33.; tmp[2] = 46732./5247.; tmp[3] = 49./176.; -- 2.39.5