How is the atmosphere organized and how do key properties of the atmosphere vary through out it
To determine how the temperature of a parcel (\(T_p\)) will change adiabatically if it is transported between two height levels (\(z_1\) & \(z_2\)), given \(T_p(z_1)\) and \(T_{dp}(z_1)\):
\[ T_p(z_2) = \begin{cases} T_p(z_1) + min((LCL-z_1),(z_2-z_1)) * DALR + max(z_2-LCL,0) * SALR \ , \text{if} z_2>z_1 \\ T_p(z_1) + (z_2-z_1) * DALR \ , \text{if} z_1>z_2 \end{cases} \qquad(1)\]
When air from low elevations is forced up a slope.
A common occurrence in BC during the winter
Often results in precipitation on the “windward” side of mountains
Largely responsible for maintaining the temperate rain forests of our region.
Also responsible for the desert like climate of the Okanagan Valley.
Despite it’s its proximity to the coast, dry hot winds are a persistent in this region
Many of the driest locations in the world are in the “rainshadow” of large mountain ranges
This is classic example of these phenomena in Meteorology. Given \(T\) and \(T_d\) at the base of a mountain:
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?
What will \(T\) be at the LCL?
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?
Step 2: Evaluate the Adiabatic Process Equation for B
Step 2: Evaluate the Adiabatic Process Equation for B
\(T\) at B = -3.5 \(^{\circ}\)
What will \(T_d\) be at B?
Given \(T\) = -3.5 \(^{\circ}\) and \(T_d\) = -3.5 \(^{\circ}\) at B, do you think precipitation will be occurring at B?
What will \(T_d\) be at B?
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?
What will \(T_d\) be at C?
I’m going to show you how you can evaluate the adiabatic process equation (APE) in R. If you’d like to try it out yourself, you can install R on your computer and try it out.
# Evaluating the adiabatic process equation (APE) in R
# A "Class" can contain values with variables (e.g., T, TD, and z)
setClass(Class="Parcel",representation(T="numeric",Td="numeric",z="numeric"))
# A function can evaluate an equation repeatedly given different inputs
APE <- function(Parcel,z2){
DALR = -0.01
SALR = -0.005
# Calculate the LCL
LCL = (Parcel@Td-Parcel@T)/DALR+Parcel@z
# Evaluate the APE and update the parcel temperature
Parcel@T = Parcel@T + min((LCL-Parcel@z),(z2-Parcel@z))*DALR + max(z2-LCL,0)*SALR
# Update the parcel's height and dewpoint if necessary
Parcel@z=z2
if(Parcel@z>=LCL){Parcel@Td = Parcel@T}
return(Parcel)
}
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?
At A: \(z = 0 \ m\), \(T = 10 ^{\circ}C\), and \(T_d = 8 ^{\circ}C\). What will \(T\) and \(T_d\) be at B (\(z = 2500 \ m\)) and C (\(z = 300 \ m\))?