summaryrefslogtreecommitdiff
path: root/2528/CH1/EX1.5/Ex1_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '2528/CH1/EX1.5/Ex1_5.sce')
-rwxr-xr-x2528/CH1/EX1.5/Ex1_5.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2528/CH1/EX1.5/Ex1_5.sce b/2528/CH1/EX1.5/Ex1_5.sce
new file mode 100755
index 000000000..b4b01f570
--- /dev/null
+++ b/2528/CH1/EX1.5/Ex1_5.sce
@@ -0,0 +1,16 @@
+// Chapter 1
+//Ordinary Gain
+//page 16
+//Example no 1-5
+//Given
+clc;
+Ao=2; //in Volt
+Ai=50; // in milliVolt
+Ai1=0.05; //input in Volt
+Av=Ao/Ai1;
+printf("\n The ordinary power gain %.0f \n ",Av); // Result
+Av1=20*log10(Av);
+printf("\n The power gain is %.2f dB\n",Av1);// Result
+
+
+