pratiman-91 / pratiman-91.github.io

Webpages with blogs.
https://pratiman-91.github.io
MIT License
1 stars 0 forks source link

2021/08/05/SkewT-Plots-from-WRF-outputs #6

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

SkewT Plot from WRF outputs - Pratiman Homepage

This is Pratiman webpage with some blogs.

https://pratiman-91.github.io/2021/08/05/SkewT-Plots-from-WRF-outputs.html

HathewayWill commented 1 year ago

p = p1[:,x_y[0],x_y[1]] units.hPa T = T1[:,x_y[0],x_y[1]] units.degC Td = Td1[:,x_y[0],x_y[1]] units.degC u = v1[:,x_y[0],x_y[1]] units('m/s') v = u1[:,x_y[0],x_y[1]] * units('m/s')

Is there a reason u = v1 not u1?

pratiman-91 commented 1 year ago

@HathewayWill Thank you for pointing this out. This is a mistake. It should be

u = u1[:,x_y[0],x_y[1]] * units('m/s')
v = v1[:,x_y[0],x_y[1]] * units('m/s')

I have correct this and updated the blog.