Mobile Robots (EMOR) tutorials at WUT logo Mobile Robots (EMOR) tutorials at WUT

The trajectories should be generaded using proportional regulators with limited output. The example of such regulator in pseudo-code:

error_x = dest_x - measured_x
u_x = gain_P * error_x
if u_x > u_max then
    u_x = u_max
else if u_x < u_min then
    u_x = u_min
end

where: