diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH9/EX9.6 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '147/CH9/EX9.6')
-rw-r--r-- | 147/CH9/EX9.6/Example9_6.sce | 17 | ||||
-rw-r--r-- | 147/CH9/EX9.6/Result9_6.txt | 4 |
2 files changed, 21 insertions, 0 deletions
diff --git a/147/CH9/EX9.6/Example9_6.sce b/147/CH9/EX9.6/Example9_6.sce new file mode 100644 index 000000000..be8a832c8 --- /dev/null +++ b/147/CH9/EX9.6/Example9_6.sce @@ -0,0 +1,17 @@ +//Drain supply Vdd, Drain current Idq, Source to gate voltage Vgsq
+close();
+clear;
+clc;
+Vdd = 8;//V
+Vgsq = 4;//V
+Idq = 1*10^(-3);//A
+R1 = 5*10^(6);//ohm
+R2 = 3*10^(6);//ohm
+//By locating Q point
+Vdsq = 6;
+Vgg = R1*Vdd/(R1+R2);
+//By applying KVL aound the gate-source loop
+Rs = (Vgg - Vgsq)/Idq;
+//Using KVL around drain-source loop
+Rd = (Vdd-Vdsq-Idq*Rs)/Idq;
+mprintf('Vdsq = %0.0f V\nVgg = %0.0f V\nRs = %0.0f k ohm \nRd = %0.0f k ohm ',Vdsq,Vgg,Rs/1000,Rd/1000);
\ No newline at end of file diff --git a/147/CH9/EX9.6/Result9_6.txt b/147/CH9/EX9.6/Result9_6.txt new file mode 100644 index 000000000..a3c5768f7 --- /dev/null +++ b/147/CH9/EX9.6/Result9_6.txt @@ -0,0 +1,4 @@ +Vdsq = 6 V
+Vgg = 5 V
+Rs = 1 k ohm
+Rd = 1 k ohm
\ No newline at end of file |