diff options
Diffstat (limited to '1442/CH4/EX4.9/4_9.sce')
-rwxr-xr-x | 1442/CH4/EX4.9/4_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1442/CH4/EX4.9/4_9.sce b/1442/CH4/EX4.9/4_9.sce new file mode 100755 index 000000000..f05dc925a --- /dev/null +++ b/1442/CH4/EX4.9/4_9.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+n= 1.5 //kmol
+V= 0.5 //m^3
+M= 18.02 //kg
+//CALCULATIONS
+m= n*M
+v= V/m
+//RESULTS
+printf ('mass = %.2f kg',m)
+printf ('\n sepcific volume = %.4f m^3/kg',v)
|