Posts: 12
Threads: 4
Joined: Jul 2020
Weather Station: Meteo-wagenborgen.nl
While studying the code I saw that you implemented a standard humidity compensation for all sensors supported:
Code:
// RH Compensation
// Raw PM readings will be mathematically compensated according the Sioutas tests
// using the following equation: Ccomp = Cmeas / ((1+(RH/100)7) x 3.7
// The accuracy of the RH interference correction using the above equation has been experimentally tested measuring continuously
// the outdoor PM2.5 concentrations over a wintertime period for 7 days using two OPC’s: the model e-sampler and the model
// Aerocet 531 (same instruments used for the gravimetric calibrations) operating in parallel.
// Source: https://repositorium.sdum.uminho.pt/bitstream/1822/10163/1/21.I_CIPTT_P_Ruprecht%5B1%5D.pdf
//RHcomp_factor = (1.0 + pow((Humidity / 100.0), 7) * 3.7);
That is interesting and you might add that to the overview.
If other sensors don't use that or use different compensations that you are aware of, could you indicate that ?
Posts: 5.392
Threads: 336
Joined: Apr 2014
Weather Station: WeatherDuino 4Pro
Country:
Hi,
I don't think it's all that important to mention that aspect. As much as I think I know, all commercial Air Quality sensors implement humidity compensation, that's the main reason why they all have T/H sensors included. The purpose isn't provide accurate T/H readings, but instead measure the air humidity as close to the dust sensor air intake as possible. Brands don't reveal their algorithm, the AQM-III uses the one which source of study is clearly identified on the code.
One user here in Portugal is running the AQM III (with a PMS7003), side by side with an AirLink and a Purple Air since several months, and the results of the 1H, 3H, 12H and 24H averages are consistent between them, which leads us to believe that the humidity compensation method that we use is valid.
The Sensirion SPS30 readings seems to be less sensible to humidity changes than the PMS7003 or the SD011, that's why on the current firmware, the humidity compensation isn't applied for the SPS30.
I think you have an original AirLink, try putting both running outside side by side, and let them work for some days. On the AQM III preferably use a PMS7003, as it is from the same brand and similar to the ones used by the Davis Airlink.
Rgs.
Posts: 12
Threads: 4
Joined: Jul 2020
Weather Station: Meteo-wagenborgen.nl
28-09-2021, 09:45
(This post was last modified: 28-09-2021, 09:47 by
HansR.)
(27-09-2021, 23:06)Werk_AG Wrote: I don't think it's all that important to mention that aspect. As much as I think I know, all commercial Air Quality sensors implement humidity compensation, that's the main reason why they all have T/H sensors included.
You mean the AirLink and PurpleAir etc... I don't know that, they don't publish that, I think they should and would.
(27-09-2021, 23:06)Werk_AG Wrote: The purpose isn't provide accurate T/H readings, but instead measure the air humidity as close to the dust sensor air intake as possible. Brands don't reveal their algorithm, the AQM-III uses the one which source of study is clearly identified on the code.
Yes.
(27-09-2021, 23:06)Werk_AG Wrote: One user here in Portugal is running the AQM III (with a PMS7003), side by side with an AirLink and a Purple Air since several months, and the results of the 1H, 3H, 12H and 24H averages are consistent between them, which leads us to believe that the humidity compensation method that we use is valid.
OK... good
(27-09-2021, 23:06)Werk_AG Wrote: The Sensirion SPS30 readings seems to be less sensible to humidity changes than the PMS7003 or the SD011, that's why on the current firmware, the humidity compensation isn't applied for the SPS30.
Now that is something I dislike a bit, an inconsistency. As this T/H correction is apparently a non-documented feature, everywhere it becomes very difficult to say something about it and measure the correctness of the output. Comparison becomes difficult. A lot has been written about this T/H correction but no specification mentions it. I find that difficult. Fortunately with the AQM there is the code, I may start trying some things.
(27-09-2021, 23:06)Werk_AG Wrote: I think you have an original AirLink, try putting both running outside side by side, and let them work for some days. On the AQM III preferably use a PMS7003, as it is from the same brand and similar to the ones used by the Davis Airlink.
No I don't have a real airlink, it is my own emulator with an PMS1003. I may start using a PMS7003 and compare that with my other sensors. I am currently starting a test examining exactly that: T/H compensation (where I live humidity can be a whole year 70% and up).
Anyway... interesting feature that compensation. I think it should be mentioned just as it should with an AirLink.
Regards, Hans
Posts: 12
Threads: 4
Joined: Jul 2020
Weather Station: Meteo-wagenborgen.nl
Ah... and in addition I can add that the article states the correction loses validity above 70% humidity

Correction is the holy grail of PM measurement I guess.
Posts: 12
Threads: 4
Joined: Jul 2020
Weather Station: Meteo-wagenborgen.nl
(28-09-2021, 23:16)Werk_AG Wrote: Perhaps it's not a direct comment on your thought which I think I have understood.
I believe the main purpose of any Air Quality device is provide an AQ Index (whatever the standard), which usually is a rolling average over a time period. Thus, what eventually makes sense, when comparing different AQ devices, is comparing the resulting AQ Index for the same time period, and not the instant output of each one (hardly two of them will have the same output at a given moment). Just a thought. 
Yes, you may be right but AQI is derived from the actual concentrations and therefore - if devices are compared - devices should give - roughly at least - the same concentrations.
We need not discuss it here in depth, it is now clear to me what you are doing in the code, that's important.
If I have any other remarks in this I will PM you.
Regards,
Hans