blob: 788e958ba155c1a2acac8b51f706418ee1ac7010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Example no.5.4
// To determine the refractive index and thickness of the antireflection coating
// Page no.199
clc;
clear;
// Given data
lambda=680*10^-9; // Wavelength of red ligth in meter
nair=1; // Refractive index of air
nsilicon=3.6; // Refractive index of silicon
nAR=sqrt(nair*nsilicon); // Refractive index of antireflection coating
tAR=lambda/(4*nAR); // Thickness of antireflection coating
// Display result on command window
printf('\n Refractive index of antireflection coating = %0.1f ',nAR)
printf('\n Thickness of antireflection coating = %0.0f nm',tAR*10^9)
|