source: MML/trunk/machine/SOLEIL/common/Top_Up/set_booster_ramp_speed.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 11 years ago

Initial import--MML version from SOLEIL@2013

File size: 550 bytes
Line 
1function set_booster_ramp_speed(dt)
2% set delay for booster power supply
3% default = 5 s
4% fast = 1 s
5% dt en seconde
6
7laps0=tango_get_device_property('BOO/AE/Dipole', 'StepTime');
8fprintf('Laps initial= %s  µs \n',laps0{1})
9
10laps=num2str(dt*1000);
11tango_put_property2('BOO/AE/Dipole', 'StepTime',{laps})
12tango_put_property2('BOO/AE/QD' , 'StepTime',{laps})
13tango_put_property2('BOO/AE/QF' , 'StepTime',{laps})
14tango_put_property2('BOO/AE/SD' , 'StepTime',{laps})
15tango_put_property2('BOO/AE/SF' , 'StepTime',{laps})
16fprintf('Laps = %s  µs\n',laps)
Note: See TracBrowser for help on using the repository browser.