MATLAB画相图 compass函数

电路实验需要画三相电源相图
MATLAB画相图 compass函数_第1张图片
MATLAB画相图 compass函数_第2张图片
MATLAB画相图 compass函数_第3张图片

MATLAB 代码

Uun=220;//相量
Uwn=220*exp(1j*-120/180*pi);
Uvn=220*exp(1j*120/180*pi);
V=[Uun,Uwn,Uvn];
figure(1);
compass(V);
hold on;
Iu=Uun*(j*2*pi*50*4*10^(-6))*300;
Iv=80/Uvn*300;
Iw=80/Uwn*300;
In=Iu+Iv+Iw;
W=[Iu,Iv,Iw,In];
compass(W,'r');
title('A相负载为4μF电容相量图');
hold off;


figure(2);
compass(V);
hold off;

figure(3)
Iv=80/Uvn*300;
Iw=80/Uwn*300;
Iu=80/Uun*300;
In=Iu+Iv+Iw;
compass(V);
hold on;
W=[Iu,Iv,Iw,In];
compass(W,'r');
hold off;

相变换函数

ANG=angle(U01)*180/3.14159

你可能感兴趣的:(小知识点)