Author Topic: LCR Meter Plot Software  (Read 4172 times)

0 Members and 1 Guest are viewing this topic.

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
LCR Meter Plot Software
« on: March 23, 2023, 03:56:29 pm »
Finally getting the Tonghui TH2830 serial port working, we set out to try and create a plotting routine.

https://www.eevblog.com/forum/testgear/tonghui-th2830-lrc-meter-serial-port-how/msg4207222/#msg4207222

Decided to try python and used some Hioki python routines for accessing the TH2830, later we'll try working with the Hioki IM3536.

After a few attempts with a PC, we gave up and decided to use a RPi 3 and achieved some success! Biggest issue was finding the RPi serial port address, then things began to move forward.

This is a simple Python routine that allows plotting of the TH2830 DUT by serial RS232 connection using a USB to serial adapter, and doesn't have any error checking.

From the code we are obviously not well versed at Python programming, well any programming, but are providing this routine to hopefully help others more capable.

If folks are successful in getting/adapting this routine operating on a PC or Mac, or adds features, cleans thing up, please return results here so others (ourselves included) can benefit.

Anyway, here's a few plots of some components.

Now off to try and get the IM3536 working ::)

Best,
« Last Edit: March 23, 2023, 04:02:13 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: Kean, RoGeorge, 2N3055, TopQuark, ch_scr, Martin72, bastl_r

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #1 on: March 23, 2023, 03:59:12 pm »
A few more plots of Inductor and LC Networks.

Best,
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: RoGeorge, Martin72

Offline oz2cpu

  • Frequent Contributor
  • **
  • Posts: 850
  • Country: dk
    • webx.dk private hobby and diy stuff
Re: LCR Meter Plot Software
« Reply #2 on: March 24, 2023, 05:16:26 pm »
WOW this is nice, super cool looking curves , exactly what i was dreaming of..

for us who dont understand python ? how easy is it to make this run on a PC ?
or even via testcontroller ?
if only a working TH2830 driver was made for testcontroller ??
Radioamateur OZ2CPU, Senior EE at Prevas
EMC RF SMPS SI PCB LAYOUT and all that stuff.
 

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #3 on: March 24, 2023, 06:09:54 pm »
Originally tried to get it working on PC, but routine had issues with trying to find the pyserial files. There was something about how a PC installs Python and the supporting files path?

Maybe someone with more experience with Python on a PC can help?

BTW just updated the TH2830 version and added the Hioki IM3536 version. Have both running at same time on RPi the TH2830 on TTYUSB0 and the IM3536 on TTYUSB1.

Here's an impedance plot from the IM3536 of a 1uF Mylar cap from 4Hz to 8MHz!

Edit: This is so easy to do, so added more plots (later with dual variable capability) from the IM3536, note some of the capacitor impedance levels ;)

This shows how the effective impedance of the small 100uF 25V Polymer impedance compares with the much larger physically and capacitance 1000uF 16V Electrolytic, and the small 470uF 6.3V Polymer :-+


Best,
« Last Edit: March 24, 2023, 10:28:16 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #4 on: March 25, 2023, 02:04:23 am »
Decided to use a quality 5uF Polypropylene cap as a final test subject for the day. This reveled some subtle resonate features of the capacitor and setup which uses the Tonghui TH26048A plug in test fixture with the Hioki IM3536 LCR meter.

You can observe the subtle resonance in the ESR plot around 3~6MHz, along with the primary sharp impedance resonance ~400KHz. Also note the low ESR ~ 0.01 Ohms at 1MHz and dipping down to ~0.003 ohms at lower frequencies.

Best,
« Last Edit: March 25, 2023, 03:15:09 am by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: bomp

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #5 on: March 26, 2023, 01:09:52 am »
Had some time today and worked on the Tonghui TH2830 version, decided to try and include most of the measurement and display functions. This meter has quite a list of available measurement display modes, here's the list shown below.

