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 --- 2705/CH4/EX4.9/Ex4_9.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 2705/CH4/EX4.9/Ex4_9.sce (limited to '2705/CH4/EX4.9') diff --git a/2705/CH4/EX4.9/Ex4_9.sce b/2705/CH4/EX4.9/Ex4_9.sce new file mode 100755 index 000000000..d9417bfea --- /dev/null +++ b/2705/CH4/EX4.9/Ex4_9.sce @@ -0,0 +1,21 @@ +clear; +clc; +disp('Example 4.9'); + +// aim : To determine +// the specific volume + +// Given values +t = 325; // temperature, [C] +P = 2; // pressure, [MN/m^2] + +// solution +// from steam table at given t and P +vf = .1321; // [m^3/kg] +tf = 212.4; // saturation temperature, [C] + +mprintf('\n The specific volume of steam at pressure of 2 MN/m^2 and with temperature 325 C is = %f m^3/kg \n',vf); +doh= t-tf; // degree of superheat, [C] +mprintf('\n The degree of superheat is = %f C\n',doh); + +// End -- cgit