Next Article in Journal
Noise Reduction for CFA Image Sensors Exploiting HVS Behaviour
Previous Article in Journal
Development of an Electrogenerated Chemiluminescence Biosensor using Carboxylic acid-functionalized MWCNT and Au Nanoparticles
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Least Square Regression Method for Estimating Gas Concentration in an Electronic Nose System

Dipartimento di Elettronica Informatica e Sistemistica, Università della Calabria, 87036 Rende (CS), Italy
*
Author to whom correspondence should be addressed.
Sensors 2009, 9(3), 1678-1691; https://doi.org/10.3390/s90301678
Submission received: 14 December 2008 / Revised: 7 March 2009 / Accepted: 10 March 2009 / Published: 10 March 2009
(This article belongs to the Section Chemical Sensors)

Abstract

:
We describe an Electronic Nose (ENose) system which is able to identify the type of analyte and to estimate its concentration. The system consists of seven sensors, five of them being gas sensors (supplied with different heater voltage values), the remainder being a temperature and a humidity sensor, respectively. To identify a new analyte sample and then to estimate its concentration, we use both some machine learning techniques and the least square regression principle. In fact, we apply two different training models; the first one is based on the Support Vector Machine (SVM) approach and is aimed at teaching the system how to discriminate among different gases, while the second one uses the least squares regression approach to predict the concentration of each type of analyte.

Graphical Abstract

1. Introduction

The paper deals with the problems of gas detection and recognition, as well as concentration estimation. The fast evaporation rate and toxic nature of many Volatile Organic Compounds (VOCs) could be dangerous for the health of humans at high concentration levels in air and workplaces, therefore the detection of these compounds has become a serious and important task in many fields. In fact, VOCs are also considered as the main reason for allergic pathologies, lung and skin diseases. Other applications of systems for gas detection are in environmental monitoring, food quality assessment [1], disease diagnosis [23], and airport security [4].
There are many research contributions on the design of an electronic nose system based on using tin oxide gas-sensors array in combination with Artificial Neural Networks (ANN) for the identification of the Volatile Organic Compounds (VOC’s) relevant to environmental monitoring, Srivastava [5] used a new data transformation technique based on mean and variance of individual gas-sensor combinations to improve the classification accuracy of a neural network classifier. His simulation results demonstrated that the system was capable of successfully identifying target vapors even under noisy conditions. Simultaneous estimates of many kinds of odor classes and concentrations have been made by Daqi et al. [6]; they put the problem in the form of a multi-input/multi-output (MIMO) function approximation problem.
In the literature several different approximation models have been adopted. In particular a multivariate logarithmic regression (MVLR) has been discussed in [7], a quadratic multivariate logarithmic regression (QMVLR) in [8], while a multilayer perceptron (MLP) has been experimented in [4]. Finally, support vector machines (SVM) has been used in [911].
We formulate the problem of gas detection and recognition in the form of a two-class or a multi-class classification problem. We perform classification for a given set of analytes. To identify the type of analyte we use the support vector machine (SVM) approach, which was introduced by Vapnik [12] as a classification tool and strongly relies on statistical learning theory. Classification is based on the idea of finding the best separating hyperplane (in terms of classification error and separation margin) of two point-sets in the sample space (which in our case is the Euclidean seven-dimensions vector space, since each sample corresponds to the measures reported by the seven sensors which constitute the core of our system). Our classification approach includes the possibility of adopting kernel transformations within the SVM context, thus allowing calculation of the inner products directly in the feature space without explicitly applying the mapping [13].
As previously mentioned, we adopt a multi-sensor scheme and useful information is gathered by combining the outputs of the different sensors. In fact, in general the use of just one sensor does not allow identification of a gas, as the same sensor output may correspond to different concentrations of many different analytes. On the other hand, by combining the information coming from several sensors of diverse types under different heater voltages values we are able to identify the gas and to estimate its concentration.
The paper is organized as follows. In Section 2 we describe our Electronic Nose (ENose), while Section 3 gives a brief overview of the SVM approach. Section 4 is devoted to the description of our experiments involving five different types of analytes (acetone, benzene, ethanol, isopropanol, and methanol). Finally the conclusions are drawn in Section 5.

