Hi all,
I am currently using ncl to post-process the output file history*.nc of mpas. I want to draw some wind field diagrams, but I found that in the history*nc file, only u(time,nEdges,nVertLevels), there is no v. How should I draw the wind field diagram with ncl? Can you give me some simple example?
char xtime(Time, StrLen) ;
xtime:units = "YYYY-MM-DD_hh:mm:ss" ;
xtime:long_name = "Model valid time" ;
float u(Time, nEdges, nVertLevels) ;
u:units = "m s^{-1}" ;
u:long_name = "Horizontal normal velocity at edges" ;
float w(Time, nCells, nVertLevelsP1) ;
w:units = "m s^{-1}" ;
w:long_name = "Vertical velocity at vertical cell faces" ;
float pressure(Time, nCells, nVertLevels) ;
pressure:units = "Pa" ;
pressure:long_name = "Pressure" ;
Thanks
I am currently using ncl to post-process the output file history*.nc of mpas. I want to draw some wind field diagrams, but I found that in the history*nc file, only u(time,nEdges,nVertLevels), there is no v. How should I draw the wind field diagram with ncl? Can you give me some simple example?
char xtime(Time, StrLen) ;
xtime:units = "YYYY-MM-DD_hh:mm:ss" ;
xtime:long_name = "Model valid time" ;
float u(Time, nEdges, nVertLevels) ;
u:units = "m s^{-1}" ;
u:long_name = "Horizontal normal velocity at edges" ;
float w(Time, nCells, nVertLevelsP1) ;
w:units = "m s^{-1}" ;
w:long_name = "Vertical velocity at vertical cell faces" ;
float pressure(Time, nCells, nVertLevels) ;
pressure:units = "Pa" ;
pressure:long_name = "Pressure" ;
Thanks