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 --- 1835/CH10/EX10.1/Ex10_1.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 1835/CH10/EX10.1/Ex10_1.sce (limited to '1835/CH10/EX10.1') diff --git a/1835/CH10/EX10.1/Ex10_1.sce b/1835/CH10/EX10.1/Ex10_1.sce new file mode 100755 index 000000000..811ff0a24 --- /dev/null +++ b/1835/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,17 @@ +//CHAPTER 10 ILLUSRTATION 1 PAGE NO 268 +//TITLE:Brakes and Dynamometers +clc +clear +//=========================================================================================== +//INPUT DATA +d=0.32;//Diameter of the drum in m +qq=90;//Angle of contact in degree +P=820;//Force applied in N +U=0.35;//Coefficient of friction + + +U1=((4*U*sind(qq/2))/((qq*(3.14/180))+sind(qq)));//Equivalent coefficient of friction +F=((P*0.66)/((0.3/U1)-0.06));//Force value in N taking moments +TB=(F*(d/2));//Torque transmitted in N.m + +printf('Torque transmitted by the block brake is %3.4f N.m',TB) -- cgit