2. Electronic Nose

An electronic nose is an array of gas sensors, whose response constitutes an odor pattern [14]. A single sensor in the array should not be highly specific in its response but should respond to a broad range of compounds, so that different patterns are expected to be related to different odors. To achieve high recognition rates, several sensors with different selectivity patterns are used and pattern recognition techniques must be coupled with the sensor array [10]. Our system (Figure 1) consists of five different types of gas sensors supplied with different heater voltages to improve the selectivity and the sensitivity of the sensors which are from the TGS class of FIGARO USA, Inc. The sensing element is a tin dioxide (SnO2) semiconductor layer. In particular three of them are of TGS-822 type, each one being supplied with a different heater voltage (5.0 V, 4.8 V, and 4.6 V, respectively, see Figure 2), one of the TGS-813 type, and the last one is of the TGS-2600 type. Because the gas sensor response is heavily affected by environmental changes, two auxiliary sensors are used for the temperature (LM-35 sensor from National Semiconductor Corporation), and for the humidity (HIH-3610 sensor from Honeywell).
The gas sensors and the auxiliary sensors are put in a box of 3000 cm3 internal volume. Inside the box we put a fan to let the solvent drops evaporate easily. All sensors are connected to a multifunction board (NI DAQPad-6015), which is used in our system as an interface between the box and the PC. The National Instruments DAQPad-6015 multifunction data acquisition (DAQ) device provides plug-and-play connectivity via USB for acquiring, generating, and logging data; it gives 16-bit accuracy at up to 200 kS/s, and allows 16 analog inputs, 8 digital I/O, two analog outputs, and two counter/timers. NI DAQPad-6015 includes NI-DAQmx measurement services software, which can be quickly configured and allows us to take measurements with our DAQ device. In addition NI-DAQmx provides an interface to our LabWindows/CVI [15] running on our Pentium 4 type PC.
The integrated LabWindows/CVI environment features code generation tools and prototyping utilities for fast and easy C code development. It offers a unique, interactive ANSI C approach that delivers access to the full power of C Language. Because LabWindows/CVI is a programming environment for developing measurement applications, it includes a large set of run-time libraries for instrument control, data acquisition, analysis, and user interface. It also contains many features that make developing measurement applications much easier than in traditional C language environments.
For support vector machine (SVM) training and testing in multi-class classification we use LIBSVM-2.82 package [16]. LIBSVM-2.82 uses the one-against-one approach [17] in which, given k distinct classes, k(k −1)/2 binary classifiers are constructed, each one considering data from two different classes. LIBSVM provides a parameter selection tool for using different kernels and allows cross validation. For median-sized problems, cross validation might be the most reliable way for parameter selection. First, the training data is partitioned into several folds. Sequentially a fold is considered as the validation set and the rest are for training. The average of accuracy on predicting the validation sets is the cross validation accuracy [18]. In particular the leave-one-out cross validation scheme consists of defining folds which are singletons, i.e. each of them is constituted by just one sample.

3. Support Vector Machine (SVM)

