Skip to content

Commit

Permalink
Need to set the tropopause minimum to be 5000 to prevent boundary lay…
Browse files Browse the repository at this point in the history
…er shenanigans
  • Loading branch information
natgeo-wong committed Nov 11, 2024
1 parent a1ad227 commit 6dc6332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extract.jl
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ function extractwwtg(
if schname == "TDG"
tmin = tabs[1,it,ids]
itrop = 2
while tabs[itrop,it,ids] < tmin
while (tabs[itrop,it,ids] < tmin) || (z[itrop,ids] < 5000)
tmin = tabs[itrop,it,ids]
itrop += 1
end
Expand Down

0 comments on commit 6dc6332

Please sign in to comment.