summaryrefslogtreecommitdiff
path: root/Working_Examples/293/CH9/EX9.2/eg9_2.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/293/CH9/EX9.2/eg9_2.sce')
-rwxr-xr-xWorking_Examples/293/CH9/EX9.2/eg9_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/Working_Examples/293/CH9/EX9.2/eg9_2.sce b/Working_Examples/293/CH9/EX9.2/eg9_2.sce
new file mode 100755
index 0000000..8a35341
--- /dev/null
+++ b/Working_Examples/293/CH9/EX9.2/eg9_2.sce
@@ -0,0 +1,12 @@
+// Quiescent point
+Idq = 0.0034; // drain current
+Vdq = 15; // drain voltage
+Vgq = 1; // gate voltage
+
+Vdd = 24; //drain supply voltage
+
+Rs = Vgq/Idq;
+disp(Rs,"The value of self bais source resistance is(in ohm): ")
+
+Rd = (Vdd - Vdq)/Idq ;
+disp(Rd,"The value of drain load resistance is(in ohm): ") \ No newline at end of file