Sandaysoft

Support forum for Cumulus weather station software
It is currently Thu May 23, 2013 4:48 am
Please click here before posting. Help me to help you!
Useful Links: Cumulus FAQ • Enhancement requests • Wiki (documentation)
Please put your approximate location into your profile
Add your web site to the Cumulus user map
Vantage Pro2 users with firmware 3.00 should upgrade to fw 3.12 and Cumulus 1.9.4

All times are UTC




Post new topic Reply to topic  [ 10 posts ] 
Author Message
 Post subject: Frost melting on rain guage and creating false rain reading?
PostPosted: Tue Jan 17, 2012 1:35 pm 
Offline
User avatar

Joined: Tue Feb 01, 2011 8:22 am
Posts: 344
Location: Wokingham, Berkshire, UK
Weather Station: WH1081
Operating System: Win 7, XP, Xubuntu, Linux Mint
I have done a quick search on the forum but can not seem to find anything on the following:

I am not 100% sure as I was at work when my rain guage recorded rain fall today. But I am
pretty sure that we have had no rainfall today so far.

When I got us this morning there was a lot of frost about and it got me thinking that
if the rain guage has a lot of frost on it and then later in the day the temp got up
high enough for it to melt, it could then trickle down into the rain gauge and be
recorded as rainfall.

Therefore I wonder if other people have had this happen? and if so is there something
I could do / modify, to prevent this from happening in the future?

_________________
Cumulus Real Time Data Grabber
http://bit.ly/WjBh5z

Wokingham Berkshire - weather station
http://www.wokinghamweather.co.uk

MRD Photography
http://www.mrdphotography.co.uk

Image


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 1:38 pm 
Offline
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2514
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
I just live with it - normally I only get a single tip (like today). Some argue it's all 'precipitation' anyway, same as a heavy dew.

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 1:49 pm 
Offline
Site Admin
User avatar

Joined: Mon Jun 02, 2008 6:49 pm
Posts: 17567
Location: Sanday, Orkney
Weather Station: Davis VP2
Operating System: Windows Home Server 2011
The Met Office Observer's Handbook says that it should count towards the rain total, and if it's known for certain that it didn't actually rain, a note should be made in the log for that day to say where the precipitation came from.

_________________
Steve
Sanday Weather
----------------------------------------------------------------------------------------------------------------------------------
Like Cumulus and want to support it? Please donate! Image


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 1:59 pm 
Offline
User avatar

Joined: Tue Feb 01, 2011 8:22 am
Posts: 344
Location: Wokingham, Berkshire, UK
Weather Station: WH1081
Operating System: Win 7, XP, Xubuntu, Linux Mint
Thank you both for your replies.

I think I will take your advice Steve and make a note in my log.

Cheers.

_________________
Cumulus Real Time Data Grabber
http://bit.ly/WjBh5z

Wokingham Berkshire - weather station
http://www.wokinghamweather.co.uk

MRD Photography
http://www.mrdphotography.co.uk

Image


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 4:46 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
steve wrote:
The Met Office Observer's Handbook says that it should count towards the rain total, and if it's known for certain that it didn't actually rain, a note should be made in the log for that day to say where the precipitation came from.

I set the RainDayThreshold to 0.02 (inches) so melted frost (usually 0.01") doesn't count as a rain day but is added to the rainfall total. I've had two incidents of that in the last week.

I think that's the reason Steve added that option in Cumulus.ini.

_________________
Cheers,
Ray, Cheshire.

Image


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 4:51 pm 
Offline
Site Admin
User avatar

Joined: Mon Jun 02, 2008 6:49 pm
Posts: 17567
Location: Sanday, Orkney
Weather Station: Davis VP2
Operating System: Windows Home Server 2011
Yes, the correct way to handle it (according to the UKMO book) is to include it in the total but not count it as a 'rain day'. But there's no good way to handle it automatically; a single tip due to real rain should count as a rain day.

_________________
Steve
Sanday Weather
----------------------------------------------------------------------------------------------------------------------------------
Like Cumulus and want to support it? Please donate! Image


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 5:04 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
steve wrote:
Yes, the correct way to handle it (according to the UKMO book) is to include it in the total but not count it as a 'rain day'. But there's no good way to handle it automatically; a single tip due to real rain should count as a rain day.

I've interrogated dayfile.txt and I have 105 entries where the rainfall is 0.01". Impossible to say whether it's proper rain or melt. You could include an additional indicator for each record to indicate if it was melt. Down to the user then to check it when apprpriate. Only for true nerds probably. :lol:

_________________
Cheers,
Ray, Cheshire.

Image


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 5:08 pm 
Offline
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2514
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
Code:
if (average_temp_last_6hrs <= 3 && rain_count_last_3hrs < 0.02) {
  //probably dew/frost
  rain_day = false
} else {
  rain_day = true
}
:lol:

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 5:11 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
Brilliant! :D

_________________
Cheers,
Ray, Cheshire.

Image


Top
 Profile  
 
 Post subject: Re: Frost melting on rain guage and creating false rain read
PostPosted: Tue Jan 17, 2012 6:24 pm 
Offline
Site Admin
User avatar

Joined: Mon Jun 02, 2008 6:49 pm
Posts: 17567
Location: Sanday, Orkney
Weather Station: Davis VP2
Operating System: Windows Home Server 2011
RayProudfoot wrote:
You could include an additional indicator for each record to indicate if it was melt. Down to the user then to check it when apprpriate. Only for true nerds probably. :lol:
Yes, it's a possible future enhancement. I'd have to think about the best way to do it without breaking things, though.

_________________
Steve
Sanday Weather
----------------------------------------------------------------------------------------------------------------------------------
Like Cumulus and want to support it? Please donate! Image


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 10 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  

Protected by Anti-Spam ACP Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group