summaryrefslogtreecommitdiff
path: root/2882/CH10/EX10.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2882/CH10/EX10.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2882/CH10/EX10.1')
-rwxr-xr-x2882/CH10/EX10.1/Ex10_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2882/CH10/EX10.1/Ex10_1.sce b/2882/CH10/EX10.1/Ex10_1.sce
new file mode 100755
index 000000000..7eaf231bc
--- /dev/null
+++ b/2882/CH10/EX10.1/Ex10_1.sce
@@ -0,0 +1,17 @@
+//Tested on Windows 7 Ultimate 32-bit
+//Chapter 10 Feedback in Amplifiers Pg no. 330
+clear;
+clc;
+
+//Given
+
+Vi=2D-3;//input voltage in volts
+Vo_dash=10;//output voltage with feedback in volts
+BVo_dash=200D-3;//feedback voltage in volts
+
+//Solution
+
+A=Vo_dash/Vi;//open loop gain
+Afb=Vo_dash/(Vi+BVo_dash);//closed loop gain
+B=1/Afb-1/A;//feedback gain beta
+printf("β = %.2f",B);