summaryrefslogtreecommitdiff
path: root/2882/CH10/EX10.5
diff options
context:
space:
mode:
Diffstat (limited to '2882/CH10/EX10.5')
-rwxr-xr-x2882/CH10/EX10.5/Ex10_5.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2882/CH10/EX10.5/Ex10_5.sce b/2882/CH10/EX10.5/Ex10_5.sce
new file mode 100755
index 000000000..6f1d1d5f9
--- /dev/null
+++ b/2882/CH10/EX10.5/Ex10_5.sce
@@ -0,0 +1,24 @@
+//Tested on Windows 7 Ultimate 32-bit
+//Chapter 10 Feedback in Amplifiers Pg no. 332
+clear;
+clc;
+
+//Given
+
+A=100;//open loop gain
+D=0.05;//distortion
+Vi=0.5;//input voltage in volts
+
+//Solution
+
+disp("(a)");
+Vo=A*Vi;//output voltage in volts
+printf("Output signal voltage = %d Volts",Vo);
+
+disp("(b)");
+DV=D*Vo;//distortion voltage in volts
+printf("Distortion voltage = %.1f Volts",DV);
+
+disp("(c)");
+AOV=DV+Vo;//amplifier output voltage in volts
+printf("Amplifier output voltage = %.1f Volts",AOV);