├── .gitignore ├── atomize ├── __init__.py ├── __main__.py ├── codeeditor.py ├── config.ini ├── device_modules │ ├── Agilent_53131a.py │ ├── Agilent_53181a.py │ ├── Agilent_5343a.py │ ├── BH_15.py │ ├── CPWplus_150.py │ ├── Cryomagnetics_4G.py │ ├── Cryomagnetics_LM510.py │ ├── Cryomech_CPA1110.py │ ├── ECC_15K.py │ ├── ER_031M.py │ ├── ITC_503.py │ ├── ITC_FC.py │ ├── IVG_1_1.py │ ├── Insys_FPGA.py │ ├── Keysight_2000_Xseries.py │ ├── Keysight_3000_Xseries.py │ ├── Keysight_4000_Xseries.py │ ├── Keysight_53230a.py │ ├── L_card_L502.py │ ├── Lakeshore_325.py │ ├── Lakeshore_331.py │ ├── Lakeshore_332.py │ ├── Lakeshore_335.py │ ├── Lakeshore_336.py │ ├── Lakeshore_340.py │ ├── Lakeshore_455_DSP.py │ ├── Metrolab_PT2025.py │ ├── Micran_Q_band_MW_bridge.py │ ├── Micran_X_band_MW_bridge.py │ ├── Micran_X_band_MW_bridge_v2.py │ ├── Owen_MK110_220_4DN_4R.py │ ├── PB_ESR_500_pro.py │ ├── PB_Micran.py │ ├── Planar_C2220.py │ ├── Rigol_DP800_Series.py │ ├── Rodos_10N.py │ ├── SR_810.py │ ├── SR_830.py │ ├── SR_844.py │ ├── SR_850.py │ ├── SR_860.py │ ├── SR_865a.py │ ├── SR_DC205.py │ ├── SR_DG535.py │ ├── SR_PS300_Series.py │ ├── SR_PTC_10.py │ ├── Scientific_Instruments_SCM10.py │ ├── Sibir_1.py │ ├── Spectrum_M4I_2211_X8.py │ ├── Spectrum_M4I_4450_X8.py │ ├── Spectrum_M4I_6631_X8.py │ ├── Tektronix_3000_Series.py │ ├── Tektronix_4000_Series.py │ ├── Tektronix_5_Series_MSO.py │ ├── Termodat_11M6.py │ ├── Termodat_13KX3.py │ ├── __init__.py │ └── config │ │ ├── Agilent_53131a_config.ini │ │ ├── Agilent_53181a_config.ini │ │ ├── Agilent_5343a_config.ini │ │ ├── BH_15_config.ini │ │ ├── CPWplus_150_config.ini │ │ ├── Cryomagnetics_4G_config.ini │ │ ├── Cryomagnetics_LM510_config.ini │ │ ├── Cryomech_CPA1110_config.ini │ │ ├── ECC_15K_config.ini │ │ ├── ER_031M_config.ini │ │ ├── ITC_503_config.ini │ │ ├── ITC_FC_config.ini │ │ ├── IVG_1_1_config.ini │ │ ├── Keysight_2012a_config.ini │ │ ├── Keysight_3034t_config.ini │ │ ├── Keysight_4000_config.ini │ │ ├── Keysight_53230a_config.ini │ │ ├── L502_regs.py │ │ ├── Lakeshore_325_config.ini │ │ ├── Lakeshore_331_config.ini │ │ ├── Lakeshore_332_config.ini │ │ ├── Lakeshore_335_config.ini │ │ ├── Lakeshore_336_config.ini │ │ ├── Lakeshore_340_config.ini │ │ ├── Lakeshore_455_DSP_config.ini │ │ ├── Metrolab_PT2025_config.ini │ │ ├── Micran_q_band_mw_bridge_config.ini │ │ ├── Micran_x_band_mw_bridge_config.ini │ │ ├── Micran_x_band_mw_bridge_v2_config.ini │ │ ├── Owen_MK110_220_4DN_4R_config.ini │ │ ├── PB_ESR_500_pro_config.ini │ │ ├── PB_Insys_DAC_config.ini │ │ ├── PB_Insys_pulser_config.ini │ │ ├── PB_Micran_config.ini │ │ ├── Planar_C2220_config.ini │ │ ├── Rigol_DP832_config.ini │ │ ├── Rodos_10N_config.ini │ │ ├── SR_810_config.ini │ │ ├── SR_830_config.ini │ │ ├── SR_844_config.ini │ │ ├── SR_850_config.ini │ │ ├── SR_860_config.ini │ │ ├── SR_865a_config.ini │ │ ├── SR_DC205_config.ini │ │ ├── SR_DG535_config.ini │ │ ├── SR_PS300_Series_config.ini │ │ ├── SR_PTC_10_config.ini │ │ ├── Scientific_Instruments_SCM10_config.ini │ │ ├── Sibir_1_config.ini │ │ ├── Spectrum_M4I_2211_X8_config.ini │ │ ├── Spectrum_M4I_4450_X8_config.ini │ │ ├── Spectrum_M4I_6631_X8_config.ini │ │ ├── Tektronix_3052C_config.ini │ │ ├── Tektronix_4032_config.ini │ │ ├── Tektronix_MSO54_config.ini │ │ ├── Termodat_11M6_config.ini │ │ ├── Termodat_13KX3_config.ini │ │ ├── __init__.py │ │ └── config_utils.py ├── documentation │ ├── awg.md │ ├── delay_generator.md │ ├── digitizer.md │ ├── freq_counter.md │ ├── gaussmeter.md │ ├── general_functions.md │ ├── index.md │ ├── instruments.md │ ├── lock_in.md │ ├── magnet.md │ ├── magnet_power_supply.md │ ├── microwave_bridge.md │ ├── moisture_meter.md │ ├── oscilloscope.md │ ├── oscilloscope_wave_generator.md │ ├── other_device.md │ ├── plotting_functions.md │ ├── power_supply.md │ ├── protocol_settings.md │ ├── pulse_programmer.md │ ├── temp_controller.md │ └── writing_modules.md ├── general_modules │ ├── __init__.py │ ├── csv_opener_saver.py │ ├── csv_opener_saver_tk_kinter.py │ ├── general_functions.py │ ├── returned_thread.py │ └── spinapi.py ├── main │ ├── Icon.png │ ├── client.py │ ├── gui │ │ └── main_window.ui │ ├── icon.ico │ ├── main_window.py │ ├── messenger_socket_server.py │ └── widgets.py ├── math_modules │ ├── __init__.py │ ├── fft.py │ └── least_square_fitting_modules.py └── tests │ ├── B_measurement.py │ ├── Column_heating_test.py │ ├── CuPr_experiment.py │ ├── CuPr_power_measurment.py │ ├── CuPr_set_temperature.py │ ├── consecutive_script_test.py │ ├── data1D.csv │ ├── data2D.csv │ ├── data2D_appended.csv │ ├── devices_tests │ ├── 00_micran_Q_bridge_test.py │ ├── ask_3034T.py │ ├── ask_Agilent_53131a.py │ ├── ask_BH_15.py │ ├── ask_CPWplus_150.py │ ├── ask_Cryomagnetics_4G.py │ ├── ask_Cryomagnetics_LM510.py │ ├── ask_Cryomech_CPA1110.py │ ├── ask_ECC_15K.py │ ├── ask_ITC_503.py │ ├── ask_ITC_FC.py │ ├── ask_IVG_1_1.py │ ├── ask_Insys_DAC.py │ ├── ask_Insys_GIM.py │ ├── ask_Insys_GIM_DAC_live_mode.py │ ├── ask_Insys_GIM_DAC_live_mode_one_phase.py │ ├── ask_Insys_GIM_PC.py │ ├── ask_Insys_GIM_int_mode.py │ ├── ask_Insys_GIM_live_mode.py │ ├── ask_Insys_GIM_live_mode_one_phase.py │ ├── ask_L502.py │ ├── ask_LS335_bot.py │ ├── ask_Lakeshore_335.py │ ├── ask_Lakeshore_455DSP.py │ ├── ask_Metrolab_PT2025.py │ ├── ask_Mikran_X_band_mw_bridge.py │ ├── ask_Mikran_X_band_mw_bridge_v2.py │ ├── ask_Owen_MK110_220_4DN_4R.py │ ├── ask_PB_ESR_500_pro.py │ ├── ask_PB_Insys.py │ ├── ask_Planar_C2220.py │ ├── ask_RODOS_10N.py │ ├── ask_Rigol_832.py │ ├── ask_SR_830.py │ ├── ask_SR_860.py │ ├── ask_SR_PTC_10.py │ ├── ask_Scientific_Instruments_SCM10.py │ ├── ask_Sibir_1_field.py │ ├── ask_Sibir_1_length.py │ ├── ask_Spectrum_M4I_4450_X8.py │ ├── ask_Spectrum_M4I_6631_X8.py │ ├── ask_Spectrum_M4I_6631_X8_sequence_mode.py │ ├── ask_Spectrum_M4I_6631_X8_single_joined_mode.py │ ├── ask_Tektronix_3052C.py │ ├── ask_Tektronix_4032.py │ ├── ask_Tektronix_MSO54.py │ └── ask_Termodat_11M6.py │ ├── gui_script_test.py │ ├── infinite_loop_test.py │ ├── liveplot_1D_test.py │ ├── liveplot_1D_thread.py │ ├── liveplot_2D_multi_test.py │ ├── liveplot_2D_test.py │ ├── math_test.py │ ├── pulse_epr │ ├── 000_detection_phase.py │ ├── 00_constant_echo.py │ ├── 01_resonator_tuning.py │ ├── 01_resonator_tuning_awg.py │ ├── 02_t2.py │ ├── 02_t2_baseline.py │ ├── 02_t2_baseline_Insys.py │ ├── 02_t2_baseline_echo_shape.py │ ├── 02_t2_baseline_nonlinear.py │ ├── 03_echo_detected_spectrum.py │ ├── 03_echo_detected_spectrum_baseline.py │ ├── 03_echo_detected_spectrum_baseline_2d.py │ ├── 03_echo_detected_spectrum_baseline_echo_shape.py │ ├── 04_t1_inversion_recovery.py │ ├── 04_t1_inversion_recovery_baseline.py │ ├── 05_nutations.py │ ├── 07_eseem_64phase_echo_shape.py │ ├── 07_eseem_phase.py │ ├── 07_eseem_phase_echo_shape.py │ ├── 08_hyscore.py │ ├── 08_hyscore_echo_shape.py │ ├── 09_srt_field_loop.py │ ├── 10_sifter.py │ ├── 10_sifter_256_steps.py │ ├── 10_sifter_256_steps_cycles_8ns.py │ ├── 10_sifter_cycles_8ns.py │ ├── 11_dqc.py │ ├── 12_field_stability.py │ ├── 13_trytil_echo_shape.py │ ├── 14_laser_echo_detected_spectrum_baseline.py │ ├── 14_laser_echo_detected_spectrum_baseline_2D.py │ ├── 14_laser_echo_detected_spectrum_baseline_kinetics.py │ ├── 15_amp_pulse_test.py │ ├── 15_amp_pulse_test_keysight.py │ ├── 16_trytil_echo_4steps_1D.py │ ├── 16_trytil_echo_cyclops_1D.py │ ├── 16_trytil_echo_cyclops_1D_4steps_1D.py │ ├── 17_trytil_echo_cyclops_2D.py │ ├── 18_DPPH_T1_FID_cyclops_2D.py │ ├── 18_DPPH_T2_echo_cyclops_2D.py │ ├── 19_DPPH_T1_echo_cyclops_2D.py │ ├── 20_T2_echo_cyclops_2D_nonlinear_steps.py │ ├── 21_t1_64_phases_direct_dimension_nonlinear.py │ └── awg │ │ ├── 00_constant_echo.py │ │ ├── 01_deer_static.py │ │ ├── 02_amp_pulse_test_awg.py │ │ ├── 02_amp_pulse_test_keysight_awg.py │ │ ├── digitizer │ │ ├── 01_t2_digitizer.py │ │ ├── 01_t2_digitizer_baseline.py │ │ ├── 01_t2_digitizer_baseline_two_experiments_test.py │ │ ├── 01_t2_digitizer_baseline_wurst.py │ │ ├── 02_deer_256_steps_phase_8ns_cylces_echo_shape.py │ │ ├── 02_deer_256_steps_phase_full_awg_8ns_cycles.py │ │ ├── 02_deer_64_steps_no_phase.py │ │ ├── 02_deer_64_steps_no_phase_echo_shape.py │ │ ├── 02_deer_64_steps_phase.py │ │ ├── 02_deer_64_steps_phase_8ns_cylces.py │ │ ├── 02_deer_64_steps_phase_8ns_cylces_echo_shape.py │ │ ├── 02_deer_64_steps_phase_full_awg.py │ │ ├── 02_deer_64_steps_phase_full_awg_8ns_cycles.py │ │ ├── 02_deer_64_steps_phase_full_awg_no_phase.py │ │ ├── 03_eseem_digitizer_phase.py │ │ ├── 03_eseem_digitizer_phase_wurst.py │ │ ├── 04_sifter.py │ │ ├── 04_sifter_256_steps.py │ │ ├── 04_sifter_256_steps_cycles_8ns.py │ │ ├── 04_sifter_256_steps_cycles_8ns_two_experiments.py │ │ ├── 04_sifter_cycles_8ns.py │ │ ├── 05_FID_pi-half_wurst.py │ │ ├── 06_sifter_digitizer_bruker_integral_wurst.py │ │ ├── 06_sifter_digitizer_bruker_wurst.py │ │ ├── 07_trytil_echo_cyclops_1D.py │ │ ├── 08_echo_detected_spectrum_baseline_echo_shape.py │ │ └── 09_nutations.py │ │ └── keysight │ │ ├── 01_t2.py │ │ └── 01_t2_baseline.py │ └── telegram_bot_test.py ├── license.md ├── pyproject.toml ├── readme.md ├── requirements.txt ├── screenshots ├── logoAtomize.png ├── screenshot.png ├── screenshot2.png └── screenshot3.png └── to_do_list.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/.gitignore -------------------------------------------------------------------------------- /atomize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/__init__.py -------------------------------------------------------------------------------- /atomize/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/__main__.py -------------------------------------------------------------------------------- /atomize/codeeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/codeeditor.py -------------------------------------------------------------------------------- /atomize/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/config.ini -------------------------------------------------------------------------------- /atomize/device_modules/Agilent_53131a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Agilent_53131a.py -------------------------------------------------------------------------------- /atomize/device_modules/Agilent_53181a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Agilent_53181a.py -------------------------------------------------------------------------------- /atomize/device_modules/Agilent_5343a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Agilent_5343a.py -------------------------------------------------------------------------------- /atomize/device_modules/BH_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/BH_15.py -------------------------------------------------------------------------------- /atomize/device_modules/CPWplus_150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/CPWplus_150.py -------------------------------------------------------------------------------- /atomize/device_modules/Cryomagnetics_4G.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Cryomagnetics_4G.py -------------------------------------------------------------------------------- /atomize/device_modules/Cryomagnetics_LM510.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Cryomagnetics_LM510.py -------------------------------------------------------------------------------- /atomize/device_modules/Cryomech_CPA1110.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Cryomech_CPA1110.py -------------------------------------------------------------------------------- /atomize/device_modules/ECC_15K.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/ECC_15K.py -------------------------------------------------------------------------------- /atomize/device_modules/ER_031M.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/ER_031M.py -------------------------------------------------------------------------------- /atomize/device_modules/ITC_503.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/ITC_503.py -------------------------------------------------------------------------------- /atomize/device_modules/ITC_FC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/ITC_FC.py -------------------------------------------------------------------------------- /atomize/device_modules/IVG_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/IVG_1_1.py -------------------------------------------------------------------------------- /atomize/device_modules/Insys_FPGA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Insys_FPGA.py -------------------------------------------------------------------------------- /atomize/device_modules/Keysight_2000_Xseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Keysight_2000_Xseries.py -------------------------------------------------------------------------------- /atomize/device_modules/Keysight_3000_Xseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Keysight_3000_Xseries.py -------------------------------------------------------------------------------- /atomize/device_modules/Keysight_4000_Xseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Keysight_4000_Xseries.py -------------------------------------------------------------------------------- /atomize/device_modules/Keysight_53230a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Keysight_53230a.py -------------------------------------------------------------------------------- /atomize/device_modules/L_card_L502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/L_card_L502.py -------------------------------------------------------------------------------- /atomize/device_modules/Lakeshore_325.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Lakeshore_325.py -------------------------------------------------------------------------------- /atomize/device_modules/Lakeshore_331.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Lakeshore_331.py -------------------------------------------------------------------------------- /atomize/device_modules/Lakeshore_332.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Lakeshore_332.py -------------------------------------------------------------------------------- /atomize/device_modules/Lakeshore_335.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Lakeshore_335.py -------------------------------------------------------------------------------- /atomize/device_modules/Lakeshore_336.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Lakeshore_336.py -------------------------------------------------------------------------------- /atomize/device_modules/Lakeshore_340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Lakeshore_340.py -------------------------------------------------------------------------------- /atomize/device_modules/Lakeshore_455_DSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Lakeshore_455_DSP.py -------------------------------------------------------------------------------- /atomize/device_modules/Metrolab_PT2025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Metrolab_PT2025.py -------------------------------------------------------------------------------- /atomize/device_modules/Micran_Q_band_MW_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Micran_Q_band_MW_bridge.py -------------------------------------------------------------------------------- /atomize/device_modules/Micran_X_band_MW_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Micran_X_band_MW_bridge.py -------------------------------------------------------------------------------- /atomize/device_modules/Micran_X_band_MW_bridge_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Micran_X_band_MW_bridge_v2.py -------------------------------------------------------------------------------- /atomize/device_modules/Owen_MK110_220_4DN_4R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Owen_MK110_220_4DN_4R.py -------------------------------------------------------------------------------- /atomize/device_modules/PB_ESR_500_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/PB_ESR_500_pro.py -------------------------------------------------------------------------------- /atomize/device_modules/PB_Micran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/PB_Micran.py -------------------------------------------------------------------------------- /atomize/device_modules/Planar_C2220.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Planar_C2220.py -------------------------------------------------------------------------------- /atomize/device_modules/Rigol_DP800_Series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Rigol_DP800_Series.py -------------------------------------------------------------------------------- /atomize/device_modules/Rodos_10N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Rodos_10N.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_810.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_810.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_830.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_830.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_844.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_844.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_850.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_860.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_865a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_865a.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_DC205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_DC205.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_DG535.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_DG535.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_PS300_Series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_PS300_Series.py -------------------------------------------------------------------------------- /atomize/device_modules/SR_PTC_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/SR_PTC_10.py -------------------------------------------------------------------------------- /atomize/device_modules/Scientific_Instruments_SCM10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Scientific_Instruments_SCM10.py -------------------------------------------------------------------------------- /atomize/device_modules/Sibir_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Sibir_1.py -------------------------------------------------------------------------------- /atomize/device_modules/Spectrum_M4I_2211_X8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Spectrum_M4I_2211_X8.py -------------------------------------------------------------------------------- /atomize/device_modules/Spectrum_M4I_4450_X8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Spectrum_M4I_4450_X8.py -------------------------------------------------------------------------------- /atomize/device_modules/Spectrum_M4I_6631_X8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Spectrum_M4I_6631_X8.py -------------------------------------------------------------------------------- /atomize/device_modules/Tektronix_3000_Series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Tektronix_3000_Series.py -------------------------------------------------------------------------------- /atomize/device_modules/Tektronix_4000_Series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Tektronix_4000_Series.py -------------------------------------------------------------------------------- /atomize/device_modules/Tektronix_5_Series_MSO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Tektronix_5_Series_MSO.py -------------------------------------------------------------------------------- /atomize/device_modules/Termodat_11M6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Termodat_11M6.py -------------------------------------------------------------------------------- /atomize/device_modules/Termodat_13KX3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/Termodat_13KX3.py -------------------------------------------------------------------------------- /atomize/device_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atomize/device_modules/config/Agilent_53131a_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Agilent_53131a_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Agilent_53181a_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Agilent_53181a_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Agilent_5343a_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Agilent_5343a_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/BH_15_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/BH_15_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/CPWplus_150_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/CPWplus_150_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Cryomagnetics_4G_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Cryomagnetics_4G_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Cryomagnetics_LM510_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Cryomagnetics_LM510_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Cryomech_CPA1110_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Cryomech_CPA1110_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/ECC_15K_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/ECC_15K_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/ER_031M_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/ER_031M_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/ITC_503_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/ITC_503_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/ITC_FC_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/ITC_FC_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/IVG_1_1_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/IVG_1_1_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Keysight_2012a_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Keysight_2012a_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Keysight_3034t_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Keysight_3034t_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Keysight_4000_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Keysight_4000_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Keysight_53230a_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Keysight_53230a_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/L502_regs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/L502_regs.py -------------------------------------------------------------------------------- /atomize/device_modules/config/Lakeshore_325_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Lakeshore_325_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Lakeshore_331_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Lakeshore_331_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Lakeshore_332_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Lakeshore_332_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Lakeshore_335_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Lakeshore_335_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Lakeshore_336_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Lakeshore_336_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Lakeshore_340_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Lakeshore_340_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Lakeshore_455_DSP_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Lakeshore_455_DSP_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Metrolab_PT2025_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Metrolab_PT2025_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Micran_q_band_mw_bridge_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Micran_q_band_mw_bridge_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Micran_x_band_mw_bridge_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Micran_x_band_mw_bridge_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Micran_x_band_mw_bridge_v2_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Micran_x_band_mw_bridge_v2_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Owen_MK110_220_4DN_4R_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Owen_MK110_220_4DN_4R_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/PB_ESR_500_pro_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/PB_ESR_500_pro_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/PB_Insys_DAC_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/PB_Insys_DAC_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/PB_Insys_pulser_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/PB_Insys_pulser_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/PB_Micran_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/PB_Micran_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Planar_C2220_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Planar_C2220_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Rigol_DP832_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Rigol_DP832_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Rodos_10N_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Rodos_10N_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_810_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_810_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_830_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_830_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_844_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_844_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_850_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_850_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_860_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_860_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_865a_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_865a_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_DC205_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_DC205_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_DG535_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_DG535_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_PS300_Series_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_PS300_Series_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/SR_PTC_10_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/SR_PTC_10_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Scientific_Instruments_SCM10_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Scientific_Instruments_SCM10_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Sibir_1_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Sibir_1_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Spectrum_M4I_2211_X8_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Spectrum_M4I_2211_X8_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Spectrum_M4I_4450_X8_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Spectrum_M4I_4450_X8_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Spectrum_M4I_6631_X8_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Spectrum_M4I_6631_X8_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Tektronix_3052C_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Tektronix_3052C_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Tektronix_4032_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Tektronix_4032_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Tektronix_MSO54_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Tektronix_MSO54_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Termodat_11M6_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Termodat_11M6_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/Termodat_13KX3_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/Termodat_13KX3_config.ini -------------------------------------------------------------------------------- /atomize/device_modules/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atomize/device_modules/config/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/device_modules/config/config_utils.py -------------------------------------------------------------------------------- /atomize/documentation/awg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/awg.md -------------------------------------------------------------------------------- /atomize/documentation/delay_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/delay_generator.md -------------------------------------------------------------------------------- /atomize/documentation/digitizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/digitizer.md -------------------------------------------------------------------------------- /atomize/documentation/freq_counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/freq_counter.md -------------------------------------------------------------------------------- /atomize/documentation/gaussmeter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/gaussmeter.md -------------------------------------------------------------------------------- /atomize/documentation/general_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/general_functions.md -------------------------------------------------------------------------------- /atomize/documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/index.md -------------------------------------------------------------------------------- /atomize/documentation/instruments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/instruments.md -------------------------------------------------------------------------------- /atomize/documentation/lock_in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/lock_in.md -------------------------------------------------------------------------------- /atomize/documentation/magnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/magnet.md -------------------------------------------------------------------------------- /atomize/documentation/magnet_power_supply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/magnet_power_supply.md -------------------------------------------------------------------------------- /atomize/documentation/microwave_bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/microwave_bridge.md -------------------------------------------------------------------------------- /atomize/documentation/moisture_meter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/moisture_meter.md -------------------------------------------------------------------------------- /atomize/documentation/oscilloscope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/oscilloscope.md -------------------------------------------------------------------------------- /atomize/documentation/oscilloscope_wave_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/oscilloscope_wave_generator.md -------------------------------------------------------------------------------- /atomize/documentation/other_device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/other_device.md -------------------------------------------------------------------------------- /atomize/documentation/plotting_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/plotting_functions.md -------------------------------------------------------------------------------- /atomize/documentation/power_supply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/power_supply.md -------------------------------------------------------------------------------- /atomize/documentation/protocol_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/protocol_settings.md -------------------------------------------------------------------------------- /atomize/documentation/pulse_programmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/pulse_programmer.md -------------------------------------------------------------------------------- /atomize/documentation/temp_controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/temp_controller.md -------------------------------------------------------------------------------- /atomize/documentation/writing_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/documentation/writing_modules.md -------------------------------------------------------------------------------- /atomize/general_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/general_modules/__init__.py -------------------------------------------------------------------------------- /atomize/general_modules/csv_opener_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/general_modules/csv_opener_saver.py -------------------------------------------------------------------------------- /atomize/general_modules/csv_opener_saver_tk_kinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/general_modules/csv_opener_saver_tk_kinter.py -------------------------------------------------------------------------------- /atomize/general_modules/general_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/general_modules/general_functions.py -------------------------------------------------------------------------------- /atomize/general_modules/returned_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/general_modules/returned_thread.py -------------------------------------------------------------------------------- /atomize/general_modules/spinapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/general_modules/spinapi.py -------------------------------------------------------------------------------- /atomize/main/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/main/Icon.png -------------------------------------------------------------------------------- /atomize/main/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/main/client.py -------------------------------------------------------------------------------- /atomize/main/gui/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/main/gui/main_window.ui -------------------------------------------------------------------------------- /atomize/main/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/main/icon.ico -------------------------------------------------------------------------------- /atomize/main/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/main/main_window.py -------------------------------------------------------------------------------- /atomize/main/messenger_socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/main/messenger_socket_server.py -------------------------------------------------------------------------------- /atomize/main/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/main/widgets.py -------------------------------------------------------------------------------- /atomize/math_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atomize/math_modules/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/math_modules/fft.py -------------------------------------------------------------------------------- /atomize/math_modules/least_square_fitting_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/math_modules/least_square_fitting_modules.py -------------------------------------------------------------------------------- /atomize/tests/B_measurement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/B_measurement.py -------------------------------------------------------------------------------- /atomize/tests/Column_heating_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/Column_heating_test.py -------------------------------------------------------------------------------- /atomize/tests/CuPr_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/CuPr_experiment.py -------------------------------------------------------------------------------- /atomize/tests/CuPr_power_measurment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/CuPr_power_measurment.py -------------------------------------------------------------------------------- /atomize/tests/CuPr_set_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/CuPr_set_temperature.py -------------------------------------------------------------------------------- /atomize/tests/consecutive_script_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/consecutive_script_test.py -------------------------------------------------------------------------------- /atomize/tests/data1D.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/data1D.csv -------------------------------------------------------------------------------- /atomize/tests/data2D.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/data2D.csv -------------------------------------------------------------------------------- /atomize/tests/data2D_appended.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/data2D_appended.csv -------------------------------------------------------------------------------- /atomize/tests/devices_tests/00_micran_Q_bridge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/00_micran_Q_bridge_test.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_3034T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_3034T.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Agilent_53131a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Agilent_53131a.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_BH_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_BH_15.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_CPWplus_150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_CPWplus_150.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Cryomagnetics_4G.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Cryomagnetics_4G.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Cryomagnetics_LM510.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Cryomagnetics_LM510.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Cryomech_CPA1110.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Cryomech_CPA1110.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_ECC_15K.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_ECC_15K.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_ITC_503.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_ITC_503.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_ITC_FC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_ITC_FC.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_IVG_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_IVG_1_1.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_DAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_DAC.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_GIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_GIM.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_GIM_DAC_live_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_GIM_DAC_live_mode.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_GIM_DAC_live_mode_one_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_GIM_DAC_live_mode_one_phase.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_GIM_PC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_GIM_PC.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_GIM_int_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_GIM_int_mode.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_GIM_live_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_GIM_live_mode.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Insys_GIM_live_mode_one_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Insys_GIM_live_mode_one_phase.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_L502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_L502.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_LS335_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_LS335_bot.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Lakeshore_335.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Lakeshore_335.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Lakeshore_455DSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Lakeshore_455DSP.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Metrolab_PT2025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Metrolab_PT2025.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Mikran_X_band_mw_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Mikran_X_band_mw_bridge.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Mikran_X_band_mw_bridge_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Mikran_X_band_mw_bridge_v2.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Owen_MK110_220_4DN_4R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Owen_MK110_220_4DN_4R.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_PB_ESR_500_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_PB_ESR_500_pro.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_PB_Insys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_PB_Insys.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Planar_C2220.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Planar_C2220.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_RODOS_10N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_RODOS_10N.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Rigol_832.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Rigol_832.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_SR_830.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_SR_830.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_SR_860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_SR_860.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_SR_PTC_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_SR_PTC_10.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Scientific_Instruments_SCM10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Scientific_Instruments_SCM10.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Sibir_1_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Sibir_1_field.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Sibir_1_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Sibir_1_length.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Spectrum_M4I_4450_X8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Spectrum_M4I_4450_X8.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Spectrum_M4I_6631_X8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Spectrum_M4I_6631_X8.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Spectrum_M4I_6631_X8_sequence_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Spectrum_M4I_6631_X8_sequence_mode.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Spectrum_M4I_6631_X8_single_joined_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Spectrum_M4I_6631_X8_single_joined_mode.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Tektronix_3052C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Tektronix_3052C.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Tektronix_4032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Tektronix_4032.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Tektronix_MSO54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Tektronix_MSO54.py -------------------------------------------------------------------------------- /atomize/tests/devices_tests/ask_Termodat_11M6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/devices_tests/ask_Termodat_11M6.py -------------------------------------------------------------------------------- /atomize/tests/gui_script_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/gui_script_test.py -------------------------------------------------------------------------------- /atomize/tests/infinite_loop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/infinite_loop_test.py -------------------------------------------------------------------------------- /atomize/tests/liveplot_1D_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/liveplot_1D_test.py -------------------------------------------------------------------------------- /atomize/tests/liveplot_1D_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/liveplot_1D_thread.py -------------------------------------------------------------------------------- /atomize/tests/liveplot_2D_multi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/liveplot_2D_multi_test.py -------------------------------------------------------------------------------- /atomize/tests/liveplot_2D_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/liveplot_2D_test.py -------------------------------------------------------------------------------- /atomize/tests/math_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/math_test.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/000_detection_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/000_detection_phase.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/00_constant_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/00_constant_echo.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/01_resonator_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/01_resonator_tuning.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/01_resonator_tuning_awg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/01_resonator_tuning_awg.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/02_t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/02_t2.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/02_t2_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/02_t2_baseline.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/02_t2_baseline_Insys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/02_t2_baseline_Insys.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/02_t2_baseline_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/02_t2_baseline_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/02_t2_baseline_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/02_t2_baseline_nonlinear.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/03_echo_detected_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/03_echo_detected_spectrum.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/03_echo_detected_spectrum_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/03_echo_detected_spectrum_baseline.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/03_echo_detected_spectrum_baseline_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/03_echo_detected_spectrum_baseline_2d.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/03_echo_detected_spectrum_baseline_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/03_echo_detected_spectrum_baseline_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/04_t1_inversion_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/04_t1_inversion_recovery.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/04_t1_inversion_recovery_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/04_t1_inversion_recovery_baseline.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/05_nutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/05_nutations.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/07_eseem_64phase_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/07_eseem_64phase_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/07_eseem_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/07_eseem_phase.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/07_eseem_phase_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/07_eseem_phase_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/08_hyscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/08_hyscore.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/08_hyscore_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/08_hyscore_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/09_srt_field_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/09_srt_field_loop.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/10_sifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/10_sifter.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/10_sifter_256_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/10_sifter_256_steps.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/10_sifter_256_steps_cycles_8ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/10_sifter_256_steps_cycles_8ns.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/10_sifter_cycles_8ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/10_sifter_cycles_8ns.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/11_dqc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/11_dqc.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/12_field_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/12_field_stability.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/13_trytil_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/13_trytil_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/14_laser_echo_detected_spectrum_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/14_laser_echo_detected_spectrum_baseline.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/14_laser_echo_detected_spectrum_baseline_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/14_laser_echo_detected_spectrum_baseline_2D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/14_laser_echo_detected_spectrum_baseline_kinetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/14_laser_echo_detected_spectrum_baseline_kinetics.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/15_amp_pulse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/15_amp_pulse_test.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/15_amp_pulse_test_keysight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/15_amp_pulse_test_keysight.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/16_trytil_echo_4steps_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/16_trytil_echo_4steps_1D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/16_trytil_echo_cyclops_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/16_trytil_echo_cyclops_1D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/16_trytil_echo_cyclops_1D_4steps_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/16_trytil_echo_cyclops_1D_4steps_1D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/17_trytil_echo_cyclops_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/17_trytil_echo_cyclops_2D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/18_DPPH_T1_FID_cyclops_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/18_DPPH_T1_FID_cyclops_2D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/18_DPPH_T2_echo_cyclops_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/18_DPPH_T2_echo_cyclops_2D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/19_DPPH_T1_echo_cyclops_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/19_DPPH_T1_echo_cyclops_2D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/20_T2_echo_cyclops_2D_nonlinear_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/20_T2_echo_cyclops_2D_nonlinear_steps.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/21_t1_64_phases_direct_dimension_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/21_t1_64_phases_direct_dimension_nonlinear.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/00_constant_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/00_constant_echo.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/01_deer_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/01_deer_static.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/02_amp_pulse_test_awg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/02_amp_pulse_test_awg.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/02_amp_pulse_test_keysight_awg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/02_amp_pulse_test_keysight_awg.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer_baseline.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer_baseline_two_experiments_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer_baseline_two_experiments_test.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer_baseline_wurst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/01_t2_digitizer_baseline_wurst.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_256_steps_phase_8ns_cylces_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_256_steps_phase_8ns_cylces_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_256_steps_phase_full_awg_8ns_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_256_steps_phase_full_awg_8ns_cycles.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_no_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_no_phase.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_no_phase_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_no_phase_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_8ns_cylces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_8ns_cylces.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_8ns_cylces_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_8ns_cylces_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_full_awg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_full_awg.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_full_awg_8ns_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_full_awg_8ns_cycles.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_full_awg_no_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/02_deer_64_steps_phase_full_awg_no_phase.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/03_eseem_digitizer_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/03_eseem_digitizer_phase.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/03_eseem_digitizer_phase_wurst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/03_eseem_digitizer_phase_wurst.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/04_sifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/04_sifter.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/04_sifter_256_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/04_sifter_256_steps.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/04_sifter_256_steps_cycles_8ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/04_sifter_256_steps_cycles_8ns.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/04_sifter_256_steps_cycles_8ns_two_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/04_sifter_256_steps_cycles_8ns_two_experiments.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/04_sifter_cycles_8ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/04_sifter_cycles_8ns.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/05_FID_pi-half_wurst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/05_FID_pi-half_wurst.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/06_sifter_digitizer_bruker_integral_wurst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/06_sifter_digitizer_bruker_integral_wurst.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/06_sifter_digitizer_bruker_wurst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/06_sifter_digitizer_bruker_wurst.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/07_trytil_echo_cyclops_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/07_trytil_echo_cyclops_1D.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/08_echo_detected_spectrum_baseline_echo_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/08_echo_detected_spectrum_baseline_echo_shape.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/digitizer/09_nutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/digitizer/09_nutations.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/keysight/01_t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/keysight/01_t2.py -------------------------------------------------------------------------------- /atomize/tests/pulse_epr/awg/keysight/01_t2_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/pulse_epr/awg/keysight/01_t2_baseline.py -------------------------------------------------------------------------------- /atomize/tests/telegram_bot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/atomize/tests/telegram_bot_test.py -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/license.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/logoAtomize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/screenshots/logoAtomize.png -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/screenshots/screenshot3.png -------------------------------------------------------------------------------- /to_do_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anatoly1010/Atomize/HEAD/to_do_list.md --------------------------------------------------------------------------------