From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3689/CH7/EX7.3/7_3.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3689/CH7/EX7.3/7_3.sce (limited to '3689/CH7/EX7.3/7_3.sce') diff --git a/3689/CH7/EX7.3/7_3.sce b/3689/CH7/EX7.3/7_3.sce new file mode 100644 index 000000000..205d5d263 --- /dev/null +++ b/3689/CH7/EX7.3/7_3.sce @@ -0,0 +1,23 @@ +////Variable Declaration +m = 1.0 //Mass of Methane, kg +T = 230 //Temeprature of Methane, K +P = 68.0 //Pressure, bar +Tc = 190.56 //Critical Temeprature of Methane +Pc = 45.99 //Critical Pressure of Methane +R = 0.08314 //Ideal Gas Constant, L.bar/(mol.K) +M = 16.04 //Molecular wt of Methane + +//Calcualtions +Tr = T/Tc +Pr = P/Pc +z = 0.63 //Methane compressibility factor +n = m*1e3/M +V = z*n*R*T/P +Vig = n*R*T/P +DV = (V - Vig)/V + +//Results +printf("\n V-Videal %4.2f L",V-Vig) + +printf("\n Percentage error %5.2f",DV*100) + -- cgit