summaryrefslogtreecommitdiff
path: root/1733/CH8/EX8.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1733/CH8/EX8.2
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 '1733/CH8/EX8.2')
-rwxr-xr-x1733/CH8/EX8.2/8_2.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1733/CH8/EX8.2/8_2.sce b/1733/CH8/EX8.2/8_2.sce
new file mode 100755
index 000000000..62c340397
--- /dev/null
+++ b/1733/CH8/EX8.2/8_2.sce
@@ -0,0 +1,22 @@
+//8.2
+clc;
+Vcc=12;
+Re=1*10^6;
+Rc=1*10^6;
+Ie=(Vcc-0.7)/Re*10^3;
+re=25*2/Ie;
+printf("re=%.0f ohm",re)
+Vgd=Rc/(2*re);
+printf("\nVoltage gain for the differential input=%.1f ",Vgd)
+Vi=2.1*10^-3;
+Vo_Ac=Vgd*Vi;
+printf("\nAC output voltage=%.4f V",Vo_Ac)
+Beta=75;
+Zi=2*Beta*re;
+printf("\nInput impedance=%.0f ohm",Zi)
+Rc=1*10^6;
+RE=10^6;
+CMG=Rc/(re+2*RE);
+printf("\nCommon mode gain=%.3f ",CMG)
+CMRR=Vgd/CMG;
+printf("\nCommon mode rejection ratio=%.2f ",CMRR)