diff options
Diffstat (limited to '2459/CH16/EX16.7/Ex16_7.sce')
-rw-r--r-- | 2459/CH16/EX16.7/Ex16_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2459/CH16/EX16.7/Ex16_7.sce b/2459/CH16/EX16.7/Ex16_7.sce new file mode 100644 index 000000000..237c9d7d0 --- /dev/null +++ b/2459/CH16/EX16.7/Ex16_7.sce @@ -0,0 +1,14 @@ +//chapter16
+//example16.7
+//page348
+
+A0=1000
+Rout=100 // ohm
+Rl=900
+mv=1/50
+
+Av=A0*Rl/(Rout+Rl)
+Avf=Av/(1+Av*mv)
+printf("voltage gain with negative feedback = %.3f \n",Avf)
+
+// the accurate answer is 47.368 but in book it is given as 47.4
|