diff options
author | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
---|---|---|
committer | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
commit | 8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch) | |
tree | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/2777/CH7/EX7.11 | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-master.tar.gz Xcos_block_examples-master.tar.bz2 Xcos_block_examples-master.zip |
Diffstat (limited to 'Working_Examples/2777/CH7/EX7.11')
-rwxr-xr-x | Working_Examples/2777/CH7/EX7.11/Ex7_11.sce | 29 |
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)
|