summaryrefslogtreecommitdiff
path: root/431/CH4/EX4.10/EX4_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '431/CH4/EX4.10/EX4_10.sce')
-rwxr-xr-x431/CH4/EX4.10/EX4_10.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/431/CH4/EX4.10/EX4_10.sce b/431/CH4/EX4.10/EX4_10.sce
new file mode 100755
index 000000000..d04e50933
--- /dev/null
+++ b/431/CH4/EX4.10/EX4_10.sce
@@ -0,0 +1,14 @@
+//Calculating the frequency of the rotor current
+//Chapter 4
+//Example 4.10
+//page 299
+clear;
+clc;
+disp("Example 4.10")
+P=12;.......................//pole
+f=50;.......................//frequency of induction motor in hertz
+Nr=485;........................//induction motor speed in rpm
+Ns=(120*f)/P;
+S=(Ns-Nr)/Nr;
+fr=S*f;
+printf("frequency of rotor current=%fHz",fr) \ No newline at end of file