summaryrefslogtreecommitdiff
path: root/2192/CH7/EX7.11/7_11.sce
blob: dd9543d887b1398f3b6245ce1a217f0c211e5f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc,clear
printf('Example 7.11\n\n')

ECE_Cu = 0.327*10^-6*3600*1000 //in kg per 1000 Ah

//400 cells, 5000 A , 100 hours per week, 52 weeks
ampere_hours_per_annum=400*5000*100*52

annual_output = ECE_Cu*ampere_hours_per_annum/(1000*1000) //in tonnes
printf('Annual output of refined copper = %.0f tonnes',annual_output)
V=0.25 //voltage per cell
energy_per_annum=ampere_hours_per_annum*V/1000 //in kWh

energy_consumpt_per_ton=energy_per_annum/ annual_output 
printf('\nEnergy consumption per tonne= %f kWh/tonne',energy_consumpt_per_ton)