sigmoid pid equation in matlab

8 views (last 30 days)
Shaz Shah
Shaz Shah on 26 May 2022
Edited: Mohd Ashraf on 30 Nov 2022
hai everyone , how do i write this sigmoid pid equation into matlab

Accepted Answer

Sam Chak
Sam Chak on 28 May 2022
Edited: Sam Chak on 29 May 2022
Hi Shah
I'm curious to to see how your designed Kp looks like. What is the pid equation?
Edit: Kp is a nonlinear proportional gain shaped by the sigmoid curve that is bounded by and .
% parameters
x = linspace(-6, 6, 1001);
Khigh = 5; % upper bound
Klow = 3; % lower bound
alpha = 1;
% construction of sigmoid
h = 1 + exp(-alpha*x);
g = Khigh - Klow;
f = g./h;
Kp = Klow + abs(f);
% plotting the nonlinear gain Kp
plot(x, Kp, 'linewidth', 1.5)
grid on
xlabel('error')
ylabel('Kp')
  5 Comments
Sam Chak
Sam Chak on 29 May 2022
Edited: Sam Chak on 29 May 2022
You did not comment about the suggested sigmoid in my previous post (edited to add an image of the plot). Anyhow, using the same parameters,
x = linspace(-6, 6, 1001);
Khigh = 5; % upper bound
Klow = 3; % lower bound
alpha = 1;
I have fixed your code
Kp = Klow - (abs(Khigh - Klow)./(1 + exp(-alpha*x)));
and plotted it
plot(x, Kp, 'linewidth', 1.5)
grid on
xlabel('error')
ylabel('Kp')
but I don't see any straight line. Sigmoid should look like an 'S'-shaped curve. Furthermore, the upper and lower bounds are definitely incorrect. You are advised to sketch the 'S'-curve with the upper and lower bounds. Only then, I can give a proper advice on getting the desired Sigmoid curve.
Edit #1: I have made a minor modification. I think that your sigmoidal equation should look like this:
Kp = Khigh - (abs(Khigh - Klow)./(1 + exp(-alpha*x)));
Perhaps you mean this one:
Edit #2: I guess you want to enter the 'AbsTol' as
1e-5
without the space between '1' and 'e'.
Query:
Is there a reason for you to select the Logistic function as a sigmoid curve? Better performance?
By the way, technically, this should work already
Kp = Khigh - (Khigh - Klow)./(1 + exp(-alpha*x));
where abs(X) is unnecessary.
Shaz Shah
Shaz Shah on 31 May 2022
Thank you for your response ,
now i need to compare between Simoid PID (advance controller) and PID by get better performance for sigmoid PID. i was did for PID last week and now progress for Sigmoid PID. But have some error that i need to solve.

Sign in to comment.

More Answers (1)

Mohd Ashraf
Mohd Ashraf on 30 Nov 2022
Edited: Mohd Ashraf on 30 Nov 2022
Hi Shah,
You may refer to this link:
https://drive.google.com/uc?export=download&id=1Ut-zX3cTKn3r_kepRDe7_A5WPlsW3qjs
for the detail of the sigmoid PID code.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!