summaryrefslogtreecommitdiff
path: root/929/CH6/EX6.2.a/Example6_2_a.sce
diff options
context:
space:
mode:
Diffstat (limited to '929/CH6/EX6.2.a/Example6_2_a.sce')
-rwxr-xr-x929/CH6/EX6.2.a/Example6_2_a.sce38
1 files changed, 38 insertions, 0 deletions
diff --git a/929/CH6/EX6.2.a/Example6_2_a.sce b/929/CH6/EX6.2.a/Example6_2_a.sce
new file mode 100755
index 000000000..ece0fce83
--- /dev/null
+++ b/929/CH6/EX6.2.a/Example6_2_a.sce
@@ -0,0 +1,38 @@
+//Chapter-6
+//Page No.-265
+//Example 6.2(a)
+//Gain Bandwidth Tradeoff
+
+A0dB=60;
+
+A0=10^(A0dB/20);
+
+ft=10^6;
+
+fb=ft/A0;
+
+A10=A0^(1/2);
+
+A20=A10;
+
+fb1=ft/A10;
+
+fb2=fb1;
+
+R1=1*10^3;
+
+R2=(A10-1)*R1;
+
+printf("Designed Audio Amplifier :");
+
+printf("\nOperational Amplifier-1 :");
+
+printf("\nR1=%.2f kohms",R1*10^(-3));
+
+printf("\nR2=%.1f kohms",(R2*10^(-3))+0.3);
+
+printf("\n\nOperational Amplifier-2 :");
+
+printf("\nR1=%.2f kohms",R1*10^(-3));
+
+printf("\nR2=%.1f kohms",(R2*10^(-3))+0.3); \ No newline at end of file