summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.46/Ex1_46.sce
blob: 4623527b7203ae270de4fe7f74a3b6fe011061c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS 
//Example 46

disp("CHAPTER 1");
disp("EXAMPLE 46");

//VARIABLE INITIALIZATION
v=240;                          //in Volts

//SOLUTION
//case1: p=60W
p1=60;                          //in Watts 
r1=(v^2)/p1;
disp(sprintf("Resistance of the metal filament lamp is %d Ω",r1));

//case2: p=100W
p2=100;                         //in Watts
r2=(v^2)/p2;

if(r1>r2) then
disp(sprintf("Resistance of %d W lamp will be greater",p1));
else
disp(sprintf("Resistance of %d W lamp will be greater",p2));
end;

//END