diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3647/CH6/EX6.11 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3647/CH6/EX6.11')
-rw-r--r-- | 3647/CH6/EX6.11/ex6_11.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3647/CH6/EX6.11/ex6_11.sce b/3647/CH6/EX6.11/ex6_11.sce new file mode 100644 index 000000000..6627f3dfd --- /dev/null +++ b/3647/CH6/EX6.11/ex6_11.sce @@ -0,0 +1,27 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//initialisation of variables
+clear
+E1=30*10^6//lbf/in^2
+E2=15*10^6//lbf/in^2
+alf=6.4*10^-6//degF-1
+alf1=9.5*10^-6//degF-1
+t=170//deg
+t1=50//deg
+w=5//tonf
+ec=0.000248//lbf/in^2
+es=0.000124//lbf/in^2
+h=2240//in
+//CALCULATIONS
+e=(alf1-alf)*(t-t1)//in
+Ec=E2*ec//lbf/in^2
+Es=E1*es//lbf/in^2
+F=E1/E2//fc
+S=w*h/(2*1+1)//lbf/in^2
+S1=S*2//lbf/in^2
+R=-Es+S//lbf/in^2
+R1=Es+S1//lbf/in^2
+//RESULTS
+printf('The final stress in the steel and applied to the compound =% f lbf/in^2',R1)
|