From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1388/CH9/EX9.2/9_2.sce | 10 ++++++++++ 1388/CH9/EX9.3/9_3.sce | 15 +++++++++++++++ 2 files changed, 25 insertions(+) create mode 100755 1388/CH9/EX9.2/9_2.sce create mode 100755 1388/CH9/EX9.3/9_3.sce (limited to '1388/CH9') diff --git a/1388/CH9/EX9.2/9_2.sce b/1388/CH9/EX9.2/9_2.sce new file mode 100755 index 000000000..1e50b8b89 --- /dev/null +++ b/1388/CH9/EX9.2/9_2.sce @@ -0,0 +1,10 @@ +clc +//initialisation of variables +T= 298.16 //K +M= 4.003 //gm +S= 2.3151 //cal mol^-1 deg^-1 +R= 1.987 //cal/molK +//CALCULATIONS +S1= 2.5*R*log(T)+1.5*R*log(M)-S +//RESULTS +printf (' Absolute Entropy= %.3f cal mol^-1 deg^-1',S1) diff --git a/1388/CH9/EX9.3/9_3.sce b/1388/CH9/EX9.3/9_3.sce new file mode 100755 index 000000000..7769a2d84 --- /dev/null +++ b/1388/CH9/EX9.3/9_3.sce @@ -0,0 +1,15 @@ +clc +//initialisation of variables +h= 6.624*10^-27//erg/sec +N= 6.023*10^23 +c= 3*10^10 //m/sec +w= 2359.6 //cm^-1 +T= 2000 //K +K= 1.380*10^-16 +R= 1.987 //cal mol^-1 k^-1 +//CALCULATIONS +x= h*c*w/(K*T) +y= 2.71^x +H= 3.5*R+(N*h*c*w/(T*4.184*10^7*(y-1))) +//RESULTS +printf (' Heat= %.3f cal mol^-1 deg^-1',H) -- cgit