diff options
Diffstat (limited to '506/CH6/EX6.5.c/Example6_5c.sce')
-rwxr-xr-x | 506/CH6/EX6.5.c/Example6_5c.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/506/CH6/EX6.5.c/Example6_5c.sce b/506/CH6/EX6.5.c/Example6_5c.sce new file mode 100755 index 000000000..6971845b7 --- /dev/null +++ b/506/CH6/EX6.5.c/Example6_5c.sce @@ -0,0 +1,27 @@ +clear;
+clc;
+
+//Caption:If input is high in NAND gate
+//Given Data
+//For transistor
+Vbesat=0.8;//in V
+Vy=0.5;//in V
+R = 5;//in K
+Rc = 2.2;//in K
+
+//For diode
+Vyd=0.6;//in V
+Vdrop=0.7;//in V
+
+//The logic levels are Vcesato=0.2V for 0 state
+Vcesato=0.2;//in V
+
+Vp = Vdrop + Vdrop + Vbesat;//Voltage at point P
+disp('V',Vp,'Vp=');
+disp('V',Vcc-Vp,'Each diode is reversed biased by ');
+disp('V',Vyd,'A diode starts to conduct when it is forward bias by');
+vn = (Vcc-Vp) + Vyd;//Noise Spike which will cause the malfunction
+disp('V',vn,'A noise spike which will cause malfunction is');
+
+
+//end
\ No newline at end of file |