blob: 730b9bc91fa6af7a920a0031c1135deb76616445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//To find power transmitted
clc
//Given:
d=60,r=d/2 //mm
W=2000 //N
mu=0.03
N=1440 //rpm
//Solution:
//Calculating the angular speed of the shaft
omega=2*%pi*N/60 //rad/s
//Calculating the torque transmitted
T=mu*W*(r/1000) //N-m
//Calculating the power transmitted
P=T*omega //W
//Results:
printf("\n\n The power transmitted, P = %.1f W.\n\n",P)
|