summaryrefslogtreecommitdiff
path: root/2498/CH3/EX3.17/ex3_17.sce
blob: c8790bc71c2cf47e1e3330b151dd1c059f2e2f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Exa 3.17
clc;
clear;
close;
format('v',6)
// Given data
R = 150*10^3;// in ohm
R_L = 75;// in k ohm
R_L = R_L * 10^3;// in ohm
V_Z = 15;// in V
Vin = 50;// in V
R_Z = 0;
Rth = (R*R_L)/(R+R_L);// in ohm
Vth = Vin * ( R_L/(R_L+R) );// in V
I_Z = Vth/Rth;// in A
// The power dissipation in the zener diode 
P_Z = V_Z*I_Z;// in W
P_Z= P_Z*10^3;//in mW
disp(P_Z,"The power dissipation in the zener diode in mW is");

// Note: The calculation in the last line is wrong as 15*0.333 = 5 mW not 0.5mW, So the answer in the book is wrong.