diff options
Diffstat (limited to '929/CH6/EX6.16/Example6_16.sce')
-rwxr-xr-x | 929/CH6/EX6.16/Example6_16.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/929/CH6/EX6.16/Example6_16.sce b/929/CH6/EX6.16/Example6_16.sce new file mode 100755 index 000000000..b0b17948c --- /dev/null +++ b/929/CH6/EX6.16/Example6_16.sce @@ -0,0 +1,31 @@ +//Example 6.16
+
+clear;
+
+clc;
+
+A0=10;
+
+fB=100*10^6;
+
+brec=1.5*10^3;
+
+rn=50;
+
+R2=brec-(rn*A0);
+
+R1=R2/(A0-1);
+
+printf("(a) Redisigned Current Feedback Amplifier of Example 6.15 :");
+
+printf("\n R1=%.f ohms",R1);
+
+printf("\n R2=%.2f kohms",R2*10^(-3));
+
+z0=0.75*10^6;
+
+T0=(1/brec)*z0;
+
+epsilon=-100/T0;
+
+printf("\n\n(b) Percentage dc gain error=%.1f",epsilon);
\ No newline at end of file |