summaryrefslogtreecommitdiff
path: root/3647/CH2/EX2.10/2_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3647/CH2/EX2.10/2_10.sce')
-rw-r--r--3647/CH2/EX2.10/2_10.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3647/CH2/EX2.10/2_10.sce b/3647/CH2/EX2.10/2_10.sce
new file mode 100644
index 000000000..a2e80f4d9
--- /dev/null
+++ b/3647/CH2/EX2.10/2_10.sce
@@ -0,0 +1,18 @@
+//Solutions to Problems In applied mechanics
+//A N Gobby
+clear all;
+//torque to acceleration drum and truck
+clc
+//initialisation of variables
+v=20//ft/s
+s=150//ft
+h=2240//ft
+g=32.2//ft
+d=3//ft
+p=364.9//lbf
+q=4//ft
+//CALCULATIONS
+A=v^2/(2*s)//ft/s^2
+T=(h*(d)^2/g)*(A/q)+p*q//lbf ft
+//RESULTS
+printf('the torque to acceleration drum and truck=% f lbf ft',T)