summaryrefslogtreecommitdiff
path: root/698/CH15/EX15.2/P2_force_of_block_brake.sce
diff options
context:
space:
mode:
Diffstat (limited to '698/CH15/EX15.2/P2_force_of_block_brake.sce')
-rw-r--r--698/CH15/EX15.2/P2_force_of_block_brake.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/698/CH15/EX15.2/P2_force_of_block_brake.sce b/698/CH15/EX15.2/P2_force_of_block_brake.sce
new file mode 100644
index 000000000..bc87f110c
--- /dev/null
+++ b/698/CH15/EX15.2/P2_force_of_block_brake.sce
@@ -0,0 +1,34 @@
+clc
+//Example 15.2
+// Force of Block Brake
+
+//------------------------------------------------------------------------------
+//Given Data:
+
+T=400
+f=0.3
+r=0.2
+c=0.05
+b=0.9
+a=0.2
+
+
+res2= mopen(TMPDIR+'2_force_of_block_brake.txt','wt')
+
+N=T/(f*r)
+mfprintf(res2,'(a) N = %0.2f N\n\n',N)
+
+F= ((c*f*N) + (r*N))/b
+mfprintf(res2,'(b) For clockwise rotation, F = %0.2f N\n\n',F)
+
+F= (-(c*f*N) + (r*N))/b
+mfprintf(res2,'(c) For clockwise rotation, F = %0.3f N\n\n',F)
+
+a_new=r/f
+mfprintf(res2,'(d) For self locking, a=%0.2f m\n\n',a_new)
+
+mclose(res2);
+editor(TMPDIR+'2_force_of_block_brake.txt')
+
+//------------------------------------------------------------------------------
+//--------------------------------End of program-------------------------------- \ No newline at end of file