diff options
Diffstat (limited to '23/CH2/EX2.15/Example_2_15.sce')
-rwxr-xr-x | 23/CH2/EX2.15/Example_2_15.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/23/CH2/EX2.15/Example_2_15.sce b/23/CH2/EX2.15/Example_2_15.sce new file mode 100755 index 000000000..716feefed --- /dev/null +++ b/23/CH2/EX2.15/Example_2_15.sce @@ -0,0 +1,18 @@ +clear;
+clc;
+
+//Example 2.15
+//Caption : Program To find the Heat to be Removed during Compression
+
+//Given values
+
+V=600;//[m/s]
+W_compression=240;//[KJ/Kg]
+
+//Solution
+//Using Eqn(2.32a)
+Q=(1/2*(V*V)/1000)-W_compression;
+
+disp('KJ/kg',-Q,'Thus Heat Removed from each KG of air compressed is')
+
+//End
\ No newline at end of file |