Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to plot (V2_1,V2_2,V2_3 ) in one figure?
1 次查看(过去 30 天)
显示 更早的评论
cosphi = 0.8;
sinphi=0.6;
cosphi_1=1;
sinphi_1=0;
E2 = 250;
Req = 0.09375;
Xeq = 0.375;
for I2=1:40;
V2_1 = (E2-(I2*Req*cosphi - I2*Xeq*sinphi)); %Lagging
V2_2= (E2-(I2*Req*cosphi + I2*Xeq*sinphi)); %Leading
V2_3= (E2-(I2*Req*cosphi_1 - I2*Xeq*sinphi_1)); %unit
xlabel('I_{2} in ampere')
ylabel('load voltage v_{2} in volts')
legend('0.8 PF lagging','0.8 PF leading','1.0 PF');
end
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!