Support vector machines (SVMs) are a set of related supervised learning methods used for classification and regression of multi dimensional data sets [19, 14]. They belong to the family of generalized linear classifiers. This family of classifiers has both the abilities of minimizing the empirical classification error and maximizing the geometric margin. In fact a SVM is also known as maximum margin classifier [9]. In this section we summarize the main features of SVM. Detailed surveys can be found in [3, 14, 2021]. SVM looks for a separating hyperplane between the two data sets. The equation of such hyperplane is defined by:
f ( x ) = w T   x + b = 0
where w is the weight vector which defines a direction perpendicular to the hyperplane, x is the input data point, and b is the bias value (scalar), for a proper normalization. The margin is equal to ||w||−1. Therefore maximizing the margin is equivalent to minimizing ||w||. The advantage of this maximum margin criterion is both robustness against noise and uniqueness of the solution.
In many practical cases the data are not linearly separable, then the hyperplane tries to both maximize the margin and minimize the sum of classification errors at the same time. The error ξi of a point (xi,yi) (yi ∈ {−1,+1} represents the class membership) with respect to a target margin γ and for a hyperplane defined by f is:
ξ i = ξ ( ( x i ,   y i ) ,   f ( x i ) ,   γ ) = max ( 0 , γ y i   f ( x i ) )
where ξi is called the margin slack variable which measures how much a point fails to have margin. If yi and f(xi) have different signs the point xi is misclassified because
ξ i > γ > 0
The error ξi is greater than zero if the point xi is correctly classified but with margin smaller than γ.
γ > ξ i > 0
Finally, the more xi falls in the wrong region, i.e. satisfies equation 3, the bigger is the error. The cost function to be minimized is:
1 2 || w || 2 + C i ξ i
where C is a positive constant, which determines the trade off between accuracy in classification and margin width [2021]. Therefore, this constant can be regarded as a regularization parameter. When C has a small value, the optimal separating hyperplane tends to maximize the distance with respect to the closest point, while for large values of C, the optimal separating hyperplane tends to minimize the number of non-correctly classified points.
If the original patterns are not linearly separable, they can be mapped by means of appropriate kernel functions to a higher dimensional space called feature space. A linear separation in the feature space corresponds to a non-linear separation in the original input space [11]. Kernels are a special class of functions that permit the inner products to be calculated directly in the feature space, without explicitly applying the mapping. The family of kernel functions adopted in machine learning range from simple linear and polynomial mappings to sigmoid and radial basis functions [22]. In this paper linear kernel is used.

4. Experiments and Results

In our experiments we used five different types of volatile species with different concentrations. They are acetone, methanol, ethanol, benzene, and isopropanol. The data set for these volatile species is made up of samples in R7 space where each sample correspond to the outputs of the gas and auxiliary sensors.

4.1. Samples Preparation

Our box contains the PCB (Printed Circuit Board) where we fixed two different types of sensors, i.e. gas sensors and auxiliary sensors. It also contains a fan for circulating the analyte inside during the test. The system encompasses one input for inlet air coming from an air compressor which has been used to clean the box and the gas sensors after each test. One output is used for the exhaust air. The inner dimensions of the box are 22 cm length, 14.5 cm width, and 10 cm height, while the effective volume is 3,000 cm3. The amount of volatile compounds needed to create the desired concentration in the sensor chamber (our box) was introduced in the liquid phase using a high-precision liquid chromatography syringe. Since temperature, pressure and volume were known, the liquid needed to create the desired concentration of volatile species inside the box could be calculated using the ideal gas theory, as we explain below. The analyte concentration versus analyte volume injected is shown in Table 1.
A syringe of 10 μL is used for injecting the test volatile compounds. We take methanol as an example for calculating the ppm (parts-per-million) for each compound. Methanol has a molecular weight MW = 32.04 g/mol and density ρ = 0.7918 g/cm3. The volume of the box is 3,000 cm3; therefore, for example, to get 100 ppm inside the box, from Table 1, we used 0.3 cm3 of methanol.
The density of methanol is
= P × MW R × T
Where:
  • ∂ = the density of the gas of Methanol in g/L,
  • P = the Standard Atmospheric Pressure (in atm) is used as a reference for gas densities and volumes (equal 1 atm),
  • MW = Molecular Weight in g/mol,
  • R = universal gas constant in atm/mol.K (equal 0.0821 atm/mol.K),
  • T = temperature in Kelvin (TK = TC + 273.15).
As a result we get d = 1.33 g/L.
Mass = ν gas * = ν liq * ρ
where vgas is the volume occupied by the gas of methanol which is equal to 0.3*10−3 l, ∂ is the density of the gas of Methanol as calculated before, ρ is the constant density of methanol, therefore; vliq = (vgas × ∂) / ρ ⇒ vliq = (0.3 * 10−3 * 1.33) / 0.7918, the volume (vliq) is 0.503*10−6 l which provides 100 ppm of methanol. This means that if we want to get 100 ppm of methanol we must put 0.503 μL of liquid methanol in the box by using the syringe. Table 2 shows different concentrations of Methanol (in ppm) versus its quantities (in μL).

4.2. Results

