summaryrefslogtreecommitdiff
path: root/3754/CH25/EX25.5
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3754/CH25/EX25.5
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 '3754/CH25/EX25.5')
-rw-r--r--3754/CH25/EX25.5/25_5.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3754/CH25/EX25.5/25_5.sce b/3754/CH25/EX25.5/25_5.sce
new file mode 100644
index 000000000..43bbf300c
--- /dev/null
+++ b/3754/CH25/EX25.5/25_5.sce
@@ -0,0 +1,26 @@
+clear//
+
+//Variables
+
+hie = 1.1 * 10**3 //hie (in ohm)
+hre = 2.5 * 10**-4 //hre
+hoe = 25.0 * 10**-6 //hoe (in mho)
+RS = 10000.0 //Source resistance (in ohm)
+hfe=50.0;beta=50.0;
+rL = 1000.0 //ac.c load resistance (in ohm)
+RB = 200.0 * 10**3 //Feedback resistor (in ohm)
+RC = 5.0 * 10**3 //Collector resistance (in ohm)
+
+//Calculation
+
+rL = RC * RB / (RC + RB) //a.c. load resistance (in ohm)
+Ai = hfe /(1 + hoe * rL) //Current gain
+Ri = hie + hre * Ai * rL //Input resistance of the amplifier looking into the base (in ohm)
+Av = Ai * rL / Ri //Voltage gain
+RB1 = RB/(1 - (-17.4)) //Resistance (in ohm)
+Ris = Ri * RB1 / (Ri + RB1) //Input resistance looking from source terminals (in ohm)
+Avs = Av * Ris / (RS + Ris) //Voltage gain of the stage
+
+//Result
+
+printf("\n Ai is %0.2f \nAv is %0.2f \nAvs is %0.1f \nRi is %0.3f kilo-ohm.",Ai,Av,Avs,Ri*10**-3)