From 61db91adad571c58506e71d0cee1e6cabf8ecf7b Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Thu, 23 Apr 2026 15:39:38 +0200 Subject: [PATCH] update ori7test --- main/ori7test_cfg.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/main/ori7test_cfg.py b/main/ori7test_cfg.py index 89799d0..dbba877 100644 --- a/main/ori7test_cfg.py +++ b/main/ori7test_cfg.py @@ -1,14 +1,17 @@ +from frappy_psi.ccracks import Rack + Node('ori7test.psi.ch', 'ORI7 test', 'tcp://5000' ) -include('racktools') +rack = Rack(Mod) -LsSensor('Ts', channel='C', calcurve='x186350') -LsLoop('T', channel='B', calcurve='x174786', output_module='htr', target=10) -LsHeater('htr', output_no=1, max_heater='100W', resistance=25) +rack.lakeshore() +rack.sensor('Ts', channel='C', calcurve='x186350') +rack.loop('T', channel='B', calcurve='x174786', output_module='htr', target=10) +rack.heater('htr', 1, '100W', 25) -HeLevel() -N2Level() -Flow(min_open_pulse=0.03) +rack.he() +rack.n2() +rack.flow(min_open_pulse=0.03)