Azzera filtri
Azzera filtri

Design of sliding mode controller for single phase quasi impedance source inverter simulation model.

4 visualizzazioni (ultimi 30 giorni)
Design of sliding mode controller for single phase quasi impedance source inverter simulation model.
  1 Commento
Jon
Jon il 7 Lug 2022
MATLAB answers is a place to get help with implenting your solution in MATLAB code. Once you have attempted to solve your problem by writing some code, and have questions or problems with the coding then please post your specific question.

Accedi per commentare.

Risposte (1)

Sam Chak
Sam Chak il 7 Lug 2022
Since you didn't provide or explain the mathematical model, then the premise of SMC probably looks something like this:
options = odeset('RelTol', 1e-4, 'AbsTol', 1e-6);
[t, x] = ode45(@odefcn, [0 20], [1 0 0], options);
C = [1e10 -4.8e6 1e6/9];
plot(t, C*x', 'linewidth', 1.5)
grid on, xlabel('t'), ylabel('y'), title('Output of Quasi-Z-Source Inverter')
function dxdt = odefcn(t, x)
dxdt = zeros(3, 1);
A = [0 1 0; 0 0 1; -3e7 -4e5/3 -1e3/3];
B = [0; 0; 1];
u = - B'*A*x - sign(x(3) + x(2) + x(1)); % wikipedia says to use the signum function
dxdt = A*x + B*u;
end
  4 Commenti
Sam Chak
Sam Chak il 12 Lug 2022
@shiv santosh kumar singh, you should have provided the document/model from the beginning if you are truly looking for help. I'm not good at reading things that confused me, especially when simple things are made complicated for the readers. I assume that Eq. (9) is the 2nd-order model, so please provide the following:
C = ;
L = ;
iL = ;
idc = ;
iref = ;
vc1 = ;
vc2 = ;
vin = ;
vref = ;
The u is given in Eq. (6), which requires the so-called Sliding Surface S that can obtained from Eq. (8). Therefore, also provide the following:
alpha1 = ;
alpha2 = ;
Confusingly, the 4th-order model of the qZSI is given in Eq. (5).
shiv singh
shiv singh il 15 Giu 2023
hanks for your effort. But i want to simulate this model. I am attaching link here of paper. Kindly simulate for this model.
https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=7934299

Accedi per commentare.

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by