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 --- 2921/CH11/EX11.1/Ex11_1.sce | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 2921/CH11/EX11.1/Ex11_1.sce (limited to '2921/CH11/EX11.1') diff --git a/2921/CH11/EX11.1/Ex11_1.sce b/2921/CH11/EX11.1/Ex11_1.sce new file mode 100755 index 000000000..6c745a8f1 --- /dev/null +++ b/2921/CH11/EX11.1/Ex11_1.sce @@ -0,0 +1,32 @@ +clc; +clear; +mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-11.1 Page No.217\n'); + +N2=60; +N1=20; +N3=20; +N4=60; + +Vr=(N2/N1)*(N4/N3); + +//Output speed +n1=3600; +n4=n1/Vr; + +mprintf('\n The output speed is %f rpm.',n4); + +//Output torque +T1=200; +T4=T1*Vr; + +mprintf('\n The output torque is %f lb*in.',T4); + +//Input horsepower +hpi=T1*n1/63000; + +mprintf('\n The input horsepower is %f hp.',hpi); + +//Output horsepower +hpo=T4*n4/63000; + +mprintf('\n The output horsepower is %f hp.',hpo); -- cgit