diff options
Diffstat (limited to '278/CH13/EX13.13/ex_13_13.sce')
-rwxr-xr-x | 278/CH13/EX13.13/ex_13_13.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/278/CH13/EX13.13/ex_13_13.sce b/278/CH13/EX13.13/ex_13_13.sce new file mode 100755 index 000000000..73b2b3114 --- /dev/null +++ b/278/CH13/EX13.13/ex_13_13.sce @@ -0,0 +1,15 @@ +//find dia of shaft and pins
+clc
+//solution
+//given
+T=5000*10^3//N-mm
+t=60//N/mm^2
+t1=28//N/mm^2
+//let d be dia
+//T=(%pi*t*d^3)/16
+d=(T/11.8)^(1/3)//mm
+printf("the dia of shaft is,%f mm\n",d)
+//let dp diA of pin
+//T=2*(%pi/4)*dp^2*t1*d
+dp=[T/(3300)]^0.5//mm
+printf("the dia of pin is,%f mm",dp)
\ No newline at end of file |