This post describes how to model the density of the atmosphere at different altitude. This is a critical step, since the atmospheric density is one of the parameters necessary to correctly calculate the Rayleigh scattering.
You can find all the post in this series here:
- Part 1. Volumetric Atmospheric Scattering
- Part 2. The Theory Behind Atmospheric Scattering
- Part 3. The Mathematics of Rayleigh Scattering
- Part 4. A Journey Through the Atmosphere
- Part 5. A Shader for the Atmospheric Sphere
- Part 6. Intersecting The Atmosphere
- Part 7. Atmospheric Scattering Shader
- 🔒 Part 8. An Introduction to Mie Theory
You can download the Unity package for this tutorial at the bottom of the page.
Atmospheric Density Ratio
Something that we have not addressed yet is the role of the atmospheric density ratio . From a logical point of view, it makes sense that the strength of the scattering is proportional to the atmospheric density. More molecules per square metre means more chances for photons to be scattered. The challenge is that the composition of the atmosphere is very complex, consisting of several layers with different pressures, densities and temperatures. Luckily enough, most of the Rayleigh scattering happens in the first 60Km of the atmosphere. Within the troposphere, the temperature decreases linearly and the pressure decreases exponentially.
The diagram below shows the relationship between density and altitude in the lower atmosphere.
The value of represents the atmospheric measure at an altitude of metres, normalised so that it starts at zero. In many scientific papers, is also called the density ratio because it can be also defined as:
Dividing the actual density by causes to be at sea level. As highlighted before, however, computing is far from being trivial. We can approximate it with an exponential curve; some of you might in fact have recognised the density in the lower atmosphere follows an exponential decay.
If we want to approximate the density ratio with an exponential curve, we can do it like this:
where is a scaling factor called scale height. For the Rayleigh scattering in the lower atmosphere of Earth, it is often assumed metres (diagram below). For the Mie scattering, it is often around metres.
The value used for does not give the best approximation for . This, however, is not really an issue. Most of the quantities presented in this tutorial are subjected to severe approximations. For best looking results, it will be much more effective to tweak the available parameters to match reference images.
Exponential Decay
In the previous parts of this tutorial, we have derived an equation that shows how to account for the out-scattering that a ray of light is subjected to after interacting with a single particle. The quantity used to model this phenomenon was called the scattering coefficient . We have introduced the coefficients to take that into account.
In the case of the Rayleigh scattering, we have also provided a closed form to calculate the amount of light that is subjected to atmospheric scattering per single interaction:
When evaluated at sea level, which means using , it produces the following results:
Where , and are the wavelength which loosely maps to red, green and blue.
What is the meaning of those numbers? They represent the ratio of light that is lost by a single interaction with a particle. If we assume a ray of light has initial intensity and traverses a segment of the atmosphere with (a generic) scattering coefficient , then the amount of light that is not lost to scattering is:
While this holds for a single collision, we are interested in understanding how much energy is scattered over a certain distance. This means that, at each point, the remaining light is subjected to this process.
When light travels through a uniform medium with scattering coefficient , how can we calculate how much of it survives after travelling for a certain distance?
For those of you who have studied Calculus, this should sound familiar. Whenever a multiplicative process like is repeated over a continuous segment, the Euler’s number makes its grand appearance. The amount of light that survives scattering after travelling for metres is:
Once again, we encounter an exponential function. This is not in any way related to the exponential function used to describe the density ratio . The reason why both phenomena are described by exponential functions is that they are both subjected to exponential decay. Besides that, they are no other connections between them.
❓ Where does exp come from?
If you are unfamiliar with Calculus, you might struggle to understand how a process as simple as translated into .
We can see the original expression as a first approximation of our solution. If we want to get a closer approximation, we can take into account two scattering events, halving the scattering coefficient for each one:
Which leads to:
This new expression for indicates how much energy survives two collisions. What about three? Or four? Or five? We can generalise this with the following expression:
where is the mathematical construct that allows repeating a process infinitely many times. This is necessary since is technically not a number, hence it does not make sense in this context to write something like \frac{\beta}{\infty}.
That expression is the very definition of the exponential function:
which describes the amount of energy that survives a multiplicative process over a continuous interval.
Uniform Transmittance
In the second part of this tutorial we have introduces the concept of transmittance , as the ratio of light that survives the scattering process after travelling through the atmosphere. We now have all the elements we need to finally derive an equation that describes it.
Let’s look at the diagram below, and see how we can calculate the transmittance factor for the segment . It’s easy to see that light rays reaching travel through empty space. Hence, they are not subjected to scattering. The amount of light at is, therefore, the sun intensity . During its journey to , some of the light is scattered away from the path; hence, the amount of light reaching , , will be lower than .
The amount of light scattered depends on the distance travelled. The longer the journey, the strongest the attenuation will be. According to the law of exponential decay, the amount of light at can be calculated as follow:
where is the length of the segment from to , and is the exponential function .
Atmospheric Transmittance
We have based our equation on the assumption that the chance of being deflected (the scattering coefficient ) is the same for each point along . Sadly, that is not the case.
The scattering coefficient strongly depends on the atmospheric density. More air molecules per cubic metre mean higher chances of impact. The density of a planet’s atmosphere is not uniform, but changes depending on the altitude. This also means that we cannot calculate the out-scattering over in a single step. To overcome this issue, we need to calculate the out-scattering at each point, using its own scattering coefficient.
To understand how this work, let’s start with an approximation. The segment is split in two, and .
We calculate first the amount of light from that reaches :
Then, we use the same approach to calculate the amount of light that reaches from :
If we subsitute in the second equation and simplify, we get:
If both and have same length , we can further simplify our expression:
In the case of two segments of equal length with different scattering coefficients, the out-scattering can be calculated by summing up the scattering coefficient of the individual segments, multiplied by the segment lengths.
We can repeat this process with an arbitrary number of segments, getting closer and closer to the actual value. This leads to the following equation:
where is the altitude of the point .
The approach of splitting a line into multiple segments just like we have done is called numerical integration.
If we assume that the initial amount of light received is equal to , we obtain the equation for the atmospheric transmittance over an arbitrary segment:
We can further expand this expression by replacing the generic with the actual value used by the Rayleigh scattering, :
Many factors of are constant and can be factored out of the summation:
The quantity expressed by the summation is referred to as optical depth , and is what we will actually calculate in the shader. The remaining part is a multiplicative coefficient which can be calculated only once, and corresponds to the scattering coefficient at sea level. In the final shader, we will calculate only the optical depth, and provide the scattering coefficients at sea level as an input.
To sum it up:
If you are interested in this topic, I would also suggest reading Carl Davidson post on atmospheric scattering, where he used an improved version of this iterative approach.
Coming Next…
This post explained how to model Earth’s atmosphere. With the next post, we will start writing the shader code necessary to simulate atmospheric scattering.
You can find all the post in this series here:
- Part 1. Volumetric Atmospheric Scattering
- Part 2. The Theory Behind Atmospheric Scattering
- Part 3. The Mathematics of Rayleigh Scattering
- Part 4. A Journey Through the Atmosphere
- Part 5. A Shader for the Atmospheric Sphere
- Part 6. Intersecting The Atmosphere
- Part 7. Atmospheric Scattering Shader
- 🔒 Part 8. An Introduction to Mie Theory
Download
Become a Patron!
You can download all the assets necessary to reproduce the volumetric atmospheric scattering presented in this tutorial.
Leave a Reply