summaryrefslogtreecommitdiff
path: root/2219/CH6/EX6.14/Ex6_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH6/EX6.14/Ex6_14.sce')
-rwxr-xr-x2219/CH6/EX6.14/Ex6_14.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2219/CH6/EX6.14/Ex6_14.sce b/2219/CH6/EX6.14/Ex6_14.sce
new file mode 100755
index 000000000..095bc2c80
--- /dev/null
+++ b/2219/CH6/EX6.14/Ex6_14.sce
@@ -0,0 +1,24 @@
+// Chapter 6 example 14
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given data
+gm = 50*10^-3; // conductance in mho
+cgs = 0.6*10^-12; // gate to source capacitance
+cgd = 0.015*10^-12; // gate to drain capacitance
+Rg = 3; // gate resistance in ohm
+Rs = 2; // source resistance in ohm
+Ri = 2.5; // intrinsic channel resistance
+Rds = 400; // drain to source resistance
+
+// Calculations
+fT = gm/(2*%pi*cgs); // device's fT
+t3 = 2*%pi*Rg*cgd;
+r1 = (Rg+Rs+Ri)/Rds;
+fmax = fT/(2*sqrt(r1 + (fT*t3))); // max usable frequency
+if fmax>40*10^9 then
+ mprintf('Operation at 40 GHz is Theoretically possible\n');
+end
+
+// Output
+mprintf(' fT = %3.1f Ghz\n fmax = %3.1f',fT/10^9,fmax/10^9 )