summaryrefslogtreecommitdiff
path: root/1754/CH3/EX3.6
diff options
context:
space:
mode:
Diffstat (limited to '1754/CH3/EX3.6')
-rwxr-xr-x1754/CH3/EX3.6/Exa3_6.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1754/CH3/EX3.6/Exa3_6.sce b/1754/CH3/EX3.6/Exa3_6.sce
new file mode 100755
index 000000000..7701e5ff2
--- /dev/null
+++ b/1754/CH3/EX3.6/Exa3_6.sce
@@ -0,0 +1,17 @@
+//Exa 3.6
+clc;
+clear;
+close;
+//Given data :
+RC=10;//in kohm
+hfe=330;//unitless
+hie=4.5;//in kOhm
+//RS<<hie
+AVM=hfe*RC*10^3/(hie*10^3+RC*10^3);//unitless
+AVM1=AVM;//Gain of 1st stage
+AVM2=AVM;//Gain of 2nd stage
+AVM3=hfe*RC*10^3/(hie*10^3);//unitless(//Gain of 3rd stage)
+OverallGain=AVM1*AVM2*AVM3;//unitless
+disp(AVM,"Gain in mid frequeny range : ");
+disp("This is the gain of 1st and 2nd stage.")
+disp(OverallGain,"Overall Voltage gain for mid frequency range : "); \ No newline at end of file