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 /1835/CH10/EX10.5 | |
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 '1835/CH10/EX10.5')
-rwxr-xr-x | 1835/CH10/EX10.5/Ex10_5.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1835/CH10/EX10.5/Ex10_5.sce b/1835/CH10/EX10.5/Ex10_5.sce new file mode 100755 index 000000000..c2d25658c --- /dev/null +++ b/1835/CH10/EX10.5/Ex10_5.sce @@ -0,0 +1,19 @@ +//CHAPTER 10 ILLUSRTATION 5 PAGE NO 271
+//TITLE:Brakes and Dynamometers
+clc
+clear
+//===========================================================================================
+//INPUT DATA
+q=220;//Angle of contact in degree
+T=340;//Torque in Nm
+d=0.32;//Diameter of drum in m
+U=0.3;//Coefficient of friction
+
+Td=(T/(d/2));//Difference in tensions in N
+Tr=exp(U*(q*(3.14/180)));//Ratio of tensions
+T2=(Td/(Tr-1));//Tension in N
+T1=(Tr*T2);//Tension in N
+P=((T2*(d/2))-(T1*0.04))/0.5;//Force applied in N
+b=(T1/T2)*4;//Value of b in cm when the brake is self-locking
+
+printf('The value of b is %3.2f cm when the brake is self-locking \n Tensions in the sides are %3.3f N and %3.3f N',b,T1,T2)
|