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 --- 858/CH3/EX3.19/example_19.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 858/CH3/EX3.19/example_19.sce (limited to '858/CH3/EX3.19') diff --git a/858/CH3/EX3.19/example_19.sce b/858/CH3/EX3.19/example_19.sce new file mode 100755 index 000000000..59cde39aa --- /dev/null +++ b/858/CH3/EX3.19/example_19.sce @@ -0,0 +1,17 @@ +clc +clear +printf("example 3.19 page number 109\n\n") + +//to find the heat of reaction and consumption of coke + +H_NaCl = 410.9 //in MJ/kmol +H_H2SO4 = 811.3 //in MJ/kmol +H_Na2SO4 = 1384 //in MJ/kmol +H_HCl = 92.3 //in MJ/kmol + +Q = H_Na2SO4 + 2*H_HCl -2*H_NaCl-H_H2SO4; +printf("heat of reaction = %f MJ\n\n",Q) + +heat_required = 64.5*(500/73); +coke_consumption = heat_required/19 +printf("amount of coke oven gas consumed = %f cubic meter",coke_consumption) -- cgit