summaryrefslogtreecommitdiff
path: root/3802/CH10/EX10.5/Ex10_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3802/CH10/EX10.5/Ex10_5.sce')
-rw-r--r--3802/CH10/EX10.5/Ex10_5.sce32
1 files changed, 32 insertions, 0 deletions
diff --git a/3802/CH10/EX10.5/Ex10_5.sce b/3802/CH10/EX10.5/Ex10_5.sce
new file mode 100644
index 000000000..509b16d7f
--- /dev/null
+++ b/3802/CH10/EX10.5/Ex10_5.sce
@@ -0,0 +1,32 @@
+//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex10_5.sce
+
+clc;
+clear;
+f=50;
+N=285;
+Ns=300; //which is near the value of N as slip lies b/w 0.03 to 0.05
+
+printf("\n (a)")
+p=(120*f)/Ns;
+printf("\n Number of poles=%d \n",p)
+
+printf("\n (b)")
+s=(Ns-N)/Ns;
+s_percentage=s*100;
+printf("\n Slip at full load=%d percentage \n",s_percentage)
+
+printf("\n (c)")
+//slip is proportional to rotor resistance
+s=2*s_percentage;
+printf("\n Slip at full load if rotor resistance is doubled=%d percentage \n",s)
+
+printf("\n (d)")
+//copper loss=I^2*R; so copper loss doubles if rotor resistance doubles
+Pcu=280;
+Pcu_new=2*Pcu;
+printf("\n The new value of rotor copper loss=%d watt \n",Pcu_new)