diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /929/CH6/EX6.16/Example6_16.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |