diff options
Diffstat (limited to '1430/CH14/EX14.10')
-rw-r--r-- | 1430/CH14/EX14.10/exa14_10.sce | 15 | ||||
-rw-r--r-- | 1430/CH14/EX14.10/exa14_10.txt | 9 |
2 files changed, 24 insertions, 0 deletions
diff --git a/1430/CH14/EX14.10/exa14_10.sce b/1430/CH14/EX14.10/exa14_10.sce new file mode 100644 index 000000000..fde52cd0c --- /dev/null +++ b/1430/CH14/EX14.10/exa14_10.sce @@ -0,0 +1,15 @@ +// Example 14.10
+// A Mid- frequency Transistor Amplifier
+H=[1000,10^-3;50,0.1*10^-3]; // Given H-parameter matrix
+delta_h=det(H);
+A_i=-25
+// Working with impedances and admittances given in figure 14.22 we get,
+R_L=poly(0,'R_L');
+Z_i_s=(0.05*R_L+1)/(0.1*R_L+1);
+H_i_s=50/(0.1*R_L+1);
+R_s=2000;
+r=-(R_s*H_i_s)/(R_s+Z_i_s);
+p=r+25;
+// solving for p we get the value for R_L
+R_L=4000;
+disp(R_L,"Required Value of Laod resistance(Ohms)=")
diff --git a/1430/CH14/EX14.10/exa14_10.txt b/1430/CH14/EX14.10/exa14_10.txt new file mode 100644 index 000000000..bcb7143d9 --- /dev/null +++ b/1430/CH14/EX14.10/exa14_10.txt @@ -0,0 +1,9 @@ +
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 14\exa14_10.sce', -1)
+
+ Required Value of Laod resistance(Ohms)=
+
+ 4000.
+
+
|