Using the following script I am trying to plot hourly rainfall time series<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="gmail_quote">
&#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></div></blockquote><div><br>The block above is really all you need other than to set a time range as well.  So try something like &#39;set t 1 15&#39; and just hardcode your tt value.  If the time increment in your file is one hour or less, you can do this.  If it isn&#39;t then you will have to make assumptions and guess.  Also, just FYI, usually precipitation that accumulates over time is valid at the end of the period rather than at the beginning.  Thus your definition would be<br>
rn = rainc + rainnc - [rainc(t-1) + rainnc(t-1)]<br> <br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div class="gmail_quote">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></div></blockquote><div><br>The above display statement should give you an error.  In fact, except for the [t = tt + 1] and [endwhile] lines, the entire section above this and below my comment above appears unnecessary.  You can only display defined fields, not just scalar variables.  drain is just a single number, not an array.  Thus, Grads doesn&#39;t know how to display it.<br>
 <br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div class="gmail_quote">&#39;draw ylab Hourly Rainfall(mm)&#39;<br>



&#39;printim CHENNAI.gif white&#39;<br>&#39;quit&#39;</div><br>
<br>_______________________________________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Jeff Duda<br>Iowa State University<br>Meteorology Graduate Student<br><a href="http://www.meteor.iastate.edu/%7Ejdduda" target="_blank">www.meteor.iastate.edu/~jdduda</a><br>