summaryrefslogtreecommitdiff
path: root/431/CH4/EX4.4/EX4_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '431/CH4/EX4.4/EX4_4.sce')
-rwxr-xr-x431/CH4/EX4.4/EX4_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/431/CH4/EX4.4/EX4_4.sce b/431/CH4/EX4.4/EX4_4.sce
new file mode 100755
index 000000000..d36f53837
--- /dev/null
+++ b/431/CH4/EX4.4/EX4_4.sce
@@ -0,0 +1,17 @@
+//Calculate frequency of rotor induced emf
+//Chapter 4
+//Example 4.4
+//page 293
+clear;
+clc;
+disp("Example 4.4")
+Nr=1440; //rotor speed in rpm
+f=50; //frequency in hertz
+//calculating Ns for values of P=2,4,6,8 etc
+//by checking P=4
+P=4;
+Ns=(120*f)/P; //Synchronous speed
+S=(Ns-Nr)/Ns; //slip
+Fr=S*f; //rotor frequency
+printf("Rotor frequency=%dHz",Fr)
+