diff options
Diffstat (limited to '3830/CH2/EX2.6/Ex2_6.sce')
-rw-r--r-- | 3830/CH2/EX2.6/Ex2_6.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3830/CH2/EX2.6/Ex2_6.sce b/3830/CH2/EX2.6/Ex2_6.sce new file mode 100644 index 000000000..d06bcf648 --- /dev/null +++ b/3830/CH2/EX2.6/Ex2_6.sce @@ -0,0 +1,20 @@ +// Exa 2.6
+
+clc;
+clear;
+
+// Given
+
+// An Amilifier under consideration
+Av = 40; // Voltage gain
+Vi = 0.1; // Input voltage without feedback(V)
+Vi_fb = 2.4; // Input voltage with feedback(V)
+
+// Solution
+
+A = Av*Vi_fb/Vi;
+
+// Av = A/(1-B*A) ; therefore,
+B = (1-A/Av)/A;
+
+printf(' The value of feedback ratio = %.6f \n ',B);
|