Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Háskóli Íslands -1-

Verkfræðideild
Rafmagns- og tölvuverkfræðiskor

Raforkukerfi 1 – lausn dæmablað 2

Dæmi 2.10 í kennslubók :


Matlab skipanir:

wt=0:.02:2*pi;
pa = 25000*cos(wt).*cos(wt-36.87*pi/180);
pb = 25000*cos(wt-120*pi/180).*cos(wt-120*pi/180-36.87*pi/180);
pc = 25000*cos(wt-240*pi/180).*cos(wt-240*pi/180-36.87*pi/180);
p = pa+pb+pc;
plot(wt, pa, wt, pb, wt, pc, wt, p), grid
xlabel('Radian')
disp('(b)')
V = 2500/sqrt(2);
gama = acos(0.8);
Z = 250*(cos(gama)+j*sin(gama));
I = V/Z;
P = 3*V*abs(I)*0.8
---------------------------------------------------------------------
P = 3.0000e+004
I = 5.6569 - 4.2426i
V = 1.7678e+003

4
x 10
3

2.5

1.5

0.5

-0.5
0 1 2 3 4 5 6 7
Radian

You might also like