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 /506/CH13/EX13.2.a/Example13_2a.sce | |
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 '506/CH13/EX13.2.a/Example13_2a.sce')
-rwxr-xr-x | 506/CH13/EX13.2.a/Example13_2a.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/506/CH13/EX13.2.a/Example13_2a.sce b/506/CH13/EX13.2.a/Example13_2a.sce new file mode 100755 index 000000000..f98b1a72b --- /dev/null +++ b/506/CH13/EX13.2.a/Example13_2a.sce @@ -0,0 +1,20 @@ +clear;
+clc;
+
+//Caption:To find parameters of Current series Fwwdback Amplifier
+//Given Data
+Gmf=-1;//Transconductance in mA/V
+D=50;//Desensivity
+Avf=-4;//Voltage Gain
+Rs=1;//in K
+hfe=150;
+Vt=0.026;//in V
+
+Gm=Gmf*D;
+disp('mA/V',Gm,'Gm=');
+
+//B=-Re, D = 1+B*Gm = 1-B*Gm
+Re=(1-D)/Gm;//in K
+disp('K',Re,'Re=');
+
+//end
\ No newline at end of file |