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 /3740/CH3/EX3.3 | |
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 '3740/CH3/EX3.3')
-rw-r--r-- | 3740/CH3/EX3.3/Ex3_3.jpg | bin | 0 -> 75764 bytes | |||
-rw-r--r-- | 3740/CH3/EX3.3/Ex3_3.sce | 21 |
2 files changed, 21 insertions, 0 deletions
diff --git a/3740/CH3/EX3.3/Ex3_3.jpg b/3740/CH3/EX3.3/Ex3_3.jpg Binary files differnew file mode 100644 index 000000000..0c1bc59a8 --- /dev/null +++ b/3740/CH3/EX3.3/Ex3_3.jpg diff --git a/3740/CH3/EX3.3/Ex3_3.sce b/3740/CH3/EX3.3/Ex3_3.sce new file mode 100644 index 000000000..0eeb09b56 --- /dev/null +++ b/3740/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,21 @@ +//Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
+//Example 3.3
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+
+//given
+Phi=%pi/30;//Given phase retardation
+Deltaf=1e9;//Frequency bandwidth in Hz
+D=25e-3;//Diameter of the circular aperture of a KD*P Pockels cell in m
+L=30e-3;//Length of the cell in m
+lambda=633e-9;//Wavelength in m
+Epsilon0=8.85e-12;//Permittivity of free space in SI Units
+Epsilonr=50;//Dimensionless Relative permittivty of the crystal
+r=26.4e-12;//Linear electro-optic coefficient of KD*P crystal in m/V
+n0=1.51;//refractive index of the crystal
+
+A=%pi*((D/2)^2);//Cross-sectional area of the crystal in m^2
+P=(Phi^2)*(lambda^2)*A*Epsilon0*Epsilonr*Deltaf/(4*%pi*(r^2)*(n0^6)*L);//Power required for the desired phase retardation in W
+mprintf("P = %.1f W",P);
|