In the first analysis, we used a SVM with linear kernel, and we applied a multi-class classification by using the LIBSVM-2.82 package [16]. The optimal regularization parameter C was tuned experimentally by minimizing the leave-one-out cross-validation error over the training set.
In fact the program was trained as many times as the number of samples, each time leaving out one sample from training set, and considering such omitted sample as a testing sample check the classification correctness. The classification correctness rate is the average ratio of the number of samples correctly classified and the total number of samples. The results are shown in Table 3 for different values of C. We used 22 concentration samples for acetone, 22 for benzene, 20 for ethanol, 23 for isopropanol, and 21 for methanol. For each concentration the experiment was repeated twice, thus a total number of 216 classification calculations was performed.. By using linear kernel we got 100.00% classification correctness rate for C = 1,000 adopting a leave-one-out cross-validation scheme. We remark that such results are better than those obtained by supplying all sensors by the same heater voltage (in such case, in fact, the best classification correctness rate was 94.74%).
Once the classification process has been completed, the next step is to estimate the concentration of the classified analyte. To this aim, we use the least square regression approach. We build an approximation of the response (sensor resistance versus analyte concentration) for each sensor and each analyte. Then we use this approximation to find the concentration for each analyte type.
For sintered SnO2 gas sensor, the concentration dependence of the response to a simple analyte exposure is nonlinear and can be described by a power law of the form [23]
R = δ c ω
where R is the sensor resistance, δ a constant, c the concentration of the analyte and ω an index that lies between 0.3 and 1.0. We applied this equation on all sensors for each analyte. The values of δ ‘s and ω ‘s, are calculated as follows:
Ω = n i = 1 n ( ln   c i   ln   R i ) i = 1 n ( ln   c i ) i = 1 n ( ln   R i ) n i = 1 n ( ln   c i ) 2 ( i = 1 n ln   c i ) 2 Δ = i = 1 n ( ln   R i ) Ω i = 1 n ( ln   c i ) n
where ω ≡ Ω, δ ≡ exp(Δ) and n is the number of samples, which are indexed by i.
Figure 3 shows, as an example, the original concentrations with respect to their sensor resistances, as well as the estimated curve for the analyte acetone. We have five curves, one for each sensor.
The optimal estimate of the concentration is in our model a combination of the outputs of the diverse sensors. We have adopted the least square regression model to find the optimal weights on the basis of the experimental data. We come out in our experiments with five measures for each analyte sample. The weights α’s are obtained by solving the following minimization problem :
min α i , ... , α m l = 1 n ( c ¯ ( l ) i = 1 M α i   c i ( l ) ) 2
where n is the number of analyte samples, is the true concentration, M is the number of sensors (in our case M = 5), c the concentrations that have been previously calculated (from equation 8). Tables 48 show the real concentrations with respect to the results of the proposed method. For comparison purposes we add in the table also the results obtained by simply averaging the outcomes provided by the five sensors.
Finally we considered (Table 9) the correlation coefficient (C.C) as a measure for the estimation accuracy [8]. The correlation coefficient is a number between 0.0 and 1.0. If there is no relationship between the predicted values and the actual values the correlation coefficient is 0.0 or very low (the predicted values are no better than random numbers). As the strength of the relationship between the predicted values and actual values increases so does the correlation coefficient. A perfect fit gives a coefficient of 1.0. Thus the higher correlation coefficient (near to 1.0) the better is the regressor [7]. The correlation coefficient is calculated as follows:
C . C = i = 1 n X i   X ^ i i = 1 n X i i = 1 n X ^ i n ( i = 1 n X i 2 ( i = 1 n X i ) 2 n )   ( i = 1 n X ^ i 2 ( i = 1 n X ^ i ) 2 n )
where C.C is the correlation coefficient, X are the actual values, are the predicted values, and n is the number of data points.

5. Conclusions

The results demonstrate that our system has the ability to identify the type of analyte and then estimate its concentration. The best correctness rate was 100.00%. Also the values obtained in terms of concentration estimates appear quite satisfactory. Supplying three similar sensors (TGS-822) with different heater voltages, improved the performance of the system. Future work will be devoted to identify binary mixture of gases and then to estimate the concentration of each component.

Acknowledgments

The authors are grateful to Dr. A. Astorino for some useful discussions about classification. Also, we wish to thank Prof. G. Cocorullo from the Dipartimento di Elettronica Informatica e Sistemistica, Università della Calabria, for supporting this project. The work has been partially supported by the Italian “Ministero dell’ Università e della Ricerca Scientifica” under PRIN Project “Numerical Methods for Global Optimization and for some classes of Nonsmooth Optimization problems” (2005017083.002).

