Author Topic: Most Accurate Modern Handheld DMM? Just Curious  (Read 19065 times)

0 Members and 1 Guest are viewing this topic.

Online Vgkid

  • Super Contributor
  • ***
  • Posts: 2710
  • Country: us
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #50 on: February 12, 2017, 07:47:58 am »

LT1236 ACN 8-10

http://www.linear.com/product/LT1236

http://cds.linear.com/docs/en/datasheet/lt1236.pdf
Thanks. Interesting that they are running a 10V reference in there. I'm wondering if those 2 beefy diodes in the pics are for a boost converter. Similar to one that is implemented in the datasheet(except that is for 5v reference running off a 5v supply).
The boost converter is max863, and you are right, the boost converter provide +5V for digital section, +8V for analog,  and there is a -8V come from +8V, don't known how to explain it in English.
attached a photo, that is what I learned when I repaired my 30M meter.
Your English explanation is good, there are no issues with it.
I guess they are using the +/-8v to create a floating 16v for the reference. That is a bit different, but oh well.
If you own any North Hills Electronics gear, message me. L&N Fan
 

Offline Wytnucls

  • Super Contributor
  • ***
  • Posts: 3045
  • Country: be
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #51 on: February 12, 2017, 08:14:04 am »
Here is a 2003 model for sale in Germany. Has reached a fairly high price already, considering how old it is.

http://www.ebay.de/itm/Metra-Hit30M-Precision-AC-DC-/252754967403?hash=item3ad95ebb6b:g:Hw4AAOSwjDZYlc1M
 

Offline TheAmmoniacal

  • Supporter
  • ****
  • Posts: 1188
  • Country: no
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #52 on: February 12, 2017, 01:37:34 pm »
Too bad neither of the listings offer international shipping! I would probably sacrifice both my U1272A and U1282A to get one of these!
 

Offline quarks

  • Frequent Contributor
  • **
  • Posts: 874
  • Country: de
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #53 on: February 12, 2017, 03:23:41 pm »
USB TO IR  I used for data-log.....

Very interesting, so far I was not able to datalog my 30M.
Can you share some more details?

As others already stated the 30M is kind of unique and therefore is a great DMM, but there are some drawbacks I do not like.
- Battery runtime is only 15h to 16h!
- AFAIK there are no schematics available and also Gossen was not helpfull, when I contacted them and asked for calibration details. Even a cal lab I later contacted, said they do not get calibration details from Gossen.

It would be great if anyone could share how to calibrate a 30M.
 

Offline Assafl

  • Frequent Contributor
  • **
  • Posts: 600
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #54 on: February 12, 2017, 03:50:27 pm »
I can sort of rationalize why Gossen Metrawatt avoids giving out service and calibration guides for their low end products (planned obsolescence) .

But what is the use of making a 6 digit multimeter that cannot even be verified (unless you build your own test procedures)? I would highly expect T&M departments to discourage the acquisition of these (perhaps except for very specific niche mobile uses).

Bummer - The Gossen/Metrawatt/Camille Bauer 29s is my favorite handheld DMM (300,000 count, energy).


 

Offline Delta

  • Super Contributor
  • ***
  • Posts: 1221
  • Country: gb
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #55 on: February 12, 2017, 05:16:02 pm »
Do you mean most precise, or most accurate?
« Last Edit: February 12, 2017, 05:27:10 pm by Delta »
 

Offline Pipelie

  • Regular Contributor
  • *
  • Posts: 172
  • Country: cn
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #56 on: February 12, 2017, 05:24:18 pm »
USB TO IR  I used for data-log.....

Very interesting, so far I was not able to datalog my 30M.
Can you share some more details?

As others already stated the 30M is kind of unique and therefore is a great DMM, but there are some drawbacks I do not like.
- Battery runtime is only 15h to 16h!
- AFAIK there are no schematics available and also Gossen was not helpfull, when I contacted them and asked for calibration details. Even a cal lab I later contacted, said they do not get calibration details from Gossen.

