summaryrefslogtreecommitdiff
path: root/2459/CH12/EX12.12
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.12
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.12')
-rw-r--r--2459/CH12/EX12.12/Ex12_12.PNGbin0 -> 6561 bytes
-rw-r--r--2459/CH12/EX12.12/Ex12_12.sce29
-rw-r--r--2459/CH12/EX12.12/Figure12_12.JPGbin0 -> 31648 bytes
3 files changed, 29 insertions, 0 deletions
diff --git a/2459/CH12/EX12.12/Ex12_12.PNG b/2459/CH12/EX12.12/Ex12_12.PNG
new file mode 100644
index 000000000..399c0a763
--- /dev/null
+++ b/2459/CH12/EX12.12/Ex12_12.PNG
Binary files differ
diff --git a/2459/CH12/EX12.12/Ex12_12.sce b/2459/CH12/EX12.12/Ex12_12.sce
new file mode 100644
index 000000000..75c4b3b09
--- /dev/null
+++ b/2459/CH12/EX12.12/Ex12_12.sce
@@ -0,0 +1,29 @@
+//chapter12
+//example12.12
+//page249
+
+Vcc=15 // V
+Re=2 // kilo ohm
+Rc=1 // kilo ohm
+gain_beta=100
+Vbe=0.7 // V
+R1=10 // kilo ohm
+R2=5 // kilo ohm
+
+Eo=Vcc*R2/(R1+R2)
+Ro=R1*R2/(R1+R2)
+
+printf("thevenin voltage = %.3f V \n",Eo)
+printf("thevenin resistance = %.3f kilo ohm \n",Ro)
+
+// here Eo=Ib*Ro+Vbe+Ie*Re
+// now considering Ie=gain_beta*Ib, and making Ib as subject we get
+// Ib=(Eo-Vbe)/(Ro+gain_beta*Re)
+// Ic=gain_beta*Ib=gain_beta*(Eo-Vbe)/(Ro+gain_beta*Re)
+// dividing numerator and denominator by gain_beta we get
+// Ic=(Eo-Vbe)/(Re+Ro/gain_beta)
+// Ro/gain_beta is negligible compared to Re so
+Ic=(Eo-Vbe)/Re
+Vce=Vcc-Ic*(Rc+Re)
+
+printf("the operating point is %.3f V and %.3f mA \n",Vce,Ic)
diff --git a/2459/CH12/EX12.12/Figure12_12.JPG b/2459/CH12/EX12.12/Figure12_12.JPG
new file mode 100644
index 000000000..bbd44ffc0
--- /dev/null
+++ b/2459/CH12/EX12.12/Figure12_12.JPG
Binary files differ