You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since computer control is a type of sampled control, it can only calculate the control quantity based on the deviation at the sampling moment and cannot continuously output the control quantity like analog control for continuous control. Due to this feature, the integral and differential terms in the PID controller cannot be used directly and must be discretized. The method of discretization is as follows: let $T$ be the sampling period, and $k$ be the sampling sequence number, then the discrete sampling time $kT$ corresponds to continuous time $t$. By using numerical integration to approximate the integral with the rectangular method and using first-order backward difference to approximate the differential, the following approximations can be made:
$$
t \approx kT \quad (k = 0, 1, 2, \dots)
$$
$$
\int{e(t) dt} \approx T \sum_{j = 0}^{k} e(jT) = T \sum_{j = 0}^{k} e_{j}
$$
Ideally, after the user specifies the $I_{q}$ value, the FSA will output a maximum torque of $\tau = K_{t} I_{q}$, where $K_{t}$ is the current-torque coefficient, determined at the factory.
Tips:
The actuator can only output a torque of $\tau = K_{t} I_{q}$ when it is in a stalled condition.