summaryrefslogtreecommitdiff
path: root/3886/CH15/EX15.11/15_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH15/EX15.11/15_11.sce')
-rw-r--r--3886/CH15/EX15.11/15_11.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3886/CH15/EX15.11/15_11.sce b/3886/CH15/EX15.11/15_11.sce
new file mode 100644
index 000000000..4b94490ab
--- /dev/null
+++ b/3886/CH15/EX15.11/15_11.sce
@@ -0,0 +1,11 @@
+//Tension in the string and accelerations of blocks
+//refer fig. 15.13 (a),(b) and (c)
+//Considering 1500 N block
+//2*T+(1500*a)/(9.81)=1500
+//Considering 500N block
+//T-(2*500*a)/(9.81)=500
+//Solving this we get
+a=(500*9.81)/(1500+2000) //m/sec^2
+T=(1500-((1500*1.401)/(9.81)))/2 //N
+printf("\na=%.3f m/sec^2\nT=%.2f N",a,T)
+