From: Eric Fayolle Date: Mon, 29 Aug 2022 10:12:04 +0000 (+0200) Subject: Correction du calcul vHalfTime dans post_csv.py X-Git-Tag: merge_uncertainty_odysee_1210~32^2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=eba14753ff028fc8b6ef7df5284560478c27d834;p=tools%2Feficas.git Correction du calcul vHalfTime dans post_csv.py --- 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()