Author Topic: An modern NO True RMS DMM?  (Read 1744 times)

0 Members and 1 Guest are viewing this topic.

Offline GarySnailTopic starter

  • Newbie
  • Posts: 2
  • Country: de
An modern NO True RMS DMM?
« on: September 06, 2019, 12:59:30 pm »
I’ve on the search for something unusual.   
I’m looking for an Benchtop DMM that isn’t TRUE RMS. I’m interested in average rectified value (ARV) and the formfactor of the Signal.

I want to test Current Transformers and see the Result in ARV because RMS falsifies it.
The CT’s will be in saturation therefore my output signal will be distorted. With the ARV it’s still comparable.

I’ve checked most of the bigger manufacturer but no one did provide information, if it’s possible to show the value.
Only the Keithley DMM6500 shows in one of its Sample pictures an AVG value. But it is mAmps and I’m not sure if it’s the correct average.
I know that lots of old multimeters use exactly this way to calculate the RMS value, but I would like to integrate it in my system so an USB or any other modern Interface would be nice.

Any suggestions?
 

Offline 001

  • Super Contributor
  • ***
  • Posts: 1170
  • Country: aq
Re: An modern NO True RMS DMM?
« Reply #1 on: September 06, 2019, 01:22:21 pm »
Is it sort of trolling?
Use scope for amplitude readings
 

Offline GarySnailTopic starter

  • Newbie
  • Posts: 2
  • Country: de
Re: An modern NO True RMS DMM?
« Reply #2 on: September 06, 2019, 01:31:56 pm »
I’d like to automate the process, therefore its not an option to look on an scope every time.
All I need is a value which I can compare to the min/max that is given.
 

Offline HKJ

  • Super Contributor
  • ***
  • Posts: 2904
  • Country: dk
    • Tests
Re: An modern NO True RMS DMM?
« Reply #3 on: September 06, 2019, 01:32:25 pm »
I do not know of a bench meter, but a high end hand held meter:
Kyoritsu KEW1062 or YOKOGAWA TY720 it is basically the same meter.

It can be switches between mean and RMS reading.
 

Offline 001

  • Super Contributor
  • ***
  • Posts: 1170
  • Country: aq
Re: An modern NO True RMS DMM?
« Reply #4 on: September 06, 2019, 01:42:53 pm »
I’d like to automate the process, therefore its not an option to look on an scope every time.
All I need is a value which I can compare to the min/max that is given.

It is basic function for DSO
 

Offline exe

  • Supporter
  • ****
  • Posts: 2562
  • Country: nl
  • self-educated hobbyist
Re: An modern NO True RMS DMM?
« Reply #5 on: September 06, 2019, 01:53:42 pm »
RC-filter?
 

Offline pigrew

  • Frequent Contributor
  • **
  • Posts: 680
  • Country: us
Re: An modern NO True RMS DMM?
« Reply #6 on: September 06, 2019, 01:53:50 pm »
Is this for an automated test setup? If so, you can program a computer to get data from a USB oscilloscope, and then do processing on the computer.

You could also build a precision rectifier circuit and measure its output in DCV mode.

What voltage and frequency (ranges) are you needing to measure? With what accuracy?

I wonder if a low-end DMM from China would be what you need, but getting calibration certs would be difficult.

The Keysight U2741A didn't mention True RMS in its datasheet, not sure if it is or not.
« Last Edit: September 06, 2019, 01:59:30 pm by pigrew »
 

Offline Fungus

  • Super Contributor
  • ***
  • Posts: 16649
  • Country: 00
Re: An modern NO True RMS DMM?
« Reply #7 on: September 06, 2019, 01:55:33 pm »
I’d like to automate the process, therefore its not an option to look on an scope every time.

No need. Modern DSOs have USB/Ethernet connections so you can hook them up to a PC and automate everything they do.

It's usually an ASCII plaintext interface.
 
The following users thanked this post: 001

Offline jfiresto

  • Frequent Contributor
  • **
  • Posts: 818
  • Country: de
