From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 278/CH18/EX18.1/ex_18_1.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 278/CH18/EX18.1/ex_18_1.sce (limited to '278/CH18/EX18.1/ex_18_1.sce') 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) -- cgit