Control of LLC Converter
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
I am currently trying to develop a control model for an LLC converter.
This is a topology in power electronics that relies heavily on the resonant behavior of an LC tank.
Please see the image attached for a simplified version
The output of the system is the amplitude of Vout. The input to the system is:
- the amplitude of Vin,
- the frequency of Vin.
Both parameters can be changed individually. The controller should later control the frequency of Vin to maintain Vout, while changes in amplitude of Vin are considered external disturbances.
My problem is how to model the frequency behavior in MATLAB? I have calculated the bode plot but how can I continue with the controller design?
R = 10;
L = 10e-6;
C = 10e-6;
G = tf([L*L*R*C,L*R*R*C,0,0],[L*L*R*C,L*L+L*R*R*C,2*R*L,R*R])
bode(G)
Thank you very much for your support!
1 comentario
youji zhang
el 4 de Mzo. de 2022
i'm focusing on the same problem recently, this might be helpful form matlab website:
Estimating Transfer Function Models for a Boost Converter
Estimating Transfer Function Models for a Boost Converter - MATLAB & Simulink Example - MathWorks 中国
here is the .m function they present:
mdl = 'iddemo_boost_converter';%llc mdl name
open_system(mdl);
ios = [...
linio([mdl,'/DutyCycle'],1,'input'); ...
linio([mdl,'/PS-Simulink Converter'],1,'output')];
%change DutyCycle to your actual control input like frequency (its module name)
%PS-Simulink Converter,changing to the name of a module that actual measure output %voltage
%the frequency is ranged 200 to 20k rad/s
f = logspace(log10(200),log10(20000),10);
% perturb the frequency by same value
in = frest.Sinestream('Frequency',f,'Amplitude',0.03);
getSimulationTime(in)/0.02
%compute discrete points on the frequency response
[sysData,simlog] = frestimate(mdl,ios,in);
bopt = bodeoptions;
bopt.Grid = 'on';
bopt.PhaseMatching = 'on';
figure, bode(sysData,'*r',bopt)
Respuestas (2)
Arkadiy Turevskiy
el 21 de Ag. de 2018
What is G - is it transfer function from Fs(frequency) to Vout? Probably it is transfer function from Vin to Vout right?
If you know the transfer function Fs to Vout, then you can design your controller using Control System Designer or PID Tuner in Control System Toolbox.
But in general, as I understand, you cannot determine that transfer function and you have to measure it - see t his application note from TI with proposed approach.
You also might want to consider simulating the system in Simscape Power Systems and designing your controller in simulation, as shown here .
0 comentarios
Martin Wattenberg
el 22 de Ag. de 2018
1 comentario
Arkadiy Turevskiy
el 22 de Ag. de 2018
If it is white box, does it mean you can analytically derive a transfer function from Fs to Vout? If you can, then the problem becomes straightforward.
Ver también
Categorías
Más información sobre Linearization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!