One mode that was lacking was the ability to show DUT Magnitude Impedance and Real Impedance on the screen which is limited to just two non-programmable display functions (they are only shown in displayed pairs, each display pair can be changed but not individually, while IM3536 has 4 display functions and each is independently programmable).

Since we often want to "see" DUT Impedance Magnitude and the effective "Real" part vs frequency, not just the "Angle", we decided to create this mode function (Mag) with the RX function which returns the R -jX from the DUT. The modes we've included are all shown but the GB, YTD, YTR, and DCR (no need to plot DCR with frequency ??? ).

Also working on the plotting routines which now allow dual Y-axis independent plotting, scaling (Linear/Log) & labeling.

Anyway, here's the version 2 for the TH2830, a few plots gathered from such and hoping some others may find this useful and maybe adapt to other LCR meters.

Best,
« Last Edit: March 26, 2023, 05:02:27 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: Kean

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #6 on: April 12, 2023, 06:11:00 pm »
Finally able to get things working on PC with the TH2830, and even included versions which allow DC Bias Sweeps with Bias Fixture and external Power Supply.

https://www.eevblog.com/forum/projects/bias-network-for-lcr-meter/

This uses VISA and requires Serial Ports be encoded (didn't bother with user input). These ports can be located with the Python gui script attached,  then entered into the routine as a fixed USB serial port address.

Two external Power Supplies are supported, the GPP-4323 and SPD3303X, the SPD uses USB since it has no RS232 port. Various USB to RS232 adapters with appropriate "Null Modem Adapter" were used and work, the SPD3303X just uses a standard direct USB cable.

With these PS the Voltage read function is used to read back the PS setting DC voltage as the DUT voltage. This is generally OK, but for large capacitive DUT the actual voltage across the DUT can be significantly lower than the applied PS DC voltage and one needs to wait between voltage steps to allow the DUT Capacitor to charge up. Not allowing the DUT time to charge can also introduce a DUT parameter reading error as the Bias voltage across the DUT is changing as the LCR meter is reading the applied AC test voltage. In the DC Bias fixture mentioned, the external applied DC Bias time constant is ~3 seconds (30uF and 100K), if a large DUT capacitance is testing this should be increased by adding the additional DUT RC time constant where R is ~100K.

We also added the capability to use an external DMM (HP34401A) to read the actual voltage across the DUT under test. The HP is setup to use High Z mode for DC Readings and a separate external Banana jack (Yellow) is shown on the mentioned DC Bias Fixture, this is connected to the DUT + with a 100K series R for isolation. If one does a TH2830 Open and Short Calibration with everything connected (PS & DMM), then the effects of these external items should be accounted in the Open & Short Cal routine.

Here's the latest Python routines (routines are a work in progress, esp the plots) for use with a PC. Note the myvisa.py (also main and gui) must be included in the file directory as this is the routine for USB serial connection.

Anyway, these routines have proven very useful in evaluating various DUT behavior over frequency and DC Bias voltage, and hope this helps some folks which also should be adaptable to other bench type LCR meters ( & DMMs).

Best

Edit: To answer a question on how to connect things up for frequency sweep:

1) Connect PC to TH2830 with a USB to RS232 cable, use a Null Modem adapter on the RS232 connector (DB-9) on the TH2830.

2) Setup TH2830 System for RS232 communications with 9600 BAUD.

3) Find RS232 Port, (Use gui Python script or other means (VISA Interactive Control) to get port information).

4) Edit (you can use IDLE for this edit) TH2830_4.py file with RS232 port name (note must be in quotes as shown);

             Line 24:            TH2830 = "port name"

5) Run routine in IDLE

6) Enter parameters for sweep measurement, and sweep range.

7) Collected sweep data is displayed as ongoing list.

8 ) Select plot parameters, and select plot.

For GPP and/or SPD routines which sweep DC Bias Voltage at fixed frequency:

