Is it possible to do complete Moisture budget analysis using MetPy ? #2754
-
Hi there, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Provided you have import metpy.calc as mpcalc
vert_adv = mpcalc.advection(q, w=omega) |
Beta Was this translation helpful? Give feedback.
-
@AniIlyich Hi there, your post has been a while ago but I am working on a somewhat similar problem now. The moisture decomposition I want to do is similar to the one in Seager et al 2010 (Eq. 4-7), including to calculate the thermodynamic, mean circulation dynamic and transient eddy term. Did you by any chance do a full moisture decomposition in the end using MetPy? |
Beta Was this translation helpful? Give feedback.
Provided you have
q
on pressure levels, you should be able to calculate vertical advection with: