What Equation Was Used for the Reflectance Plot from Thin Films?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
roam
Messages
1,265
Reaction score
12

Homework Statement



Here is a plot of Reflectance vs Wavelength from a multilayer thin film stack of alternating high and low refractive indices:

abqooi.jpg


I want plot this in Matlab, but what equation was used for this plot?

The diagram is from my textbook, there are many like it online but there is no indication as to what equation was used for the plot.


Homework Equations



Reflectance from and N layers of film:

##\left( \frac{(n_0/n_s)(n_L/n_H)^{2N} -1}{(n_0/n_s)(n_L/n_H)^{2N} +1} \right)^2##


Spectral width of the high reflectance zone:

##\Delta \lambda = \frac{4}{\pi} \lambda_0 sin^{-1} \left( \frac{n_H-n_L}{n_H+n_L} \right)##

The Attempt at a Solution



Well the first equation is not a function of wavelength. So I tried using the second one, with setting ##\lambda_0=514 \ nm## as the center wavelength:

Code:
n0=1; ns=1.52; nh=2.35; nl=1.38;
l=[300e-9 : 1 : 900e-9];
dl=((4/pi)*l.*asin((nh-nl)/(nh+nl)));
plot(l,dl);

However Matlab does not return any plots (it's blank). I also think this is not the correct equation since it is independent of the number of layers (N). I need an equation that takes both width and height of the curve into account...

What equation do I need to use here? :confused:
 
Physics news on Phys.org
Your formulae are not functions of the wavelength. The plots show reflectance in terms of wavelength. To model R(λ) you can use the method based on the optical admittance. You find it in the book Optics of thin films by Vasicek, for example, or at http://www.edmundoptics.com/technical-resources-center/optics/an-introduction-to-optical-coatings .

ehild
 
Last edited by a moderator:
Thank you for the reply. The only parameters that I have are the refractive indices, N, and λ. So how do I plug these into the equation in your link?

Here is the equation:

##R= \left( \frac{\eta_0-Y}{\eta_0+Y} \right) \left( \frac{\eta_0-Y}{\eta_0+Y} \right)##

How does wavelength factor into this equation?

The link doesn't really explain much. Unfortunately I don't have the textbook, and we haven't covered optical admittances.
 
roam said:
Thank you for the reply. The only parameters that I have are the refractive indices, N, and λ. So how do I plug these into the equation in your link?

Here is the equation:

##R= \left( \frac{\eta_0-Y}{\eta_0+Y} \right) \left( \frac{\eta_0-Y}{\eta_0+Y} \right)##

How does wavelength factor into this equation?
Through Y.
By the way, the formula is not quite correct. The second factor has to be complex conjugated.

Y depends on A and B. A and B are obtained by the product of matrices.
The elements of the matrices depend on lambda and the refractive indices and thickness of the layers.
roam said:
The link doesn't really explain much. Unfortunately I don't have the textbook, and we haven't covered optical admittances.

Every necessary formula is given.
Try search for a book about Optics of Thin Layers .

ehild