There’s a commonly used metric in solar power plant studies called variously Peak Solar Hours, or Peak Sun Hours. Essentially it’s how many watt-hours per day a one-watt solar panel will produce, so it’s an integration of Watts Per Square Meter over the day. It is typically measured with a pyrometer, which can cost as much as a complete Weatherflow station.
Is there a way to get a rough approximation of this metric from my WeatherFlow station? Either (ideally) from stored cloud data, or I could log UDP broadcast data and derive some kind of curve fit from my pyrometer and solar plant, unless there’s an easier way?
There have been a couple of discussions of “Hours Of Sunshine” in Developers and/or Feature Requests, but this is for the solar-power-specific metric above.
“Note that peak sun-hours is not the same as hours of daylight; a peak-sun hour describes the intensity of sunlight in a specific area and is defined as an hour of sunlight that offers 1,000 watts of photovoltaic power per square meter.”
So it’s a simple query and formula.
The question I have is one hour of 1001 watts and hour of 999 watts equal to two hours of 1000 watts?
Correct, it’s just watts per square meter as a fraction of “full daylight” (which is 1000w/m^2) integrated over the day.
So yes, one hour at 999 plus 1 hour at 1001 is 2 peak hours.
Typical readings in the US are in the 3-5 range, but I’m looking to determine if there are any microclimate effects that’ll make one local site or another better for development. Plus I’m not in the US so the NREL maps and other free data sources don’t work here.
I’ve got two more Weatherflow systems on order to place in locations with power and internet, but I was hoping to just read out “today was 5.2 peak hours in this location and 5.3 in the other one” for instance.
DISTINCT COUNT(id), SUM(solar_radiation) FROM SkyObservation WHERE solar_radiation > 0 AND serial_number = ‘SK-00000730’ AND datestamp > ‘2019-02-25 00:00:00’
This returned 685 records and a sum of 210064.
210064 / 685 / 60 = 5.11
And that value matches real close as to what two solar stations in m area reported today.
I store the data locally. There are some third-party applications that capture and store the data using a Raspberry Pi. Once you have the data, you can preform your own queries.
I’m still not convinced that formula is correct so I’m going to keep researching and testing.
Sure - it’s part of the observation data available via the REST interface - Tempest API
Or yes, you can get that from the observations on the fly if you want to do that moving forward via any of those ways. API docs are at WeatherFlow Smart Weather API
Yes, you may use the REST API to retrieve the one minute data and store it for use. You may preform queries on the data with the REST API.
If you are willing to set up a computer or Raspberry Pi you may find it more convenient to capture the data via UDP. This will also allow you to retrieve and store past data that resides on the WeatherFlow servers.