summaryrefslogtreecommitdiff
path: root/23/CH2/EX2.14/Example_2_14.sce
blob: 2df15042e583188698de6687c968be498f855799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clear;
clc;

//Example 2.14
//Caption : Program to find the Enthalpy of Steam

//Given values

rQ=4.15;//[g/s]  flow rate
rQ2=12740;//Rate of Heat addition from resistance heater

//Solution
//del_z and del_u*2 are negligible  if Ws and H1=0..then H2=Q
H2=round(rQ2/rQ);//[J/g]
disp('J/g',H2,'Enthalpy of Steam')

//End