From eba14753ff028fc8b6ef7df5284560478c27d834 Mon Sep 17 00:00:00 2001 From: Eric Fayolle Date: Mon, 29 Aug 2022 12:12:04 +0200 Subject: [PATCH] Correction du calcul vHalfTime dans post_csv.py --- ReacteurNumerique/post_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReacteurNumerique/post_csv.py b/ReacteurNumerique/post_csv.py index 00c15816..057e6386 100644 --- a/ReacteurNumerique/post_csv.py +++ b/ReacteurNumerique/post_csv.py @@ -63,7 +63,7 @@ def vHalfTime(arrayNx2): Tmin=np.apply_along_axis(min, 0, timeColumn) Tmax=np.apply_along_axis(max, 0, timeColumn) - Thalf=(Tmax-Tmin)/2 + Thalf=(Tmax-Tmin)/2+Tmin idxThalf = (np.abs(timeColumn-Thalf)).argmin() valThalf= arrayNx2[idxThalf][1].item() -- 2.39.2