From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 23/CH2/EX2.14/Example_2_14.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 23/CH2/EX2.14/Example_2_14.sce (limited to '23/CH2/EX2.14/Example_2_14.sce') diff --git a/23/CH2/EX2.14/Example_2_14.sce b/23/CH2/EX2.14/Example_2_14.sce new file mode 100755 index 000000000..2df15042e --- /dev/null +++ b/23/CH2/EX2.14/Example_2_14.sce @@ -0,0 +1,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 \ No newline at end of file -- cgit