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.8 | |
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.8')
-rwxr-xr-x | 389/CH7/EX7.8/Example7_8.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/389/CH7/EX7.8/Example7_8.sce b/389/CH7/EX7.8/Example7_8.sce new file mode 100755 index 000000000..c458eda0d --- /dev/null +++ b/389/CH7/EX7.8/Example7_8.sce @@ -0,0 +1,21 @@ +clear;
+clc;
+
+// Illustration 7.8
+// Page: 237
+
+printf('Illustration 7.8 - Page: 237\n\n');
+
+// solution
+
+//****Data****//
+Y_prime1 = 0.030;// [kg water/kg dry air]
+Temp1 = 83;// [OC]
+//*******//
+
+// From the psychrometric chart, the condition at 90 OC
+Temp2 = 41.5;// [OC]
+Y_prime2 = 0.0485;// [kg water/kg dry air]
+printf("The Outlet Air condition are:\n");
+printf("Temp. = %f OC\n",Temp2);
+printf("Absolute Humidity = %f kg water/kg dry air\n",Y_prime2);
\ No newline at end of file |