summaryrefslogtreecommitdiff
path: root/506/CH13/EX13.2.a/Example13_2a.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /506/CH13/EX13.2.a/Example13_2a.sce
downloadScilab-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-x506/CH13/EX13.2.a/Example13_2a.sce20
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