summaryrefslogtreecommitdiff
path: root/2459/CH13/EX13.9
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH13/EX13.9
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/CH13/EX13.9')
-rw-r--r--2459/CH13/EX13.9/Ex13_9.PNGbin0 -> 4562 bytes
-rw-r--r--2459/CH13/EX13.9/Ex13_9.sce17
2 files changed, 17 insertions, 0 deletions
diff --git a/2459/CH13/EX13.9/Ex13_9.PNG b/2459/CH13/EX13.9/Ex13_9.PNG
new file mode 100644
index 000000000..3806aff13
--- /dev/null
+++ b/2459/CH13/EX13.9/Ex13_9.PNG
Binary files differ
diff --git a/2459/CH13/EX13.9/Ex13_9.sce b/2459/CH13/EX13.9/Ex13_9.sce
new file mode 100644
index 000000000..d078898cc
--- /dev/null
+++ b/2459/CH13/EX13.9/Ex13_9.sce
@@ -0,0 +1,17 @@
+//chapter13
+//example13.9
+//page283
+
+Rc=3 // kilo ohm
+Rl=6 // kilo ohm
+Rin=0.5 // kilo ohm
+Vin=1 // mV
+gain_beta=50
+
+R_AC=Rc*Rl/(Rc+Rl)
+Av=gain_beta*R_AC/Rin
+
+// since Av=Vout/Vin we get
+Vout=Av*Vin
+
+printf("output voltage = %.3f mV \n",Vout)