1) Follow above but enter ports for TH2830, Power Supply (GPP or SPD), and HP34401A DMM if used (be sure to setup each instrument for proper communications).

2) Note that SPD is connected with just standard USB cable (has no RS232 port). You still enter USB port as above, use gui.py or NI-MAX to show USB port.

3) Connect PS to DC Bias Adapter, and DMM to DC Bias Port Sense Terminal (Yellow) if using DCBias Adapter shown above in link.

4) Enter parameters and make sure to allow enough time for DC Bias Steps to settle between measurements for accurate measurements.

5) Collected data is displayed as ongoing list.

6) Plot results with selected plot parameters.


« Last Edit: April 22, 2023, 02:03:09 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: egonotto

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #7 on: April 22, 2023, 01:45:26 pm »
File updates above, plots improved for a more "Engineering" type display.

Best,
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: egonotto, Martin72

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #8 on: April 22, 2023, 03:42:50 pm »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 

Online RoGeorge

  • Super Contributor
  • ***
  • Posts: 6203
  • Country: ro
Re: LCR Meter Plot Software
« Reply #9 on: April 24, 2023, 08:56:09 am »


Good software skills!  :-+

The file corresponding to this quoted figure is called "P_100uF_ESR.png" in the OP.  The ESR plot goes lower with the frequency increase.  I don't know if the instrument properly measures the ESR at each frequency, and don't know much about ESR behavior with frequency either, so I thought I'd better ask.

I would expect (based on common sense) to see higher and higher ESR with frequency for many reasons, from causes like the skin effect, or the dielectric losses (that I assume will be higher at higher frequency).  The plot reminds me of the Xc of a capacitor, but I don't know the instrument and what it measures, Xc or ESR.

Is this common for a 100uF to have lower and lower ESR at higher frequencies?

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #10 on: April 25, 2023, 01:51:20 am »
Think this file is 680uF_ESR.

These are what's reported when one plots Rseries of a "Cseries and Rseries" capacitor model and are computed by the LCR meter from the magnitude and phase of the voltage and current of the DUT. All the electrolytic, ceramic, film and polymer types we've evaluated exhibit this Equivalent Series Resistance decreasing with frequency over this frequency range.

Thanks for the thumbs up, but think we have a long way to go before being able to do anything somewhat serious code-wise!! Altho this has really augmented the Tonghui TH2830 into a level of a much more expensive class of Lab LCR meter which can produce nice plots vs. frequency without resorting to a spread sheet and CVS files, same for the Hioki IM3536, altho it started out pretty expensive, but does cover 8MHz!!

Anyway, just grabbed about 20 various caps of all sorts and sizes and did a frequency sweep per the plot, and took maybe 10 minutes all toll, and the graphs looked nice as well!! Now we've got the external DC sweeping capability and enabled the IM3536 DC built-in capability, now curiosity has us thinking about a tiny temp chamber to "sweep" temperature also. We've seen and plotted how bad the high dielectric ceramics are with voltage, might be interesting to see how well they standup over temperature as well as some of the plastic films types, maybe even some PN junctions ::)


Best,
« Last Edit: April 25, 2023, 02:11:35 am by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: RoGeorge

Online RoGeorge

  • Super Contributor
  • ***
  • Posts: 6203
  • Country: ro
Re: LCR Meter Plot Software
« Reply #11 on: April 25, 2023, 07:28:23 am »
Temperature behavior would be interesting.

I would expect the ESR to get lower while increasing the temperature.  Saying this because electronics that are malfunctioning because of bad ESR caps might still start and run when the caps are heated with hot air, but won't start when the caps are cold.  No idea what to predict about the resonant frequency.



About making a temperature chamber, only couple of weeks ago I've measured a very weird behavior from a power resistor that kept heating for hours while under constant voltage.  It was not much power and small size, would have expect to settle in minutes at most, not hours.  Turned out the resistor was pumping heat into the rubber mat that was covering the workbench, which rubber mat was keep heating slowly by conduction from the power resistor.  When suspended in air, same resistor comes to thermal equilibrium very fast.

