initial commit

This commit is contained in:
l_samenv
2022-08-18 15:04:28 +02:00
commit 46dcf8e77c
591 changed files with 69282 additions and 0 deletions

20
tcl/vcontrol.stick Normal file
View File

@ -0,0 +1,20 @@
stickDesc = valve controlled pressure for JT
makenv tv -driver loop -invar tt -outvar "v motpos/set" \
-outmin 1 -outmax 0 -prop 1000 -int 100 -mindelta 10 -precision 0.0002
hsetprop /tv label tv_set
makenv table -driver table /tt {
"tv prop" "1:1000 4:10000"
"tv int" "1:0.1 4:0.1"
}
hsetprop /tv/set check checktv
hsetprop /tv check checktv
proc checktv {} {
if {[sct target] > 3} {
error "[sct target] is too high"
}
}