From f68381c56d95a37ab534450c561fafc129990dfd Mon Sep 17 00:00:00 2001
From: ludovic noels <l.noels@ulg.ac.be>
Date: Mon, 23 Sep 2019 11:53:05 +0200
Subject: [PATCH] archive step

---
 dgshell/benchmarks/multiBeamMPI/beam.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dgshell/benchmarks/multiBeamMPI/beam.py b/dgshell/benchmarks/multiBeamMPI/beam.py
index fe710538c..a03163623 100644
--- a/dgshell/benchmarks/multiBeamMPI/beam.py
+++ b/dgshell/benchmarks/multiBeamMPI/beam.py
@@ -76,13 +76,13 @@ mysolver.solve()
 # perform some check (pay attention that only rank 0 really perform the check)
 try:
     import linecache
-    linedisp = linecache.getline('NodalDisplacementPhysical22Num2comp2_part1.csv',23)
-    linevelo = linecache.getline('NodalVelocityPhysical22Num2comp0_part1.csv',395)
+    linedisp = linecache.getline('NodalDisplacementPhysical22Num2comp2_part1.csv',24)
+    linevelo = linecache.getline('NodalVelocityPhysical22Num2comp0_part1.csv',24)
 except:
     print('Cannot read the results in the files')
     import os
     os._exit(1)
 else:
     check = TestCheck()
-    check.equal(3.795185e-01,float(linedisp.split(';')[1]))
+    check.equal(3.967536e-01,float(linedisp.split(';')[1]))
     check.equal(1.152648e+00,float(linevelo.split(';')[1]))
-- 
GitLab