diff options
Diffstat (limited to '401/CH3/EX3.14/Example3_14.sce')
-rwxr-xr-x | 401/CH3/EX3.14/Example3_14.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/401/CH3/EX3.14/Example3_14.sce b/401/CH3/EX3.14/Example3_14.sce new file mode 100755 index 000000000..64b12e32c --- /dev/null +++ b/401/CH3/EX3.14/Example3_14.sce @@ -0,0 +1,16 @@ +//Example 3.14
+//Program to determine the mode coupling parameter for the fiber
+
+clear;
+clc ;
+close ;
+
+//Given data
+L=3.5*10^3; //metre - LENGTH
+CT=-27; //dB - POLARIZATION CROSSTALK
+
+//Mode coupling parameter for the fiber
+h=(10^(CT/10))/L; //as tan(h*L)=h*L for small values
+
+//Displaying the Result in Command Window
+printf("\n\n\t The mode coupling parameter for the fiber is %0.1f X 10^(-7)/m.",h/10^(-7));
\ No newline at end of file |