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/CH13/EX13.11/ex_13_11.sce | |
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/CH13/EX13.11/ex_13_11.sce')
-rwxr-xr-x | 278/CH13/EX13.11/ex_13_11.sce | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/278/CH13/EX13.11/ex_13_11.sce b/278/CH13/EX13.11/ex_13_11.sce index 3c16ff96c..97e89b6d3 100755 --- a/278/CH13/EX13.11/ex_13_11.sce +++ b/278/CH13/EX13.11/ex_13_11.sce @@ -1,27 +1,27 @@ -//find dia of shaft,dia of bolts,thickness of flange and dia of flange
-clc
-//solution
-//given
-P=3*10^6//W
-N=100//rpm
-tb=60//N/mm^2
-ts=60//N/mm^2
-n=8
-//D1=1.6*d
-//let d be dia of shaft
-T=(P*60*1000)/(2*%pi*N)//N-mm
-//T=(%pi/16)*t*d^3=11.78*d^3
-//d=(T/11.78)^(1/3)//mm
-printf("the dia of shaft is,%f mm\n ",(T/11.78)^(1/3))
-printf("the dia of shaft is ,say 300 mm\n")
-d=300//mm
-//let d1 be nominal dia of bolts
-//T=(%pi/4)*d1^2*tb*n*D1/2
-//d1=(T/90490)^(0.5)//mm
-printf("the dia of bolt is,%f mm\n",(T/16495)^(0.5))
-printf("the dia of bolt is say d1=60 mm\n")
-d1=60//mm
-tf=d/3//mm
-printf("the flange thciness is,%f m\n",tf)
-D2=2.2*d//mm
+ +clc +//solution +//given +P=3*10^6//W +N=100//rpm +tb=60//N/mm^2 +ts=60//N/mm^2 +n=8 +//D1=1.6*d +//let d be dia of shaft +T=(P*60*1000)/(2*%pi*N)//N-mm +//T=(%pi/16)*t*d^3=11.78*d^3 +//d=(T/11.78)^(1/3)//mm +printf("the dia of shaft is,%f mm\n ",(T/11.78)^(1/3)) +printf("the dia of shaft is ,say 300 mm\n") +d=300//mm +//let d1 be nominal dia of bolts +//T=(%pi/4)*d1^2*tb*n*D1/2 +//d1=(T/90490)^(0.5)//mm +printf("the dia of bolt is,%f mm\n",(T/16495)^(0.5)) +printf("the dia of bolt is say d1=60 mm\n") +d1=60//mm +tf=d/3//mm +printf("the flange thciness is,%f m\n",tf) +D2=2.2*d//mm printf("the diameter of flange is,%f mm",D2)
\ No newline at end of file |