diff options
Diffstat (limited to '1223/CH13/EX13.12/Ex13_12.sce')
-rwxr-xr-x | 1223/CH13/EX13.12/Ex13_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1223/CH13/EX13.12/Ex13_12.sce b/1223/CH13/EX13.12/Ex13_12.sce new file mode 100755 index 000000000..448cd70ce --- /dev/null +++ b/1223/CH13/EX13.12/Ex13_12.sce @@ -0,0 +1,13 @@ +clear;
+clc;
+//Example 13.12
+Kp=0.6;
+bn=200;
+Va=50;
+Vt=0.026;
+Ic13=0.20;
+Ri2=bn*Vt/Ic13;
+printf('\ninput resistance to the gain stage=%.2f KOhm\n',Ri2)
+Iq5=Ic13;
+Ad=sqrt(2*Kp*Iq5)*Ri2;
+printf('\nsmall signal voltage gain=%.2f\n',Ad)
|