summaryrefslogtreecommitdiff
path: root/506/CH10/EX10.2.a/Example10_2a.sce
blob: 40fb2266581995c51de0f011c96b6696ca97fd34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clear;
clc;

//Caption:amplifier using n channel FET

//Given Data

Vp=-2;//in V
Idss=1.65;//in mA
//it is desired to bias the circut at Id=0.8mA
Ids=0.8;//in mA
Vdd=24;//in V
//Assumption: rd>Rd

Vgs=Vp*(1-(Ids/Idss)^0.5);//in V
disp('V',Vgs,'Vgs=');


//end