diff options
Diffstat (limited to '2024/CH10/EX10.16/10_16.sce')
-rwxr-xr-x | 2024/CH10/EX10.16/10_16.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2024/CH10/EX10.16/10_16.sce b/2024/CH10/EX10.16/10_16.sce new file mode 100755 index 000000000..68c0c71a6 --- /dev/null +++ b/2024/CH10/EX10.16/10_16.sce @@ -0,0 +1,13 @@ +clc
+//Initialization of variables
+disp("From psychrometric charts,")
+va1=13 //ft^3/lbm dry air
+va2=13.88 //ft^3/lbm dry air
+flow=2000 //cfm
+//calculations
+ma1= flow/va1
+ma2=flow/va2
+t=71// F
+phi=t //percent
+//results
+printf("humidity = %d percent",phi)
|