<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>
<META content="Microsoft SafeHTML" name=Generator>
<STYLE>
.ExternalClass .EC_hmmessage P
{padding:0px;}
.ExternalClass body.EC_hmmessage
{font-size:10pt;font-family:Tahoma;}
</STYLE>
Hi to all,<BR><BR>I have just started using the WRF-ARW (after using WRF-NMM) and it outputs <BR>precip as an accumulated total through the forecast period. <BR>&nbsp;<BR>I need to display in hourly amounts using grads. My display field (called <BR>by a menu button from the main script) outputs 10m wind along with SLP and <BR>precipitation every hour for 48 forecast hours. <BR>&nbsp;<BR>The time is set to _x earlier on in the run script and I wrote the <BR>following:<BR>&nbsp;<BR>####################################################<BR>function rain()<BR># printing out the first hour's precipitation<BR>if _x = 1<BR>&nbsp; 'set gxout contour'<BR>&nbsp; 'set cthick 2'<BR>&nbsp; 'set cmin 0.3'<BR>&nbsp; 'set ccolor rainbow'<BR>&nbsp; 'd APCPsfc'<BR>&nbsp; 'set cthick 3'<BR>&nbsp; 'set ccolor 4'<BR>&nbsp; 'set cmax 0.0001'<BR>&nbsp; 'set cint 0.1'<BR>&nbsp; 'd APCPsfc'<BR># printing out all the following hours precipitation<BR>else<BR>&nbsp; 'define current = APCPsfc'<BR>&nbsp; _x = _x - 1<BR>&nbsp; 'define last = APCPsfc'<BR>&nbsp; _x = _x + 1<BR>&nbsp; 'define hourly = current-last'<BR>&nbsp; 'set gxout contour'<BR>&nbsp; 'set cthick 2'<BR>&nbsp; 'set cmin 0.3'<BR>&nbsp; 'set ccolor rainbow'<BR>&nbsp; 'd hourly'<BR>&nbsp; 'set cthick 3'<BR>&nbsp; 'set ccolor 4'<BR>&nbsp; 'set cmax 0.0001'<BR>&nbsp; 'set cint 0.1'<BR>&nbsp; 'd hourly'<BR>&nbsp; 'undefine last'<BR>&nbsp; 'undefine current'<BR>&nbsp; 'undefine hourly'<BR>endif<BR>return<BR>######################################<BR><BR>I have been struggling with this for a week, and reading through the <BR>script writing section, it appears that one cannot attach new values to <BR>a 'global variable' such as _x. How then else are you able to step back <BR>one hour so that you can retrieve that data to subtract it from the <BR>current hour?<BR>&nbsp;<BR>Thanks for any help,<BR>Theo<BR><BR></body>
</html>