References

  1. Zhang, H.; Chang, M.; Wang, J.; Ye, S. Evaluation of Peach quality Indices Using an Electronic Nose by MLR, QPST, and BP Network. Sens. Actuat. B 2008, 134, 332–338. [Google Scholar]
  2. Casalinuovo, I.; Pierro, D. Application of Electronic Noses for Disease Diagnosis and Food Spoilage Detection. Sensors 2006, 6, 1428–1439. [Google Scholar]
  3. Gardner, J.W.; Shin, H.; Hines, E. An Electronic Nose System to Diagnose Illness. Sens. Actuat. B 2000, 70, 19–24. [Google Scholar]
  4. Lee, D.; Lee, D.; Ban, S.; Lee, M.; Kim, Y. SnO2 Gas Sensing Array for Combustible and Explosive Gas Leakage Recognition. IEEE Sensors J 2002, 2, 140–149. [Google Scholar]
  5. Srivastava, A.K. Detection of Volatile Organic Compounds (VOCs) Using SnO2 Gas-Sensor Array and Artificial Neural Network. Sens. Actuat. B 2003, 96, 24–37. [Google Scholar]
  6. Daqi, G.; Wei, C. Simultaneous Estimation of Odor Classes and Concentrations Using an Electronic Nose with Function Approximation Model Ensembles. Sens. Actuat. B 2007, 120, 584–594. [Google Scholar]
  7. Cohen, J.; Cohen, P.; West, S.G.; Aiken, L.S. Applied Multiple Regression/Correlation Analysis for the Behavioural Sciences, 3rd Ed ed; Lawrence Erlbaum Associates: Mahwah, NJ, USA, 2003. [Google Scholar]
  8. Penza, M.; Cassano, G.; Tortorella, F. Identification and Quantification of Individual Volatile Organic Compounds in a Binary Mixture by Saw Multisensor Array and Pattern Recognition Analysis. Meas. Sci. Technol 2002, 13, 846–858. [Google Scholar]
  9. Distante, C.; Ancona, N.; Siciliano, P. Support Vector Machines for Olfactory Signals Recognition. Sens. Actuat. B 2003, 88, 30–39. [Google Scholar]
  10. Pardo, M.; Sberveglieri, G. Classification of Electronic Nose Data with Support Vector Machines. Sens. Actuat. B 2005, 107, 730–737. [Google Scholar]
  11. Wang, X.; Zhabg, H.; Zhang, C. Signals Recognition of Electronic Nose Based on Support Vector Machines. Proceedings of the 4th International Conference on Machine Learning and Cybernetics, Guangzhou, China, August 18–21, 2005; pp. 3394–3398.
  12. Vapnik, V.N. Statistical Learning Theory; John Wiley & Sons: USA, 1998. [Google Scholar]
  13. Shawe-Taylor, J; Cristianini, N. Kernel Methods for Pattern Analysis, 1st Ed ed; Cambridge University Press: Cambridge, UK, 2004. [Google Scholar]
  14. Pearce, T.C.; Schiffman, S.S.; Nagle, H.T.; Gardner, J.W. Handbook of Machine Olfaction: Electronic Nose Technology; WILEY-VCH: Weinheim, Germany, 2003. [Google Scholar]
  15. National Instruments. http://www.ni.com/lwcvi/.
  16. Chang, C.; Lin, C. Libsvm: A Library for Support Vector Machines. 2001. Available online: http://www.csie.ntu.edu.tw/cjlin/libsvm.
  17. Knerr, S.; Personnaz, L.; Dreyfus, G. Single-Layer Learning Revisited: a Stepwise Procedure for Building and Training a Neural Network. In Neurocomputing: Algorithms, Architectures and Applications; Fogelman, J., Ed.; Springer-Verlag: New York, 1990; pp. 169–184. [Google Scholar]
  18. Gallant, S.I. Neural Network Learning and Expert Systems; MIT press: Cambridge, Massachusetts, 1993. [Google Scholar]
  19. Gutierrez-Osuna, R. Pattern Analysis for Machine Olfaction: A Review. IEEE Sensors J 2003, 2, 189–202. [Google Scholar]
  20. Burges, C. A Tutorial on Support Vector Machines for Pattern Recognition. Data Min. Knowl. Discov 1998, 2, 121–167. [Google Scholar]
  21. Cristianini, N.; Shawe-Taylor, J. An Introduction to Support Vector Machines and Other Kernel-based Learning Methods; Cambridge University Press: Cambridge, UK, 2000. [Google Scholar]
  22. Mouller, K.; Mika, S.; Ratsch, G.; Tsuda, K.; Scholkopf, B. An Introduction to Kernel-Based Learning Algorithms. IEEE Trans. Neural Networks 2001, 12, 181–201. [Google Scholar]
  23. Bartlett, P.; Gardner, J.W. Odour Sensors for an Electronic Nose, in Sensors and Sensory Systems for an Electronic Nose. NATO ASI Ser. Appl. Sci 1992, 212, 197–216. [Google Scholar]
