summaryrefslogtreecommitdiff
path: root/2300/CH5/EX5.7.8/Ex5_8.sce
blob: ea415cdd3bc5177706cbb42581c56812863f5f29 (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

//scilab 5.4.1
//windows 7 operating system
//chapter 5:Semiconductor Junction Diodes
clc
clear
V=15//V=supply voltage
Vz=12//Vz=Zener voltage
P=0.36//P=power of Zener diode
//P=Vz*I
I=(P/Vz)//I=maximum allowable Zener current 
disp("A",I,"I=")
Vr=V-Vz//Vr=voltage drop across series resistance R
disp("V",Vr,"Vr=")
R=Vr/I//R=series resistance
disp("ohm",R,"R=")
//I=Iz+Il
Iz=2*(10^-3)//Iz=minimum diode current
Il=I-Iz//Il=current through load resistance Rl
disp("A",Il,"Il=")
Rlm=Vz/Il//Rlm=minimum value of Rl
disp("ohm",Rlm,"Rlm=")
disp("The allowable range of variation of Rl is 428.6ohm<=Rl<infinite")