summaryrefslogtreecommitdiff
path: root/2123/CH3/EX3.2/Exa_3_2.sce
blob: 5485f69e8455173391b8b2073a57a10555cf6461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//Example No. 3.2
clc;
clear;
close;
format('v',8);

//Given Data : 
n=0.1;//teeth ratio
ETAg=90/100;//efficiency
J0=0.4;//Kg-m^2
J1=10;//Kg-m^2
TL=50;//N-m
N=1400;//speed in rpm

//Solution : 
J=J0+n^2*J1;//Kg-m^2
T=n*TL/ETAg;//N-m
MotorSpeed=2*%pi*N/60;//rad/sec
Pdev=MotorSpeed*T;//Watt
disp(J,"Equivalent Inertia in Kg-m^2 : ");
disp(T,"Load Torque refered to motor side in N-m : ");
disp(Pdev,"Power developed by motor in watt : ");