diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3655/CH9/EX9.4/Ex9_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3655/CH9/EX9.4/Ex9_4.sce')
-rw-r--r-- | 3655/CH9/EX9.4/Ex9_4.sce | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/3655/CH9/EX9.4/Ex9_4.sce b/3655/CH9/EX9.4/Ex9_4.sce new file mode 100644 index 000000000..754af667c --- /dev/null +++ b/3655/CH9/EX9.4/Ex9_4.sce @@ -0,0 +1,55 @@ +// Example 9.4 +// Computation for various gains & i/p &o/p impedances// +// Page no.387 + +clc; +clear; +close; + +//Given data +hfe=50; +hoe=25*10^-6; +RL=1*10^3; +hie=1100; +hre=2.5*10^-4; +Rs=1000; + + +//..................................(A).....................................// + +//Calculation for current gain// +AI=-hfe/(1+hoe*RL); + +//Calculation for input resistance// +Ri=hie+(hre*AI*RL); + +//Calculation for voltage gain// +Av=(AI*RL)/Ri; + +//Calculation for overall voltage gain// +Avs=(Av*Ri)/(Ri+Rs); + +//Calculation for overall current gain// +AIs=(AI*Rs)/(Ri+Rs); + +//Calculation for output admittance// +Yo=hoe-((hfe*hre)/(hie+Rs)); + +//Calculation for output impedance// +Zo=1/Yo; + +//Calculation for the power gain// +Ap=Av*AI; + +//Displaying the result in command window + +printf('\n Current gain = AI = %0.1f ',AI); +printf('\n \n Input resistance = Ri = %0.0f ohm',Ri); +printf('\n \n Voltage gain = Av = %0.1f ',Av); +printf('\n \n Overall voltage gain = Avs = %0.1f ',Avs); +printf('\n \n Overall current gain = AIs = %0.1f ',AIs); +printf('\n \n Output admittance = Yo = %0.1f x 10^-6 mho',Yo*10^6); +printf('\n \n Output impedance = Zo = %0.1f K',Zo*10^-3); +printf('\n \n The power gain = Ap =Av*AI = %0.0f ',Ap); + +//Answers are varying due to round off error// |