diff options
Diffstat (limited to '3802/CH10/EX10.1/Ex10_1.sce')
-rw-r--r-- | 3802/CH10/EX10.1/Ex10_1.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3802/CH10/EX10.1/Ex10_1.sce b/3802/CH10/EX10.1/Ex10_1.sce new file mode 100644 index 000000000..607f85489 --- /dev/null +++ b/3802/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,26 @@ +//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex10_1.sce
+
+clc;
+clear;
+f=50;
+p=4;
+
+printf("\n (a)")
+Ns=(120*f)/p;
+printf("\n Synchronous speed=%d r.p.m \n",Ns)
+
+printf("\n (b)")
+s=0.04;
+N=Ns-(s*Ns);
+printf("\n The rotor speed=%d r.p.m \n",N)
+
+printf("\n (c)")
+N=600;
+s=(Ns-N)/Ns;
+fs=s*f;
+printf("\n The rotor frequency=%d Hz",fs)
|