We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f0898e commit 7c0d97aCopy full SHA for 7c0d97a
1 file changed
pica/keithley/k6517b/High_Resistance/IV_K6517B_GUI.py
@@ -757,10 +757,9 @@ def start_measurement(self):
757
self.file_location_path, file_name)
758
759
with open(self.data_filepath, 'w', newline='') as f:
760
+ f.write(f"# Sample Name: {params['sample_name']}\n")
761
+ f.write(f"# Voltage Sweep: {start_v}V to {stop_v}V, {steps} steps, {self.delay_ms/1000}s delay\n")
762
writer = csv.writer(f)
- writer.writerow([f"# Sample Name: {params['sample_name']}"])
- writer.writerow(
763
- [f"# Voltage Sweep: {start_v}V to {stop_v}V, {steps} steps, {self.delay_ms/1000}s delay"])
764
writer.writerow(["Time (s)",
765
"Applied Voltage (V)",
766
"Measured Current (A)",
0 commit comments