diff options
Diffstat (limited to '551/CH4/EX4.64/64.sce')
-rwxr-xr-x | 551/CH4/EX4.64/64.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/551/CH4/EX4.64/64.sce b/551/CH4/EX4.64/64.sce new file mode 100755 index 000000000..8a566ef3a --- /dev/null +++ b/551/CH4/EX4.64/64.sce @@ -0,0 +1,17 @@ +clc
+V1=5.5; //m^3
+p1=16*10^5; //Pa
+T1=315; //K
+V2=V1;
+p2=12*10^5; //Pa
+R=0.287*10^3;
+y=1.4;
+
+m1=p1*V1/R/T1;
+T2=T1*(p2/p1)^((y-1)/y);
+
+m2=p2*V2/R/T2;
+disp("Mass of air which left the receiver=")
+m=m1-m2;
+disp(m)
+disp("kg")
\ No newline at end of file |