Files
frappy/cfg/kapillarheizung_cfg.py

133 lines
2.3 KiB
Python

Node('Gas10kA.psi.ch',
'LOGO for 10kBar Gas pressure stick',
interface='tcp://5001',
)
Mod('io',
'frappy_psi.logo.IO',
'',
ip_address = "192.168.1.1",
tcap_client = 0x3000,
tsap_server = 0x2000
)
Mod('PT10000',
'frappy_psi.logo.TempSensor',
'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',
)
Mod('PT1000_oben',
'frappy_psi.logo.TempSensor',
'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',
'raw sensor value of T_mid',
io = 'io',
vm_address ="VW6",
)
Mod('T_mid',
'frappy_psi.softcal.Sensor',
'capillary temperature at mid position',
value=Param(unit='K'),
rawsensor='PT1000_mitte',
calib='pt1000e',
)
Mod('PT1000_unten',
'frappy_psi.logo.TempSensor',
'raw sensor value of T_bot',
io = 'io',
vm_address ="VW4",
)
Mod('T_bot',
'frappy_psi.softcal.Sensor',
'capillary temperature at lower position',
value=Param(unit='K'),
rawsensor='PT1000_unten',
calib='pt1000e',
)
# 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('HeaterLevelHigh',
'frappy_psi.logo.HeaterParam',
'heater param',
io = 'io',
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",
#)