summaryrefslogtreecommitdiff
path: root/3507/CH16/EX16.17
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3507/CH16/EX16.17
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 '3507/CH16/EX16.17')
-rw-r--r--3507/CH16/EX16.17/Ex16_17.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3507/CH16/EX16.17/Ex16_17.sce b/3507/CH16/EX16.17/Ex16_17.sce
new file mode 100644
index 000000000..e36e9c680
--- /dev/null
+++ b/3507/CH16/EX16.17/Ex16_17.sce
@@ -0,0 +1,17 @@
+//chapter16
+//example16.17
+//page357
+
+Vcc=10 // V
+R1= 10 // kilo ohm
+R2=10 // kilo ohm
+Vbe=0.7 // V
+Re=5000 // ohm
+
+V2=Vcc*R2/(R1+R2)
+Ve=V2-Vbe
+Ie=Ve/(Re/1000) // in mA
+re_dash=25/Ie
+Av=Re/(re_dash+Re)
+
+printf("voltage gain = %.3f \n",Av)