It would be great if anyone could share how to calibrate a 30M.
check out the link I posted(thanks to 0xdeadbeef who share the link with me), https://sigrok.org/wiki/Gossen_Metrawatt
look into the photos of Metrawatt BD232, you will find out it is just a simple, RAW RS232 ot IR adapter.
something like the "Fluke 189/187   USB-IR Cable adapter" will work on 30M for sure.
the adapter I use is a USB to UART,  part number of the chip is Pl2303, the circuit is quiet simple, you can tell by the photo.
or you can build  a RS-232 to IR adapter, schematic attached below , it will work properly. designed by Jambalaya.
« Last Edit: February 12, 2017, 05:39:34 pm by Pipelie »
 

Offline bck

  • Contributor
  • Posts: 15
  • Country: de
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #57 on: February 12, 2017, 07:19:46 pm »
Hi,

attached is a lib for reading out the Metrahit 30M in python3

sample usage:
Code: [Select]
from lib.Metrahit30M import Metrahit30M
from time import sleep, time

a = Metrahit30M()
a.set_baudrate(9600)
a.set_device("/dev/ttyUSB0")
a.connect()

a.set_range(a.RANGES['VDC']['10V'])
while True:
    sleep(1)
    tmp = a.get_measurement()
    csv_data = str(time())+", "+tmp[0]+", "+tmp[1]+", "+tmp[2]
    with open("test.txt", "a") as file:
        file.write(csv_data+"\n")
    print(csv_data)


sample output:
Code: [Select]
1486926880.095561, +04.99996, V VDC, 10V VDC
1486926881.1968956, +04.99996, V VDC, 10V VDC
1486926882.2983227, +04.99996, V VDC, 10V VDC
1486926883.3987503, +04.99997, V VDC, 10V VDC
1486926884.5000813, +04.99997, V VDC, 10V VDC
1486926885.601423, +04.99997, V VDC, 10V VDC
1486926886.7028775, +04.99997, V VDC, 10V VDC
1486926887.8032846, +04.99996, V VDC, 10V VDC
1486926888.9046874, +04.99996, V VDC, 10V VDC
1486926890.0051658, +04.99996, V VDC, 10V VDC
1486926891.106339, +04.99996, V VDC, 10V VDC
1486926892.2070792, +04.99996, V VDC, 10V VDC
~ Alexander Becker
 
The following users thanked this post: quarks, Pipelie, Trader

Online bluey

  • Regular Contributor
  • *
  • Posts: 144
  • Country: au
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #58 on: July 19, 2020, 06:40:07 am »
Presume the Gossen Metrawatt Metrahit 30M has been superceded by something newer. Eg Gossen Metrawatt Metrahit PM Prime +/- BT. Around 800 euros. 310,000 counts:

https://www.gossenmetrawatt.com/english/produkte/metrahit-pm-prime.htm

Maybe one of the Metrahit S series has higher spec?

https://www.gossenmetrawatt.com/english/produkte/metrahitsseries.htm
« Last Edit: July 19, 2020, 07:03:08 am by bluey »
 

Offline EEVblog

  • Administrator
  • *****
  • Posts: 37734
  • Country: au
    • EEVblog
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #59 on: July 19, 2020, 01:23:25 pm »
Presume the Gossen Metrawatt Metrahit 30M has been superceded by something newer. Eg Gossen Metrawatt Metrahit PM Prime +/- BT. Around 800 euros. 310,000 counts:
https://www.gossenmetrawatt.com/english/produkte/metrahit-pm-prime.htm

That's a replacement for the Ultra, not the 30M.
 

Offline rsjsouza

  • Super Contributor
  • ***
  • Posts: 5986
  • Country: us
  • Eternally curious
    • Vbe - vídeo blog eletrônico
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #60 on: July 19, 2020, 02:02:02 pm »
This got me confused a bit as well. Earlier in this thread it was said the 30M had 200.000 counts, which put it on par with this modem and in the 5,5 digit multimeter range.

However, the 30M was indeed a 6,5 with its 1.200.000 counts.
« Last Edit: July 20, 2020, 10:22:02 pm by rsjsouza »
Vbe - vídeo blog eletrônico http://videos.vbeletronico.com

Oh, the "whys" of the datasheets... The information is there not to be an axiomatic truth, but instead each speck of data must be slowly inhaled while carefully performing a deep search inside oneself to find the true metaphysical sense...
 

