blob: 615570c41d9479588918c4a6aaf685470c33bda9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clc
//
//Variable declaration
P=5 // Power(hp)
f=3600 // frequency(rpm)
Tmax=8500 // Maximum torque(psi)
//Calculation
P=P*(6600) // Converting power into lb/s
f=(3600)/(60.0) // Converting frequency into cycles per second
T=(P)/(2*(%pi)*f) // Torque exerted on the shaft
Ratio=T/Tmax // Here we are finding the value of J/c
c=(((10.30)*((10**-3))*(2))/(%pi))**(1/3.0)
d=2*c // Diameter of the shaft that should be used
//Result
printf("\n Case(a): Size of shaft = %1f lb.in' ,d)
|