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 /213/CH10/EX10.15 | |
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 '213/CH10/EX10.15')
-rwxr-xr-x | 213/CH10/EX10.15/10_15.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/213/CH10/EX10.15/10_15.sce b/213/CH10/EX10.15/10_15.sce new file mode 100755 index 000000000..730b9bc91 --- /dev/null +++ b/213/CH10/EX10.15/10_15.sce @@ -0,0 +1,16 @@ +//To find power transmitted
+clc
+//Given:
+d=60,r=d/2 //mm
+W=2000 //N
+mu=0.03
+N=1440 //rpm
+//Solution:
+//Calculating the angular speed of the shaft
+omega=2*%pi*N/60 //rad/s
+//Calculating the torque transmitted
+T=mu*W*(r/1000) //N-m
+//Calculating the power transmitted
+P=T*omega //W
+//Results:
+printf("\n\n The power transmitted, P = %.1f W.\n\n",P)
\ No newline at end of file |