blob: 259ecfd0644179aa15c1e4bbaefd606c0a815e48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/////////Chapter 10 Properties Of Steam
///Example 10.2 Page No:183
/// Find saturation pressure of the steam
//Input data
clc;
clear;
sps=150; //saturation pressure of the steam in degree celsius
//Output
P=4.76; //From steam table
printf('saturation pressure= %f bar \n',P);
|