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 /389/CH7/EX7.7 | |
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 '389/CH7/EX7.7')
-rwxr-xr-x | 389/CH7/EX7.7/Example7_7.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/389/CH7/EX7.7/Example7_7.sce b/389/CH7/EX7.7/Example7_7.sce new file mode 100755 index 000000000..5128817c8 --- /dev/null +++ b/389/CH7/EX7.7/Example7_7.sce @@ -0,0 +1,23 @@ +clear;
+clc;
+
+// Illustration 7.7
+// Page: 236
+
+printf('Illustration 7.7 - Page: 236\n\n');
+
+// solution
+
+//****Data****//
+// A = water vapour; B = air
+V = 100;// [m^3]
+Tempi = 55;// [OC]
+Tempf = 110;// [OC]
+//*****//
+
+// From Illustration 7.6
+vH = 0.974;// [m^3/kg]
+Cs = 1061.5;// [J/kg]
+WB = V/vH;// [kg]
+Q = WB*Cs*(Tempf-Tempi);// [J]
+printf("Heat recquired is %e J\n",Q);
\ No newline at end of file |