Python: Waveform Generator (modulation)
-
Moku:Go
Moku:Go Arbitrary Waveform Generator Moku:Go Data Logger Moku:Go Frequency Response Analyzer Moku:Go Logic Analyzer & Pattern Generator Moku:Go Oscilloscope & Voltmeter Moku:Go PID Controller Moku:Go Spectrum Analyzer Moku:Go Waveform Generator Moku:Go Power Supplies Moku:Go Digital Filter Box Moku:Go FIR Filter Builder Moku:Go Lock-in Amplifier Moku:Go General Moku:Go Logic Analyzer/Pattern Generator Moku:Go Time & Frequency Analyzer Moku:Go Laser Lock Box Moku:Go Phasemeter
-
Moku:Lab
Moku:Lab General Moku:Lab Arbitrary Waveform Generator Moku:Lab Data Logger Moku:Lab Digital Filter Box Moku:Lab FIR Filter Builder Moku:Lab Frequency Response Analyzer Moku:Lab Laser Lock Box Moku:Lab Lock-in Amplifier Moku:Lab Oscilloscope Moku:Lab Phasemeter Moku:Lab PID Controller Moku:Lab Spectrum Analyzer Moku:Lab Waveform Generator Moku:Lab Time & Frequency Analyzer Moku:Lab Logic Analyzer/Pattern Generator
-
Moku:Pro
Moku:Pro Arbitrary Waveform Generator Moku:Pro Data Logger Moku:Pro Frequency Response Analyzer Moku:Pro Oscilloscope Moku:Pro PID Controller Moku:Pro Spectrum Analyzer Moku:Pro Waveform Generator Moku:Pro Lock-in Amplifier Moku:Pro Digital Filter Box Moku:Pro FIR Filter Builder Moku:Pro Phasemeter Moku:Pro Multi-instrument Mode Moku:Pro General Moku:Pro Logic Analyzer/Pattern Generator Moku:Pro Time & Frequency Analyzer
- Python API
- MATLAB API
- Arbitrary Waveform Generator
- Data Logger
- Digital Filter Box
- FIR Filter Builder
- Frequency Response Analyzer
- Laser Lock Box
- Lock-in Amplifier
- Oscilloscope
- Phasemeter
- PID Controller
- Spectrum Analyzer
- Time & Frequency Analyzer
- Waveform Generator
- Logic Analyzer & Pattern Generator
- Multi Instrument Mode
- Moku Cloud Compile
- Moku general
- LabVIEW
Example Python script to implement the Waveform Generator with modulation
For more Python examples, please refer to this link.
# # Moku example: Waveform Generator Modulation # # This example demonstrates how you can use the Waveform Generator instrument # to generate an amplitude modulated sine wave on Channel 1, and a sweep # modulated sine wave on Channel 2. # # (c) 2023 Liquid Instruments Pty. Ltd. # from moku.instruments import WaveformGenerator # Launch Waveform Generator and connect to your device via IP i = WaveformGenerator('192.168.###.###', force_connect=False) try: # Generate a sine wave on channel 1, 0.5 Vpp, 5 kHz # Generate a sine wave on channel 2, 1 Vpp, 1 MHz i.generate_waveform(channel=1, type='Sine', amplitude=0.5, frequency=5e3) i.generate_waveform(channel=2, type='Sine', amplitude=1.0, frequency=1e6) # Configure amplitude modulation on channel 1. # Use internal reference as modulation source, modulation deption 50%, # modulated at a frequency of 1Hz i.set_modulation(channel=1, type='Amplitude', source='Internal', depth=50, frequency=1) # Configure Channel 2 with sweep trigger modulation. # Use Input 1 as trigger source, trigger level is 0.1 V. # Start the sweep at waveform frequency 1 MHz and stop at 10 Hz # each sweep is 3 seconds. i.set_sweep_mode(channel=2, source='Input1', stop_frequency=10.0, sweep_time=3.0, trigger_level=0.1) except Exception as e: print(f'Exception occurred: {e}') finally: # Close the connection to the Moku device # This ensures network resources and released correctly i.relinquish_ownership()