Dear Help,<br>I would like plot time series of WRF hourly rainfall plot for 48hour by finxing lat &amp; lone. Iam able plot time series of<br>

Accumulated rainfall But I would like to plot hour accumulated rainfall,Please help me to solve the error<br>
******************************<div class="gmail_quote">**********************************************<br>&#39;open file.ctl&#39;<br>&#39;set lat 13.1&#39;<br>&#39;set lon 80.00&#39;<br>&#39;set t 1 49&#39;<br>&#39;set grads off&#39;<br>
&#39;set grid off&#39;<br>


&#39;set tlsupp year&#39;<br>&#39;set ccolor 2&#39;<br>&#39;set cthick 7&#39;<br>&#39;d rainc+rainnc&#39;<br>&#39;draw title Preciption in mm/hour&#39;<br>&#39;draw ylab Accumilated Rainfall(mm)&#39;<br>&#39;printim CHENNAI.gif white&#39;<br>



&#39;quit&#39;<br>*****************************************************************************<br>*****But I would like to plot hourly accumulated rainfall (each hour) *******<br>*****************************************************************************<br>



Using the following script I am trying to plot hourly rainfall time series<br>&#39;open file.ctl&#39;<br>tt=1<br>&#39;set lat 13.1&#39;<br>&#39;set lon 80.00&#39;<br>while ( tt &lt;= 49)<br>&#39;set gxout line&#39;<br>&#39;set t &#39; tt<br>



&#39;set grads off&#39;<br>&#39;set grid off&#39;<br>&#39;set ccolor 2&#39;<br>&#39;set cthick 7&#39;<br>&#39;define rn=(rainc(t=&#39;tt+1&#39;)+rainnc(t=&#39;tt+1&#39;))-(rainc(t=&#39;tt&#39;)+rainnc(t=&#39;tt&#39;))&#39;<br>



&#39;d rn&#39;<br>fmt=&#39;%6.2f&#39;<br>tmpval=subwrd(result,4)<br>drain=math_format(fmt,tmpval)<br>say drain<br>tt=tt+1<br>endwhile<br>&#39;set gxout line&#39;<br>&#39;d drain&#39;<br>&#39;draw ylab Hourly Rainfall(mm)&#39;<br>



&#39;printim CHENNAI.gif white&#39;<br>&#39;quit&#39;</div>