blob: 0c40b079ee8c492de9bfc4782cf5a175312da605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 7.17\n\n\n");
// Chapter 7 : Mixtures Of Ideal Gases
// Problem 7.17 (page no. 347)
// Solution
//Problem 7.13 using the psychrometric chart
//Entering figure 7.11 at a dry-bulb temperature of 80 F,we proceed vertically until we reach 50% humidity curve.At this intersection,we proceed horizontally and read the dew-point temperature as approximately 60 F.
printf("The dew point temperature of air is 60 F\n");
|