summaryrefslogtreecommitdiff
path: root/2459/CH12/EX12.15
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH12/EX12.15
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 '2459/CH12/EX12.15')
-rw-r--r--2459/CH12/EX12.15/Ex12_15.PNGbin0 -> 5894 bytes
-rw-r--r--2459/CH12/EX12.15/Ex12_15.sce29
2 files changed, 29 insertions, 0 deletions
diff --git a/2459/CH12/EX12.15/Ex12_15.PNG b/2459/CH12/EX12.15/Ex12_15.PNG
new file mode 100644
index 000000000..41f240818
--- /dev/null
+++ b/2459/CH12/EX12.15/Ex12_15.PNG
Binary files differ
diff --git a/2459/CH12/EX12.15/Ex12_15.sce b/2459/CH12/EX12.15/Ex12_15.sce
new file mode 100644
index 000000000..a998d17bd
--- /dev/null
+++ b/2459/CH12/EX12.15/Ex12_15.sce
@@ -0,0 +1,29 @@
+//chapter12
+//example12.15
+//page252
+
+R_C=2.2 // kilo ohm
+V_CC=9 // V
+gain_beta=50
+V_BE=0.3 // V
+I_C=2 // mA
+V_CE=3 // V
+
+I_B=I_C/gain_beta
+I1=10*I_B
+
+// I1=V_CC/(R1+R2) so let Rt=R1+R2 thus we get
+Rt=V_CC/I1
+
+// by Kirchoff voltage law to collector side we get
+// V_CC=I_C*R_C+V_CE+I_E*R_E and also we have I_C=I_E so
+// V_CC=I_C*R_C+V_CE+I_C*R_E so making R_E as subject we get
+R_E=((V_CC-V_CE)/I_C)-R_C // in kilo ohm
+
+V2=V_BE+I_C*R_E // since V_E=I_C*R_E
+R2=V2/I1
+R1=Rt-R2
+
+printf("emitter resistance = %.3f ohm \n",R_E*1000)
+printf("R1 = %3f kilo ohm \n",R1)
+printf("R2 = %3f kilo ohm \n",R2)