diff options
Diffstat (limited to '2534/CH9/EX9.5')
-rwxr-xr-x | 2534/CH9/EX9.5/Ex9_5.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2534/CH9/EX9.5/Ex9_5.sce b/2534/CH9/EX9.5/Ex9_5.sce new file mode 100755 index 000000000..ac5d980f9 --- /dev/null +++ b/2534/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,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
|