Offline notfaded1

  • Frequent Contributor
  • **
  • Posts: 559
  • Country: us
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #61 on: July 20, 2020, 02:16:59 pm »
.ılılı..ılılı.
notfaded1
 

Offline joeqsmith

  • Super Contributor
  • ***
  • Posts: 11737
  • Country: us
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #62 on: July 20, 2020, 04:35:34 pm »
Presume the Gossen Metrawatt Metrahit 30M has been superceded by something newer. Eg Gossen Metrawatt Metrahit PM Prime +/- BT. Around 800 euros. 310,000 counts:

https://www.gossenmetrawatt.com/english/produkte/metrahit-pm-prime.htm

Maybe one of the Metrahit S series has higher spec?

https://www.gossenmetrawatt.com/english/produkte/metrahitsseries.htm

 :-DD :-DD
So they obsolete the Ultra and replace it with the Prime.  They don't clearly state in their literature what makes the Prime different from the Ultra.   Then the best part, they use the exact same M248B part number for both meters.   

Someone had wrote me a while back that Gossen had told them they had added a shield to the Ultra, actually calling out the Netic material I had used.   Maybe the Prime addresses some of my concerns with the Ultra.   I will write them. 

Offline joeqsmith

  • Super Contributor
  • ***
  • Posts: 11737
  • Country: us
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #63 on: July 23, 2020, 12:48:10 am »
Sadly but not too surprising, no response.   I used the same email address and history chain and wasn't trying to hide the fact that I had looked at the Ultra.   Rather than to look at it as an opportunity to show off the Prime, it seems they have little to say about it.   

Again, if they addressed the problems with the Ultra, I would be willing to have another look at it.   I can't see buying the Prime just to find out that their marketing group felt giving it a new name was going to solve the problems.       

Offline rsjsouza

  • Super Contributor
  • ***
  • Posts: 5986
  • Country: us
  • Eternally curious
    • Vbe - vídeo blog eletrônico
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #64 on: July 23, 2020, 02:14:52 am »
It is indeed sad. Their silence comes across as very arrogant, especially if the product revision was partially based on your conclusions (this is unconfirmed, right?). Oh well... We can't always win.
Vbe - vídeo blog eletrônico http://videos.vbeletronico.com

Oh, the "whys" of the datasheets... The information is there not to be an axiomatic truth, but instead each speck of data must be slowly inhaled while carefully performing a deep search inside oneself to find the true metaphysical sense...
 

Offline niner_007

  • Frequent Contributor
  • **
  • Posts: 256
  • Country: us
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #65 on: July 23, 2020, 02:40:43 am »
Easy, Gossen Metrahit 30M
World's only 6.5 digit handheld
https://www.gossenmetrawatt.com/english/produkte/metrahit30m.htm
6.5 is the resolution not accuracy, if I'm reading their accuracy spec right, basic DCV is 34ppm, and the time range is not specified, I assume per year

(I edited my post as a I was wrong) this is actually pretty good, but stability and noise figures are not specified

you should look for a bench DMM if you need accuracy and solid specs expected from a 6.5 meter, the Gossen is already in that price range, with worse specs
« Last Edit: July 23, 2020, 02:45:20 am by niner_007 »
 

Offline joeqsmith

  • Super Contributor
  • ***
  • Posts: 11737
  • Country: us
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #66 on: July 23, 2020, 03:00:24 am »
It is indeed sad. Their silence comes across as very arrogant, especially if the product revision was partially based on your conclusions (this is unconfirmed, right?). Oh well... We can't always win.

I can't personally vouch for them having made any changes outside of the new name.   

You could also try contacting them.  They may be more open to having a dialog with someone besides me.  If you do try, I would be interested in hearing what becomes of it. 

Online bluey

  • Regular Contributor
  • *
  • Posts: 144
  • Country: au
Re: Most Accurate Modern Handheld DMM? Just Curious
« Reply #67 on: August 04, 2020, 11:45:55 am »
It is indeed sad. Their silence comes across as very arrogant, especially if the product revision was partially based on your conclusions (this is unconfirmed, right?). Oh well... We can't always win.

I had no problem getting Gossen to answer my question about TRMS in the cheap models.

vertrieb@gossenmetrawatt.com
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf