blob: 716feefed1b1ab52e839f52ea700c0e308cd0676 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|