Skip to content

Dielectrics and Transmission

cmu462 edited this page Nov 16, 2018 · 4 revisions

Fresnel Equations for a Dielectric

The Fresnel Equations (another link here) describe the amount of reflection from a surface. The description below is an approximation for dielectric materials (materials that don't conduct electricity). In assignment 3 you're asked to implement a glass material, which is a dielectric.

In the description below, and refer to the index of refraction of the medium containing an incoming ray, and the zenith angle of the ray to the surface of a new medium. and refer to the index of refraction of the new medium and the angle to the surface normal of a transmitted ray.

The Fresnel equations state that reflection from a surface is a function of the surface's index of refraction, as well as the polarity of the incoming light. Since our renderer doesn't account for polarity, we'll apply a common approximation of averaging the reflectance of polarizes light in perpendicular and parallel polarized light:

The parallel and perpendicular terms are given by:

Therefore, for a dielectric material, the fraction of reflected light will be given by , and the amount of transmitted light will be given by .

Alternatively, you may compute using Schlick's approximation.

Distribution Function for Transmitted Light

We described the BRDF for perfect specular reflection in class, however we did not discuss the distribution function for transmitted light. Since refraction "spreads" or "condenses" a beam, unlike perfect reflection, the radiance along the ray changes due to a refraction event. In your assignment you should use Snell's Law to compute the direction of refraction rays, and use the following distribution function to compute the radiance of transmitted rays. We refer students to Pharr and Humphries for a derivation based on Snell's Law and the relation (or encourage students to attempt a derivation on their own).

Clone this wiki locally