diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /278/CH10/EX10.9 | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '278/CH10/EX10.9')
-rwxr-xr-x | 278/CH10/EX10.9/ex_10_9.sce | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/278/CH10/EX10.9/ex_10_9.sce b/278/CH10/EX10.9/ex_10_9.sce index 1033792aa..9ccb3aea7 100755 --- a/278/CH10/EX10.9/ex_10_9.sce +++ b/278/CH10/EX10.9/ex_10_9.sce @@ -1,25 +1,25 @@ -//find size of weld
-clc
-//solution
-//given
-P=2000//N
-e=120//mm
-l=40//mm
-Tmax=25//N/mm^2
-//let s be size of weld and t be throat thickness
-//ref fig 10.24
-//A=2*t*l
-//A=2*0.707*s*l
-//A=2*0.707*s*40
-//A=56.56*s//mm^2
-//t=P/A
-//t=35.4/s//N/mm^2
-M=P*e//N-mm
-//Z=s*l^2/(4.242)//section modulus//mm^3
-//fb=M/Z//
-//fb=P*e/Z//
-//fb=636.6/s
-//Tmax=0.5*[sqrt(fb^2+4*t^2)]
-//25=320.3/s
-s=320.3/25//mm
+ +clc +//solution +//given +P=2000//N +e=120//mm +l=40//mm +Tmax=25//N/mm^2 +//let s be size of weld and t be throat thickness +//ref fig 10.24 +//A=2*t*l +//A=2*0.707*s*l +//A=2*0.707*s*40 +//A=56.56*s//mm^2 +//t=P/A +//t=35.4/s//N/mm^2 +M=P*e//N-mm +//Z=s*l^2/(4.242)//section modulus//mm^3 +//fb=M/Z// +//fb=P*e/Z// +//fb=636.6/s +//Tmax=0.5*[sqrt(fb^2+4*t^2)] +//25=320.3/s +s=320.3/25//mm printf("the sieze of weld is,%f mm",s)
\ No newline at end of file |