summaryrefslogtreecommitdiff
path: root/3886/CH7/EX7.2
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH7/EX7.2')
-rw-r--r--3886/CH7/EX7.2/7_2.sce11
-rw-r--r--3886/CH7/EX7.2/7_2.txt7
2 files changed, 18 insertions, 0 deletions
diff --git a/3886/CH7/EX7.2/7_2.sce b/3886/CH7/EX7.2/7_2.sce
new file mode 100644
index 000000000..3e1b1969a
--- /dev/null
+++ b/3886/CH7/EX7.2/7_2.sce
@@ -0,0 +1,11 @@
+//speed of follower
+d1=600 //mm
+d2=400 //mm
+N1=160 //rpm
+N2=2 //rpm
+//if there is no slip
+aN2=(600*160)/(400) //rpm
+//when there is 2.5% slip
+p=2.5/100
+bN2=(N1*d1*(100-p))/(d2*100) //rpm
+printf("\nWhen there is no slip \nN2=%0.2f rpm\nWhen there is 2.5 percent slip \nN2=%0.2f rpm",aN2,bN2)
diff --git a/3886/CH7/EX7.2/7_2.txt b/3886/CH7/EX7.2/7_2.txt
new file mode 100644
index 000000000..511e932fc
--- /dev/null
+++ b/3886/CH7/EX7.2/7_2.txt
@@ -0,0 +1,7 @@
+
+--> exec('E:\My program EM\7. Transmission of power\7.2.sce', -1)
+
+When there is no slip
+N2=240.00 rpm
+When there is 2.5 percent slip
+N2=239.94 rpm \ No newline at end of file