diff options
Diffstat (limited to '1049/CH10/EX10.4/ch10_4.sce')
-rwxr-xr-x | 1049/CH10/EX10.4/ch10_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1049/CH10/EX10.4/ch10_4.sce b/1049/CH10/EX10.4/ch10_4.sce new file mode 100755 index 000000000..4c8c00aee --- /dev/null +++ b/1049/CH10/EX10.4/ch10_4.sce @@ -0,0 +1,15 @@ +clear;
+clc;
+V_s=400;
+V_ph=V_s/2;
+a=160;
+r=cosd(180-a);
+m=3;
+V_or=r*(V_ph*(m/%pi)*sin(%pi/m)); printf("rms o/p voltage=%.3f V",V_or);
+R=2;
+X_L=1.5;
+th=atand(X_L/R);
+Z=sqrt(R^2+X_L^2);
+I_or=V_or/Z; printf("\nrms o/p current=%.2f A",I_or);
+printf("\nphase angle of o/p current=%.2f deg",-th)
+P=I_or^2*R; printf("\no/p power=%.2f W",P);
|