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/CH14/EX14.2/ex_14_2.sce | |
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/CH14/EX14.2/ex_14_2.sce')
-rwxr-xr-x | 278/CH14/EX14.2/ex_14_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/278/CH14/EX14.2/ex_14_2.sce b/278/CH14/EX14.2/ex_14_2.sce new file mode 100755 index 000000000..d98fbd30b --- /dev/null +++ b/278/CH14/EX14.2/ex_14_2.sce @@ -0,0 +1,14 @@ +//determine dia of the shaft
+clc
+//solution
+//given
+P=10^6//W
+N=2400//rpm
+//Tmax=1.2*Tmean
+t=60//N/mm^2
+//let d be dia of shaft
+Tmean=(P*60000)/(2*%pi*N)//N-mm
+Tmax=12.*Tmean
+//Tmax=(%pi/16)*t*d^3=8.25*d^3
+d=(Tmax/11.78)^(1/3)//mm
+printf("the dia of shaft is,%f mm",d)
|