blob: c2b601aec3ea86036d6fedb197ba0222af6c2e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Initilization of variabes
P=20000 //N //Weight of the shaft
D=0.30 //m //diameter of the shaft
R=0.15 //m //radius of the shaft
mu=0.12 // coefficient of friction
// Calculations
// Friction torque T is given by formulae,
T=(2/3)*P*R*mu //N-m
M=T //N-m
// Results
clc
printf('The frictional torque is %f N-m \n',M)
|