diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3506/CH6/EX6.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3506/CH6/EX6.4')
-rw-r--r-- | 3506/CH6/EX6.4/Ex_6_4.JPG | bin | 0 -> 50061 bytes | |||
-rw-r--r-- | 3506/CH6/EX6.4/Ex_6_4.sce | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/3506/CH6/EX6.4/Ex_6_4.JPG b/3506/CH6/EX6.4/Ex_6_4.JPG Binary files differnew file mode 100644 index 000000000..eb357ba05 --- /dev/null +++ b/3506/CH6/EX6.4/Ex_6_4.JPG diff --git a/3506/CH6/EX6.4/Ex_6_4.sce b/3506/CH6/EX6.4/Ex_6_4.sce new file mode 100644 index 000000000..15d5733ff --- /dev/null +++ b/3506/CH6/EX6.4/Ex_6_4.sce @@ -0,0 +1,18 @@ +//Optical Fiber communication by A selvarajan
+//example 6.4
+//OS=Windows XP sp3
+//Scilab version 5.5.1
+clc;
+clear all;
+//given
+delta_phi=%pi
+d=4*10^-6//seperation between electrodes
+n=2.2// approximate inder in absence of voltage
+r13=30*10^-12//poper electro optic coefficient
+row=0.4//overlap factor
+lambda=1300*1e-9//wavelength in m
+L=8*10^-3//length of electrode in m
+delta_n=delta_phi*lambda/(2*%pi*L)//change in refractive index
+V_pi=2*d*delta_n/(n^3*row*r13)//Voltahe required for using the device as BPSK modulator
+mprintf("Voltage required for using the device as BPSK modulator=%fV",V_pi)
+mprintf("\nVoltage length product for unit length is=%fVm",V_pi)
|