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/CH15/EX15.8/15_8.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 3689/CH15/EX15.8/15_8.sce (limited to '3689/CH15/EX15.8/15_8.sce') diff --git a/3689/CH15/EX15.8/15_8.sce b/3689/CH15/EX15.8/15_8.sce new file mode 100644 index 000000000..2b0a55eb8 --- /dev/null +++ b/3689/CH15/EX15.8/15_8.sce @@ -0,0 +1,21 @@ +//// +//Variable Declaration +M = 0.040 //Moleculat wt of Ar, kg/mol +h = 6.626e-34 //Planks's Constant, J.s +NA = 6.022e23 //Avagadro's Number, 1/mol +k = 1.38e-23 //Boltzmann constant, J/K +T = 298.15 //Std. state temeprature,K +P = 1e5 //Std. state pressure, Pa +R = 8.314 //Ideal gas constant, J/(mol.K) +n = 1.0 //Number of mole, mol + +//Calcualtions +m = M/NA +Labda3 = (h**2/(2*%pi*m*k*T))**(3./2) +G0 = -n*R*T*log(k*T/(P*Labda3)) + +//Results +printf("\n Thermal wave lengths for Ne is %4.2e m3",Labda3) + +printf("\n The Gibbs energy for 1 mol of Ar is %6.2f kJ",G0/1000) + -- cgit