From: Wolfgang Bangerth Date: Wed, 1 Jun 2022 22:54:09 +0000 (-0600) Subject: Avoid unicode and correct 10-5 -> 10^-5. X-Git-Tag: v9.4.0-rc1~79^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5e005b3c406fea899d118a106b495e3241c087b;p=dealii.git Avoid unicode and correct 10-5 -> 10^-5. --- diff --git a/tests/sundials/arkode_04.cc b/tests/sundials/arkode_04.cc index 30678b58d0..5d3f2ad19f 100644 --- a/tests/sundials/arkode_04.cc +++ b/tests/sundials/arkode_04.cc @@ -31,17 +31,17 @@ * ODE solvers. This problem has 3 dependent variables u, v and w, that depend * on the independent variable t via the IVP system * - * du/dt = a − (w + 1)u + v u^2 - * dv/dt = w u − v u^2 - * dw/dt = (b − w)/eps -w u + * du/dt = a - (w + 1)u + v u^2 + * dv/dt = w u - v u^2 + * dw/dt = (b - w)/eps - w u * - * We integrate over the interval 0 ≤ t ≤ 10, with the initial conditions + * We integrate over the interval 0 <= t <= 10, with the initial conditions * * u(0) = 3.9, v(0) = 1.1, w(0) = 2.8, * * and parameters * - * a = 1.2, b = 2.5, and eps = 10−5 + * a = 1.2, b = 2.5, and eps = 10^-5 * * The implicit part only contains the stiff part of the problem (the part with * eps in right hand side of the third equation). diff --git a/tests/sundials/arkode_05.cc b/tests/sundials/arkode_05.cc index bbfe04554e..72599be910 100644 --- a/tests/sundials/arkode_05.cc +++ b/tests/sundials/arkode_05.cc @@ -31,17 +31,17 @@ * ODE solvers. This problem has 3 dependent variables u, v and w, that depend * on the independent variable t via the IVP system * - * du/dt = a − (w + 1)u + v u^2 - * dv/dt = w u − v u^2 - * dw/dt = (b − w)/eps -w u + * du/dt = a - (w + 1)u + v u^2 + * dv/dt = w u - v u^2 + * dw/dt = (b - w)/eps - w u * - * We integrate over the interval 0 ≤ t ≤ 10, with the initial conditions + * We integrate over the interval 0 <= t <= 10, with the initial conditions * * u(0) = 3.9, v(0) = 1.1, w(0) = 2.8, * * and parameters * - * a = 1.2, b = 2.5, and eps = 10−5 + * a = 1.2, b = 2.5, and eps = 10^−5 * * The implicit part only contains the stiff part of the problem (the part with * eps in right hand side of the third equation).