- cleaned up parameter
git-svn-id: http://moon:8086/svn/projects/HendiControl@233 fda53097-d464-4ada-af97-ba876c37ca34
This commit is contained in:
@@ -197,8 +197,8 @@ class Controller():
|
||||
pid_err = ctrl_heatrate_err
|
||||
pid_params_acqu = self.params['Heat']['Acqu']['Pid']
|
||||
pid_params_track = self.params['Heat']['Track']['Pid']
|
||||
pid_thresh_acqu = 0.2
|
||||
pid_thresh_track = 0.5
|
||||
pid_thresh_acqu = self.params['Heat']['Acqu']['thresh_leave']
|
||||
pid_thresh_track = self.params['Heat']['Track']['thresh_leave']
|
||||
if (ctrl_theta + 1.0) >= theta_soll:
|
||||
ovenStateNext = ovenStates.HOLD
|
||||
self.log("Set rast timer to {:0.1f} min.".format(timer_soll/60))
|
||||
@@ -208,8 +208,8 @@ class Controller():
|
||||
pid_err = ctrl_theta_err
|
||||
pid_params_acqu = self.params['Hold']['Acqu']['Pid']
|
||||
pid_params_track = self.params['Hold']['Track']['Pid']
|
||||
pid_thresh_acqu = 0.2
|
||||
pid_thresh_track = 0.5
|
||||
pid_thresh_acqu = self.params['Heat']['Acqu']['thresh_leave']
|
||||
pid_thresh_track = self.params['Heat']['Track']['thresh_leave']
|
||||
if self.timer_ist == 0:
|
||||
ovenStateNext = ovenStates.NOP
|
||||
doLoop = False
|
||||
|
||||
Reference in New Issue
Block a user