有人能帮我们找到这个问题的解决方案吗?< / p >
水分通量公式为$$q\vec{V} $$,其中$q$是水蒸气混合比,可以使用mixhum_ptr, $\vec{V}$是速度。< / p >
Therefore the divergence of the moisture flux must be $$\nabla{\dot{}q\vec{V}}=\frac{\partial(qu)}{\partial x}+\frac{\partial(qv)}{\partial y}+\frac{\partial(qw)}{\partial z} $$ $$\approx\frac{\delta(qu)}{\delta x}+\frac{\delta(qv)}{\delta y}+\frac{\delta(qw)}{\delta z}$$
which is computable if you have gridded data.
For example, you could compute this by setting $$qu=q\ast u$$ $$qv=q\ast v$$ $$qfluxDiv=uv2dv\_cfd(qu,qv,lat,lon,opt) $$ Use uv2dv_cfd per http://www.ncl.ucar.edu/Document/Functions/Built-in/uv2dv_cfd.shtml
Note: If you wanted the turbulent moisture flux, you would need to subtract $\nabla{\dot{}\bar{\vec{V}}\bar{q}}$ from your answer.