Answered
PID controller, difference when graphing step function with PID control block in matlab and simulink
Hi @hoang Both responses look similar if you implement them correctly as shown. s = tf('s'); Gp = 1.883e5/(s^2 + 4466*s + ...

25 days ago | 1

| accepted

Answered
Why step respose don't work for first input of a MIMO? And how to use correctly feedback function for pole placement?
Hi @Andrei Rotaru You defined the system with 3 outputs; thus you need to feedback 3 outputs as well, not 1 output. %% Model p...

27 days ago | 0

| accepted

Answered
Can't stabilize system with PID
Hi @Andrei Rotaru Here is the alternative control solution for finding the gains using LQR approach. %% Parameters l = 0.08...

1 month ago | 0

Answered
Facing problem in printing real pole of transfer function of a system(Control System)
Hi @Arya The following is what you wish to "print" out in the title in Integer format. However, please note that the title it...

1 month ago | 0

Answered
150Hz Sine wave in MATLAB simulink
Hi @Manuprabha Ravikumar In short, your sinusoidal signal is undersampled. There are only 5 samples in one cycle. ts = 1/600 ...

1 month ago | 1

| accepted

Answered
Integrator does not accept input
Hi @Andrei Rotaru The error is caused the mismatched matrix dimension. Do the following as shown in the graphics below should f...

1 month ago | 0

| accepted

Answered
Not Enough Input Arguments
Hi @Sue Xin, There is no error in my simulation below: [V, F] = ode45(@etOH_prod, [0 10], ones(4, 1)); plot(V, F), grid on, ...

1 month ago | 0

Answered
Simulink - How to create a conditional "if" block
Hi @Ahmad Al-Issa Firstly, could you determine the rate of change of speed (referred to as "acceleration" in physics)? This inf...

1 month ago | 0

Answered
Design service for LQR controller for unknown system based on available Multiple Inputs and Multiple Output data
Hi @Hao Do you have some free time to spare for some Prerequisite Courses so that you are ready to advance to the next level of...

1 month ago | 0

Answered
Solving a system of ODEs whose coefficients are piecewise functions
Hi @Dehua Kang The red curve in your image is and the green curve is . Below is another demo, with the data from the piecewise...

1 month ago | 0

Answered
Multiple PID tuning in order to control all four states in the inverted pendulum model
Hi @Claudio Muzi Your new question in this comment is related to optimal control. I'm not sure if this topic is covered in your...

1 month ago | 0

Answered
Multiple PID tuning in order to control all four states in the inverted pendulum model
Hi @Claudio Muzi Given that the initial angle is less than from the equilibrium inverted position, the sine of the angle () ca...

1 month ago | 0

Answered
Find Transfer Function from Laplace transformation
The differential equation has a dependent variable with nonlinearity u(t)³. Since nonlinear systems cannot be analyzed by Laplac...

1 month ago | 1

Answered
Cannot solve algebraic loop involving 'Mo_phong_xe/Equation1_ddgama1/MATLAB Function5' because it consists of blocks that cannot be assigned algebraic variables, such as block
Hi @Viet Dung It looks like the root cause of the issue have been identified. Let me walk through the details: The second-orde...

1 month ago | 0

Answered
If & elseif to determine temperature essentially
Hi @Zachary The following code allows you to extract both the numeric value and the character representation of the temperature...

1 month ago | 0

Answered
Ode45 Quarter car model spring variation
Hi @Federico Fortini It seems like you're looking to plot the acceleration of the first spring-mass system. If that's the case,...

1 month ago | 0

Answered
How to Solve nonlinear equations in simulink
Code for the MATLAB Function block: function dx = fcn(x) ks = 29114; kt = 233350; cs = 925.8; mw = 56.9...

1 month ago | 1

| accepted

Answered
Inverse model for feedforward control
Hi @Martin In my previous Answer, I used to Transfer Function (frequency version) to describe the process plant. I have revisit...

1 month ago | 0

| accepted

Answered
Inverse model for feedforward control
Hi @Martin Thanks for your feedback in the comment. The provided first-order ODE: , suggests that the "pure" feedforward cont...

1 month ago | 0

Answered
how can I get the transfer function of this equation using Matlab: dy/dx + K*sqrt(y)-C =0
Hi @Reuel The square root is a nonlinear term in the system, making the Coupled Tank System nonlinear. Consequently, the transf...

2 months ago | 0

| accepted

Answered
Inverse model for feedforward control
Hi @Martin As the target trajectory contains frequency components, a factor of 600, rather than 6, must be employed in this sec...

2 months ago | 0

Answered
Simulink model doesn't oscillate
Hi @Andrei Rotaru According to the principle of Occam's Razor, the most likely explanation for the lack of oscillation in the a...

2 months ago | 1

| accepted

Answered
Cannot solve algebraic loop involving
% Derivative of state '1' in block 'NAM_Mo_phong_xe/Equation1_ddgama1/Integrator' at time % 0.0030900000000000003 is not finit...

2 months ago | 0

Answered
Edit poles and zeros in root locus design editor or bode editor
Hi @Nandhini I prefer mathematical model-based design by formulas that satisfies certain stability properties and achieves spec...

2 months ago | 0

Answered
Inverse model for feedforward control
Hi @Martin Transfer function: Math model in continuous-time: This linear 1st-order ODE is 100% solvable and the ideal fee...

2 months ago | 1

Answered
One function is greater than other
Hi @Fatima Majeed The search below covers this range . z = linspace(0, exp(1), 3001); fun = @(z) z - 8.02*log(z) - (3.359/2...

2 months ago | 0

Answered
Attempt to plot an piecewise function
S = @(x) ( (x <= -2) ) .* 0 + ... ( (x > -2) & (x <= -1) ) .* (1/4 * (2 + x).^3) + ... ( (x > -1) & (x <= 0...

2 months ago | 0

| accepted

Answered
How to solve a system of nonlinear differential equation that follows some pattern
Hi @MADHAN The looping approach is given as follows: %% for-loop approach function dx = ode1(t, x, n) dx = zeros(n,...

2 months ago | 0

Answered
Fuzzy control problem: input 2 expects a value in range [-50 50], but has a value of 1035.94
Hi Rafi, Based on your Simulink model, Input 2 refers to the time derivative of the error signal. In the fuzzy system, you ha...

2 months ago | 0

Answered
Plotting Phase Portrait of Duffing Equation
Hi @Athanasios Paraskevopoulos This method utilizes the 'arrow()' function, which was created by Professor @Erik Johnson. You c...

2 months ago | 3

| accepted

Load more