summaryrefslogtreecommitdiff
path: root/2459/CH16/EX16.6/Ex16_6.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH16/EX16.6/Ex16_6.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '2459/CH16/EX16.6/Ex16_6.sce')
-rw-r--r--2459/CH16/EX16.6/Ex16_6.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2459/CH16/EX16.6/Ex16_6.sce b/2459/CH16/EX16.6/Ex16_6.sce
new file mode 100644
index 000000000..d68cbc564
--- /dev/null
+++ b/2459/CH16/EX16.6/Ex16_6.sce
@@ -0,0 +1,19 @@
+//chapter16
+//example16.6
+//page347
+
+Av=100
+mv=0.1
+
+Avf=Av/(1+Av*mv)
+mv=(Av/Avf-1)/Av
+
+// fall in gain is 6dB so 20log(Av/Av1)=6
+// making Av1 as subject we get
+Av1=Av/exp(6*log(10)/20)
+Avf_new=Av1/(1+Av1*mv)
+change=100*(Avf-Avf_new)/Avf
+
+printf("percentage change in gain = %.3f percent \n",change)
+
+// the accurate answer is 8.297 percent but in book it is given as 8.36 percent