diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2210/CH6/EX6.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2210/CH6/EX6.6')
-rwxr-xr-x | 2210/CH6/EX6.6/6_6.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2210/CH6/EX6.6/6_6.sce b/2210/CH6/EX6.6/6_6.sce new file mode 100755 index 000000000..2926905ea --- /dev/null +++ b/2210/CH6/EX6.6/6_6.sce @@ -0,0 +1,23 @@ +//Chapter 6, Problem 6
+clc
+vbe=0.7 //base to emitter voltage
+ic=1e-3 //collector current
+vc=6 //collector voltage
+vcc=12 //supply voltage
+hf1=100 //dc current gain
+hf2=250 //dc current gain
+ibb=0.5e-3
+
+//calculating the biasing resistors
+ie=ic
+hfe=sqrt(hf1*hf2)
+ve=(10/100)*vcc
+re=ve/ie
+rc=((vcc-vc)/ic)
+ib=ic/hfe
+vbb=ve+vbe
+r2=vbb/ibb
+r1=((vcc-vbb)/(ibb+ib))
+
+disp("Biasing resistor is given by\n")
+printf("R1 = %.2f Kohm\nR2 = %.2f Kohm\nRc = %.2f Kohm\nRe = %.2f Kohm",r1/1000,r2/1000,rc/1000,re/1000)
|