From a5839cf6cb35e87752630b49b3795c9baa34fce0 Mon Sep 17 00:00:00 2001 From: kanschat Date: Fri, 23 May 2014 19:09:31 +0000 Subject: [PATCH] forward theta to internal operators and fix the order in src2 git-svn-id: https://svn.dealii.org/trunk@32976 0785d39b-7218-0410-832d-ea1e28bc413d --- .../include/deal.II/algorithms/theta_timestepping.templates.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deal.II/include/deal.II/algorithms/theta_timestepping.templates.h b/deal.II/include/deal.II/algorithms/theta_timestepping.templates.h index 9d007be8a9..78d92783bf 100644 --- a/deal.II/include/deal.II/algorithms/theta_timestepping.templates.h +++ b/deal.II/include/deal.II/algorithms/theta_timestepping.templates.h @@ -93,17 +93,19 @@ namespace Algorithms src1.add(&solution, "Previous iterate"); src1.add(&d_explicit.time, "Time"); src1.add(&d_explicit.step, "Timestep"); + src1.add(&vtheta, "Theta"); src1.merge(in); AnyData src2; - src2.add(&solution, "Previous iterate"); AnyData out1; out1.add(aux, "Solution"); // The data provided to the inner solver src2.add(aux, "Previous time"); + src2.add(&solution, "Previous iterate"); src2.add(&d_implicit.time, "Time"); src2.add(&d_implicit.step, "Timestep"); + src2.add(&vtheta, "Theta"); src2.merge(in); if (output != 0) -- 2.39.5