blob: 34b0401d78d1ca21e09dd454de676cd693a23d2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
g=2//in
t=0.002//in
l=7500//lbf
w=11000//lbf
p=1/4//in
//CALCULATIONS
W=1/2*l*t//in lbf
P=t*(w/l)//in
S=w/p//lbf/in^2
E=S*g/P//lbf/in^2
R=(1/2)*w*P//in lbf
//RESULTS
printf('The elongation at the elastic limit=% f in',P)
printf('The stress at the elastic limit=% f lbf/in^2',S)
printf('The modulus of elasticity E of the material is=% f lbf/in^2',E)
printf('The resilience and modulus of elasticity=% f in lbf',R)
|