summaryrefslogtreecommitdiff
path: root/278/CH10/EX10.7/ex_10_6.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /278/CH10/EX10.7/ex_10_6.sce
downloadScilab-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.7/ex_10_6.sce')
-rwxr-xr-x278/CH10/EX10.7/ex_10_6.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/278/CH10/EX10.7/ex_10_6.sce b/278/CH10/EX10.7/ex_10_6.sce
new file mode 100755
index 000000000..7002a0016
--- /dev/null
+++ b/278/CH10/EX10.7/ex_10_6.sce
@@ -0,0 +1,21 @@
+//determine the length of weld
+clc
+//solution
+//given
+//refer fig 10.16
+b=120//mm//width
+t=15//mm//thickness
+l1=b-12.5//mm
+s=15//mm
+ft1=70//N/mm^2//tensile stress
+ft2=56//N/mm^2//shear stress
+//let l2 be length of weld
+//P=A*ft
+P=120*15*ft1//N
+ft11=ft1/1.5//N/mm^2
+ft22=ft2/2.7//N/mm^2
+P1=0.707*s*l1*ft11//N
+//P2=0.707*s*l2*ft22=440*l2//N
+//P=P1+P2//N
+l2=(P-P1)/440//mm
+printf("the value of length of static weld is,%f mm\n",l2+12.5)