Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5

UV sensor for WeatherDuino Pro2 weather station
#3

Hi, Zdenek

Quote:I tested voltage output and analyzed program. WeatherDuino calculates UV Index by this formula (WeatherDuino_RX_v1.4_b034.ino, table RX_TX, raw 212):

IndiceUV = ((ADC1 * 16.5) / 1024.0)

But this is not correct. It includes the impact of acrylic cover, but there is a question, if that impact is linear or not. And measurement in area of low UV indexes has to be fail, because the curve of UV Index isn't here linear:

First of all, are you testing your sensor in horizontal position? Maybe I'm wrong, but even in very bright sunny days, I never been able to read a UV index of 11, without any correction in the reading formula. I reach to this formula, by comparing readings (after assembling) with other nearby weather stations.

Said that, yes, the used formula includes some correction.
Not taking in account the nonlinearity of the readings between UV index 0 and UV Index 1 (less significant part of the readings) , theoretically the formula should be: IndiceUV = ((ADC1 * 12.0) / 1023.0)

Each one may need to slightly adjust this formula according to characteristics of the material (thickness, UV transmission, etc) used to cover the sensor (it must be covered by something with good UV transmission, to protect it from natural elements).
Each person can build the Solar Radiation / UV sensor in a different manner with different materials, because of this, some final software / hardware adjustments always be required.
Nearby weather stations and Wunderground are of great help at this stage. Cool

Your changes in the code are an interesting approach, and don't seem wrong to me. If they work better for your, why not use them?
I only see one drawback: The results are always integer numbers. I know that UV index is defined as a scale of integer numbers, but personally I like have them with one decimal place (it's better for the graphs too).

Below is real time graph of my UV readings

[Image: graphUV.php]

Reply


Messages In This Thread
UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 09-09-2014, 17:39
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 21-06-2015, 15:10
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 21-06-2015, 16:52
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 21-06-2015, 17:35
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 21-06-2015, 19:18
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 21-06-2015, 20:11
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 21-06-2015, 20:19
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 21-06-2015, 20:29
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 21-06-2015, 21:22
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 21-06-2015, 21:17
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 24-06-2015, 12:55
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 21-06-2015, 21:38
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 21-06-2015, 22:34
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 21-06-2015, 23:26
RE: UV sensor for WeatherDuino Pro2 weather station - by uncle_bob - 22-06-2015, 12:45
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 22-06-2015, 13:34
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 24-06-2015, 16:08
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 24-06-2015, 17:04
RE: UV sensor for WeatherDuino Pro2 weather station - by AllyCat - 24-06-2015, 19:46
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 25-06-2015, 16:46
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 24-06-2015, 17:20
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 24-06-2015, 21:55
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 26-06-2015, 14:23
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 26-06-2015, 15:13
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 27-06-2015, 05:49
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 27-06-2015, 11:17
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 24-06-2015, 18:09
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 24-06-2015, 21:11
RE: UV sensor for WeatherDuino Pro2 weather station - by zipidy66 - 07-11-2015, 05:32
RE: UV sensor for WeatherDuino Pro2 weather station - by AllyCat - 07-11-2015, 11:07
RE: UV sensor for WeatherDuino Pro2 weather station - by zipidy66 - 07-11-2015, 15:42
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 02-04-2016, 11:47
RE: UV sensor for WeatherDuino Pro2 weather station - by AllyCat - 02-04-2016, 16:54
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 13-04-2016, 11:25
RE: UV sensor for WeatherDuino Pro2 weather station - by AllyCat - 14-04-2016, 16:23
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 13-04-2016, 18:49
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 13-04-2016, 21:38
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 14-04-2016, 13:43
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 14-04-2016, 21:31
RE: UV sensor for WeatherDuino Pro2 weather station - by AllyCat - 15-04-2016, 17:11
RE: UV sensor for WeatherDuino Pro2 weather station - by fredthemufin - 26-04-2016, 08:50
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 26-04-2016, 10:27
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 26-04-2016, 22:41
RE: UV sensor for WeatherDuino Pro2 weather station - by spudstrawb - 28-04-2016, 02:15
RE: UV sensor for WeatherDuino Pro2 weather station - by Mikko - 21-06-2016, 19:42
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 21-06-2016, 21:37
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 21-06-2016, 23:54
RE: UV sensor for WeatherDuino Pro2 weather station - by spudstrawb - 22-06-2016, 08:54
RE: UV sensor for WeatherDuino Pro2 weather station - by Wizza - 22-06-2016, 01:18
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 22-06-2016, 04:43
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 22-06-2016, 09:11
RE: UV sensor for WeatherDuino Pro2 weather station - by Mikko - 22-06-2016, 17:42
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 22-06-2016, 18:09
RE: UV sensor for WeatherDuino Pro2 weather station - by ctnxs1 - 24-08-2016, 00:06
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 24-08-2016, 18:16
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 20-07-2016, 08:58
RE: UV sensor for WeatherDuino Pro2 weather station - by uncle_bob - 20-07-2016, 10:53
RE: UV sensor for WeatherDuino Pro2 weather station - by JT118 - 20-07-2016, 15:17
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 20-07-2016, 15:56
RE: UV sensor for WeatherDuino Pro2 weather station - by AllyCat - 20-07-2016, 16:49
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 20-07-2016, 23:36
RE: UV sensor for WeatherDuino Pro2 weather station - by zitoune - 03-09-2016, 05:32
(Another) UV sensor for WeatherDuino Pro2 weather station, the VEML6075 - by Superpat - 15-02-2017, 11:01
RE: (Another) UV sensor for WeatherDuino Pro2 weather station, the VEML6075 - by werk_ag - 15-02-2017, 18:42
RE: UV sensor for WeatherDuino Pro2 weather station - by uncle_bob - 15-02-2017, 12:49
RE: UV sensor for WeatherDuino Pro2 weather station - by Superpat - 15-02-2017, 20:25
RE: UV sensor for WeatherDuino Pro2 weather station - by Superpat - 16-02-2017, 10:42
RE: UV sensor for WeatherDuino Pro2 weather station - by AllyCat - 16-02-2017, 11:21
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 17-02-2017, 23:52
RE: UV sensor for WeatherDuino Pro2 weather station - by tyntop - 17-03-2017, 23:41
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 18-04-2017, 02:50
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 11-07-2017, 19:07
RE: UV sensor for WeatherDuino Pro2 weather station - by hornychz - 11-07-2017, 22:08
RE: UV sensor for WeatherDuino Pro2 weather station - by Barrow4491 - 04-12-2017, 06:49
RE: UV sensor for WeatherDuino Pro2 weather station - by werk_ag - 04-12-2017, 15:00



Users browsing this thread: 3 Guest(s)