How to send intermediate data(here duty cycle) sequentially from embedded function file to simulink block?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
Azzi Abdelmalek
2014년 3월 5일
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
2014년 3월 18일
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.
답변 (3개)
Azzi Abdelmalek
2012년 10월 23일
The output is sent after the loop is finished. Use a for iterator subsystem .block
댓글 수: 2
Abdullrahman Ali
2014년 3월 20일
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
mohammed abdullrahman
2014년 10월 9일
i am working with DE (differential evolution)and have the same probleme any one help me please?
Rahul Sugathan
2015년 4월 18일
편집: Walter Roberson
2020년 5월 16일
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
Image Analyst
2015년 4월 18일
Rahul's "Flag" moved here:
direct answer on how to send 3 different duty cycles
참고 항목
카테고리
Help Center 및 File Exchange에서 Particle Swarm에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!