Answered step by step
Verified Expert Solution
Question
1 Approved Answer
An observation ( by conventional sounding ) of temperature as a function of pressure was made at a meteorological station. The text file, gefd 2
An observation by conventional sounding of temperature as a function of pressure was made at a
meteorological station. The text file, gefdhwdata.txt contains the data. A matlab code for
reading the data is given in the Appendix. The code and data will be posted separately. The first record
in the data p mb T deg C is the measurement taken at the surface. The elevation of the
station is mAt the surface, the height is already z m
a From the data, calculate and plot the vertical profiles of pressure p temperature T density
and potential temperature theta using ps mb as the reference pressure as a function of height. If
tropopause is defined as the location with the minimum of temperature, what is the height in meters
of the tropopause for this observed profile?
b Calculate and plot the vertical profile of the lapse rate of temperature, Gamma dTdz as a function of
height. Compare it to the dry adiabatic lapse rate, Gamma d gcp and use this as the basis to discuss the
dry static stability of the atmospheric column. Your result here should be consistent with the plot of
theta z from Part a Note that the stability criterion, Gamma Gamma d is equivalent to dtheta dz
Appendix: How to read the data for Problem
The data file, gefdhwdata.txt is in plain text and consists of two columns for pressure in
mb and temperature in deg C The following matlab code, also posted separately, can be used to read
the data into two arrays, p and T each with elements. The first pair of records, p T are the
pressure and temperature at the lowest elevation or highest pressure which is the surface. As a quick
reference, the matlab code also plots T as a function of p as shown in the next page.
clear
fid fopengefdhwdata.txtr;
for n :
pn fscanffidf;
Tn fscanffidf;
end
fclosefid;
plotTpr'LineWidth',
axis
xlabelTpcircC; ylabelp mb
setgca'YDir','reverse'
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started