From a26b7b69fa24bceb670f0f5f8929230779c2d15a Mon Sep 17 00:00:00 2001 From: l_samenv Date: Mon, 18 Nov 2024 11:23:22 +0100 Subject: [PATCH] added description, remove not working cernox --- cfg/kapillarheizung_cfg.py | 80 ++++++++++++++++++++++++++------------ 1 file changed, 55 insertions(+), 25 deletions(-) diff --git a/cfg/kapillarheizung_cfg.py b/cfg/kapillarheizung_cfg.py index a6bfef46..918dada9 100644 --- a/cfg/kapillarheizung_cfg.py +++ b/cfg/kapillarheizung_cfg.py @@ -13,14 +13,14 @@ Mod('io', Mod('PT10000', 'frappy_psi.logo.TempSensor', - 'sensor', + 'raw sensor value of T_p10k', io = 'io', vm_address ="VW0", ) Mod('T_pt10k', 'frappy_psi.softcal.Sensor', - '?', + 'temperature close to sample', value=Param(unit='K'), rawsensor='PT10000', calib='pt10000e', @@ -28,29 +28,32 @@ Mod('T_pt10k', Mod('PT1000_oben', 'frappy_psi.logo.TempSensor', - 'sensor', + 'raw sensor value of T_top', io = 'io', vm_address ="VW2", ) Mod('T_top', 'frappy_psi.softcal.Sensor', - '?', + 'capillary temperature at highest position', value=Param(unit='K'), rawsensor='PT1000_oben', calib='pt1000e', ) + + Mod('PT1000_mitte', 'frappy_psi.logo.TempSensor', - 'sensor', + 'raw sensor value of T_mid', io = 'io', - vm_address ="VW4", + vm_address ="VW6", ) + Mod('T_mid', 'frappy_psi.softcal.Sensor', - '?', + 'capillary temperature at mid position', value=Param(unit='K'), rawsensor='PT1000_mitte', calib='pt1000e', @@ -58,45 +61,72 @@ Mod('T_mid', Mod('PT1000_unten', 'frappy_psi.logo.TempSensor', - 'sensor', + 'raw sensor value of T_bot', io = 'io', - vm_address ="VW6", + vm_address ="VW4", ) Mod('T_bot', 'frappy_psi.softcal.Sensor', - '?', + 'capillary temperature at lower position', value=Param(unit='K'), rawsensor='PT1000_unten', calib='pt1000e', ) -Mod('Cernox', - 'frappy_psi.logo.TempSensor', - 'sensor', - io = 'io', - vm_address ="VW8", -) +# not working properly yet +# Mod('Cernox', +# 'frappy_psi.logo.TempSensor', +# 'sensor', +# io = 'io', +# vm_address ="VW8", +# ) -Mod('T_cx', - 'frappy_psi.softcal.Sensor', - '?', - value=Param(unit='K'), - rawsensor='Cernox', - calib='X174785', -) +# Mod('T_cx', +# 'frappy_psi.softcal.Sensor', +# '?', +# value=Param(unit='K'), +# rawsensor='Cernox', +# calib='X174785', +# ) Mod('HeaterLevelHigh', 'frappy_psi.logo.HeaterParam', 'heater param', io = 'io', - vm_address = "VW10", + vm_address = "VW10", ) + +''' before 12.11.2024 +Mod('HeaterState', + 'frappy_psi.logo.ControlHeater', + 'heater state', + io = 'io', + vm_address_on = "V1246.0", + vm_address_off = "V1246.1", +) +''' + +Mod('HeaterState', + 'frappy_psi.logo.ControlHeater', + 'heater state', + io = 'io', + vm_address = "V0.1", +) + +Mod('HeaterState_a', + 'frappy_psi.logo.ControlHeater', + 'heater state a', + io = 'io', + vm_address = "V0.0", +) + + # currently unused: #Mod('HeaterLevelLow', # 'frappy_psi.logo.HeaterParam', # 'heater param', # io = 'io', -# vm_address = "VW12", +# vm_address = "VW12", #)