Python: Laser Lock Box
-
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 Laser Lock Box
For more Python examples, please refer to this link.
# # Moku example: Basic Laser Lock Box # # This example demonstrates how you can configure the Laser Lock Box # Instrument and monitor the signals at Input 1 and Input 2. # # (c) 2023 Liquid Instruments Pty. Ltd. # from moku.instruments import LaserLockBox # Launch Laser Lock Box and connect to your device via IP i = LaserLockBox('192.168.###.###', force_connect=False) try: # SetChannel 1 and 2 to DC coupled, 1 Mohm impedance, and 400 mVpp range i.set_frontend(1, coupling='DC', impedance='1MOhm',gain='0dB') i.set_frontend(2, coupling='DC', impedance='1MOhm',gain='-20dB') # Configure the scan oscillator to a 10 Hz 500 mVpp positive ramp # signal from Output 1 i.set_scan_oscillator(enable=True,shape='PositiveRamp', frequency=10,amplitude=0.5,output='Output1') # Configure the demodulation signal to Local oscillator with 1 MHz and # 0 degrees phase shift i.set_demodulation('Internal',frequency=1e6,phase=0) # Configure a 4th order low pass filter with 100 kHz corner frequency i.set_filter(shape='Lowpass',low_corner=100e3,order=4) # Set the fast PID controller to -10 dB proportional gain and # intergrator crossover frequency at 3 kHz i.set_pid_by_frequency(channel=1, prop_gain=-10, int_crossover=3e3) # Set the slow PID controller to -10 dB proportional gain and # intergrator crossover frequency at 50 Hz i.set_pid_by_frequency(channel=2,prop_gain=-10,int_crossover=50)) except Exception as e: print(f'Exception occurred: {e}') finally: # Close the connection to the Moku device # This ensures network resources are released correctly i.relinquish_ownership()