summaryrefslogtreecommitdiff
path: root/2498/CH5/EX5.19/ex5_19.sce
diff options
context:
space:
mode:
Diffstat (limited to '2498/CH5/EX5.19/ex5_19.sce')
-rwxr-xr-x2498/CH5/EX5.19/ex5_19.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2498/CH5/EX5.19/ex5_19.sce b/2498/CH5/EX5.19/ex5_19.sce
new file mode 100755
index 000000000..f3f9957ed
--- /dev/null
+++ b/2498/CH5/EX5.19/ex5_19.sce
@@ -0,0 +1,15 @@
+// Exa 5.19
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+dAf_byAf = 10/100;
+dAbyA = 10;
+A = 1000;
+// dAf_byAf = dAbyA*(1/(1+(A*Beta)));
+// The required feed back
+Beta = ((dAbyA/dAf_byAf)-1)/A;
+disp(Beta,"The required feed back is");
+Af = A/(1+(A*Beta));// closed loop voltage gain
+disp(Af,"The closed loop voltage gain is");