03-25-2010 10:37 AM
Bonjour à tous,
Je suis à la recherche d'un moyen ou d'une méthode pour arriver à faire une cartographie thermique d'un véhicule.
Je m'explique. J'équipe un véhicule avec des thermocouples, et j'aimerai voir l'évolution des zones chaudes et froides.
Ci joint une implantation type avec les températures.
J'ai essayé de faire un graphe 3D et d'interpoler les mesures en 3D mais je n'y arrive pas. Je ne sais pas comment faire.
Si une personne à déja travaillé sur ce sujet où a des idées, je suis preneur.
Il faudrait et ca serait pas mal que les coordonées X et Y ne soient pas avec un pas constant, mais qu'on puisse modifier à souhait.
Merci d'avance.
Thomas Muller
03-25-2010 10:54 AM
Hi Thomas,
do you know the "sensor mapping" express vi? I think this can help you, but as far as i know you need a model of your car.
Maybe it helps.
Mike
03-26-2010 12:15 AM
I am looking for a means or method to get to a thermal mapping of a vehicle.
Let me explain. I equip a vehicle with thermocouples, and I'd like to see the evolution of hot and cold zones.
Attached with type implantation temperatures.
I tried to make a 3D graph and interpolate 3D action but I can not. I do not know how.
If someone has already worked on this subject which has ideas, I am a buyer.
Ca and should not be worse than the X and Y coordinates are not consistent with a step, but one can edit it.
03-26-2010 02:09 AM
Hi everybody, I'm sorry but I thought that I was on the french forum !!
Thank you very much MikeS81 for your quickly reply. I have see the 3D sensor mapping, It's great, but not that I want.
I want just a 2D map as this
where the technician can be placed the X and Y coordinates on the picture and the program do an interpolation between all the sensors.
If somebody has an idea.
Thank you in advance and thank you Muks for the translation.
Thomas Muller
03-26-2010 08:07 AM - edited 03-26-2010 08:08 AM
Thomas,
What you have to do is a 2D interpolation.
1) Create a 2D array, Let's say 200x50 points.
2) Define your 6? temperature values and their XY-location.
3) Choose the algoritm.
Example of a simple algoritm:
For every point in the array, look at he 3 closest measurement points and calculate their distance to the point (d²=(x-x1)²+(y-y1)²)
Define the temperature for the point by middling out: (T1/d1+T2/d2+T3/d3)/3*(d1+d2+d3)/3
You could take more or less points, do the interploation linear/quadratic/...
There are other/better ways, have a look in the NI-examples, have a seach on "splines" and "2D"
The examples are very good, and clearly explained in the vi. No need to duplicate that here.
My example is just to show a solution with basic maths.
Keep in mind the difference between 6 measurements, and 6 heat sources.
.
03-31-2010 02:25 AM
Hi everybody
it is several day that I try to make this small program, and I can't do this.
Thanks ST5 for your help but I have try wour method and I have search th interpolation 2D but I can do the interpolation.
I have try the griddata mathscript and there is no good results.
http://forums.ni.com/ni/board/message?board.id=170&thread.id=198322&view=by_date_ascending&page=2
I have try to interpolate no uniforme grid.
http://decibel.ni.com/content/docs/DOC-7992
I have try the bilenear interpolatio and it doesn't work with my two array 1D.
http://forums.ni.com/ni/board/message?board.id=170&message.id=127726&query.id=1236629#M127726
So if somebody can help me, It would be very nice !!
You could find my vi that replay the sensor and my thermal map that no very cute.
Thomas Muller