summaryrefslogtreecommitdiff
path: root/863/CH6/EX6.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /863/CH6/EX6.1
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '863/CH6/EX6.1')
-rw-r--r--863/CH6/EX6.1/Ex6_1.sce22
-rw-r--r--863/CH6/EX6.1/Ex6_1.txt22
-rw-r--r--863/CH6/EX6.1/Result6_1.txt10
3 files changed, 54 insertions, 0 deletions
diff --git a/863/CH6/EX6.1/Ex6_1.sce b/863/CH6/EX6.1/Ex6_1.sce
new file mode 100644
index 000000000..617d04681
--- /dev/null
+++ b/863/CH6/EX6.1/Ex6_1.sce
@@ -0,0 +1,22 @@
+//Caption:Determine schmitt trigger circuit components for designing it
+//Ex6.1
+clc;
+clear;
+close;
+u=5//Upper trigger point voltage(in volts)
+Vbe=0.7//Base emitter voltage(in volts)
+I=2//Collector current(in mA)
+hfe=100
+Vcc=12//Collector voltage(in volt)
+Vce=0.2//Saturated collector emitter voltage(in volts)
+Ve=u-Vbe
+Re=Ve/I
+Rc=(Vcc-Ve-Vce)/I
+i=I/10
+R2=u/i
+Ib2=I/hfe
+I2=u/i
+It=Ib2+i
+r=(Vcc-u)/It
+R1=r-Rc
+disp(R1,R2,Rc,Re,'Circuit components Re,Rc,R2,R1(in kilo ohm)=') \ No newline at end of file
diff --git a/863/CH6/EX6.1/Ex6_1.txt b/863/CH6/EX6.1/Ex6_1.txt
new file mode 100644
index 000000000..617d04681
--- /dev/null
+++ b/863/CH6/EX6.1/Ex6_1.txt
@@ -0,0 +1,22 @@
+//Caption:Determine schmitt trigger circuit components for designing it
+//Ex6.1
+clc;
+clear;
+close;
+u=5//Upper trigger point voltage(in volts)
+Vbe=0.7//Base emitter voltage(in volts)
+I=2//Collector current(in mA)
+hfe=100
+Vcc=12//Collector voltage(in volt)
+Vce=0.2//Saturated collector emitter voltage(in volts)
+Ve=u-Vbe
+Re=Ve/I
+Rc=(Vcc-Ve-Vce)/I
+i=I/10
+R2=u/i
+Ib2=I/hfe
+I2=u/i
+It=Ib2+i
+r=(Vcc-u)/It
+R1=r-Rc
+disp(R1,R2,Rc,Re,'Circuit components Re,Rc,R2,R1(in kilo ohm)=') \ No newline at end of file
diff --git a/863/CH6/EX6.1/Result6_1.txt b/863/CH6/EX6.1/Result6_1.txt
new file mode 100644
index 000000000..1fd73a883
--- /dev/null
+++ b/863/CH6/EX6.1/Result6_1.txt
@@ -0,0 +1,10 @@
+ Circuit components Re,Rc,R2,R1(in kilo ohm)=
+
+ 2.15
+
+ 3.75
+
+ 25.
+
+ 28.068182
+ \ No newline at end of file