summaryrefslogtreecommitdiff
path: root/135/CH9/EX9.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /135/CH9/EX9.8
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 '135/CH9/EX9.8')
-rwxr-xr-x135/CH9/EX9.8/EX8.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/135/CH9/EX9.8/EX8.sce b/135/CH9/EX9.8/EX8.sce
new file mode 100755
index 000000000..8d4a9f821
--- /dev/null
+++ b/135/CH9/EX9.8/EX8.sce
@@ -0,0 +1,12 @@
+// Example 9.8:Gain
+clc, clear
+IC=1; // in mili-amperes
+bta=120;
+VT=25e-3; // Voltage equivalent to temperatue at room temperature in volts
+// From Fig. 9.20
+RC=6; // in kilo-ohms
+AV1=-1; // Voltage gain of CE stage (from Eqn. 9.35)
+gm=IC/VT; // in mili-mho
+AV2=gm*RC; // Voltage gain of CB stage
+AV=AV1*AV2; // Overall voltage gain
+disp(AV,"Gain ="); \ No newline at end of file