diff options
Diffstat (limited to '506/CH10/EX10.3.b/Example10_3b.sce')
-rwxr-xr-x | 506/CH10/EX10.3.b/Example10_3b.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/506/CH10/EX10.3.b/Example10_3b.sce b/506/CH10/EX10.3.b/Example10_3b.sce new file mode 100755 index 000000000..274ef8d7c --- /dev/null +++ b/506/CH10/EX10.3.b/Example10_3b.sce @@ -0,0 +1,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
\ No newline at end of file |