blob: ccc693c5b622d6a0c5d63b63508e0c9d5f117920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 );
|