diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /506/CH10/EX10.3.b/Example10_3b.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |