From 27ada15fd8a0161e376e008aa315115bcd601dfc Mon Sep 17 00:00:00 2001 From: Axel Loewe <axel.loewe@kit.edu> Date: Thu, 16 Sep 2021 14:50:11 +0200 Subject: [PATCH] restituteCV was not working because surf argument had no default. Set to 3D now (args.self = False) --- bin/restituteCV | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/restituteCV b/bin/restituteCV index 2bf8105..9693d79 100755 --- a/bin/restituteCV +++ b/bin/restituteCV @@ -283,6 +283,9 @@ def run(args, job): # we use tuning here only for measuring CV args.conv = False + # Use 3D mesh + args.surf = False + # determine CVs print('{:>6s} {:>8s}'.format('CI', 'CV')) print('{:>6s} {:>8s}'.format('[ms]', '[m/s]')) -- GitLab