summaryrefslogtreecommitdiff
path: root/51/CH1/EX1.2/1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '51/CH1/EX1.2/1_2.sce')
-rwxr-xr-x51/CH1/EX1.2/1_2.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/51/CH1/EX1.2/1_2.sce b/51/CH1/EX1.2/1_2.sce
new file mode 100755
index 000000000..ff6d51270
--- /dev/null
+++ b/51/CH1/EX1.2/1_2.sce
@@ -0,0 +1,11 @@
+clc;
+clear;
+m=36;//kg
+acc=7;//ft/sq sec
+W=m*9.81;
+disp("W=")
+disp(W)
+//F=W+m*acc
+//1 ft= 0.3048 m
+F=W+(m*acc*0.3048);
+disp("N",F,"F=")