lakeshore ramp

Change-Id: I323c2b88e554bc2dc9c3f1af2b23f99aa082489f
This commit is contained in:
Oksana Shliakhtun
2023-03-08 14:37:27 +01:00
parent 05415e79b1
commit ec15a35977
2 changed files with 69 additions and 43 deletions

View File

@ -1,37 +1,36 @@
Node('ls340test.psi.ch',
'ls340 test',
'tcp://5000',
)
'tcp://5000'
)
Mod('io',
'frappy_psi.lakeshore.Ls340IO',
'communication to ls340',
uri = 'tcp://ldmprep56-ts:3002'
)
uri='tcp://ldmprep56-ts:3002'
)
Mod('T',
'frappy_psi.lakeshore.TemperatureLoop340',
'sample temperature',
output_module = 'Heater',
target = Param(max=470),
io = 'io',
channel = 'B',
)
output_module='Heater',
target=Param(max=470),
io='io',
channel='B'
)
Mod('T_cold_finger',
'frappy_psi.lakeshore.Sensor340',
'cold finger temperature',
io = 'io',
channel = 'A'
)
io='io',
channel='A'
)
Mod('Heater',
'frappy_psi.lakeshore.HeaterOutput',
'heater output',
channel = 'B',
io = 'io',
resistance = 50,
max_power = 50,
current = 1
)
channel='B',
io='io',
resistance=50,
max_power=50,
current=1
)