diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /752/CH5/EX5.4.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '752/CH5/EX5.4.1')
-rwxr-xr-x | 752/CH5/EX5.4.1/5_4_1.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/752/CH5/EX5.4.1/5_4_1.sce b/752/CH5/EX5.4.1/5_4_1.sce new file mode 100755 index 000000000..cbc26efdb --- /dev/null +++ b/752/CH5/EX5.4.1/5_4_1.sce @@ -0,0 +1,22 @@ +//page no 162
+// problem no 5.4.1
+//Resonating freq of a tuned ckt of a CE amplifier is 5MHz
+f=5*10^6;
+c=100*10^-12;//tuning capacitance in F
+Q=150;// Q-factor of the ckt
+Rl=5*10^3;//load resistance in ohm
+Rc=40*10^3;//o/p reistance of transistor
+Ic=500*10^-6;//transister collector current in A
+C=0.6*10^-12;//collector to base capacitance in F
+Vt=26*10^-3;//thermal voltage in V
+//transe conductance is given as
+gm=Ic/Vt;
+RD2=Q/(2*%pi*f*c);
+// At resonance the output admittance is purely conductive and is given as
+Yo=(1/Rc)+(1/RD2)+(1/Rl);
+//The voltage gain is given as
+Av=-(gm/Yo);
+disp(Av,'The voltage gain is');
+//The Millar capacitance is given as
+Cm=(1-Av)*C;
+disp('pF',Cm*10^12,'The Millar capacitance is');
\ No newline at end of file |