summaryrefslogtreecommitdiff
path: root/3673/CH9/EX9.12
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH9/EX9.12')
-rw-r--r--3673/CH9/EX9.12/Ex9_12.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3673/CH9/EX9.12/Ex9_12.sce b/3673/CH9/EX9.12/Ex9_12.sce
new file mode 100644
index 000000000..9a29fa9eb
--- /dev/null
+++ b/3673/CH9/EX9.12/Ex9_12.sce
@@ -0,0 +1,15 @@
+//Example 9_12 page no:364
+clc;
+Zreal=4;
+Zimg=3;
+Vl=400;
+Il=12;
+Zph=sqrt(Zreal^2+Zimg^2);
+PF=Zreal/Zph;
+sinpi=0.6;
+Active_power=sqrt(3)*Vl*Il*PF;
+Reactive_power=sqrt(3)*Vl*Il*sinpi;
+Apparent_power=sqrt(3)*Vl*Il;
+disp(Active_power,"the active power is (in W)");
+disp(Reactive_power,"the reactive power is (in VAR)");
+disp(Apparent_power,"the apparent power is (in VA)");