My point is, I expect small thermal inertia to be more important than being a good thermal insulator when choosing the materials for making a thermal chamber, or else the temperature might settle too slow.  Or maybe just Capton-tape a temperature probe to the capacitor and don't wait for the temp chamber to stabilize.  If the instrument measures fast enough relative to the temperature slope, then it all can be done while heating/cooling, without waiting for the temperature to stabilize.



Still can't find any decent argument for why the ESR will go lower with frequency.  Will have to read more about ESR, then hook a capacitor and an oscilloscope to the AWG to get a grip of it.



Thank you for sharing these results.

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #12 on: April 25, 2023, 02:02:03 pm »
Not an expert on capacitor design/construction and their behavior, if you find something on such please share.

Agree the low thermal mass is the way to go, and maybe doing a ramp to the highest temperature, then allowing DUT to return to ambient while recording parameters during temperature decent with removing heating source. Since we aren't interested in going below ambient or highly accurate & stable temperature, this just requires heating and no TEC.

One simple idea is to use a chunk of metal heated on a plate with DUT and thermistor taped to surface, then allowed to cool when plate removed and parameters recorded.

Another is to use a small PCB heating device like the MPH30 and taping the DUT to the small plate along with a thermistor. If we were good at microcontroller & coding (as shown we are not!!!), then one could write some custom firmware for the MPH30 to allow remote operation (this has a USB C port for power and upgrades, so maybe could be reconfigured for remote control)?

Another is a using a power resistor with flat surface area (like panel mount types, or cheap ceramic long square types), tape DUT and thermistor to power resistor. This could be placed within a "Closed Control Loop" by means of a controlled power supply within the measurement routine.

Anyway, lots of options for doing some temperature sweeps (maybe other types or combinations) now we've gathered a "handle" on controlling these LCR meters from Python and utilizing the nice plotting capability.

Lots of options to consider if we only had the time ::)
 
Best,

« Last Edit: April 25, 2023, 02:05:35 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #13 on: April 26, 2023, 03:55:24 am »
Well we can't evade curiosity, and have little patience, kind of a curse from the beginning ???

So grabbed a 10W ceramic 10 ohm resistor, the common long square type, and decided to use this as a temperature "chamber". Put some thermal tape along the top and mounted a K type thermocouple along with the DUT which were a couple disc ceramic capacitors. 100nF cheap 50V type and another 10nF 1KV "Blue" disc, don't know the ceramic material type but from the plots these are from the high dielectric constant types, then tried a 220nF mylar film type, which is much more stable, and a 1nF Mica type. Finally a 100uF Polymer Type.

The setup uses a TH2830 LCR meter, with a SDP3303X Power Supply and SDM3065 with a "K" Type thermocouple for reading the 10W ceramic resistor temperature. Set the voltage and current limits to 10V and 1A to keep the resistor within 10W rating, this produces a standing (on leads as shown) resistor temperature top range of >100C. The thermocouple and DUT were held in place by the thermal tape and a plastic clamp as shown, the cardboard U shaped piece is to keep the plastic clamp from melting!!

A Python routine was created to sweep the PS voltage, read the resistor temperature, then read the LCR parameters, adapted from the previous DC Sweep routines.

Anyway, this kludge actually works reasonably well and at least shows how the capacitance of different types varies with temperature. Still need to work on the Python routine and such, but this did satisfy our curiosity ::)

Edit: Added 1000uF 16V Cap

Best
« Last Edit: April 26, 2023, 07:16:44 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: RoGeorge

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #14 on: April 26, 2023, 07:16:00 pm »
Ran a couple more devices just for fun while working in the yard. A small 1mH inductor, 10nF Mylar (cheap flat Green type) cap and a 1N4148 diode. Inductor and Diode measured at 100KHz, Cap at 1KHz.

