summaryrefslogtreecommitdiff
path: root/2300/CH5/EX5.7.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2300/CH5/EX5.7.8
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2300/CH5/EX5.7.8')
-rwxr-xr-x2300/CH5/EX5.7.8/Ex5_8.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2300/CH5/EX5.7.8/Ex5_8.sce b/2300/CH5/EX5.7.8/Ex5_8.sce
new file mode 100755
index 000000000..ea415cdd3
--- /dev/null
+++ b/2300/CH5/EX5.7.8/Ex5_8.sce
@@ -0,0 +1,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")
+