How to send intermediate data(here duty cycle) sequentially from embedded function file to simulink block?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I m writing algorithm for Particle swarm optimization to find Maximum power point tracking in photo voltaics, in embedded matlab function. From algorithm i have to send three duty cycles sequentially to simulink converter block before the algorithn finishes.I use the following code.
function DC = PSO(V,I)
.................
DC=0;D=zeros(1,3);P=zeros(1,3);
..................
**********************************%%MAIN LOOP*************************
iter = 0 ; % Iterations’counter
while ( iter < bird_step )
iter = iter + 1;
for i = 1:3,
P(i)=V*I; %calculate power after a dutycycl sent
D(i)=current_dutycycl(i);
DC=D(i); %to send dutycycl
pause(0.1)
end
current_power=P;
for i = 1 : 3
if current_power(i) > local_best_power(i)
local_best_power(i) = current_power(i) ;
local_best_dutycycl(:,i) = current_dutycycl(:,i) ;
end
end
[current_global_best_power,g] = max(local_best_power);
if current_global_best_power > global_best_power
global_best_power = current_global_best_power;
for i=1:3
globl_best_dutycycl(:,i) = local_best_dutycycl(:,g);
end
end
velocity = w *velocity + c1*(R1.*(local_best_dutycycl-current_dutycycl)) + c2*(R2.*(globl_best_dutycycl-current_dutycycl));
current_dutycycl = current_dutycycl + velocity ;
end
[Peak_power,I] = max(current_power) % maximum power
current_dutycycl(:,I) % best solution
DC=current_dutycycl(:,I);% send dutycycl at each iteration
end
How to send duty cycle from for loop ... is ter any other way
2 commentaires
Azzi Abdelmalek
le 5 Mar 2014
dalia elkashef commented
hello evry 1. im doing a simulation based on pso method to get a output from mppt which source by a solar. i am also in in beginer stage so i need your help to indicate how can i write code ? and how add it at simulink ? plsssssssssssssssssssss help me V Vaishnavi Kumar on
John D'Errico
le 18 Mar 2014
dalia elkashef - Please don't add comments, then flag them to get attention. If you have a valid question, then ASK IT, separately as a question!
As it is, your question shows you are not making an effort to learn, just asking for someone else to do your work for you. The only way to learn is by trying, by making an effort.
Réponses (3)
Azzi Abdelmalek
le 23 Oct 2012
The output is sent after the loop is finished. Use a for iterator subsystem .block
2 commentaires
Abdullrahman Ali
le 20 Mar 2014
Dear V Vaishnavi Kumar
I'm working with Genetic Algorithm (GA) and I'm facing the same problem. Did you solve the problem? Could you please tell me how?
1 commentaire
mohammed abdullrahman
le 9 Oct 2014
i am working with DE (differential evolution)and have the same probleme any one help me please?
Rahul Sugathan
le 18 Avr 2015
Modifié(e) : Walter Roberson
le 16 Mai 2020
i dont think u can send the duty cycle from a for loop. U must use a persistent and ifisempty combination.
Here's how u send 3 different values,
function DC=fcn %#codegen
persistent u
if isempty(u)
u = 0;
end
u=u+1;
if(u==1)
DC=15;
pause(0.1);
elseif(u==2)
DC=29;
pause(0.1)
else
DC=50;
pause(0.1);
end
1 commentaire
Image Analyst
le 18 Avr 2015
Rahul's "Flag" moved here:
direct answer on how to send 3 different duty cycles
Voir également
Catégories
En savoir plus sur Particle Swarm dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!