From 784d2bfadaeb25d4e5d394243116a265cc29e7c7 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Thu, 22 Mar 2012 13:17:08 +0100 Subject: [PATCH] Resemble velocity stepping tests more closely --- src/one-body-sample.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/one-body-sample.py b/src/one-body-sample.py index 313edd81..d9653f31 100644 --- a/src/one-body-sample.py +++ b/src/one-body-sample.py @@ -17,9 +17,9 @@ class dirichletCondition: fst = 3e-4 snd = 5e-4 trd = 3e-4 - if x < 1.0/3: + if x < 1.0/5: return fst - elif x < 2.0/3: + elif x < 3.0/5: return snd else: return trd -- GitLab