diff options
Diffstat (limited to '863/CH3/EX3.6/Ex3_6.txt')
-rw-r--r-- | 863/CH3/EX3.6/Ex3_6.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/863/CH3/EX3.6/Ex3_6.txt b/863/CH3/EX3.6/Ex3_6.txt new file mode 100644 index 000000000..61c862577 --- /dev/null +++ b/863/CH3/EX3.6/Ex3_6.txt @@ -0,0 +1,17 @@ +//Caption:Find Zener voltage and Resistance
+//Ex3.6
+clc;
+clear;
+close;
+E=25//Input voltage(in volts)
+V=11//Output voltage(in volts)
+Vf=0.7//Forward diode voltage(in volts)
+i=1//Output current(in mA)
+v=9.1//Voltage for 1N757 diode
+I=20//Current across 1N757 diode(in mA)
+Vz=V-Vf
+Vr=E-(Vf+v)
+Iz=0.25*I
+Ir=Iz+i
+R=Vr/Ir
+disp(R,Vz,'Zener voltage(in volts) and Resistance(in Kilo ohm)=')
\ No newline at end of file |