Integrator doesn't work properly
이전 댓글 표시
I am working on a controller that calculates the maximum velocity that the actuator can remove from the system so the kinetic energy is zero when achieving the set point. Please see the attachment.

the MATLAB Function block is:
function direction = dircVel(Xd, Xa, Va)
Fmax = 1;
m = 1;
Vmax = sqrt(2 * Fmax * abs(Xd - Xa) / m) * sign(Xd - Xa);
direction = sign(Vmax - Va);
What I expect to see is that the output approaches the setpoint position asymptotically but it diverges to infinity!

the output of the MATLAB function seems OK:

but the output of the first integration is wrong:

red line being what I expected to see.
I would appreciate it if you could help me know what is wrong and how I can resolve it.
채택된 답변
추가 답변 (1개)
Benjamin Thompson
2022년 2월 24일
0 개 추천
The output of your first integrator is always positive. So the second integrator will keep increasing until its input become zero or negative.
카테고리
도움말 센터 및 File Exchange에서 Discontinuities에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


