summaryrefslogtreecommitdiff
path: root/3886/CH7/EX7.10/7_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH7/EX7.10/7_10.sce')
-rw-r--r--3886/CH7/EX7.10/7_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3886/CH7/EX7.10/7_10.sce b/3886/CH7/EX7.10/7_10.sce
new file mode 100644
index 000000000..b6b55df36
--- /dev/null
+++ b/3886/CH7/EX7.10/7_10.sce
@@ -0,0 +1,13 @@
+//speed of pinion
+P=480 //N
+Pw=1800 //W
+v=Pw/P //m/sec
+//module
+m=8
+d=25*m //mm
+r=d/2000 //m
+omega=v/r //rad/sec
+N=(60*omega)/(2*%pi) //rpm
+//rest is theory
+printf("Speed of the pinion N=%.1f rpm",N)
+