blob: da97ba545b3f5d7c0143d6d85b57e03a45f4fc3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
clear
E=2*10^6//lbf/in^2
s=600//lbf/in^2
w=12//in
l=80//tonf
w1=4//ft
E1=30*10^6//lbf/in^2
h=2240//in
s2=10.9//in^2
F=9000//lbf/in^2
//CALCULATIONS
L=(F*w1*w/E1)//in
//RESULTS
printf('the column shortens by=% f in',L)
|