Park's transformation

조회 수: 6 (최근 30일)
ANUBHAV SINHA
ANUBHAV SINHA 2011년 10월 9일
답변: Hisham samad 2016년 11월 5일
How to implement a dq to abc Park's transformation by writing a code in mfile (and not using Simulink). Anyone who cud share such file? I tried using symbolic math but am unable to find abc-frame answers in polar form.
Thanks for ur time.

답변 (2개)

satheesh kumar Telagamsetti
satheesh kumar Telagamsetti 2012년 4월 12일
clear,clc,clf;
Vm=30000*sqrt(2);
w=2*pi*50;
T=1/50;
dt=1e-4;
k=0;
for t=0:dt:50*T
k=k+1;
tt(k)=t;
Va(k)=Vm*sin(w*t);
Vb(k)=Vm*sin(w*t-(2*pi/3));
Vc(k)=Vm*sin(w*t+(2*pi/3));
end;
%grid on;
%plot(Va);
%hold on;
%plot(Vb);
%hold on;
%plot(Vc);
k=0;
for t=(2*pi/(3*w)):dt:50*T
k=k+1;
Vd(k)=(2/3)*(Va(k)*sin(w*t)+Vb(k)*sin(w*t-2*pi/3)+Vc(k)*sin(w*t+(2*pi/3)));
Vq(k)=(2/3)*(Va(k)*cos(w*t)+Vb(k)*cos(w*t-2*pi/3)+Vc(k)*cos(w*t+2*pi/3));
Vo(k)=(1/3)*(Va(k)+Vb(k)+Vc(k));
end
subplot(3,1,1);
grid on;
plot(Vd);
subplot(3,1,2);
hold on;
plot(Vq);
subplot(3,1,3);
hold on;
plot(Vo);
  댓글 수: 1
Muhammad saleem
Muhammad saleem 2014년 2월 13일
But in the result we do not get any vector diagram in dq-plane. Do you know how we can generate vector diagram which traces the d q variables after anytime t.

댓글을 달려면 로그인하십시오.


Hisham samad
Hisham samad 2016년 11월 5일
How to create the park transformation block in simulink ....Plz tell me...

카테고리

Help CenterFile Exchange에서 Simscape Electrical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by