diff options
Diffstat (limited to '389/CH7/EX7.8/Example7_8.sce')
-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 |