Final Project: Physically-Based Foam Tracing (PBFT!)

SeanRosenbaum and MattiasBergbom

Introduction

Our goal is to create physically-based foam formations by modeling their optical and geometric characteristics. Some of the optical properties are shown below.

Reflection and interference

{i} CLICK HERE TO ENLARGE

Interesting transparency

{i} CLICK HERE TO ENLARGE

Flash lighting

{i} CLICK HERE TO ENLARGE

We can observe the bubble formations along the outline of the foam, where it's not too dense. Otherwise it looks more homogeneous and the specular effects appear to be spread randomly. Also, there's an interesting difference in the appearance between when lighting with a flash (from the front) and when mainly lighting from behind, likely caused by the unique micro-structure of the foam.

Prior Work

To our knowledge there have not been any significant contributions specifically for rendering photo-realistic foam. However, the scientific community proposed a number of models for their geometry and dynamics. In idealized bubble formations, space is "partitioned into cells of equal volume with the least area of surface between them, i.e. the most efficient soap bubble foam". Lord Kelvin proposed a non-optimal geometric model to solve this problem. More recently, the Waire-Phalen structure is believed to be a more optimal solution.

Soap bubble formations in particular are described by Plateau's Laws (http://mathworld.wolfram.com/PlateausLaws.html). They were used to model these bubble formations.

The optical properties of foam are well understood. Interference is key to rendering realistic soap bubble formations. It is a function of the thickness of the walls, wavelength, and the angle the light hits the bubble.

The foam in this "beer and glass" render was modeled using a particle simulation. Though interesting, it lacks any of the optical effects and has no physical basis. Similarly, the foam in this image appears to be an artistic recreation. The author author explains "the foam was created by modeling the volume with triangle meshes and applying a transparent texture and a foam-like procedural material."

Technique

Method 1: Brute Force

We will first implement a brute-force, physically accurate render of the foam. This entails modeling large bubble formations using Plateau's laws and extending PBRT to support film-interference. Kraynik et al. presents some interesting work on relaxing Voronoi structures to produce physically feasible foams, using the Surface Evolver.

We recovered several papers written by the graphics community on rendering film-interference, including "Ray Tracing Interference Color" by Maria Lurdes Dias and "Soap Bubbles: Part 2" by Andrew Glassner. Pat recommended "Newton's colors: Simulating Interference Phenomena in Realistic Image Synthesis," but we had trouble finding this online. However, we are now satisfied with the other papers.

Method 2: Subsurface Scattering

We suspect our brute-force model will eat away too many cycles to render large amounts of dense foam. We hope to overcome this by using subsurface-scattering specifically for dense formations. Once the brute-force model is implemented, we plan to trace rays through it to simulate its optical properties in order to develop a subsurface scattering model for it. The combination of subsurface scattering for dense formations and a highly complex brute-force model should enable us to render very interesting foam formations. One of the challenges will be to adaptively alternate between each of these models when rendering a single foam formation without any noticeable artifacts. Another possible challenge is including wavelength dependency in this model.

We look forward to your feedback on this idea!

Stephen H. Westin, James R. Arvo, and Kenneth E. Torrance. "Predicting Reflectance Functions from Complex Surfaces. Computer Graphics (SIGGRAPH '92 Proceedings), 26:255--264, July 1992.

Henrik Wann Jensen and Juan Buhler. "A Rapid Hierarchical Rendering Technique for Translucent Materials". Proceedings of SIGGRAPH'2002

Extras

Steam

If we have the time, we would also like to do some steam/smoke simulation over the foam formation. This will add greatly to our goal of rendering a photo-realistic bubble-bath scene. This boils down to numerically solving the Navier-Stokes equations - a common model for fluid flow. Stam's paper on real-time fluid dynamics for games presents a simple, efficient, and most importantly unconditionally stable method that achieves aesthetically pleasing results. We would like to implement a 3D simulation based on his work, which we will pass to PBRT as a volumetric texture.

Jos Stam, "Real-Time Fluid Dynamics for Games". Proceedings of the Game Developer Conference, March 2003.

Jos Stam, "Stable Fluids", In SIGGRAPH 99 Conference Proceedings, Annual Conference Series, August 1999, 121-128.

Dynamics

Additionally, we are interested in simulating foam's dynamics over a non-static surface (such as water in a bathtub :) ). We suspect believable results could be achieved using a crude mass-spring model, since the main property we observed is a severe damping of the high frequency modes of the water surface.

Division of Work

Step 1: Sean will augment PBRT with film-interference, while Mattias develops the brute-force geometric model of the foam.

Step 2: The subsurface scattering foam model will be developed by both of us. One of us is likely to focus on developing the foam BSSRDF and the other extending PBRT with subsurface scattering. Additionally, we will apply subsurface scattering to other materials in the scene, such as a rubber duck and leaves, using known BSSRDFs.

Step 3: One of us will integrate the two models. The other member will define formations of foam (e.g. using meta-balls) and its interface with fluid.

Step 4: If at this point our foam looks great and we have some time to spare, we will add some other things for kicks, like steam, foam dynamics, and procedural textures.

SeanRosenbaum/Foam (last edited 2007-01-13 09:50:22 by SeanRosenbaum)