10-16-2025 02:03 PM
Hi everyone,
I'm a final-year student and I really need help. I'm relatively new to LabVIEW, and I have a project where I need to measure the magnetic properties of soft magnetic materials using an Epstein frame. This includes plotting the BH hysteresis curve, calculating core losses, and generating the DC hysteresis loss graph.
I'm struggling, and time is running out. I need to process the voltage from the secondary coil and the current, then use that data to plot the B-H curve. I also need to display the DC hysteresis loss graph and calculate the power loss.
Currently, I'm using a PicoScope 2204A to capture waveforms from the Epstein frame, and I'm using LabVIEW to process the data from the PicoScope. However, the 2204A only has two output channels, which isn't enough for my needs. I’d like to know if it's possible to connect two PicoScopes simultaneously to LabVIEW.
Any advice, guidance, or code references would be greatly appreciated.
10-16-2025 08:18 PM
@moniqueX2 wrote:
I’d like to know if it's possible to connect two PicoScopes simultaneously to LabVIEW.
How to run two PicoScope in LabVIEW?
Use LabVIEW to control separate sessions of PicoScope.
How to synchronize two PicoScopes?
This is a question to PicoTech.
Here is the answer from Copilot:
Although each 2204A lacks an external hardware trigger output that you can link directly, you can simulate synchronization by sending the same signal into both scopes:
This is the straightforward method used by users, but keep in mind it enables only approximate synchronization valid mainly for short acquisitions (e.g., within 10 ms of each other). [picotech.com]
If you’re capturing in software (SDK-based, LabVIEW, Python, etc.):
ps2000RunBlock()
or ps2000RunStreaming()
simultaneously.