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/CH4/EX4.22/4_22.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 1388/CH4/EX4.22/4_22.sce (limited to '1388/CH4/EX4.22') diff --git a/1388/CH4/EX4.22/4_22.sce b/1388/CH4/EX4.22/4_22.sce new file mode 100755 index 000000000..2e6731ee3 --- /dev/null +++ b/1388/CH4/EX4.22/4_22.sce @@ -0,0 +1,17 @@ +clc +//initialisation of variables +p= 1 //atm +p1= 3 //atm +R= 1.987 //cal/mole K +T= 27 //C +b= 0.0428 //l mole^-1 +a= 3.61 //l^2 atm mole^-1 +//CALCULATIONS +G= R*(273+T)*log(p/p1) +A= R*(273+T)*log(p/p1) +G1= R*(273+T)*log(p/p1)+(b-(a/(0.08205*(T+273))))*(p-p1)*(R/0.08205) +//RESULTS +printf (' Gibs free energy= %.f cal',G) +printf (' \n Value of A= %.f cal',A) +printf (' \n Gibs free energy= %.f cal',G1) +printf (' \n Value of A= %.f cal',A) -- cgit