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 /2300/CH13/EX13.16.15 | |
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 '2300/CH13/EX13.16.15')
-rwxr-xr-x | 2300/CH13/EX13.16.15/Ex13_15.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2300/CH13/EX13.16.15/Ex13_15.sce b/2300/CH13/EX13.16.15/Ex13_15.sce new file mode 100755 index 000000000..831aac95a --- /dev/null +++ b/2300/CH13/EX13.16.15/Ex13_15.sce @@ -0,0 +1,20 @@ +//scilab 5.4.1
+//Windows 7 operating system
+//chapter 13 Field-Effect Transistors
+clc
+clear
+//r given in textbook is taken as rd afterwards.Hence r=rd
+rd=100*10^3//rd=drain resistance in ohms
+gm=3500*10^-6//gm=transconductance in terms of A/V (or S)
+RL=5*10^3//RL=load resistance in ohms
+u=rd*gm//u=amplification factor
+AV=(u*RL)/(((u+1)*RL)+rd)//AV=voltage gain
+format("v",6)
+disp(AV,"The voltage gain is=")
+Ro=rd/(u+1)//Ro=output resistance excluding RL
+format("v",5)
+disp("ohm",Ro,"The output resistance excluding RL is =")
+Ro1=(rd*RL)/(rd+((u+1)*RL))//Ro1=Ro'=output resistance including RL
+format("v",6)
+disp("ohm",floor(Ro1),"The output resistance including RL is=")//floor function is used to round down the value
+
|