Commit 52652c5f authored by Clement Remi's avatar Clement Remi
Browse files

output file correction, to print the correct electrode numbers in the .cvs output file

Showing with 4 additions and 4 deletions
+4 -4
...@@ -444,10 +444,10 @@ class OhmPi(object): ...@@ -444,10 +444,10 @@ class OhmPi(object):
# create a dictionary and compute averaged values from all stacks # create a dictionary and compute averaged values from all stacks
d = { d = {
"time": [datetime.now()], "time": [datetime.now()],
"A": [1], "A": quad[1],
"B": [2], "B": quad[2],
"M": [3], "M": quad[3],
"N": [4], "N": quad[4],
"inj time [ms]": (end_delay - start_delay) * 1000, "inj time [ms]": (end_delay - start_delay) * 1000,
"Vmn [mV]": [(sum_vmn / (3 + 2 * nb_stack - 1))], "Vmn [mV]": [(sum_vmn / (3 + 2 * nb_stack - 1))],
"I [mA]": [(injection_current / (3 + 2 * nb_stack - 1))], "I [mA]": [(injection_current / (3 + 2 * nb_stack - 1))],
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment