summaryrefslogtreecommitdiff
path: root/3775/CH2/EX2.11/Ex2_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3775/CH2/EX2.11/Ex2_11.sce')
-rw-r--r--3775/CH2/EX2.11/Ex2_11.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3775/CH2/EX2.11/Ex2_11.sce b/3775/CH2/EX2.11/Ex2_11.sce
new file mode 100644
index 000000000..80b0ca754
--- /dev/null
+++ b/3775/CH2/EX2.11/Ex2_11.sce
@@ -0,0 +1,15 @@
+//Ex 2.11 page 73
+
+clc;
+clear;
+close;
+
+m=3*10**3;// gradient (VG/IG)
+VS=10;// V
+PG=0.012;// W
+// IG = VG/m & PG=VG*IG
+VG=sqrt(PG*m)
+IG=VG/m ; // A
+RS=(VS-VG)/IG/1000;// kohm
+printf('gate source resistance = %.1f kohm',RS)
+