diff options
Diffstat (limited to '2825/CH10/EX10.1/Ex10_1.sce')
-rwxr-xr-x | 2825/CH10/EX10.1/Ex10_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2825/CH10/EX10.1/Ex10_1.sce b/2825/CH10/EX10.1/Ex10_1.sce new file mode 100755 index 000000000..3e5fca2c1 --- /dev/null +++ b/2825/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,14 @@ +//Ex10_1 Pg-490
+clc
+
+Rc=1*10^(6) //collector resisstor in ohm
+Re=2*10^(6) //emitter resistor in ohm
+Vin=1*10^(-3) //input voltage in V
+
+Acm=Rc/Re //Common moce voltage gain
+printf("Common moce voltage gain = %.1f \n",Acm)
+
+Vo=Acm*Vin //output voltage
+printf(" Output voltage = %.1f mV",Vo*1e3)
+
+disp("Thus a differential amplifier in common mode attenuates the input signal rather than amplifying it")
|