blob: eaec31ef373ce91a06971e66f71970071fd41d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
w1=8//lbf
s=3//ft
m=35//lbf
g=32.2//ft/s
//CALCULATIONS
U=sqrt(g*s)//ft/s
T=w1+w1//lbf
P=m-w1//lbf
Umax=sqrt(P*g*s/w1)//ft/s
//RESULTS
printf('the centrifugal force=% f ft/s',Umax)
|