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 /2534/CH9/EX9.10 | |
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 '2534/CH9/EX9.10')
-rwxr-xr-x | 2534/CH9/EX9.10/Ex9_10.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2534/CH9/EX9.10/Ex9_10.sce b/2534/CH9/EX9.10/Ex9_10.sce new file mode 100755 index 000000000..adc8b8126 --- /dev/null +++ b/2534/CH9/EX9.10/Ex9_10.sce @@ -0,0 +1,18 @@ +//Ex9_10
+clc
+VGS = -2//voltage across gate and source
+IDSS = 8*10^-3//maximum drain current
+Vp = -6//pinch-off voltage
+disp("IDSS = "+string(IDSS)+"A")
+disp("Vp = "+string(Vp)+"V")
+disp("VGS = "+string(VGS)+"V")
+ID = IDSS*(1-(VGS/Vp))^2
+disp("ID = IDSS*(1-(VGS/Vp))^2 = "+string(ID)+"A")//drainm current
+RD = 2*10^3//drain resistance
+VDD = 12//drain voltage
+VDS = VDD - ID*RD
+disp("VDD = "+string(VDD)+"V")//drain voltage
+disp("RD = "+string(RD)+"ohm")//drain resistance
+disp("VDS = VDD - ID*RD = "+string(VDS)+"V")//voltage across drain and source
+
+// note : notification used for saturated drain-soucre current is given wrong in question i.e., IDS but is right in solution i.e., IDSS.
|