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 --- 2465/CH4/EX4.5/Example_5.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 2465/CH4/EX4.5/Example_5.sce (limited to '2465/CH4/EX4.5/Example_5.sce') diff --git a/2465/CH4/EX4.5/Example_5.sce b/2465/CH4/EX4.5/Example_5.sce new file mode 100644 index 000000000..ce36439e7 --- /dev/null +++ b/2465/CH4/EX4.5/Example_5.sce @@ -0,0 +1,19 @@ +//Chapter-4,Example 5,Page 93 +clc; +close; + +delta_H= -109 // heat change in Kcal + +n_1= 2 //mols of gaseous reactant + +n_2= 1 // mols of gaseous product + +delta_n= n_2-n_1 + +T=500 + +R= 2*10^-3 + +delta_E = (delta_H) - (delta_n*R*T) + +printf('the value of delta_E is %.f Kcal',delta_E) -- cgit