爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

搜索
查看: 14775|回复: 11

关于wrfout数据画垂直剖面图的问题

[复制链接]

新浪微博达人勋

发表于 2014-4-9 11:22:50 | 显示全部楼层 |阅读模式
GrADS
系统平台:
问题截图: -
问题概况: 画出来的垂直剖面图加上了温度等值线,但是等值线都很平整规律,这对于一次强的天气过程来说就不正常了
我看过提问的智慧: 看过
自己思考时长(天): 1

登录后查看更多精彩内容~

您需要 登录 才可以下载或查看,没有帐号?立即注册 新浪微博登陆

x
等值线也太平整了,不知道是wrf的效果不好还是我的脚本有问题请问大家有没有遇到过这种情况
帮忙分析分析这是什么原因导致的

QQ图片20140409111511.jpg
密码修改失败请联系微信:mofangbao

新浪微博达人勋

发表于 2014-4-9 12:13:49 | 显示全部楼层
不知道你的色标取值多少,你的冰晶都在-30℃以下,感觉有点不妥
密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2014-4-9 12:16:48 | 显示全部楼层
freekiller 发表于 2014-4-9 12:13
不知道你的色标取值多少,你的冰晶都在-30℃以下,感觉有点不妥

  opts_rh@ContourParameters       = (/ 0.02, 0.24, 0.02 /)
对,请问这是什么原因呢
密码修改失败请联系微信:mofangbao

新浪微博达人勋

发表于 2014-4-9 16:10:01 | 显示全部楼层
你的脚本是什么?
密码修改失败请联系微信:mofangbao

新浪微博达人勋

发表于 2014-4-9 19:32:26 | 显示全部楼层
上脚本吧
密码修改失败请联系微信:mofangbao
回复

使用道具 举报

新浪微博达人勋

发表于 2014-4-10 09:05:00 | 显示全部楼层
你先单独分析一下温度值,看看有没有不对。也可能是数据间隔太大的问题
密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2014-4-10 09:28:54 | 显示全部楼层
destroyer 发表于 2014-4-9 16:10
你的脚本是什么?

就是官网上画剖面图的脚本,只是把配色改了,相对湿度换成冰粒子浓度
密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2014-4-10 09:29:24 | 显示全部楼层
冰枫 发表于 2014-4-10 09:05
你先单独分析一下温度值,看看有没有不对。也可能是数据间隔太大的问题

这个要怎么分析?新手一个,能否指点一二?
密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2014-4-10 09:42:53 | 显示全部楼层
脚本:

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl"

begin
;
; The WRF ARW input file.  
; This needs to have a ".nc" appended, so just do it.
  a = addfile("/home/Huanglei/data/d03"+".nc","r")


; We generate plots, but what kind do we prefer?
  type = "pdf"
; type = "pdf"
; type = "ps"
; type = "ncgm"
  wks = gsn_open_wks(type,"plt_CrossSection21")
  gsn_define_colormap(wks,"WhBlGrYeRe")

; Set some basic resources
  res = True
  res@MainTitle = "REAL-TIME WRF"

  pltres = True


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  FirstTime = True
  times  = wrf_user_getvar(a,"times",-1) ; get times in the file
  ntimes = dimsizes(times)         ; number of times in the file

  mdims = getfilevardimsizes(a,"P") ; get some dimension sizes for the file
  nd = dimsizes(mdims)

;---------------------------------------------------------------

  do it = 0,ntimes-1,2             ; TIME LOOP

    print("Working on time: " + times(it) )
    res@TimeLabel = times(it)   ; Set Valid time to use on plots

    tc  = wrf_user_getvar(a,"tc",it)     ; T in C
    rh = wrf_user_getvar(a,"QICE",it)      ; relative humidity
    z   = wrf_user_getvar(a, "z",it)     ; grid point height

    rh = rh*1000.
      rh@units = "g/kg"  

    if ( FirstTime ) then                ; get height info for labels
      zmin = 0.
      zmax = max(z)/1000.
      nz   = floattoint(zmax/2 + 1)
      FirstTime = False
    end if

;---------------------------------------------------------------

    do ip = 1, 3              ; we are doing 3 plots, specifying different start and end points

        opts = True            ; setting start and end times
        plane = new(4,float)

        if(ip .eq. 1) then
          plane = (/  1,98,  199,98  /) ; start x;y & end x;y point
        end if
        if(ip .eq. 2) then
          plane = (/  2,71, 199,71  /) ; start x;y & end x;y point
        end if
        if(ip .eq. 3) then
          plane = (/   1,1, 199,199  /) ; start x;y & end x;y point
        end if


        rh_plane = wrf_user_intrp3d(rh,z,"v",plane,0.,opts)
        tc_plane = wrf_user_intrp3d(tc,z,"v",plane,0.,opts)

        dim = dimsizes(rh_plane)                      ; Find the data span - for use in labels
        zspan = dim(0)


      ; Options for XY Plots
        opts_xy                         = res
        opts_xy@tiYAxisString           = "Height (km)"
        opts_xy@AspectRatio             = 0.75
        opts_xy@cnMissingValPerimOn     = True
        opts_xy@cnMissingValFillColor   = 0
        opts_xy@cnMissingValFillPattern = 11
        opts_xy@tmYLMode                = "Explicit"
        opts_xy@tmYLValues              = fspan(0,zspan,nz)                    ; Create tick marks
        opts_xy@tmYLLabels              = sprintf("%.1f",fspan(zmin,zmax,nz))  ; Create labels
        opts_xy@tiXAxisFontHeightF      = 0.020
        opts_xy@tiYAxisFontHeightF      = 0.020
        opts_xy@tmXBMajorLengthF        = 0.02
        opts_xy@tmYLMajorLengthF        = 0.02
        opts_xy@tmYLLabelFontHeightF    = 0.015
        opts_xy@PlotOrientation         = tc_plane@Orientation


      ; Plotting options for RH
        opts_rh = opts_xy
        opts_rh@pmLabelBarOrthogonalPosF = -0.07
        opts_rh@ContourParameters       = (/ 0.02, 0.24, 0.02 /)
        opts_rh@cnFillOn                = True
      ;  opts_rh@cnFillColors            = (/"White","White","White", \
       ;                                     "White","Chartreuse","Green", \
      ;                                      "Green3","Green4", \
       ;                                     "ForestGreen","PaleGreen4"/)

      ; Plotting options for Temperature
        opts_tc = opts_xy
        opts_tc@cnInfoLabelOrthogonalPosF = 0.00
        opts_tc@ContourParameters  = (/ 5. /)


      ; Get the contour info for the rh and temp
        contour_tc = wrf_contour(a,wks,tc_plane,opts_tc)
        contour_rh = wrf_contour(a,wks,rh_plane,opts_rh)


      ; MAKE PLOTS         
        plot = wrf_overlays(a,wks,(/contour_rh,contour_tc/),pltres)

      ; Delete options and fields, so we don't have carry over
        delete(opts_tc)
        delete(opts_rh)
        delete(tc_plane)
        delete(rh_plane)

    end do  ; make next cross section

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  end do        ; END OF TIME LOOP

end
密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2014-4-10 09:43:24 | 显示全部楼层

在楼下贴出了
密码修改失败请联系微信:mofangbao
您需要登录后才可以回帖 登录 | 立即注册 新浪微博登陆

本版积分规则

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

快速回复 返回顶部 返回列表