diff --git a/dgshell/benchmarks/multiBeamMPI/beam.py b/dgshell/benchmarks/multiBeamMPI/beam.py index fe710538ce4c6780903c5a21a1c8998a3099a1e2..a031636230c9eeaa574f8d01d6bb99f8ae8456b2 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]))