diff options
Diffstat (limited to '3745/CH1/EX1.59/Ex1_59.sce')
-rw-r--r-- | 3745/CH1/EX1.59/Ex1_59.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3745/CH1/EX1.59/Ex1_59.sce b/3745/CH1/EX1.59/Ex1_59.sce new file mode 100644 index 000000000..f7786bd9f --- /dev/null +++ b/3745/CH1/EX1.59/Ex1_59.sce @@ -0,0 +1,18 @@ +// Ex 59 Page 402 + +clc;clear;close; +// Given +u=45;//degree +m=3;//no of phases + +//Id=sqrt(2)*Vs*X*(1-cosd(u))*sin(%pi/m) +IdBYVs_dash=m/2/%pi*(1-cosd(u))*sin(%pi/m)*sqrt(2);//load current/Vs +//where IdBYVs_dash = m/%pi*IdX/2 +EdoBYVs=sqrt(2)*m/%pi*sin(%pi/m);//dc output voltage/Vs with no overlap +EduBYVs=EdoBYVs-IdBYVs_dash;//dc output voltage/Vs with overlap +//part (a) +Reg1=(EdoBYVs-EduBYVs)/EdoBYVs*100;//% (regulation) +printf("part(a) Regulation at no load voltage = %.f percent",Reg1) +//part (b) +Reg2=(EdoBYVs-EduBYVs)/EduBYVs*100;//% (regulation) +printf("\n part(b) Regulation at full load voltage = %.f percent",Reg2) |