diff options
Diffstat (limited to '2504/CH3/EX3.2')
-rwxr-xr-x | 2504/CH3/EX3.2/3_2.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2504/CH3/EX3.2/3_2.sce b/2504/CH3/EX3.2/3_2.sce new file mode 100755 index 000000000..7afd140c6 --- /dev/null +++ b/2504/CH3/EX3.2/3_2.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+clear
+g= 32.2 //ft/sec^2
+m= 1 //lb
+//CALCULATIONS
+m1= g/m
+//RESULTS
+printf ('1 lbf/sec ft^2 = %.1f lbm/ft sec',m1)
|