summaryrefslogtreecommitdiff
path: root/2870/CH2/EX2.13/Ex2_13.sce
blob: 6247e5cd13822173b13fc438f442822ee89e45ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc;clear;
//Example 2.13

//given values
Plamp=80;
N=30;//no of lamps
t=12;
y=250;//days in a year
UC=0.07;//unit cost in USD

//calculation
LP=Plamp * N/1000;//Lighting power in kW
OpHrs=t*y;//Operating hours
LE=LP * OpHrs;//Lighting energy in kW
LC=LE*UC;//Lighting cost
disp(LC ,'the annual energy cost in USD is ')