summaryrefslogtreecommitdiff
path: root/3886/CH15/EX15.11
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH15/EX15.11')
-rw-r--r--3886/CH15/EX15.11/15_11.sce11
-rw-r--r--3886/CH15/EX15.11/15_11.txt5
2 files changed, 16 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)
+
diff --git a/3886/CH15/EX15.11/15_11.txt b/3886/CH15/EX15.11/15_11.txt
new file mode 100644
index 000000000..d88e58ad3
--- /dev/null
+++ b/3886/CH15/EX15.11/15_11.txt
@@ -0,0 +1,5 @@
+
+--> exec('E:\My program EM\15. DAlemberts principle\15.11.sce', -1)
+
+a=1.401 m/sec^2
+T=642.89 N \ No newline at end of file