frappy/cfg/sim_mlz_htf02_cfg.py
Alexander Zaft 8799710b38 Convert example configs to python
Fixes: #4627

Change-Id: I1049af9fa2f3f9ec06e55811dc9ecfa5f359c805
2023-03-06 08:24:15 +01:00

31 lines
1005 B
Python

Node('htf02',
'[sim] htf02 box of MLZ Sample environment group\n'
'\n'
'Controls an High Temperature Furnace with an eurotherm controller and an PLC checking the cooing water.',
'tcp://10767',
)
Mod('T_htf02',
'frappy.simulation.SimDrivable',
'Main temperature control node of htf02.\n'
'\n'
'Controls the regulation loop of the Eurotherm.',
value = Param(default=300,
datatype={"type":"double", "min":0, "unit":"degC"}),
target = Param(default=300,
datatype={"type":"double", "min":0, "max": 2000, "unit":"degC"}),
extra_params='ramp',
ramp = Param(default=60,
datatype={"type":"double", "min":0, "max": 600, "unit":"K/min"},
description='target ramping speed in K/min.',
readonly=False,
),
meaning=["temperature", 10],
)
Mod('htf02_p',
'frappy.simulation.SimReadable',
'Pressure Sensor at sample space (ivc).',
value = Param(default=989, datatype={"type":"double", "min":0, "unit":"mbar"}),
)