Simulation of a PID controlled system for a reference step input.
이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
step_pid
Simulation of a PID controlled system for a reference step input. Input arguments are process dynamics and PID parameters. Output parameters are step response data and state trajectories.
This function is an extension of the conventional step function designed to simulate closed loop systems. Process dynamics defined using function handle, state space model and transfer function are accepted. The controlled variable must be the first state.
Syntax
[y,x] = step_pid(sys,t,Kp,Ki,Kd,N,R)
[y,x] = step_pid(sys,t,Kp,Ki,Kd,N,R,S)
Input Arguments:
sys - Function handle, state space of transfer function.
t - time vector
Kp, Ki, Kd - Controller gains
N - Derivative filter coefficient
R - Step amplitude
S - Number of state variables (Only for sys=function handle)
Output Arguments:
y - Step response data
x - State trajectories
인용 양식
André de Souza Mendes (2026). step_pid (https://github.com/andresmendes/step_pid/releases/tag/1.0.3), GitHub. 검색 날짜: .
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.0.3 | See release notes for this release on GitHub: https://github.com/andresmendes/step_pid/releases/tag/1.0.3 |
||
| 1.0.2 | See release notes for this release on GitHub: https://github.com/andresmendes/step_pid/releases/tag/1.0.2 |
||
| 1.0.1 | See release notes for this release on GitHub: https://github.com/andresmendes/step_pid/releases/tag/1.0.1 |
||
| 1.0.0 |