Figure 1. Block diagram of the system.
Figure 1. Block diagram of the system.
Sensors 09 01678f1
Figure 2. Block diagram of the sensors heater voltage supplies.
Figure 2. Block diagram of the sensors heater voltage supplies.
Sensors 09 01678f2
Figure 3. Acetone concentrations vs. sensor resistance for each sensor type.
Figure 3. Acetone concentrations vs. sensor resistance for each sensor type.
Sensors 09 01678f3
Table 1. Analyte concentration vs. analyte volume.
Table 1. Analyte concentration vs. analyte volume.
Analyte Concentration (ppm)Volume of Pure Analyte (cm3)
100.03
500.15
1000.30
2000.60
4001.20
8002.40
1,0003.00
2,0006.00
Table 2. Methanol concentration vs. methanol quantity.
Table 2. Methanol concentration vs. methanol quantity.
Methanol Concentration (ppm)Methanol quantity (μL)
400.2
1000.5
2001.0
4002.0
8004.0
1,0005.0
1,4007.0
2,00010.0
Table 3. Multiple C values with linear kernel.
Table 3. Multiple C values with linear kernel.
C valuesClassification Correctness Rate %
1091.24
5096.31
10096.77
50098.62
80099.08
1,000100.00
2,00099.54
Table 4. Experimental results of acetone.
Table 4. Experimental results of acetone.
Real dataOur MethodAverage Method% Absolute Error of our Method% Absolute Error of Average Method
2222.6825.113.11014.136
4443.8543.750.3390.574
6655.7955.1715.47016.404
8882.2380.456.5548.579
110110.92108.180.8411.651
132137.36133.224.0580.928
154165.54160.757.4924.383
176189.89180.887.8912.775
220252.73244.3714.87811.079
264300.03287.5413.6478.918
330379.21366.9414.91311.194
440428.31407.132.6577.470
484474.41443.421.9818.384
550533.80520.152.9455.426
594585.78552.301.3837.020
660649.93644.151.5262.401
770761.83753.861.0602.095
880873.91880.840.6920.095
990997.661,,010.210.7742.042
1,1001,057.311096.753.8810.296
1,3201,353.411,425.292.5317.977
1,5401,534.371,609.860.3654.536
Table 5. Experimental results of methanol.
Table 5. Experimental results of methanol.
Real dataOur MethodAverage Method% Absolute Error of our Method% Absolute Error of Average Method
4041.0938.762.73253.1075
8076.4970.864.390311.4300
120118.94125.380.88664.4875
160164.71162.212.94631.3839
200193.07196.573.46611.7135
240237.82245.190.91002.1653
280273.81284.392.21161.5684
320307.61329.553.87002.9860
360367.57380.852.10275.7927
400408.58439.902.14639.9751
480481.485060.530.30875.4278
600598.60620.040.23243.3397
720689.76678.694.20045.7369
800819.69794.982.46160.6268
960983.12990.822.40833.2107
1,0801,083.011,089.450.27900.8751
1,2001,178.881,178.121.75971.8232
1,4001,395.611,364.580.31362.5300
1,6001,597.261,547.350.17113.2908
1,8001,810.561,761.230.58682.1540
2,0001,997.901,909.190.10474.5406
Table 6. Experimental results of ethanol.
Table 6. Experimental results of ethanol.
Real dataOur MethodAverage Method% Absolute Error of our Method% Absolute Error of Average Method
2723.8424.4711.69219.3663
5455.0151.431.87214.7533
8190.5584.1911.78583.9464
108106.0799.831.78937.5666
135143.28135.366.13260.2645
162172.99164.726.78261.6814
189198.07201.594.80006.6625
216223.99237.613.699110.0069
243242.01264.740.41108.9485
270288.60283.366.88874.9494
324336.74332.173.93142.5230
405422.82428.934.40035.9088
459455.81484.860.69485.6352
540527.63576.412.29006.7433
675661.31622.772.02857.7381
810820.18747.141.25677.7607
945928.10887.551.78816.0792
1,0801,049.951,002.222.78197.2019
1,3501,373.041,326.661.70671.7287
Table 7. Experimental results of benzene.
Table 7. Experimental results of benzene.
Real dataOur MethodAverage Method% Absolute Error of our Method% Absolute Error of Average Method
1815.1416.2115.88119.9555
3636.6335.091.75082.5043
5456.5255.474.66472.7224
7275.0874.354.28353.2601
9096.3096.086.99926.7518
108115.37116.106.82907.5011
126129.59130.912.85403.9012
144150.63154.684.60537.4186
162166.19170.062.58784.9739
180185.53187.883.07534.3775
234248.06246.476.00835.3295
270274.97276.511.84252.4126
324325.56326.130.48290.6590
360353.29356.881.86190.8661
414415.01407.070.24531.6730
468449.41447.263.97184.4310
540514.60503.904.70346.6841
630637.34641.771.16481.8692
720738.37726.532.55180.9075
810806.19794.960.47061.8567
900904.35860.470.48394.3921
1,0801,074.291,072.020.52860.7390
Table 8. Experimental results of isopropanol.
Table 8. Experimental results of isopropanol.
Real dataOur MethodAverage Method% Absolute Error of our Method% Absolute Error of Average Method
2117.8516.8114.984119.9374
4242.3942.650.92471.5425
6366.3167.195.25056.6589
8494.7593.6512.800311.4851
105112.92113.767.54388.3477
126130.53131.093.59484.0371
147160.04157.528.87467.1591
168173.03171.972.99352.3634
189197.58199.134.54145.3587
210211.78212.780.84981.3222
252255.39255.411.34711.3522
294298.80292.861.63420.3873
357348.83343.442.28933.7973
420401.99407.814.28792.9030
483482.31470.840.14202.5169
567567.14548.540.02573.2557
630648.76626.992.97840.4781
735720.55695.121.96605.4257
840833.88818.790.72832.5243
945934.93915.131.06503.1612
1,0501,071.761,068.292.07231.7416
1,2601,251.771,260.440.65300.0350
Table 9. Correlation Coefficient (C.C) value for each analyte.
Table 9. Correlation Coefficient (C.C) value for each analyte.
Analyte TypeC.C from the new methodC.C from the method of averageC.C from SVM regression method
Acetone0.9989300.9977570.982431
Benzene0.9995350.9991960.989445
Ethanol0.9993940.9975150.974048
Isopropanol0.9996290.9993220.985179
Methanol0.9998030.9992510.973584

Share and Cite

MDPI and ACS Style

Khalaf, W.; Pace, C.; Gaudioso, M. Least Square Regression Method for Estimating Gas Concentration in an Electronic Nose System. Sensors 2009, 9, 1678-1691. https://doi.org/10.3390/s90301678

AMA Style

Khalaf W, Pace C, Gaudioso M. Least Square Regression Method for Estimating Gas Concentration in an Electronic Nose System. Sensors. 2009; 9(3):1678-1691. https://doi.org/10.3390/s90301678

Chicago/Turabian Style

Khalaf, Walaa, Calogero Pace, and Manlio Gaudioso. 2009. "Least Square Regression Method for Estimating Gas Concentration in an Electronic Nose System" Sensors 9, no. 3: 1678-1691. https://doi.org/10.3390/s90301678

Article Metrics

Back to TopTop