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 /2045/CH5/EX5.16 | |
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 '2045/CH5/EX5.16')
-rwxr-xr-x | 2045/CH5/EX5.16/Ex5_16.pdf | bin | 0 -> 12437 bytes | |||
-rwxr-xr-x | 2045/CH5/EX5.16/Ex5_16.sce | 19 |
2 files changed, 19 insertions, 0 deletions
diff --git a/2045/CH5/EX5.16/Ex5_16.pdf b/2045/CH5/EX5.16/Ex5_16.pdf Binary files differnew file mode 100755 index 000000000..5f30d36e3 --- /dev/null +++ b/2045/CH5/EX5.16/Ex5_16.pdf diff --git a/2045/CH5/EX5.16/Ex5_16.sce b/2045/CH5/EX5.16/Ex5_16.sce new file mode 100755 index 000000000..56fdff186 --- /dev/null +++ b/2045/CH5/EX5.16/Ex5_16.sce @@ -0,0 +1,19 @@ +//pagenumber 296 example 16
+clear
+r1=2000;//ohm
+r=900;//ohm
+hie=1200;//ohm
+hre=2*10^-4;
+hfe=60;
+hoe=25*10^-6;//ampere per volt
+curgai=(hfe)/(1+hoe*r1);
+disp("current gain = "+string((curgai)));
+ri=hie+(curgai*r1);
+disp("input impedance = "+string((ri))+"ohm");
+volgai=curgai*r1/ri;
+disp("voltage gain = "+string((volgai)));
+admita=1/ri;
+admita=hoe-(-hfe*hre)/(hie+r);
+r=1/admita;
+disp("output resistance = "+string((r))+"ohm");
+
|