diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2705/CH4/EX4.9 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2705/CH4/EX4.9')
-rwxr-xr-x | 2705/CH4/EX4.9/Ex4_9.sce | 21 |
1 files changed, 21 insertions, 0 deletions
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
|