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!