summaryrefslogtreecommitdiff
path: root/1092/CH4/EX4.22/Example4_22.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH4/EX4.22/Example4_22.sce')
-rwxr-xr-x1092/CH4/EX4.22/Example4_22.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/1092/CH4/EX4.22/Example4_22.sce b/1092/CH4/EX4.22/Example4_22.sce
new file mode 100755
index 000000000..ccc693c5b
--- /dev/null
+++ b/1092/CH4/EX4.22/Example4_22.sce
@@ -0,0 +1,21 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 4: DC Dynamo Torque Relations-DC Motors
+// Example 4-22
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+P = 50 ; // Power rating of the servo-motor in W
+S = 3000 ; // Full-load speed of the servo-motor in rpm
+
+// Calculation
+T_lbft = ( 7.04 * P ) / S ; // Output torque in lb-ft
+T_ounceinch = T_lbft * 192 ; // Output torque in ounce-inches
+
+// Display the result
+disp(" Example 4-22 Solution : ");
+printf(" \n T = %.1f oz.in ", T_ounceinch );