diff options
Diffstat (limited to '278/CH18/EX18.1/ex_18_1.sce')
-rwxr-xr-x | 278/CH18/EX18.1/ex_18_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/278/CH18/EX18.1/ex_18_1.sce b/278/CH18/EX18.1/ex_18_1.sce new file mode 100755 index 000000000..53b6ef6bc --- /dev/null +++ b/278/CH18/EX18.1/ex_18_1.sce @@ -0,0 +1,17 @@ +//find..
+clc
+//soltuion
+//given
+N1=150//rpm
+d1=750//rpm
+d2=450//mm
+d3=900//mm
+d4=150//mm
+s1=0.02
+s2=0.02
+//ref fig 18.12
+N4={(d1*d3)/(d2*d4)}*N1//rpm
+printf("the value of N4 is,%f rpm\n",N4)
+//wen slip is there
+N4s={(d1*d3)/(d2*d4)}*N1*(1-s1)*(1-s2)//rpm
+printf("the value N4 when slip is there is,%f rpm",N4s)
|