blob: 38877aad0bb6fc08edd5ca9ffb3a697a459e4483 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
t=62.5*4*1//lbf
a=2/3*2//ft
m=62.5*4*(4/3)//lbf
f=500*2//lbf ft
T=((62.5*2*2)/2)*1/3*2//lbf
H=(62.5*2*1)//ft
//CALCULATIONS
H1=f/[H+T]*2/2.9///ft
//RESULTS
printf('the trap door width=% f ft',H1)
|