blob: ac5d980f9b8410fadf0735d65c05446e58f5a988 (
plain)
1
2
3
4
5
6
7
8
|
//Ex9_5
clc
VGS = 4// voltage applied to gate terminal
IG = 2*10^-9//current flowing in gate
RGS = VGS/IG
disp("VGs = "+string(VGS)+"V")
disp("IG = "+string(IG)+"A")
disp("RGS = VGS/IG = "+string(RGS)+"ohm")//resistance brtween gate and source
|