summaryrefslogtreecommitdiff
path: root/2459/CH16/EX16.19
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH16/EX16.19
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/CH16/EX16.19')
-rw-r--r--2459/CH16/EX16.19/Ex16_19.PNGbin0 -> 4224 bytes
-rw-r--r--2459/CH16/EX16.19/Ex16_19.sce23
2 files changed, 23 insertions, 0 deletions
diff --git a/2459/CH16/EX16.19/Ex16_19.PNG b/2459/CH16/EX16.19/Ex16_19.PNG
new file mode 100644
index 000000000..deb996a3f
--- /dev/null
+++ b/2459/CH16/EX16.19/Ex16_19.PNG
Binary files differ
diff --git a/2459/CH16/EX16.19/Ex16_19.sce b/2459/CH16/EX16.19/Ex16_19.sce
new file mode 100644
index 000000000..42c4a9236
--- /dev/null
+++ b/2459/CH16/EX16.19/Ex16_19.sce
@@ -0,0 +1,23 @@
+//chapter16
+//example16.19
+//page359
+
+Vcc=10 // V
+R1= 10 // kilo ohm
+R2=10 // kilo ohm
+Vbe=0.7 // V
+Re=4.3 // kilo ohm
+gain_beta=200
+Rl=10 // kilo ohm
+
+V2=Vcc*R2/(R1+R2)
+Ve=V2-Vbe
+Ie=Ve/Re
+re_dash=25/Ie
+Re_dash=Re*Rl/(Re+Rl)
+Zin_base=gain_beta*(re_dash+Re_dash)
+Zin=Zin_base*(R1*R2/(R1+R2))/(Zin_base+R1*R2/(R1+R2))
+
+printf("input impedence = %.3f kilo ohm \n",Zin)
+
+// the accurate answer is 4.996 kilo ohm but in book it is given as 4.96 kilo ohm