diff options
Diffstat (limited to '3775/CH3/EX3.15/Ex3_15.sce')
-rw-r--r-- | 3775/CH3/EX3.15/Ex3_15.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3775/CH3/EX3.15/Ex3_15.sce b/3775/CH3/EX3.15/Ex3_15.sce new file mode 100644 index 000000000..67dfdc114 --- /dev/null +++ b/3775/CH3/EX3.15/Ex3_15.sce @@ -0,0 +1,17 @@ +//Ex 3.15 page 127 + +clc; +clear; +close; + +n=3;// no. of phase +R=50;// ohm +Vs=400;// V +f=50;// Hz +alpha = 45;// degree + +Vm=Vs*sqrt(2);// V +Vo=3*Vm/2/%pi*(1+cos(alpha*%pi/180));// V +Io=Vo/R;// A +printf('\n Average load voltage = %.2f V',Vo) +printf('\n Average load current = %.2f A',Io) |