summaryrefslogtreecommitdiff
path: root/docs/src/common/Integrator_Concepts.txt
blob: 2fb1c331c626edc6c4c65882c0568515db1c8ba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
= Integrator Concepts

[[cha:integrator-concepts]] (((Integrator Concepts)))

== Stepper Systems

=== Base Period

BASE_PERIOD is the 'heartbeat' of your LinuxCNC computer.footnote:[This 
section refers to using *stepgen*, LinuxCNC's built-in 
step generator. Some hardware devices have their own step 
generator and do not use LinuxCNC's built-in one. In that case, refer to 
your hardware manual.] Every period, the 
software step generator decides if it is time for another step pulse. 
A shorter period will allow you to generate more pulses per second,
within limits. But if you go too short, your computer will spend so
much time generating step pulses that everything else will slow to a
crawl, or maybe even lock up. Latency and stepper drive requirements
affect the shortest period you can use.

Worst case latencies might only happen a few times a minute, and the
odds of bad latency happening just as the motor is changing direction
are low. So you can get very rare errors that ruin a part every once in
a while and are impossible to troubleshoot.

The simplest way to avoid this problem is to choose a BASE_PERIOD that
is the sum of the longest timing requirement of your drive, and the
worst case latency of your computer. This is not always the best choice. 
For example, if you are running a drive with a 20 us  direction signal hold time 
requirement, and your latency test said you have a maximum latency of
11 us , then if you set the BASE_PERIOD to 20+11 = 31 us  you get a 
not-so-nice 32,258 steps per second in one mode and 16,129 steps per 
second in another mode. 

The problem is with the 20 us  hold time requirement. That plus the 11 us 
latency is what forces us to use a slow 31 us  period. But the LinuxCNC
software step generator has some parameters that let you increase the
various times from one period to several. For example, if 'steplen' footnote:[steplen 
refers to a parameter that adjusts the performance of LinuxCNC's built-in step generator, 
'stepgen', which is a HAL component. This parameter adjusts the length of the 
step pulse itself. Keep reading, all will be explained eventually.] is
changed from 1 to 2, then there will be two periods between the
beginning and end of the step pulse. Likewise, if 'dirhold' footnote:[dirhold 
refers to a parameter that adjusts the length of the direction hold time.] is 
changed from 1 to 3, there will be at least three periods between the step
pulse and a change of the direction pin.

If we can use 'dirhold' to meet the 20 us  hold time requirement, then the
next longest time is the 4.5 us  high time. Add the 11 us  latency to the
4.5 us  high time, and you get a minimum period of 15.5 us . When you try
15.5 us , you find that the computer is sluggish, so you settle on 16 us .
If we leave 'dirhold' at 1 (the default), then the minimum time between
step and direction is the 16 us  period minus the 11 us  latency = 5 us ,
which is not enough. We need another 15 us . Since the period is 16 us , we
need one more period. So we change 'dirhold' from 1 to 2. Now the minimum
time from the end of the step pulse to the changing direction pin is
5+16=21 us , and we don't have to worry about the drive stepping the
wrong direction because of latency.

For more information on stepgen see the stepgen section of the HAL manual. 

=== Step Timing

Step Timing and Step Space on some drives are different. In this case
the Step point becomes important. If the drive steps on the falling
edge then the output pin should be inverted.

== Servo Systems

=== Basic Operation

Servo systems are capable of greater speed and accuracy than equivalent 
stepper systems, but are more costly and complex. 
Unlike stepper systems, servo systems require some type of position 
feedback device, and must be adjusted or 'tuned', as they don't quite 
work right out of the box as a stepper system might. These differences 
exist because servos are a 'closed loop' system, 
unlike stepper motors which are generally run 'open loop'. What does 
'closed loop' mean? Let's look at a simplified diagram of how a servomotor 
system is connected. 

.Servo Loop
image::images/servo-feedback.png[]

This diagram shows that the input signal (and the feedback signal) drive 
the summing amplifier, the summing amplifier drives the power amplifier, 
the power amplifier drives the motor, the motor drives the load 
(and the feedback device), and the feedback device (and the input signal) 
drive the motor.  This looks very much like a circle (a closed loop) where 
A controls B, B controls C, C controls D, and D controls A. 

