summaryrefslogtreecommitdiff
path: root/2384/CH9/EX9.11/ex9_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '2384/CH9/EX9.11/ex9_11.sce')
-rwxr-xr-x2384/CH9/EX9.11/ex9_11.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2384/CH9/EX9.11/ex9_11.sce b/2384/CH9/EX9.11/ex9_11.sce
new file mode 100755
index 000000000..3a227d18d
--- /dev/null
+++ b/2384/CH9/EX9.11/ex9_11.sce
@@ -0,0 +1,20 @@
+// Exa 9.11
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+Io = 10;// in A
+phi_o= acosd(0.25);// in °
+V1 = 400;// in V
+f = 50;// in Hz
+N1 =500;
+Im = Io*sind(phi_o);// in A
+disp(Im,"The magnetizing component of no load current in A is");
+Pi = V1*Io*cosd(phi_o);// in W
+disp(Pi,"The iron loss in W is");
+E1 = V1;// in V
+//E1 v= 4.44*f*phi_m*N1;
+phi_m = E1/(4.44*f*N1);// in Wb
+phi_m=phi_m*10^3;// in mWb
+disp(phi_m,"The maximum value of flux in mWb is");