Тёмный

Reading absolute pressure with Bosch MAP sensor with Arduino #2 (formulae) 

more molecules
Подписаться 19 тыс.
Просмотров 4,5 тыс.
50% 1

Опубликовано:

 

20 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 32   
@darksandsp
@darksandsp 3 года назад
Just got a 2.5 bar map and this came in perfectly to calculate. Thanks!
@moremolecules
@moremolecules 3 года назад
Good luck, hopefully it will work out for your purpose
@vauzweirad
@vauzweirad 4 года назад
Used your explanation to calculate everything needed to use a MAP Sensor from Suzuki SV650, very helpful! Thanks for sharing!
@moremolecules
@moremolecules 4 года назад
Thanks for the comment and glad it has helped.
@_trevorkidd
@_trevorkidd 3 года назад
Thank you so much for this. I bought a generic 3bar sensor and thankfully they provided some values but this formula really made it work well.
@sku300Fi
@sku300Fi 5 лет назад
Thank you so much for this 2 videos and your shared knowledge. THANKS!
@moremolecules
@moremolecules 5 лет назад
Hi Quemasteda, I am glad it has helped.
@Drift93979
@Drift93979 4 года назад
@@moremolecules Hello can help mefor my sensor 0.944v=10kPa 4.75v=250kPa Max V=5
@moremolecules
@moremolecules 4 года назад
@@Drift93979 Not too sure what you want me to do with the numbers supplied?
@egon2875
@egon2875 4 года назад
Nice one boss. Appreciate your help!!
@moremolecules
@moremolecules 4 года назад
Thanks egon, glad it has helped!
@egon2875
@egon2875 4 года назад
@@moremolecules did you manage to get the thermometer on it to work? Pretty sure mines shot, 5v or 0v, nothing in between. 😕
@moremolecules
@moremolecules 4 года назад
@@egon2875 No, but I have not tried. Not too sure if mine has one.
@HakkiOgrt
@HakkiOgrt 4 года назад
thank you.
@turtulara
@turtulara Год назад
I'm more interested to measure vacuum, did you find that sensor is accurate in vacuum condition?
@moremolecules
@moremolecules Год назад
Yes, it should meaure vacuum, but difficult to know how accurate it is. It is automotive MAP sensor, so it should be quite accurate.
@pistolpat_5547
@pistolpat_5547 4 года назад
Hi! What line of code should i remove in order to just show boost? I currently have a diesel turbo suv and I don't need to indicate the vacuum on the gauge. Thanks! Btw subbed as well. Really helpful videos. Will start soon hopefully on this project!
@moremolecules
@moremolecules 4 года назад
Hi pistoplat_, I used a MAP sensor, so it gives absolute pressure and it is a bit difficult with that one to read boost, although not entirely impossible. If you have a similar one, you can do something like if pressure < 0 then display 0, anything above 0 can be displayed. It is not entirely boost, as boost is the pressure above atmospheric, which changes depending on weather. Check out my other video for measuring crankcase pressure (ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-h4TQ-XVWU30.html), that one uses relative pressure and will display actual boost over atmospheric pressure.
@pistolpat_5547
@pistolpat_5547 4 года назад
@@moremolecules oh wow i see. So basically, in theory, using a map sensor can be used in all boosted vehicles and it can be programmed to show or not show vacuum as well. This is very cool and useful :D. Is there any chance it would be fine to contact you personally for more questions in regards to the topic? :)
@moremolecules
@moremolecules 4 года назад
@@pistolpat_5547 Yes, but for boost the MAP sensor will not be that accurate as you do not exactly know the atmospheric pressure. Say you think the atmospheric pressure is 1,000mbar, but it is 970, the final measurement will be off by this difference. If you go onto the channel's about there is an e-mail there.
@moremolecules
@moremolecules 3 года назад
@@FluxApex Yes, I have subsequently used a differential pressure sensor for say crankcase pressure. It has two spouts/inputs, one atmospheric another for the crankcase pressure. I used a DPF exhaust pressure sensor, much easier than with a MAP. This was just a video to show how to use the MAP, but I have not used it afterwards. Something like this here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-h4TQ-XVWU30.html
@Zorgens
@Zorgens 3 года назад
Use the "map" function in the Arduino to do this. Then you get more accurate reading too. This give you 1024 steps betwen 20 and 250kPa, not 870 steps (82 - 952).
@moremolecules
@moremolecules 3 года назад
I do not quite remember why I did not use the map function in this case. Either way the range would not be different as the values returned were bound by the voltage, which was not 0-5V.
@robmouncer3721
@robmouncer3721 4 года назад
How did you find the datahsheet for the pinout?
@moremolecules
@moremolecules 4 года назад
Hi Rob, pure luck, I was googleing the numbers on the MAP sensor and it came from Bosch. I think most will be the same pinout. Some pinouts can be found here as well (partsbos.com).
@robmouncer3721
@robmouncer3721 4 года назад
@@moremolecules Thank you very much. Will check it out. Great vid :)
@sodomakgomora2995
@sodomakgomora2995 4 года назад
how to convert to mbar to bar? 1 mbar is 0.001bar how to convert on the code to see at the bar?
@moremolecules
@moremolecules 4 года назад
1,000mbar is 1bar. You could just divide the mbar by 1,000 to get bar
@sodomakgomora2995
@sodomakgomora2995 4 года назад
@@moremolecules yes i try to fix the formula with athores numbers and dont work. my map sensor is mpx4250ap. so the numbers is Vin=5,1v the MIN 20kPa is 0,2v and the MAX 250kPa with 4,9v. you made a video that you explain so well but i cant find solution. this formula work with all map sensors?
@moremolecules
@moremolecules 4 года назад
@@sodomakgomora2995 The code should work with any MAP sensor. The relationship betwee the min and max is linear, so if pluging the numbers in the formula should lead to correct results. Why do you need bar instead of mbars? What happens if Pabs=Pabs/1000? Does this give you bar?
@sodomakgomora2995
@sodomakgomora2995 4 года назад
@@moremolecules first of all a big thumbs up that there are people like you and they helped us in the best way. sorry about my english... google translate :P and yes work at bar but i just at the code remove at the calculator 1 bar (the atmosphere presure) to see the difference and show me presure at my turbo like all the gauges. mate you are great keep that. now i buy new one presure sensor with 2 intake to set the true presure of my turbo :)
@moremolecules
@moremolecules 4 года назад
@@sodomakgomora2995 Yes, the MAP is absolute pressure and the one with the 2 things is relative. If you leave one open it will show the difference with the atmospheric pressure. Good luck
Далее
MAP Sensor Diagnosis and Understanding Function- Pt1
20:18
These Are Too Smooth 😮‍💨
00:57
Просмотров 3,4 млн
Pressure Sensor - Arduino
17:52
Просмотров 198 тыс.
IR Remotes & Microcontrollers - Arduino & ESP32
1:31:50
Просмотров 209 тыс.
Understanding Porsche's New Six Stroke Engine Patent
21:57
Simple Code, High Performance
2:50:14
Просмотров 255 тыс.
Arduino Tutorial: Tachometer (RPM Counter)
3:54
Просмотров 280 тыс.
OLED Displays with Arduino - I2C & SPI OLEDs
41:41
Просмотров 1,1 млн
Errichto Stream, POI 22/1
3:55:08
Просмотров 161 тыс.