Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please optimise the parameter P with respect to the performance criterion IAE using the steepest descent minimisation process in this Matlab script. clear all close

Please optimise the parameter P with respect to the performance criterion IAE using the steepest descent minimisation process in this Matlab script.

clear all close all clc %setup the given TF: num=[22.5]; den=[4 3.6 36]; sys=tf(num,den);

%sampling time: Ts = 1.0881; % min

% add kp parameter to P controller: Kp = 100; Ki = 100; Kd = 100; C = pid(Kp,Ki,Kd); % close loop with feedback: sys_cl = feedback(C*sys,1);

%Zero hold to discretize the signal: Ghp = c2d(sys_cl,Ts,'zoh')

%step response plot of the proportional controller: step(Ghp) grid

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL Instant Reference

Authors: Gruber, Martin Gruber

2nd Edition

0782125395, 9780782125399

More Books

Students also viewed these Databases questions