summaryrefslogtreecommitdiff
path: root/3647/CH6/EX6.14/ex6_14.sce
blob: 97be99d66a93d3f45cbac2816b8044c6b04a693e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
clear
w=450//lbf/in^2
m=3000//lbf/in^2
g=32.2//lbf/in^2
h=144//in
//CALCULATIONS
M=sqrt(g*m*h/w)//ft/f
//RESULTS
printf('the maximum rim speed of flywheel=% f ft/f',M)