blob: 274ef8d7c057b8255036a154eab515d2d2838e0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clear;
clc;
//Caption:To find the range of possible values of Id in FET 2N3684 from the graph
//In the figure given The line of Rs=3.3K cuts Vp = -2V at Id = 0.4 mA
Idmin = 0.4;//in mA
disp('mA',Idmin,'Idmin=');
//In the figure given The line of Rs=3.3K cuts Vp = -5V at Id = 1.2 mA
Idmax = 1.2;//in mA
disp('mA',Idmax,'Idmax=');
//end
|