blob: f31753bcc129b62db1dc0cc3206ecea5430cf33e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
//initialisation of variables
Pe=20 //lbf/in^2
he=1279.1 //Btu/lbm
Te=484.2 //F
delT=-15.8 //F
delP=-80 //lbf/in^2
//CALCULATIONS
Mu=delT/delP//-F/lbf
//RESULTS
printf('The final temperture and specific volume of the steam and the average joule-thomson coefficient=% f -F/lbf',Mu)
|