Oct-30-2019, 03:27 AM
Hi,
I am trying to gather data from independent python scripts (data acquisition devices) into the main program. I came across multiprocessing, but I still cannot piece it together. Here is the general architecture:
Main program:
* execute device1.py
* execute device2.py
Device1.py
* continuously collects data from a GPIB instrument and places it to shared memory/variable device1.voltage
Device1.py
* continuously collects data from a a DAQ card and places it to shared memory/variable device2.temperature
Main program:
* at predefined interval, it retrieves device1.voltage & device2.temperature and stores them in a log file.
* when main is being shut down, it first termites both device1.py and device2.py
This is a part of a flexible data acquisition suite where different devices can be executed depending on needs. They all produce some kind of data which is collected by the main for recording. At this moment this is my plan, but if there is better way I'd like to hear it.
Thank you.
Best,
Radek
I am trying to gather data from independent python scripts (data acquisition devices) into the main program. I came across multiprocessing, but I still cannot piece it together. Here is the general architecture:
Main program:
* execute device1.py
* execute device2.py
Device1.py
* continuously collects data from a GPIB instrument and places it to shared memory/variable device1.voltage
Device1.py
* continuously collects data from a a DAQ card and places it to shared memory/variable device2.temperature
Main program:
* at predefined interval, it retrieves device1.voltage & device2.temperature and stores them in a log file.
* when main is being shut down, it first termites both device1.py and device2.py
This is a part of a flexible data acquisition suite where different devices can be executed depending on needs. They all produce some kind of data which is collected by the main for recording. At this moment this is my plan, but if there is better way I'd like to hear it.
Thank you.
Best,
Radek