diff options
Diffstat (limited to '3673/CH9/EX9.22/Ex9_22.sce')
-rw-r--r-- | 3673/CH9/EX9.22/Ex9_22.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3673/CH9/EX9.22/Ex9_22.sce b/3673/CH9/EX9.22/Ex9_22.sce new file mode 100644 index 000000000..5c6d15c1f --- /dev/null +++ b/3673/CH9/EX9.22/Ex9_22.sce @@ -0,0 +1,15 @@ +//Example 9_22 page no:391
+clc;
+//given data
+Wr=400;//power in watts
+Wy=-35;//power in watts
+//calculating total acitve power
+T_active_pow=Wr+Wy;
+disp(T_active_pow,"the total active power is (in watts)");
+//calculting the power factor
+phi=atand(sqrt(3)*((Wr-Wy)/(Wr+Wy)));
+phi=cosd(phi);
+disp(phi,"the power factor is");
+//calculating the reactive power
+rec_pow=sqrt(3)*(Wr-Wy);
+disp(rec_pow,"the reactive power is (in VAR)");
|