Geeze, see we can't even spell temperature properly in all the graphs  :palm:

Please use the conversion factor 1 degrees C temparture = 1 degrees C temperature  :-+

Best,
« Last Edit: April 26, 2023, 07:33:50 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: RoGeorge

Online RoGeorge

  • Super Contributor
  • ***
  • Posts: 6203
  • Country: ro
Re: LCR Meter Plot Software
« Reply #15 on: April 26, 2023, 09:21:54 pm »
Thanks!  :)
A Ge diode would be interesting, too, to compare its temp variation with the Si one.

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #16 on: April 27, 2023, 03:20:10 am »
You are welcome!!

Don't have any Ge diodes (or SiC), agree would be interesting to see their behavior!!

Do have some others tho, here's Zener and SBD.

Best,
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 
The following users thanked this post: RoGeorge

Offline Hexley

  • Regular Contributor
  • *
  • Posts: 198
  • Country: us
Re: LCR Meter Plot Software
« Reply #17 on: April 28, 2023, 04:04:26 pm »
Finally able to get things working on PC with the TH2830, and even included versions which allow DC Bias Sweeps with Bias Fixture and external Power Supply.
Do you have any charts with extended range DC sweep (from zero to 32 volts, say) done with the GPP-4323? Apologies if they are already posted, but I did not spot them when going through this thread.

I saw your post in the TestController thread related to controlling the GPP-4323, and was curious to see if you found any artifacts in the setpoint and readback of the GPP sweep when it changed ranges internally. I have seen those in similar applications (V-I measurements of UV diode strings, for example) when sweeping the GPP-4323 with a script. Nothing that cannot be dealt with, just something to be aware of.

 

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #18 on: April 28, 2023, 04:24:22 pm »
We've added using Quadratic Regression to extrapolate the Quadratic Coefficients to estimate the fixture temperature with applied DC voltage. Now Temperature Sweep is entered as Start, Stop, Step and Time Delay and a LCR measurement of selected parameters is done at each Step temperature increment, rather than entering DC voltages to achieve a given temperature. Also used heat shrink tubing to hold the thermocouple to the ceramic power resistor body.

Anyway, attached is version 2 of the Python routine which uses the TH2830 LCR meter, with SDP3303X Power Supply, SDM3065 DMM with "K" Thermocouple and a Ceramic 10 Ohm 10W resistor as heat source. Also a plot of a cheap 100nF 50V Ceramic Disc @ 1KHz that shows the capacitance and ESR variation with temperature, note the slight improvement with ESR at ~40C. We've seen this before in some cheap bypass type capacitors and suspect this is a characteristic of the high K dielectric ceramic material utilized. Added another plot of a small 6.3V 1000uF Polymer.

Best,
« Last Edit: April 28, 2023, 06:28:45 pm by mawyatt »
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #19 on: April 28, 2023, 04:42:34 pm »
Finally able to get things working on PC with the TH2830, and even included versions which allow DC Bias Sweeps with Bias Fixture and external Power Supply.
Do you have any charts with extended range DC sweep (from zero to 32 volts, say) done with the GPP-4323? Apologies if they are already posted, but I did not spot them when going through this thread.

I saw your post in the TestController thread related to controlling the GPP-4323, and was curious to see if you found any artifacts in the setpoint and readback of the GPP sweep when it changed ranges internally. I have seen those in similar applications (V-I measurements of UV diode strings, for example) when sweeping the GPP-4323 with a script. Nothing that cannot be dealt with, just something to be aware of.

Don't have any more plots with the GPP, but don't recall any serial port or read back issues with it, worked just like the SDP3303X. However, wasn't paying close attention but do remember that it was quite stable after leaving it running for almost an entire day.

One issue with the GPP we were/are having is trying to communicate thru the USB port, can't get the port to even open, but since we were able to get the RS232 port working didn't pursue this at the time.

