summaryrefslogtreecommitdiff
path: root/3830/CH3/EX3.2/Ex3_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3830/CH3/EX3.2/Ex3_2.sce')
-rw-r--r--3830/CH3/EX3.2/Ex3_2.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3830/CH3/EX3.2/Ex3_2.sce b/3830/CH3/EX3.2/Ex3_2.sce
new file mode 100644
index 000000000..a16d30ee1
--- /dev/null
+++ b/3830/CH3/EX3.2/Ex3_2.sce
@@ -0,0 +1,18 @@
+// Exa 3.2
+
+clc;
+clear;
+
+// Given
+
+Noise = -90; // Minimum detectable signal (dbm)
+Ip = 300 ; // power level of third-order product(dbm)
+
+// Solution
+
+printf(' The expression for the dynamic range of the spectrum analyser = 2/3*(Ip-MDS) \n So, by calculations :-\n');
+
+DR = 2/3*(Ip-Noise);
+printf(' Dynamic range %.1f dB \n',DR);
+
+// The answer provided in the textbook is wrong