diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2882/CH3/EX3.13/Ex3_13.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2882/CH3/EX3.13/Ex3_13.sce')
-rwxr-xr-x | 2882/CH3/EX3.13/Ex3_13.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/2882/CH3/EX3.13/Ex3_13.sce b/2882/CH3/EX3.13/Ex3_13.sce new file mode 100755 index 000000000..3fa7b87b0 --- /dev/null +++ b/2882/CH3/EX3.13/Ex3_13.sce @@ -0,0 +1,31 @@ +//Tested on Windows 7 Ultimate 32-bit
+//Chapter 3 Semiconductor Diodes and Miscellaneous Devices Pg no. 97
+clear;
+clc;
+
+//Given Data
+//From Figure 3.28
+
+V=15;//value of voltage source in volts
+Vz=10;//zener breakdown voltage in volts
+Rs=300;//series resistance R in ohms
+Rp=900;//shunt resistance R' in ohms
+Izmax=10;//maximum zener current in milli-amperes
+
+//Solution
+
+//Assuming ideal diode Vz=12V and Rz=0 ohms
+Vrs=V-Vz;//voltage across resistor in volts
+Irs=Vrs/Rs*1000;//current through resistor R in milli-amperes
+Irp=Vz/Rp*1000;//current through resistor R' in milli-amperes
+
+Iz=Irs-Irp;//current through diode in milli-amperes
+
+if Iz<Izmax then
+ printf("The diode is properly biased.\n");
+else printf("The diode is not biased properly.\n");
+end
+
+Pd=Vz*Iz;//power dissipation in milli-watts
+
+printf("The dissipated power = Pd = %.1f mW",Pd);
|