diff options
Diffstat (limited to '3547/CH6/EX6.2')
-rw-r--r-- | 3547/CH6/EX6.2/EX6_2.png | bin | 0 -> 14607 bytes | |||
-rw-r--r-- | 3547/CH6/EX6.2/EX6_2.sce | 31 |
2 files changed, 31 insertions, 0 deletions
diff --git a/3547/CH6/EX6.2/EX6_2.png b/3547/CH6/EX6.2/EX6_2.png Binary files differnew file mode 100644 index 000000000..a35d63017 --- /dev/null +++ b/3547/CH6/EX6.2/EX6_2.png diff --git a/3547/CH6/EX6.2/EX6_2.sce b/3547/CH6/EX6.2/EX6_2.sce new file mode 100644 index 000000000..07e78b58c --- /dev/null +++ b/3547/CH6/EX6.2/EX6_2.sce @@ -0,0 +1,31 @@ +// Example 6.2
+// Calculation of the variance of the signal–ASE beat noise
+// Page no 255
+
+clc;
+clear;
+close;
+
+//Given data
+
+a=1.3*10^-16; // PSD of an amplifier
+f=7*10^9; // Cut off frequency
+Pi=10*10^-6; // Input power
+R=0.8; // Responsivity
+G=20; // Gain of an amplifier
+
+// The variance of the signal–ASE beat noise
+G=10^(G/10);
+P=G*Pi;
+
+r=4*R^2*P*a*f;
+r=r*10^9;
+
+
+
+
+//Displaying results in the command window
+printf("\n The variance of the signal–ASE beat noise current is = %0.2f x 10^-9 A^2",r);
+
+
+// The answers vary due to round off error
|