If you have not worked with servo systems before, this will no doubt seem a 
very strange idea at first, especially as compared to more normal electronic 
circuits, where the inputs proceed smoothly to the outputs, and never go 
back.footnote:[If it helps, the closest equivalent to this in the digital 
world are 'state machines', 'sequential machines' and so forth, where what 
the outputs are doing 'now' depends on what the inputs (and the outputs) 
were doing 'before'. If it doesn't help, then nevermind.] If 'everything' 
controls 'everything else', how can that ever work, who's in 
charge? The answer is that LinuxCNC 'can' control this system, 
but it has to do it by choosing one of several control methods. 
The control method that LinuxCNC uses, one of the simplest and best, 
is called PID. 

PID stands for Proportional, Integral, and Derivative. The Proportional
value determines the reaction to the current error, the Integral value
determines the reaction based on the sum of recent errors, and the
Derivative value determines the reaction based on the rate at which the
error has been changing. They are three common mathematical techniques
that are applied to the task of getting a working process to follow a
set point. In the case of LinuxCNC the process we want to control is actual
axis position and the set point is the commanded axis position.

.PID Loop
image::images/pid-feedback.png[]

By 'tuning' the three constants in the PID controller algorithm, the
controller can provide control action designed for specific process
requirements. The response of the controller can be described in terms
of the responsiveness of the controller to an error, the degree to
which the controller overshoots the set point and the degree of system
oscillation.

=== Proportional term

The proportional term (sometimes called gain) makes a change to the 
output that is proportional to the current error value. A high 
proportional gain results in a large change in the output for a given 
change in the error. If the proportional gain is too high, the system 
can become unstable. In contrast, a small gain results in a small 
output response to a large input error. If the proportional gain is too 
low, the control action may be too small when responding to system 
disturbances. 

In the absence of disturbances, pure proportional control will not 
settle at its target value, but will retain a steady state error that 
is a function of the proportional gain and the process gain. Despite 
the steady-state offset, both tuning theory and industrial practice 
indicate that it is the proportional term that should contribute the 
bulk of the output change. 

=== Integral term

The contribution from the integral term (sometimes called reset) is 
proportional to both the magnitude of the error and the duration of the
error. Summing the instantaneous error over time (integrating the
error) gives the accumulated offset that should have been corrected
previously. The accumulated error is then multiplied by the integral
gain and added to the controller output.

The integral term (when added to the proportional term) accelerates
the movement of the process towards set point and eliminates the
residual steady-state error that occurs with a proportional only
controller. However, since the integral term is responding to
accumulated errors from the past, it can cause the present value to
overshoot the set point value (cross over the set point and then create
a deviation in the other direction).

=== Derivative term

The rate of change of the process error is calculated by determining
the slope of the error over time (i.e. its first derivative with
respect to time) and multiplying this rate of change by the derivative
gain.

The derivative term slows the rate of change of the controller output
and this effect is most noticeable close to the controller set point.
Hence, derivative control is used to reduce the magnitude of the
overshoot produced by the integral component and improve the combined
controller-process stability.

=== Loop tuning

If the PID controller parameters (the gains of the proportional,
integral and derivative terms) are chosen incorrectly, the controlled
process input can be unstable, i.e. its output diverges, with or
without oscillation, and is limited only by saturation or mechanical
breakage. Tuning a control loop is the adjustment of its control
parameters (gain/proportional band, integral gain/reset, derivative
gain/rate) to the optimum values for the desired control response.

=== Manual tuning

A simple tuning method is to first set the I and D values to zero.
Increase the P until the output of the loop oscillates, then the P
should be set to be approximately half of that value for a 'quarter
amplitude decay' type response. Then increase I until any offset is
correct in sufficient time for the process. However, too much I will
cause instability. Finally, increase D, if required, until the loop is
acceptably quick to reach its reference after a load disturbance.
However, too much D will cause excessive response and overshoot. A fast
PID loop tuning usually overshoots slightly to reach the set point more
quickly; however, some systems cannot accept overshoot, in which case
an 'over-damped' closed-loop system is required, which will require a P
setting significantly less than half that of the P setting causing
oscillation.

== RTAI

The Real Time Application Interface (RTAI) is used to provide the best
Real Time (RT) performance. The RTAI patched kernel lets you write
applications with strict timing constraints. RTAI gives you the ability
to have things like software step generation which require precise
timing.

=== ACPI

The Advanced Configuration and Power Interface (ACPI) has a lot of
different functions, most of which interfere with RT performance (for
example: power management, CPU power down, CPU frequency scaling, etc).
The LinuxCNC kernel (and probably all RTAI-patched kernels) has ACPI
disabled. ACPI also takes care of powering down the system after a
shutdown has been started, and that's why you might need to push the power
button to completely turn off your computer. The RTAI group has been 
improving this in recent releases, so your LinuxCNC system may shut off by 
itself after all.