summaryrefslogtreecommitdiff
path: root/2045/CH8/EX8.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2045/CH8/EX8.6
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 '2045/CH8/EX8.6')
-rwxr-xr-x2045/CH8/EX8.6/Ex8_6.pdfbin0 -> 12183 bytes
-rwxr-xr-x2045/CH8/EX8.6/Ex8_6.sce19
2 files changed, 19 insertions, 0 deletions
diff --git a/2045/CH8/EX8.6/Ex8_6.pdf b/2045/CH8/EX8.6/Ex8_6.pdf
new file mode 100755
index 000000000..d8b7e2da2
--- /dev/null
+++ b/2045/CH8/EX8.6/Ex8_6.pdf
Binary files differ
diff --git a/2045/CH8/EX8.6/Ex8_6.sce b/2045/CH8/EX8.6/Ex8_6.sce
new file mode 100755
index 000000000..86f93ec2a
--- /dev/null
+++ b/2045/CH8/EX8.6/Ex8_6.sce
@@ -0,0 +1,19 @@
+//pagenumber 405 example 6
+clear
+vds=14;//volt
+idq=3*10^-3;//ampere
+vdd=20;//volt
+g=2*10^-2;
+rd=50*10^3;//ohm
+vgs=-1.5;//volt
+w=(vdd-vds)/idq;
+r1=-vgs/idq;
+r2=w-r1;
+inpres=1/(1-(0.8*((r1)/(r1+r2))));
+volgai=(r1+r2)/(r1+r2+(1/(g)));
+disp("r1 = "+string((r1))+"ohm");
+disp("effective input resistance = "+string((inpres))+"r3ohm");
+disp("r2 = "+string((r2))+"ohm");
+
+
+disp("voltage gain = "+string((volgai))+"av`");