Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Looking for information about non-linearity of sensors

Status
Not open for further replies.

patrick

Junior Member level 1
Joined
Apr 20, 2004
Messages
15
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
161
Non liearity of sensors

Hi there,
Can someone please help me to know more about a sensor's non linearity. I dont know a specific sensor, but I think there must be some sensors that are not linear, even within their specification range!!!!
Also, could you please tell me what techniques of dealing with non linearity?
Thanks alot
Patrick
 

Re: Non liearity of sensors

You can try using a deflection bridge. You have to get the non-lineal characteristic of your sensor, then you can chose min a max points in this curve to trace an "Ideal" linear characteristic. And then replace the min, middle and max values of your Ideal characteristic in the bridge equations and then you solve to find the values of the resistances and voltage for your bridge. And if you do it well you have to get a linear voltage in the output of the bridge.
 

Re: Non liearity of sensors

hi,

i am working with oxygen sensors ,they have different responses over different range.

Since there are different ranges ,we use piecewise integration and then fit the curve.

i am too searching for a better procedure for the non linearity removal.

hope this helps.

bye,
veer.
 

Re: Non liearity of sensors

patrick said:
Hi there,
Can someone please help me to know more about a sensor's non linearity. I dont know a specific sensor, but I think there must be some sensors that are not linear, even within their specification range!!!!
Also, could you please tell me what techniques of dealing with non linearity?
Thanks alot
Patrick
ther are many types of sensors i use a pressure sensor " load cell " you can control the reading of the sensor by AD converter input to a microcontroller then u can do any thing in the reading of the sensor
best regards
 

Re: Non liearity of sensors

I suppose (this is microcontrollers group) that you use mcu, and that you use some kind od A/D (inside mcu or outside mcu no matter).

There are two ways to do linearisation :
1. You can write function for incomming A/D data e.g.
if (A_D_in < 0x0FFF){
AD_linearised = A_D_in + 123; // e.g. difference is 123 non linear
}
else if (A_D_in < 0x6F5G){
AD_linearised = 2*A_D_in - 23;
}
....

2. Write table of caracteristic values (V1, V2, V3, ...), and if measure is between two one just (e.g. between V2 and V3), you make line between those two points (basic mathematical formula y=ax+b), and get value for specific measurement.


Mr.Cube
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top