diff options
Diffstat (limited to '73/CH8/EX8.7/Example8_7.sci')
-rwxr-xr-x | 73/CH8/EX8.7/Example8_7.sci | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/73/CH8/EX8.7/Example8_7.sci b/73/CH8/EX8.7/Example8_7.sci new file mode 100755 index 000000000..07e0b86d9 --- /dev/null +++ b/73/CH8/EX8.7/Example8_7.sci @@ -0,0 +1,15 @@ +//Chapter 8_Applications of Operational Amplifier
+//Caption : Output Voltage
+//Example8.7: In the summing amplifier(inverting mode) the signals to be combined are V1=3V, V2=2v, and V3=1V.The input resistor are R1=R2=R3=3 kilo ohm.The feeddback resistor Rf=1 kilo ohm. Consider ideal Op-Amp,determine Vo.
+//Solution:
+clear;
+clc;
+V1=3;//input signal
+V2=2;//input signal
+V3=1;//input signal
+Rf=1*10^3;//feedback resitor
+R1=3*10^3;//input resistor in ohm
+R2=R1;//input resistor in ohm
+R3=R2;//input resistor in ohm
+Vo=-(Rf/R1*V1+Rf/R2*V2+Rf/R3*V3);
+disp('V',Vo,'Output Voltage of summing amplifier is:')
\ No newline at end of file |