summaryrefslogtreecommitdiff
path: root/Working_Examples/2777/CH7/EX7.11
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/2777/CH7/EX7.11')
-rwxr-xr-xWorking_Examples/2777/CH7/EX7.11/Ex7_11.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH7/EX7.11/Ex7_11.sce b/Working_Examples/2777/CH7/EX7.11/Ex7_11.sce
new file mode 100755
index 0000000..f079848
--- /dev/null
+++ b/Working_Examples/2777/CH7/EX7.11/Ex7_11.sce
@@ -0,0 +1,29 @@
+
+// ELECTRICAL MACHINES
+// R.K.Srivastava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 7 : SPECIAL MOTORS AND INTRODUCTION TO GENERALIZED MACHINE THEORY
+
+// EXAMPLE : 7.11
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+s = 9; // Degree per step of the stepper motor
+N = 200; // Rotation Speed of the Stepper motor in RPM
+
+
+// CALCULATIONS
+
+spr = 360/s; // Steps Per Revolution (360 is full revolution)
+pps = (N*spr)/60; // Input pulse rate in pulses per second
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 7.11: SOLUTION :-");
+printf("\n (a) Input pulse rate is %.2f pulses per second \n",pps)