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 /2498/CH5/EX5.19 | |
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 '2498/CH5/EX5.19')
-rwxr-xr-x | 2498/CH5/EX5.19/ex5_19.sce | 15 |
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");
|