diff options
Diffstat (limited to '1280/CH3/EX3.3/3_3.sce')
-rwxr-xr-x | 1280/CH3/EX3.3/3_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1280/CH3/EX3.3/3_3.sce b/1280/CH3/EX3.3/3_3.sce new file mode 100755 index 000000000..94b46839d --- /dev/null +++ b/1280/CH3/EX3.3/3_3.sce @@ -0,0 +1,16 @@ +clc
+//initialisation of variables
+W= 7200 //lb
+V= 120 //ft^3
+W1= 3600 //lb
+V1= 50 //m^3
+W2= 500 //dyn
+V2= 7000 //cm^3
+//CALCULATIONS
+s= W/V
+s1= W1/V1
+s2= W2/V2
+//RESULTS
+printf ('specific weight = %.f lbs/ft^3',s)
+printf ('\n specific weight = %.f N/m^3',s1)
+printf ('\n specific weight = %.4f dyn/cm^3',s2)
|