Sources setup
The software supports data from recorded file source or live input sources.
Tip
Once the sources have been setup, one can toggle between them by selecting: “Setup”->”Toggle Source”
A source setup can be loaded separately from a (.sava) setup file by selecting “Load setup” in the “File/Input Source Setup”-dialogs.
File source
File source setup
For file sources the following can be set:
1x: Playback time is the same as original recording time
Fast: As fast as possible (limited by amount and type of plots)
2x: Double 1x
1/2x: Half of 1x
1/10x: A tenth of 1x
File Source Setup Dialog
File Toolbar
When the file source is selected, the File Toolbar is visible in the button of the main window.
Note
For detailed instructions on importing/exporting raw data, see importing and exporting sections.
Multiple files
Multiple files can be loaded at once (only .h5-format). This requires the files to be time-continuous (within set tolerences), meaning that the starttime of a file plus its duration (samples/fs) must match the starttime of another file and so forth. The acceptable maximum time-gap can be adjusted, section Recording/Exporting Preferences.
Closing a file
The file is closed when either closing the software, loading another file or manually by “right click”->”Close file”.
File Toolbar
Input source
The software currently handles two main categories of live input sources:
NIDaq: National Instruments Data Acquisition Devices
External Source Module: Custom Python script
Multiple sources
This feature should not be utilized to compare high frequency sources. But is convenient when mixing high and low frequency signals.
A source can be removed, by “right click” (on the source name)->”Remove”.
A source can be (re)named, by “right click” (on the source name)->”Rename”.
National Instruments daqs
To communicate with the NI hardware the NI-DAQmx driver is required.
The software supports the following analog input types from NI devices:
Voltage
Current
IEPE (ICP,DeltaTron)
Thermocouples
RTD(PT100)
Strain Gauges
All NI data acquisition devices that is supported by the driver is supported by the hardware.
Setting up NI devices
The available sampling rates will depend on the selected channel types.
Sensitivity: The sensitivity used in the conversion
Offset: The offset used in the conversion
Unit: The display sensor unit of the channel
Conversion example
Sensor Unit = (Offset+voltage)/Sensitivity
A channel can renamed by “right click” (on the channel name)->”Rename”.
Input Source - NIDaq
External source module
Setting up an external source module
To setup an external source, select “External” as “Source”.
Tip
An example of external source module (“extSourceModule.py”) is located at: “Help”->”External Module Examples”.
The external source module has to have a specific format. The “external source class” must be named the same as the module. See the “extSourceModule.py” example for reference.
The external module will automatically be reinitialized if the file has been changed. The “Force Reload” setting forces reinitialization on every start (for instance if secondary file or a remote server has changes).
Input Source - External
Custom source controls/graphics
A simple example of how this can be implemented in external source modules (“extSourceModule_customWidget.py”) is located in: “Help”->”External Module Examples”.
Custom Widget example