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/CH18/EX18.1/ex_18_1.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/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)
|