summaryrefslogtreecommitdiff
path: root/2213/CH3/EX3.7/ex_3_7.sce
blob: 000b447b8567f6f73efb74c35c3ab45225486bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Example 3.7 // energy consumption
clc;
clear;
close;
//given data :
a=500;// electrolytic cells
I=6000;//in A
t=40;//in hour/week
Z=32.81*10^-8*3600;//in kg/A-h
V=0.25;// in volts
Ah=a*I*(t*52);// total number of ampere hour per annum
Ao=Z*Ah*10^-3;// annual output in tonnes
Ea=Ah*V*10^-3;// energy consumed per annum in kWh
Et=Ea/Ao;
disp(Et,"energy consumption,Et(kWh/tonne) = ")