diff options
Diffstat (limited to '2219/CH6/EX6.1/Ex6_1.sce')
-rwxr-xr-x | 2219/CH6/EX6.1/Ex6_1.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/2219/CH6/EX6.1/Ex6_1.sce b/2219/CH6/EX6.1/Ex6_1.sce new file mode 100755 index 000000000..bd357db96 --- /dev/null +++ b/2219/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,30 @@ +// Chapter 6 example 1
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given data
+gs = 0.0025; // output conductance in mho
+gl = 0.0025; // load conductance
+r = -250; // negative resistance of microwave device
+
+// calculations
+
+// P1 = Vl^2 *gl // power that is transferred to load
+// P = Vl^2 *gs // source is matched to load
+// P = [Is/(gl+gs)]^2 *gs
+// = ((Is^2)/(4*gs^2))*gs
+// = (Is^2)/(4*gl)
+// P2 = Vl^2 *gl // Load power
+// = [Is/(gs+gl-g)]^2 *gl
+// = (Is^2 *gl)/(2gl - g)^2
+// P2/P1 = ((Is^2 *gl)/(2gl - g)^2)*(4*gl)/(Is^2)
+// = (4*gl^2)/(2gl - g)^2;
+// = (4*gl^2)/(4gl^2 + g(g-4gl))
+// For P2/P1 > 1 , 4gl > g so that denominator is less than numerator
+g = 1/r
+// let k = P2/P1
+k = (4*gl*gl)/((2*gs)+ g)^2
+
+// output
+ mprintf('Power gain = %d',k);
+
|