diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /278/CH10/EX10.14 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '278/CH10/EX10.14')
-rwxr-xr-x | 278/CH10/EX10.14/ex_10_13.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/278/CH10/EX10.14/ex_10_13.sce b/278/CH10/EX10.14/ex_10_13.sce new file mode 100755 index 000000000..50c4c0a16 --- /dev/null +++ b/278/CH10/EX10.14/ex_10_13.sce @@ -0,0 +1,28 @@ +////find size of weld
+clc
+//solution
+//given
+//ref fig 10.28
+P=15000//N
+T=80//N/mm^2
+b=80//mm
+l=50//mm
+e=125//mm
+//let s be size of weld
+//A=2*t*l//70.7*s//mm^2
+//T1=P/A//N/mm^2//direct stress
+//T1=212/s
+//J=t*l*(3*b^2+l^2)/6//mm^4
+//J=127850*s//mm^4
+ab=40//mm
+bg=25//mm=r1
+r2=(sqrt(ab^2+bg^2))//mm
+printf("the value of r2 is,%f mm\n",r2)
+//T2=P*e*r2/J
+//T2=689.3/s//N/mm^2
+//cos(q)=r1/r2=25/47=0.532
+a=0.532
+//T=sqrt(T1^+T2^2+2*T1*T2*a)
+//80=822/s
+s=822/80//mm
+printf("the sieze of weld is,%f mm",s)
\ No newline at end of file |