From cdc27488186e3554a508949379b9d93bf691ee2d Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Thu, 10 Jul 2025 10:15:40 +0200 Subject: [PATCH] dil5: reorder modules in cfg --- cfg/dil5_cfg.py | 96 ++++++++++++++++++++++++++----------------------- 1 file changed, 51 insertions(+), 45 deletions(-) diff --git a/cfg/dil5_cfg.py b/cfg/dil5_cfg.py index fab68b9e..3b8065b0 100644 --- a/cfg/dil5_cfg.py +++ b/cfg/dil5_cfg.py @@ -9,8 +9,8 @@ logo_ip = '192.168.0.3' # by plug location would also be possible (/dev/serial/by-path) -Node('dil5_logo.psi.ch', - 'dil5 logo test', +Node('dil5.psi.ch', + 'dil5 on linse-dil5', interface='tcp://5000', secondary = ['ws://8010'] ) @@ -113,51 +113,8 @@ Mod('airpressure', addr ="V1024.7", ) -Mod('io_ls273', - 'frappy_psi.ls372.StringIO', - 'io for Ls372', - uri=lsc_uri, - ) -Mod('sw', - 'frappy_psi.ls372.Switcher', - 'channel switcher', - io = 'io_ls273', -) -Mod('T_mix', - 'frappy_psi.ls372.TemperatureLoop', - 'mix temperature chan 5', - channel = 5, - switcher = 'sw', -) -Mod('T_ivc', - 'frappy_psi.ls372.TemperatureLoop', - 'mix temperature chan 2', - channel = 2, - switcher = 'sw', -) - -Mod('T_still', - 'frappy_psi.ls372.TemperatureLoop', - 'mix temperature chan 3', - channel = 3, - switcher = 'sw', -) - -Mod('T_sorb', - 'frappy_psi.ls372.TemperatureLoop', - 'mix temperature chan 1', - channel = 1, - switcher = 'sw', -) - -Mod('T_cp', - 'frappy_psi.ls372.TemperatureLoop', - 'mix temperature chan 4', - channel = 4, - switcher = 'sw', -) Mod('io_pfeiffer', 'frappy_psi.pfeiffer_new.PfeifferProtocol', @@ -333,3 +290,52 @@ Mod('dil', condensing_p_high = 1500, ) +## Dilution lakeshore Temperature controller + +Mod('io_ls273', + 'frappy_psi.ls372.StringIO', + 'io for Ls372', + uri=lsc_uri, + ) + +Mod('sw', + 'frappy_psi.ls372.Switcher', + 'channel switcher', + io = 'io_ls273', +) + +Mod('T_ivc', + 'frappy_psi.ls372.TemperatureChannel', + 'mix temperature chan 2', + channel = 2, + switcher = 'sw', +) + +Mod('T_still', + 'frappy_psi.ls372.TemperatureChannel', + 'mix temperature chan 3', + channel = 3, + switcher = 'sw', +) + +Mod('T_sorb', + 'frappy_psi.ls372.TemperatureChannel', + 'mix temperature chan 1', + channel = 1, + switcher = 'sw', +) + +Mod('T_cp', + 'frappy_psi.ls372.TemperatureChannel', + 'mix temperature chan 4', + channel = 4, + switcher = 'sw', +) + +Mod('T_mix', + 'frappy_psi.ls372.TemperatureLoop', + 'mix temperature chan 5', + channel = 5, + htrrng = '1mA', + switcher = 'sw', +)