summaryrefslogtreecommitdiff
path: root/506/CH10/EX10.3.a/Example10_3a.sce
blob: b36cb4781992079215160054c9401733c915842c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
clear;
clc;

//Caption: To find the parameters of a FET 2N3684

//Given Values
Vpmin=-2;//in V
Vpmax=-5;//in V
Idssmin=1.6;//in mA
Idssmax=7.05;//in mA
Idmin=0.8;//in mA
Ia=Idmin;
Idmax=1.2;//in mA
Ib=Idmax;
Vdd=24;//in V
Vgs1=0;//in V
Id1=0.9;//in mA
Vgs2=-4;//in V
Id2=1.1;//in mA
//Slope determines Rs
Rs=(Vgs1-Vgs2)/(Id2-Id1);
disp('ohm',Rs,'Rs=');
Vgg=Id1*Rs;
disp('V',Vgg,'Vgg=');

//end