diff options
Diffstat (limited to '3647/CH1/EX1.7/1_7.sce')
-rw-r--r-- | 3647/CH1/EX1.7/1_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3647/CH1/EX1.7/1_7.sce b/3647/CH1/EX1.7/1_7.sce new file mode 100644 index 000000000..4fe8cad16 --- /dev/null +++ b/3647/CH1/EX1.7/1_7.sce @@ -0,0 +1,16 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +//equation of motion and acceleration
+clc
+//initialisation of variables
+d=4//ft
+w=5//lbf
+v=10//lbf
+q=9.27//ft/s
+//CALCULATIONS
+W=w*d//ft lbf
+P=v*d//ft lbf
+M=(q)^2/d/2//ft/s^2
+//RESULTS
+printf('the equation of motion and acceleration=% f ft/s^2',M)
|