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 /2102/CH6/EX6.14/exa_6_14.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 '2102/CH6/EX6.14/exa_6_14.sce')
-rwxr-xr-x | 2102/CH6/EX6.14/exa_6_14.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2102/CH6/EX6.14/exa_6_14.sce b/2102/CH6/EX6.14/exa_6_14.sce new file mode 100755 index 000000000..ad1c260a4 --- /dev/null +++ b/2102/CH6/EX6.14/exa_6_14.sce @@ -0,0 +1,23 @@ +// Exa 6.14
+clc;
+clear;
+close;
+// Given data
+I_DSS= 4;// in mA
+I_DSS= I_DSS*10^-3;// in A
+V_P= -2;// in V
+V_DD= 10;// in V
+V_SS= V_DD;// in V
+V_GS2=0;// in V
+I_D= I_DSS*(1-V_GS2/V_P)^2;// in A
+// since I_D= I_DSS
+V_GS= 0;// in volt
+// Formula V_SS= V_DS-V_GS
+V_DS= V_SS-V_GS;// in volt
+disp(I_D*10^3,"The value of I_D in mA is :")
+disp(V_GS,"The value of V_GS in volt is : ")
+disp(V_DS,"The value of V_DS in volts is :")
+
+if V_DS > V_GS-V_P then
+ disp("The active region operation of the upper JFET is confirmed ")
+end
|