Re: An modern NO True RMS DMM?
« Reply #8 on: September 06, 2019, 02:51:36 pm »
If you can accept a handheld meter with a 300–350 hour battery life while logging, the the B&K 390A is "average sensing, RMS indicating". It has a pretty much standard, USB interface with a well defined protocol. It can also capture the voltage or current min/max-values-so-far that have lasted longer than 1 ms. B&K's support is very good.

Should you need it, I can send you a Python utility I have written, that collects its data. i have run it, so far, under OSX, Windows and RPi Linux.
-John
 

Offline Fungus

  • Super Contributor
  • ***
  • Posts: 16649
  • Country: 00
Re: An modern NO True RMS DMM?
« Reply #9 on: September 06, 2019, 02:55:26 pm »
If you can accept a handheld meter with a 300–350 hour battery life while logging...

You could run it off a power supply if it's going to be fixed to a bench and battery life is an issue (via a couple of wires in the back).

 

Offline CDaniel

  • Frequent Contributor
  • **
  • Posts: 411
  • Country: ro
Re: An modern NO True RMS DMM?
« Reply #10 on: September 06, 2019, 04:15:32 pm »
I doubt that B&K390A , or similar crappy 1KHz bandwidth multimeter is any good , knowing that the current waveform is highly distorted , so even at 50Hz the harmonic content is very high ...

You have to use an 100KHz true rms meter that can measure average up to aprox 20KHz , average is lower bandwidth , like recomanded in reply #3 , or there are similar benchmeters .
« Last Edit: September 06, 2019, 04:18:44 pm by CDaniel »
 

Offline KedasProbe

  • Frequent Contributor
  • **
  • Posts: 646
  • Country: be
Re: An modern NO True RMS DMM?
« Reply #11 on: September 12, 2019, 06:37:28 pm »
The average of the DMM6500 is sum/count (what you would expect)

But can't you just get the samples and calculate what you need.
DMM6500 also has scripts so you would be able to do it standalone.

I don't know if the quality of the samples will be good enough for you at max samples speed.
but I can do a test though and give you the samples, so you can decide.

Script:

sum = 0
for index = 1, defbuffer1.n do
   sum =sum + math.abs(defbuffer1.readings[index])
end

if defbuffer1.n > 0 then
   display.settext(display.TEXT1, sum / defbuffer1.n .." V")
   display.changescreen(display.SCREEN_USER_SWIPE)
end
« Last Edit: September 13, 2019, 09:04:28 am by KedasProbe »
Not everything that counts can be measured. Not everything that can be measured counts.
[W. Bruce Cameron]
 

Online macboy

  • Super Contributor
  • ***
  • Posts: 2254
  • Country: ca
Re: An modern NO True RMS DMM?
« Reply #12 on: September 13, 2019, 02:19:27 pm »
Keithley 2001 (& 2002) can display AC as True RMS, Average, or Average calibrated to RMS (reads average value but adjusts to give equivalent to RMS value of a sine wave). Bandwidth is several MHz. This last option is only available on certain later firmware, but a workaround is to use the math function to scale the reading.  Coupling can be either AC or DC, so you can measure a signal with DC offset. I would think that the DMM6500 is similar. I'd suggest to download and read the Keithley DMM6500 operator manual. Keithley manuals are usually very good at fully describing every feature.
 
The following users thanked this post: Someone

Offline schmitt trigger

  • Super Contributor
  • ***
  • Posts: 2222
  • Country: mx
Re: An modern NO True RMS DMM?
« Reply #13 on: September 13, 2019, 03:37:30 pm »
I agree with other posters that a modern DSO is the way to go, even for automated tests.

They all now have some sort of serial comms, and can be set up for automatic readings of many parameters.

Otherwise as other poster mentioned, build a precision full wave rectifier with a pair of opamps, feed to any DC meter, and there you have it.
 

Offline ogden

  • Super Contributor
  • ***
  • Posts: 3731
  • Country: lv
Re: An modern NO True RMS DMM?
« Reply #14 on: September 13, 2019, 04:28:36 pm »
I agree with other posters that a modern DSO is the way to go, even for automated tests.

AC (amplitude) accuracy of most generic/8-bit DSO's are around 3% while 4-digit DMM's have 1% or better. I agree with those who suggest to manufacture DIY-rectifier for DMM in DC mode.
 
The following users thanked this post: Datman


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf