summaryrefslogtreecommitdiff
path: root/3710/CH10/EX10.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3710/CH10/EX10.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3710/CH10/EX10.2')
-rw-r--r--3710/CH10/EX10.2/Ex10_2.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3710/CH10/EX10.2/Ex10_2.sce b/3710/CH10/EX10.2/Ex10_2.sce
new file mode 100644
index 000000000..0541ff2a5
--- /dev/null
+++ b/3710/CH10/EX10.2/Ex10_2.sce
@@ -0,0 +1,19 @@
+//Example 10.2, Page Number 498
+//Sensitivity Calculation
+clc;
+a=5*(10**-7) //Thermal expansion Coefficient per Kelvin
+b=6.8*(10**-6) //Thermal Expansion Coefficient per Kelvin
+l=1.55*(10**-6) //Wavelength in meter
+p11=0.126 //Constant Coeffiecient
+p12=0.274 //Constant Coeffiecient
+u=0.17
+n=1.46//cladding refractive index
+
+dl=l*(a+b); // dl is the wavelength sensitivity to temp. changes
+disp(dl,"The Wavelength Sensitivity to temperature changes of the filter structure in nm/K is:");
+
+pe=((n**2)/2)*(((1-u)*p12)-(u*p11)); //pe is the effective photoelastic coefficient
+disp(pe," The Effective Photoelastic Coefficient is:");
+
+dl=l*(1-pe)
+disp(dl," As far as Strain is concerned the Sensitivity in m/ε is:");