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 --- 3050/CH6/EX6.9/Ex6_9.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 3050/CH6/EX6.9/Ex6_9.sce (limited to '3050/CH6/EX6.9/Ex6_9.sce') diff --git a/3050/CH6/EX6.9/Ex6_9.sce b/3050/CH6/EX6.9/Ex6_9.sce new file mode 100755 index 000000000..fb2d26b64 --- /dev/null +++ b/3050/CH6/EX6.9/Ex6_9.sce @@ -0,0 +1,17 @@ +//calculating deltaG and Kc +//Example 6.9 +clc +clear +Ecell=0.89//in V +n=6 +F=96500// in 1/mol +deltaG=-n*F*Ecell//in C.V or J +//Kc related to deltaG +R=8.314//in J/molk +T=298//in K +Kc1=10^(-deltaG/(2.303*R*T)) +//Kc related to Ecell +Kc2=10^((n*F*Ecell)/(2.303*R*T)) +printf('Thus (i)deltaG = %e',deltaG) +printf('\n(ii)Kc in relation with deltaG = %e',Kc1) +printf('\n(iii)Kc in relation with Ecell = %e',Kc2) -- cgit