summaryrefslogtreecommitdiff
path: root/2744/CH2/EX2.7/Ex2_7.sce
blob: 9579b162029cedb44ba8cb3dc2cd073ac42693d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clear;
clc;
a = 2;//inches
l = 6;//inches
E = 13000;//tons/In^2
m = 1/0.3;
P = 20;//tons
p_1 = P/a^2;//tons/in^2
p_2 = p_1/(2*(m-1));//tons/in^2
e_1 = (5-0.6*p_2)/E;//tons/in^2
del_l = e_1*l;//inches
printf('The contraction in the length del_l = %.5f inches',del_l);