summaryrefslogtreecommitdiff
path: root/3517/CH13/EX13.1/Ex13_1.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3517/CH13/EX13.1/Ex13_1.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3517/CH13/EX13.1/Ex13_1.sce')
-rw-r--r--3517/CH13/EX13.1/Ex13_1.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3517/CH13/EX13.1/Ex13_1.sce b/3517/CH13/EX13.1/Ex13_1.sce
new file mode 100644
index 000000000..ef010ef46
--- /dev/null
+++ b/3517/CH13/EX13.1/Ex13_1.sce
@@ -0,0 +1,20 @@
+//Caption:Design a collector coupled bistable multivibrator
+//Ex13.1
+clc;
+clear;
+close;
+V=5//Supply voltage(in volts)
+Ic=2//Saturated collector current(in mA)
+Vce=0.2//Collector emitter voltage(in volts)
+hfe=70
+Vbe=0.7//Base emitter voltage(in volts)
+Vbb=-5//Base voltage(in volts)
+Rc=(V-Vce)/Ic
+Ib=Ic/hfe
+Vb1=Vbe-Vbb
+I2=Ic/10
+R2=Vb1/I2
+I2=Vb1/R2
+R=(V-Vbe)/(I2+Ib)
+R1=R-Rc
+disp(Rc,R1,R2,'Components required to design the circuit are resistors(in kilo ohm)=') \ No newline at end of file