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 /2141/CH11/EX11.2 | |
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 '2141/CH11/EX11.2')
-rwxr-xr-x | 2141/CH11/EX11.2/Ex11_2.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2141/CH11/EX11.2/Ex11_2.sce b/2141/CH11/EX11.2/Ex11_2.sce new file mode 100755 index 000000000..c2fde558b --- /dev/null +++ b/2141/CH11/EX11.2/Ex11_2.sce @@ -0,0 +1,22 @@ +
+clc
+//initialisation of variables
+P=14.70//lbf/in^2
+T=90 //F
+P1=70 //per cent
+V=2000 //ft^3
+p=0.6982//ft/lbm
+Fhi=0.70//lbf/in^2
+v1=550//ft/lbm
+g=144//ft
+q=53.34//lbm
+f=85.7
+//CALCULATIONS
+v=Fhi*p//lbf/in^2
+Pa=P-Pv//lbf/in^2
+umga=0.622*(Pv/Pa)//lbf/in^2
+Ma=(Pa*g*V)/(q*v1)//lbm
+Mv=umga*Ma//lbm
+mv=(Pv*g*V)/(f*v1)//lbm
+//RESULTS
+printf('The humidity ratio dew point mass of air and mass of vapor=% f lbm',mv)
|