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 /2135/CH1/EX1.24 | |
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 '2135/CH1/EX1.24')
-rwxr-xr-x | 2135/CH1/EX1.24/Exa_1_24.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2135/CH1/EX1.24/Exa_1_24.sce b/2135/CH1/EX1.24/Exa_1_24.sce new file mode 100755 index 000000000..0862d5657 --- /dev/null +++ b/2135/CH1/EX1.24/Exa_1_24.sce @@ -0,0 +1,17 @@ +//Exa 1.24
+clc;
+clear;
+close;
+format('v',6);
+
+//Given Data :
+p1=1;//bar
+p2=0.45;//bar
+R=287;//KJ/KgK
+V=40;//m^3
+V1=40;//m^3
+V2=40;//m^3
+T1=35+273;//K
+T2=5+273;//K
+m=p1*10^5*V1/R/T1-p2*10^5*V2/R/T2
+disp(m,"Mass of air removed in Kg : ");
|