blob: 7dc799d00274764ad5a008c35e03cbd1a2a81ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//percentage fluctuation in speed
//initialisation of variables
g=32.2//ft
p=275//rev/min
w=1/2*p//ft
d=15//hp
h=33000//ft
r=0.8//ft
h1=2240//ft
m=p*(2*%pi/60)//rad/s
//CALCULATIONS
W=(d*h)/w//ft lbf
E=r*W//ft lbf
I=(1*h1*(3)^2)/(g)//slug ft^2
Q=(E*100)/(I*(m)^2*2)//percent
//RESULTS
printf('the percentage fluctuation in speed=% f percent',Q)
|