diff options
Diffstat (limited to '1583/CH2/EX2.8/SSA_Ex_2_8.sce')
-rwxr-xr-x | 1583/CH2/EX2.8/SSA_Ex_2_8.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1583/CH2/EX2.8/SSA_Ex_2_8.sce b/1583/CH2/EX2.8/SSA_Ex_2_8.sce new file mode 100755 index 000000000..e9f698e68 --- /dev/null +++ b/1583/CH2/EX2.8/SSA_Ex_2_8.sce @@ -0,0 +1,13 @@ +clc
+//Chapter 2:Small Signal Amplifiers
+//example 2.8 page no 42
+//given
+disp('Assuming Vi (input voltage)=1')
+V1=(5+10^6)/(5+2*10^6)//voltage on the positive terminal
+V2=10^6/(5+2*10^6)//the voltage on the inverting terminal
+ed=V1-V2//differential voltage
+ec=(V1+V2)/2//common-mode voltage
+Ad=2*10^3//differentail gain
+Ac=2*10^-3//common mode gain (here 20% of differentail gain)
+Vo=Ad*ed+Ac*ec//actual amplifier output
+mprintf('the voltage gain is %3.2e Volts',Vo)
|