Finding Transfer Function from Step Response
古いコメントを表示
A bit of context:
I'm in a stundent project at my universtiy. We're desingning and building an Mechanical ventilator for Corona-Patients. I'm having some trouble with the control loop of the system.
The ouput of the control loop is controlling a proportional valve. The purpose of this is to reach the desired pressure (Setpoint) in less than 3 seconds. I'm using a PID control, yet it's not tuned correctly. That's why I decided to go to basics, and get the transfer function from a step response, to then simulate the different constants in MATLAB.
The following step response was achieved by opening the proportional valve fully, and waited till the Setpoint was achieved. There's a 1 bar relative pressure in the system. Any pressure above 25mbar flows out, through a PEEP valve. The proplem with the system is that we can't overshot, because we cannot get rid of this pressure as the patient is inhaling.
If someone could help me, calculate the transfer function of the following step response, I would be really gratefull.
Thanks in advance.

採用された回答
その他の回答 (1 件)
Ameer Hamza
2020 年 10 月 23 日
編集済み: Ameer Hamza
2020 年 10 月 23 日
0 投票
Another approach can be something like this. Consider the transfer function of the system is
and the transfer function of input step function is
The transfer function of output will be
which in time-domain become
Here you have y(t). You can use fmincon() to estimate a and b.
7 件のコメント
Max Mai Tobon
2020 年 10 月 23 日
Max Mai Tobon
2020 年 10 月 25 日
Ameer Hamza
2020 年 10 月 25 日
Something like this
t; % time values
y; % measured signal values
fun = @(p) 25*p(1)/p(2)*(1-p(1)*exp(-p(2)*t));
objFun = @(p) norm(fun(p)-y);
sol = fmincon(objFun, rand(2,1));
a = sol(1);
b = sol(2);
Max Mai Tobon
2020 年 10 月 28 日
Ameer Hamza
2020 年 10 月 29 日
Do you have the optimization toolbox installed? Can you show the output of
ver optim
Max Mai Tobon
2020 年 10 月 29 日
Ameer Hamza
2020 年 10 月 30 日
I am glad to be of help!
カテゴリ
ヘルプ センター および File Exchange で PID Controller Tuning についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