BTW if you want I can set up the GPP and check it, let me know.

Best,
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 

Offline Hexley

  • Regular Contributor
  • *
  • Posts: 198
  • Country: us
Re: LCR Meter Plot Software
« Reply #20 on: April 28, 2023, 07:08:24 pm »
Don't have any more plots with the GPP, but don't recall any serial port or read back issues with it, worked just like the SDP3303X. However, wasn't paying close attention but do remember that it was quite stable after leaving it running for almost an entire day.

One issue with the GPP we were/are having is trying to communicate thru the USB port, can't get the port to even open, but since we were able to get the RS232 port working didn't pursue this at the time.

BTW if you want I can set up the GPP and check it, let me know.

Best,
No need to set up anything, but thanks for the offer.
Q: When you were trying to communicate through the USB port, did you trythe USB "driver" that Instek lists on their downloads page for the GPP-4323?
 

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #21 on: April 28, 2023, 10:23:13 pm »
No need to set up anything, but thanks for the offer.
Q: When you were trying to communicate through the USB port, did you trythe USB "driver" that Instek lists on their downloads page for the GPP-4323?

No didn't use the USB driver, as everything else seems to work directly with VISA without any additional driver(s), USB, RS232, or otherwise.

May give that GW driver a try when we get back to using the GPP, but honestly don't like having to mess around with drivers and such.

Best,
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 

Offline Hexley

  • Regular Contributor
  • *
  • Posts: 198
  • Country: us
Re: LCR Meter Plot Software
« Reply #22 on: April 29, 2023, 05:44:18 pm »
No need to set up anything, but thanks for the offer.
Q: When you were trying to communicate through the USB port, did you trythe USB "driver" that Instek lists on their downloads page for the GPP-4323?

No didn't use the USB driver, as everything else seems to work directly with VISA without any additional driver(s), USB, RS232, or otherwise.

May give that GW driver a try when we get back to using the GPP, but honestly don't like having to mess around with drivers and such.

Best,
OK, I just had to look into this a bit. Results are posted in the TestController thread, but the bottom line is that Instek seems to have used some uncommon implementation of serial-over-USB. So they require their own driver to make a USB-connected GPP-4323 appear as a virtual serial port.

Seems like an odd implementation choice.

I verified that indeed Windows did not see the GPP-4323 USB connection as a serial port unless and until the Instek driver was loaded. After that, it worked as expected.

I share your dislike of devices needing drivers, which is why I am using the LAN port for control. Even a USB-to-serial dongle on the PC requires a driver, after all, though that may be hidden if Windows supports the particular dongle natively. I kind of miss the days of 16550 UARTs and ISA adapter cards. (Just kidding!)
 
The following users thanked this post: mawyatt

Online mawyattTopic starter

  • Super Contributor
  • ***
  • Posts: 3269
  • Country: us
Re: LCR Meter Plot Software
« Reply #23 on: April 29, 2023, 06:08:58 pm »
That special driver works, thanks!!

Best,
Curiosity killed the cat, also depleted my wallet!
~Wyatt Labs by Mike~
 

Offline oz2cpu

  • Frequent Contributor
  • **
  • Posts: 850
  • Country: dk
    • webx.dk private hobby and diy stuff
Re: LCR Meter Plot Software
« Reply #24 on: November 14, 2023, 11:33:18 pm »
super inspired by mikes idea about a curve tracer for the LRC instrument TH2830,
we had a great day making a little java version
it run in a random browser and any platform
no sw install needed, no skils needed, it is so far just two txt files in a folder, one is a HTML file
and it also works perfectly fine on a PC
anyone like to hear more about this ?
Radioamateur OZ2CPU, Senior EE at Prevas
EMC RF SMPS SI PCB LAYOUT and all that stuff.
 
The following users thanked this post: KungFuJosh, Martin72


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf