summaryrefslogtreecommitdiff
path: root/3784/CH5/EX5.1/Ex5_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3784/CH5/EX5.1/Ex5_1.sce')
-rw-r--r--3784/CH5/EX5.1/Ex5_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3784/CH5/EX5.1/Ex5_1.sce b/3784/CH5/EX5.1/Ex5_1.sce
new file mode 100644
index 000000000..939485dfc
--- /dev/null
+++ b/3784/CH5/EX5.1/Ex5_1.sce
@@ -0,0 +1,17 @@
+clc
+//Variable Initilisation
+Ns=1500 //Speed of Squirrel Cage Induction Motor in RPM
+N1=1460 //Speed of Squirrel Cage Induction Motor in RPM
+N2=1350 //Speed of Squirrel Cage Induction Motor in RPM
+
+// At 1460 rpm the speed slip is given by
+S1=(Ns-N1)/Ns //Slip
+I=(sqrt(1/3)*(2/3))/(sqrt(S1)*(1-S1))
+// At 1350 rpm the speed slip is given by
+S2=(Ns-N2)/Ns //Slip
+I1=(sqrt(1/3)*(2/3))/(sqrt(S2)*(1-S2))
+
+
+//Results
+printf('\n\n The motor maximum Current in terms of rated current at the above speed =%0.1f \n\n',I)
+printf('\n\n The motor maximum Current in terms of rated current at the above speed =%0.1f \n\n',I1)