diff options
Diffstat (limited to '2870/CH3/EX3.2/Ex3_2.sce')
-rwxr-xr-x | 2870/CH3/EX3.2/Ex3_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2870/CH3/EX3.2/Ex3_2.sce b/2870/CH3/EX3.2/Ex3_2.sce new file mode 100755 index 000000000..85668eee3 --- /dev/null +++ b/2870/CH3/EX3.2/Ex3_2.sce @@ -0,0 +1,15 @@ +clc;clear;
+//Example 3.2
+
+//given values
+V=2;
+P=50;
+
+//Values from Table A-5E
+T=280.99;//in F
+v=8.5175;//in ft^3/lbm
+
+//caluclation
+m=V/v;//dimension analysis
+disp(m,'mass of vapour inside cylinder in lbm');
+disp(T,'temp inside cylinder in F')
|