in Science, Tutorial

Understanding Diffraction Grating

The first post in this series, The Nature of Light, introduced the dual nature of light, exhibiting behaviours which are typical of both waves and particles. In this part, we will see how those two aspects are both necessary for iridescence to arise.

You can find the complete series here:

A link to download the Unity project used in this series is also provided at the end of the page.

Introduction

Reflection: Lights and Mirrors:

The scientific literature often refers to a “ray of light“, which is a way to indicate the path that photons traverse when travelling through space and interacting with objects. Most shading models treat light as made of homogeneous particles, all behaving like ideal billiard balls. Generally speaking, when a ray of light hits a surface, it bounces off with the same incidence angle. Those surfaces act like ideal mirrors, perfectly reflecting light.

Objects rendered with such a technique looks like mirrors. Moreover, if the light comes from the direction L, it can only be seen if the viewer is looking at it from the direction R. This type of reflection is also called specular, which means “mirror-like”.

In reality, most objects exhibit another type of reflection, called diffuse. When a ray of light hits a diffusive surface, it is scattered more or less uniformly in all directions. This gives objects a uniform, diffuse coloration.

Most modern engines (like Unity and Unreal) used to model those two behaviours with different sets of equations. A previous tutorial, Physically Based Rendering and Lighting Models, explains the Lambertian and Blinn-Phong reflectance models used for the diffuse and specular reflections, respectively.

Despite looking different, diffuse reflection can be explained with specular reflection alone. No surface is completely flat. One can model a rough surface as made of tiny mirror, each one fully characterised by a specular reflection. The presence of those micro-facets scatters rays in all directions, de-facto diffusing the incoming light.

The disalignment of the micro-facets is often modelled by physically based shaders with properties such as “Smoothness” or “Roughness“. You can read more about this on the Unity page that explains the Smoothness property available in its Standard Shader.

❓ What about reflectance?
In this section we have said that diffuse reflection can be fully explained by assuming specular reflection occurring on a surface with misaligned micro-facets. This, however, is not completely true. If a surface only exhibits specular reflection, it means that it would look black when fully polished. White marble is a good counter example: no level of polish will make it look black. Even if we could achieve a perfectly smooth surface, white marble will still exhibit a white diffuse component.

There is indeed something else which is responsible for this effect. The diffuse component of a surface also comes from a secondary source: refraction. Light can penetrate the surface of an object, bouncing inside it and finally escaping with a different angle (image above). This means that a percentage of all the incoming light can be re-emitted by the material surface at any arbitrary point and angle. This behaviour is often called subsurface scattering and is often computationally very intensive to simulate.

You can read more about these effects (and how they are simulated) in Basic Theory of Physically Based Rendering by Morsmoset.

Light As a Wave

Modelling rays of light as made out of particles is very convenient. However, it prevents us from replicating behaviours that many materials exhibit; iridescence included. Certain phenomena can only be understood if we accept the fact that light, under certain conditions, behaves like a wave.

Most shaders treat light as a particle. A result of this massive simplification is that light is subjected to an additive composition. If two rays of light reach a viewer, their intensity is simply added. The more rays a surface emits, the brighter it is.

In reality, this is not the case. If two rays of light reach a viewer, the final colour depends on how their waves interact with each other. The animation below shows how two simple sinusoidal waves can either amplify or cancel each other out depending on their phase.

When two waves are in phase, it means that their peaks and troughs are perfectly aligned: in this case, the resulting wave is amplified. When the opposite happens, they can literally destroy each other. This means that if two rays of light hit a viewer in the right configuration, is as if no light at all is received.

Wave interaction can indeed sound weird. However, it is something that we have all experienced in our everyday life. Science communicator Derek Muller explains this beautifully in his video called The Original Double Slit Experiment, where he shows constructive and destructive interference between water waves.

But What has this to do with light and iridescence? Iridescence is caused by the interaction of different wavelength of light. Certain materials can reflect photons in just the right way, amplifying certain colours and destroying others. The rainbow pattern that one can experience is the result of that interaction.

Diffraction

In the first section of this post, we have explored a type of interaction between light and matter: reflection. Reflection occurs when light is modelled as a particle. When we treat light as a wave, however, a new set of behaviours arise. One of them is called diffraction. If all of the incoming light reaches the surface at the same angle, we have a planar wave. Directional lights in Unity, for instance, produce planar waves. When a planar wave passes through a slit, it bends as seen in the animation below:

If light passes through two different slits, two new wave fronts will be generated. And as discussed before, those two new light waves could potentially interact with each other. The animation below shows how light behaves when two such slits are present, and it is possible to see that they indeed interact both constructively and destructively.

Author: Tleyeddu

We now have all the necessary elements to discuss why iridescence occurs.

Diffracting Grating

When a planar wave passes through a slit or reflects onto a bump, it bends, creating a new spherical wavefront. This means that light is scattered in all directions, similarly to what happens in the case of a diffuse reflection. If the material surface is irregular, the resulting planar waves scatter randomly, and no interference pattern emerges at a macroscopic level.

Some materials, however, possess surface patterns which repeat at a scale that is comparable with the wavelength of the incoming light. When this happens, the regularity of the pattern causes the diffracted wavefronts to interact in a repeating, nonrandom way. The resulting interaction produces a repeating interference pattern that can be appreciated at a macroscopic scale.

The abovementioned effect takes the name of diffraction grating. Some wavelengths of light will be greatly amplified, while others will be cancelled out. Since different wavelengths correspond to different colours, diffraction grating causes reflections of certain colours to be featured appear prominently.

That is the mechanism that allows iridescence to occur on surfaces that feature repeating pattern. This is often the case in Nature, where insects’ exoskeletons and birds’ feathers present microscopic scales arranged in a repeated pattern. In the image below, you can see a zoomed peacock’s feather.

Conclusion

The next post in this series, The Mathematics of Diffraction Grating, will show how this particular type of iridescence can be modelled mathematically. Once the equations are derived, they will be easy to implement in a shader.

You can find the complete series here:

Become a Patron!
You can download the Unity package for the CD-ROM Shader effect on Patreon.

💖 Support this blog

This website exists thanks to the contribution of patrons on Patreon. If you think these posts have either helped or inspired you, please consider supporting this blog.

Patreon Patreon_button
Twitter_logo

YouTube_logo
📧 Stay updated

You will be notified when a new tutorial is released!

📝 Licensing

You are free to use, adapt and build upon this tutorial for your own projects (even commercially) as long as you credit me.

You are not allowed to redistribute the content of this tutorial on other platforms, especially the parts that are only available on Patreon.

If the knowledge you have gained had a significant impact on your project, a mention in the credit would be very appreciated. ❤️🧔🏻

Write a Comment

Comment

Webmentions

  • Improving the Rainbow - Part 2 - Alan Zucconi

    […] Part 4. Understanding Diffraction Grating […]

  • Improving the Rainbow - Part 1 - Alan Zucconi

    […] Part 4. Understanding Diffraction Grating […]

  • The Nature of Light - Alan Zucconi

    […] Part 4. Understanding Diffraction Grating […]