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 --- 1439/CH4/EX4.13/4_13.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 1439/CH4/EX4.13/4_13.sce (limited to '1439/CH4/EX4.13') diff --git a/1439/CH4/EX4.13/4_13.sce b/1439/CH4/EX4.13/4_13.sce new file mode 100755 index 000000000..223a4cb4e --- /dev/null +++ b/1439/CH4/EX4.13/4_13.sce @@ -0,0 +1,12 @@ +clc +//initialisation of variables +dH293= -115595.8 //cal +T1= 1500 //K +T2= 298 //K +k1= -5.6146 //cal deg^-1 mole^-1 +k2= 1.8931*10^-3 //cal deg^-2 mole^-1 +k3= 4.723*10^-7 //cal deg^-3 mole^-1 +//CALCULATIONS +dH=dH293+ k1*(T1-T2)+(k2*(T1^2-T2^2)/2)+(k3*(T1^3-T2^3)/3) +//RESULTS +printf ('dH1500= %.f cal ',dH) -- cgit