GithubHelp home page GithubHelp logo

Comments (3)

NXTkoji avatar NXTkoji commented on September 26, 2024

I tried with another MQ-131 (high concentration), brand new, preheated sensor, but the readings were the same as the previous test. Following is the message from the serial monitor.

Calibration in progress...
Calibration parameters
R0 = 977.52 Ohms
Time to heat = 17 s
Sampling...
Concentration O3 : 12.34 ppm
Concentration O3 : 12343.99 ppb
Concentration O3 : 26.09 mg/m3
Concentration O3 : 26089.09 ug/m3
Sampling...
Concentration O3 : 12.34 ppm
Concentration O3 : 12343.99 ppb
Concentration O3 : 26.09 mg/m3
Concentration O3 : 26089.09 ug/m3

from arduino-mq131-driver.

NXTkoji avatar NXTkoji commented on September 26, 2024

Found out that you have specified to change code in your library for high concentration.
' case HIGH_CONCENTRATION :
// Use the equation to compute the O3 concentration in ppm

  // Compute the ratio Rs/R0 and apply the environmental correction
  ratio = lastValueRs / valueR0 * getEnvCorrectRatio();
  // R^2 = 0.9900
  // Use this if you are monitoring low concentration of O3 (air quality project)
  return convert(8.1399 * pow(ratio, 2.3297), PPM, unit);
  
  // R^2 = 0.9985 but nearly impossible to have 0ppm
  // Use this if you are constantly monitoring high concentration of O3
  // return convert((8.37768358 * pow(ratio, 2.30375446) - 8.37768358), PPM, unit);'

Followed the instruction and now I have a better reading.

Calibration parameters
R0 = 977.52 Ohms
Time to heat = 17 s
Sampling...
Concentration O3 : 4.27 ppm
Concentration O3 : 4268.12 ppb
Concentration O3 : 9.02 mg/m3
Concentration O3 : 9020.70 ug/m3

from arduino-mq131-driver.

ostaquet avatar ostaquet commented on September 26, 2024

Hi @NXTkoji,

The high concentration sensor is manufactured with a detection range from 10ppm to 1000ppm (and not ppb ;-) ).

If you are performing measurements in clean air, I doubt you will reach 10ppm in real measurements.

As an example, the ozone in Belgium is about 107 ug/m3 (https://www.irceline.be/fr/qualite-de-lair/mesures/ozone). It means around 54 ppb (about 0.055 ppm). We are far below the minimum of the sensor.

The value you got in clean air is just a mathematical interpretation.

The high concentration sensor is really designed for the, as named :-), the high concentration sensing.

I hope it helps ;-)

from arduino-mq131-driver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.