From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3830/CH2/EX2.6/Ex2_6.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 3830/CH2/EX2.6/Ex2_6.sce (limited to '3830/CH2/EX2.6') 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); -- cgit