blob: 72997096870e74268afc27a150587b86a2a4a481 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//example 5
//calculating pressure after heat addition
clear
clc
v1=0.14922 //specific volume of sautrated ammonia in m^3/kg
disp('Since the volume does not change during the process,the specific volume remains constant.therefore, ')
v2=v1 //in m^3/kg
disp('Since vg at 40C is less than v2,it is evident that in the final state the Ammonia is superheated vapor.By interplotation,we find that ')
P2=945 //final pressure in kPa
disp('hence,the final pressure is 945 kPa')
|