From ada696e72b24fba5bad95d47cd31f097911e20cc Mon Sep 17 00:00:00 2001 From: l_samenv Date: Thu, 14 Nov 2024 16:09:31 +0100 Subject: [PATCH] add peltier cfg --- cfg/main/peltier_cfg.py | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 cfg/main/peltier_cfg.py diff --git a/cfg/main/peltier_cfg.py b/cfg/main/peltier_cfg.py new file mode 100644 index 0000000..1e60b4f --- /dev/null +++ b/cfg/main/peltier_cfg.py @@ -0,0 +1,58 @@ +Node('peltier.psi.ch', + 'peltier test', + 'tcp://5000', + ) + +Mod('tio', + 'frappy_psi.qnw.QnwIO', + 'connection for Quantum northwest', + uri='tcp://ldm-fi-ts:3001', + ) + +Mod('T', + 'frappy_psi.qnw.TemperatureLoopTC1', + 'holder temperature', + channel='CT', + io='tio', + ) + +Mod('Th', + 'frappy_psi.qnw.SensorTC1', + 'heat exch. temperature', + channel='HT', + io='tio', + ) + +Mod('wio', + 'frappy_psi.thermofisher.ThermFishIO', + 'connection for water bath', + uri='tcp://ldm-fi-ts:3002', + ) + +Mod('Tbath', + 'frappy_psi.thermofisher.TemperatureLoopA10', + 'water bath', + io='wio', + target=Param(max=100), + tolerance=0.5, + settling_time=20, + ) + +Mod('lio', # the name of the module + 'frappy_demo.lakeshore.LakeshoreIO', # the class used for communication + 'communication to main controller', # a description + uri="tcp://ldmcc02-ls:7777", # the serial connection + ) +Mod('Ta', + 'frappy_demo.lakeshore.TemperatureSensor', + 'Sample Temperature', + io='lio', + channel='A', # the channel on the LakeShore for this module + ) +Mod('Tb', + 'frappy_demo.lakeshore.TemperatureSensor', + 'Sample Temperature', + io='lio', + channel='B', # the channel on the LakeShore for this module + ) +