summaryrefslogtreecommitdiff
path: root/3547/CH6/EX6.13/EX6_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3547/CH6/EX6.13/EX6_13.sce')
-rw-r--r--3547/CH6/EX6.13/EX6_13.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/3547/CH6/EX6.13/EX6_13.sce b/3547/CH6/EX6.13/EX6_13.sce
new file mode 100644
index 000000000..4b26f0054
--- /dev/null
+++ b/3547/CH6/EX6.13/EX6_13.sce
@@ -0,0 +1,25 @@
+// Example 6.13
+// Calculation of the geometric mean of the facet reflectivity R
+// Page no 296
+
+clc;
+clear;
+close;
+
+//Given data
+Gm=20;
+G1=5;
+
+// The geometric mean of the facet reflectivity R
+Gmax=10^(Gm/10); // Peak Gain
+Gs=10^(G1/10); // Single pass gain
+R=(sqrt(Gs)-10)/(sqrt(Gs)-Gs*10);
+
+
+
+
+//Displaying results in the command window
+printf("\n The geometric mean of the facet reflectivity R = %0.3f ",R);
+
+
+