blob: caec808599eee42f1d709ca0293a2906e54661ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clear;
clc;
disp('Example 4.14');
// aim : To estimate
// the dryness fraction
// Given values
M = 1.8;// mass of condensate, [kg]
m = .2;// water collected, [kg]
// solution
x = M/(M+m);// formula for calculation of dryness fraction using seprating calorimeter
mprintf(' \n The dryness fraction of the steam entering seprating calorimeter is = %f \n',x);
// End
|