回答済み
When best to use 1 and 2 DOF PID
The first opening paragraphs of <https://www.mathworks.com/help/control/ref/pid2.html this doc page> might help. <https://www.m...

約9年 前 | 0

回答済み
PID block and error with it
Why did you place the pulse generator block in the model? If you do not really need it, delete it. You are getting the error bec...

約9年 前 | 0

回答済み
About PID program block issue of simulink
PID Controller block supports two forms - parallel and ideal. Ideal form is very similar to the standard form you want. <</ma...

約9年 前 | 0

回答済み
Step func at time different then t = 0
The question is not clear. Does a. Step happens at 0 secs and you want to show the response at 5 secs? or b. Step happens at ...

約9年 前 | 0

回答済み
how to measure PID parameters from PID tuning of SISOtool
Export the compensator you designed, C, to MATLAB workspace. Then in MATLAB type C=pid(C) This will convert the compen...

約9年 前 | 3

| 採用済み

回答済み
Tuning PID controller non-linear equation
I am able to get a much better response than you have in the attached model. When you launch PID Tuner, just increase the speed ...

約9年 前 | 0

回答済み
how to get bode plot and transfer function from my simulink block?
See <https://www.mathworks.com/matlabcentral/answers/314286-how-to-get-bode-plot-and-transfer-function-from-my-simulink-block he...

約9年 前 | 0

| 採用済み

回答済み
My system consist of set of equations. How to implement PID controller for my system ?
In a simple case of a mass spring damper mx''+cx'+kx=F convert system equations to a transfer function m=1;c=1;k=1; %re...

約9年 前 | 0

回答済み
how to get bode plot and transfer function from my simulink block?
Can you attach the actual model? My guess is that you are running into problems here because your model includes three-phase ma...

約9年 前 | 0

回答済み
pidTuner feature "DesignFocus" not available
Yes, this functionality was introduced in 15a, you can read the release notes <https://www.mathworks.com/help/control/release-no...

9年以上 前 | 1

| 採用済み

送信済み


PID Controller Design and Tuning with MATLAB and Simulink - Fourbar Linkage
This demo file shows new capabilities for PID Controller design and tuning in MATLAB and Simullink.

9年以上 前 | ダウンロード 5 件 |

4.33333 / 5
Thumbnail

回答済み
PID Tuning tools not supported for plant models of type 'tf'
Your code runs fine when I try it. Could it be you have some 3rd party toolbpx installed which also has pidtune function? Wha...

9年以上 前 | 0

回答済み
open_system('scdspeedctrl') How can I get the state space equations for this system?
Big numbers don't mean there is a problem. There is nothing really wrong with what you are doing. To linearize the plant model y...

9年以上 前 | 0

回答済み
how to design a MPC controller for a plant with discontinuities like a switching electric circuit in simulink?
If you already created a linear model when tuning a PID controller you can definitely reuse this model for designing an MPC cont...

9年以上 前 | 0

回答済み
PID Linearization Error - Does not Linearize, says contains 1 Algebraic Loop
I am guessing you trying to tune a PID Controller using "tune" button and getting an error. PID Tuner works by approximating a n...

9年以上 前 | 0

回答済み
sisotool loopshaping programmatic tuning from MATLAB command line
Control System Designer relies on commands from Robust Control Toolbox documented <http://www.mathworks.com/help/robust/loop-sha...

9年以上 前 | 0

回答済み
PID tuner doesn't launch
This sounds like a possible case of corrupt installation. Can you please contact technical support, they will be able to help if...

9年以上 前 | 0

回答済み
how to do curve fitting in bodeplot ?
You can use <http://www.mathworks.com/help/control/ug/reduce-model-order-using-model-reduction-app.html Model Reducer app> for t...

9年以上 前 | 0

回答済み
bode diagram of a tansfert function in Simulink
Take a look at this video, <http://www.mathworks.com/videos/transfer-functions-in-simulink-part-2-extracting-transfer-functions-...

9年以上 前 | 0

| 採用済み

回答済み
negative P gain for PID
Why are you worried that your controller would not be physically realizable? Negative Kp does not mean controller is unstable.

9年以上 前 | 1

| 採用済み

回答済み
fuzzy logic vs PID simulink
Perhaps <http://www.mathworks.com/help/fuzzy/examples/using-lookup-table-in-simulink-to-implement-fuzzy-pid-controller.html this...

9年以上 前 | 0

回答済み
Implementation of PID Pole Placement
So which one are you trying to do: tune a PID controller or design a controller using pole placement. Pole placement is done on ...

9年以上 前 | 0

回答済み
Matlab seem to forget the Control Systems Toolbox after restart
It seems like a problem with the path, not sure why it is happening. You can try explicitly adding the folder where Control Sys...

10年弱 前 | 0

| 採用済み

回答済み
PID controller, transfer function
Something like this would do:(note that this requires Control System Toolbox). P=pid(1) PI=pid(1,1) PD=pid(1,0,1) ...

10年弱 前 | 1

回答済み
Trying to stabilise a SISO feedback loop with a Cascade PID controller - but it's not working!
First off, looks like you have a typo in your Cq. As Pq already has integrating action, you don't really need an integrator in C...

10年弱 前 | 0

回答済み
sir i have made simulink model based on fuzzy logic controller when i run model scope show the output plot (step response )but sir how can i get exact value of time responce parameter . i am able to find these parameter of pid based model
Use " <http://www.mathworks.com/help/simulink/slref/toworkspace.html To Workspace> " block to save the response to MATLAB worksp...

10年弱 前 | 0

回答済み
In PID tuning using control system tuner why am i getting waveform like this? Why there is no S and T and why in speed response plot its showing zero in actual?
Control System Tuner works by linearizing a Simulink model and then trying to design a controller for the linearized model. You ...

10年弱 前 | 0

| 採用済み

回答済み
how to get the control signal from the pid controller?
sys=C/(1+C*TF); step(sys)

10年弱 前 | 0

| 採用済み

回答済み
I have DC motor I went apply PID Position Controller for 45 angle
http://ctms.engin.umich.edu/CTMS/index.php?example=MotorSpeed&section=SystemModeling

10年弱 前 | 0

回答済み
Blocks not recognized when linearizing in Simulink
The blocks that are not highlighted are not on linearization path. All it means is that graphically the input linearization poin...

10年弱 前 | 1

| 採用済み

さらに読み込む