Forum Discussion
Altera_Forum
Honored Contributor
17 years agoSimply, when adding numbers without providing extra result bits, the result may overflow to opposite sign, e. g. in case of an integrator
integ <= integ + x; In most real control applications, overflow results in fatal failure, e. g. with said PID controller. Saturation arithmetic prevents from this situation. integ <= SUM(integ,x);