Skip to content

Commit 30406e4

Browse files
K6221_K2182_range 5, stabalization window 5 K
1 parent af75e20 commit 30406e4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

pica/keithley/delta_mode/Delta_RT_K6221_K2182_L350_T_Control_GUI.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class Advanced_Delta_GUI:
228228

229229
def __init__(self, root):
230230
self.root = root
231-
self.root.title("K6221/2182 & L350: Delta Mode R-T (T-Control)")
231+
self.root.title("K6221/2182 & L350: Delta Mode R-T (T-Control) - range 5")
232232
self.root.geometry("1550x950")
233233
self.root.minsize(1200, 850)
234234
self.root.configure(bg=self.CLR_BG_DARK)
@@ -346,7 +346,7 @@ def create_header(self):
346346

347347
Label(
348348
header_frame,
349-
text="K6221/2182 & L350: Delta Mode R-T (T-Control)",
349+
text="K6221/2182 & L350: Delta Mode R-T (T-Control) - range 5",
350350
bg=self.CLR_HEADER,
351351
fg=self.CLR_ACCENT_GOLD,
352352
font=font_title_italic).pack(
@@ -423,7 +423,7 @@ def create_info_frame(self, parent):
423423
padx=10,
424424
pady=8)
425425

426-
details_text = ("Program Name: Delta Mode R vs. T (T-Control)\n"
426+
details_text = ("Program Name: Delta Mode R vs. T (T-Control) - range 5\n"
427427
"Instruments: Keithley 6221/2182, Lakeshore 350\n"
428428
"Measurement Range: 10 nΩ to 100 MΩ")
429429
ttk.Label(
@@ -825,10 +825,10 @@ def _stabilization_loop(self):
825825
else:
826826
self.log(
827827
f"Stabilizing (Heating)... Current: {current_temp:.4f} K <= Target: {self.params['start_temp']} K")
828-
self.backend.set_heater_range(1, 'medium')
828+
self.backend.set_heater_range(1, 'high')
829829
self.backend.set_setpoint(1, self.params['start_temp'])
830830

831-
if abs(current_temp - self.params['start_temp']) < 0.1:
831+
if abs(current_temp - self.params['start_temp']) < 5.0:
832832
self.log(
833833
f"Stabilized at {current_temp:.4f} K. Waiting 5s before starting ramp...")
834834
self.is_stabilizing = False
@@ -992,4 +992,4 @@ def main():
992992

993993

994994
if __name__ == '__main__':
995-
main()
995+
main()

0 commit comments

Comments
 (0)