summaryrefslogtreecommitdiff
path: root/2459/CH14/EX14.6/Ex14_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '2459/CH14/EX14.6/Ex14_6.sce')
-rw-r--r--2459/CH14/EX14.6/Ex14_6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2459/CH14/EX14.6/Ex14_6.sce b/2459/CH14/EX14.6/Ex14_6.sce
new file mode 100644
index 000000000..f01458167
--- /dev/null
+++ b/2459/CH14/EX14.6/Ex14_6.sce
@@ -0,0 +1,12 @@
+//chapter 14
+//example 14.6
+//page 302
+
+Av=15 // db
+V1=0.8 // V
+
+// since db voltage gain Av=20*log10(V2/V1) making V2 as subject we get
+
+V2=V1*10^(Av/20)
+
+printf("output voltage = %.2f V \n",V2)