summaryrefslogtreecommitdiff
path: root/863/CH6/EX6.6/Ex6_6.txt
diff options
context:
space:
mode:
Diffstat (limited to '863/CH6/EX6.6/Ex6_6.txt')
-rw-r--r--863/CH6/EX6.6/Ex6_6.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/863/CH6/EX6.6/Ex6_6.txt b/863/CH6/EX6.6/Ex6_6.txt
new file mode 100644
index 000000000..e3afaca29
--- /dev/null
+++ b/863/CH6/EX6.6/Ex6_6.txt
@@ -0,0 +1,14 @@
+//Caption:Design a non inverting schmitt trigger circuit
+//Ex6.6
+clc;
+clear;
+close;
+Vcc=15//Collector voltage(in volts)
+u=2//Upper trigger point(in volts)
+Ib=500//Base current(in nA)
+I2=Ib*0.1
+Vo=Vcc-1
+R2=Vo*1000/I2
+i=Vo*1000/R2
+R1=u*1000/i
+disp(R2,R1,'Circuit components R1 and R2(in kilo ohm)=') \ No newline at end of file