From 7cebc1dd03bfb0854135d5f8c21a3c12ca24ee40 Mon Sep 17 00:00:00 2001 From: Jason Siegel Date: Mon, 26 Sep 2022 14:58:19 -0400 Subject: [PATCH] Update PyEIS_Data_extraction.py Add "Ecell/V" as E_avg for compatability with biologic BCS815 --- PyEIS/PyEIS_Data_extraction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyEIS/PyEIS_Data_extraction.py b/PyEIS/PyEIS_Data_extraction.py index 07dc955..71b680d 100644 --- a/PyEIS/PyEIS_Data_extraction.py +++ b/PyEIS/PyEIS_Data_extraction.py @@ -44,7 +44,7 @@ def correct_text_EIS(text_header): return 'Z_phase' elif text_header == 'time/s' or text_header == 'Time(Sec)': return 'times' - elif text_header == '/V' or text_header == 'Bias': + elif text_header == '/V' or text_header == 'Bias' or text_header == 'Ecell/V': return 'E_avg' elif text_header == '/mA': return 'I_avg'