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.a | |
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.a')
-rwxr-xr-x | 506/CH10/EX10.3.a/Example10_3a.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/506/CH10/EX10.3.a/Example10_3a.sce b/506/CH10/EX10.3.a/Example10_3a.sce new file mode 100755 index 000000000..b36cb4781 --- /dev/null +++ b/506/CH10/EX10.3.a/Example10_3a.sce @@ -0,0 +1,26 @@ +clear;
+clc;
+
+//Caption: To find the parameters of a FET 2N3684
+
+//Given Values
+Vpmin=-2;//in V
+Vpmax=-5;//in V
+Idssmin=1.6;//in mA
+Idssmax=7.05;//in mA
+Idmin=0.8;//in mA
+Ia=Idmin;
+Idmax=1.2;//in mA
+Ib=Idmax;
+Vdd=24;//in V
+Vgs1=0;//in V
+Id1=0.9;//in mA
+Vgs2=-4;//in V
+Id2=1.1;//in mA
+//Slope determines Rs
+Rs=(Vgs1-Vgs2)/(Id2-Id1);
+disp('ohm',Rs,'Rs=');
+Vgg=Id1*Rs;
+disp('V',Vgg,'Vgg=');
+
+//end
\ No newline at end of file |